1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. VulnerabilityScanning
  5. getHostScanRecipes
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

oci.VulnerabilityScanning.getHostScanRecipes

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

This data source provides the list of Host Scan Recipes in Oracle Cloud Infrastructure Vulnerability Scanning service.

Retrieves a list of HostScanRecipeSummary objects in a compartment. A recipe determines the types of security issues that you want scanned, and how often to scan.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testHostScanRecipes = oci.VulnerabilityScanning.getHostScanRecipes({
    compartmentId: compartmentId,
    displayName: hostScanRecipeDisplayName,
    state: hostScanRecipeState,
});
Copy
import pulumi
import pulumi_oci as oci

test_host_scan_recipes = oci.VulnerabilityScanning.get_host_scan_recipes(compartment_id=compartment_id,
    display_name=host_scan_recipe_display_name,
    state=host_scan_recipe_state)
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/vulnerabilityscanning"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := vulnerabilityscanning.GetHostScanRecipes(ctx, &vulnerabilityscanning.GetHostScanRecipesArgs{
			CompartmentId: compartmentId,
			DisplayName:   pulumi.StringRef(hostScanRecipeDisplayName),
			State:         pulumi.StringRef(hostScanRecipeState),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testHostScanRecipes = Oci.VulnerabilityScanning.GetHostScanRecipes.Invoke(new()
    {
        CompartmentId = compartmentId,
        DisplayName = hostScanRecipeDisplayName,
        State = hostScanRecipeState,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.VulnerabilityScanning.VulnerabilityScanningFunctions;
import com.pulumi.oci.VulnerabilityScanning.inputs.GetHostScanRecipesArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var testHostScanRecipes = VulnerabilityScanningFunctions.getHostScanRecipes(GetHostScanRecipesArgs.builder()
            .compartmentId(compartmentId)
            .displayName(hostScanRecipeDisplayName)
            .state(hostScanRecipeState)
            .build());

    }
}
Copy
variables:
  testHostScanRecipes:
    fn::invoke:
      function: oci:VulnerabilityScanning:getHostScanRecipes
      arguments:
        compartmentId: ${compartmentId}
        displayName: ${hostScanRecipeDisplayName}
        state: ${hostScanRecipeState}
Copy

Using getHostScanRecipes

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getHostScanRecipes(args: GetHostScanRecipesArgs, opts?: InvokeOptions): Promise<GetHostScanRecipesResult>
function getHostScanRecipesOutput(args: GetHostScanRecipesOutputArgs, opts?: InvokeOptions): Output<GetHostScanRecipesResult>
Copy
def get_host_scan_recipes(compartment_id: Optional[str] = None,
                          display_name: Optional[str] = None,
                          filters: Optional[Sequence[_vulnerabilityscanning.GetHostScanRecipesFilter]] = None,
                          state: Optional[str] = None,
                          opts: Optional[InvokeOptions] = None) -> GetHostScanRecipesResult
def get_host_scan_recipes_output(compartment_id: Optional[pulumi.Input[str]] = None,
                          display_name: Optional[pulumi.Input[str]] = None,
                          filters: Optional[pulumi.Input[Sequence[pulumi.Input[_vulnerabilityscanning.GetHostScanRecipesFilterArgs]]]] = None,
                          state: Optional[pulumi.Input[str]] = None,
                          opts: Optional[InvokeOptions] = None) -> Output[GetHostScanRecipesResult]
Copy
func GetHostScanRecipes(ctx *Context, args *GetHostScanRecipesArgs, opts ...InvokeOption) (*GetHostScanRecipesResult, error)
func GetHostScanRecipesOutput(ctx *Context, args *GetHostScanRecipesOutputArgs, opts ...InvokeOption) GetHostScanRecipesResultOutput
Copy

> Note: This function is named GetHostScanRecipes in the Go SDK.

public static class GetHostScanRecipes 
{
    public static Task<GetHostScanRecipesResult> InvokeAsync(GetHostScanRecipesArgs args, InvokeOptions? opts = null)
    public static Output<GetHostScanRecipesResult> Invoke(GetHostScanRecipesInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetHostScanRecipesResult> getHostScanRecipes(GetHostScanRecipesArgs args, InvokeOptions options)
public static Output<GetHostScanRecipesResult> getHostScanRecipes(GetHostScanRecipesArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:VulnerabilityScanning/getHostScanRecipes:getHostScanRecipes
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CompartmentId This property is required. string
The ID of the compartment in which to list resources.
DisplayName string
A filter to return only resources that match the entire display name given.
Filters Changes to this property will trigger replacement. List<GetHostScanRecipesFilter>
State string
A filter to return only resources whose lifecycleState matches the given lifecycleState.
CompartmentId This property is required. string
The ID of the compartment in which to list resources.
DisplayName string
A filter to return only resources that match the entire display name given.
Filters Changes to this property will trigger replacement. []GetHostScanRecipesFilter
State string
A filter to return only resources whose lifecycleState matches the given lifecycleState.
compartmentId This property is required. String
The ID of the compartment in which to list resources.
displayName String
A filter to return only resources that match the entire display name given.
filters Changes to this property will trigger replacement. List<GetHostScanRecipesFilter>
state String
A filter to return only resources whose lifecycleState matches the given lifecycleState.
compartmentId This property is required. string
The ID of the compartment in which to list resources.
displayName string
A filter to return only resources that match the entire display name given.
filters Changes to this property will trigger replacement. GetHostScanRecipesFilter[]
state string
A filter to return only resources whose lifecycleState matches the given lifecycleState.
compartment_id This property is required. str
The ID of the compartment in which to list resources.
display_name str
A filter to return only resources that match the entire display name given.
filters Changes to this property will trigger replacement. Sequence[vulnerabilityscanning.GetHostScanRecipesFilter]
state str
A filter to return only resources whose lifecycleState matches the given lifecycleState.
compartmentId This property is required. String
The ID of the compartment in which to list resources.
displayName String
A filter to return only resources that match the entire display name given.
filters Changes to this property will trigger replacement. List<Property Map>
state String
A filter to return only resources whose lifecycleState matches the given lifecycleState.

getHostScanRecipes Result

The following output properties are available:

CompartmentId string
Compartment ID of the scan recipe
HostScanRecipeSummaryCollections List<GetHostScanRecipesHostScanRecipeSummaryCollection>
The list of host_scan_recipe_summary_collection.
Id string
The provider-assigned unique ID for this managed resource.
DisplayName string
Recipe identifier, which can be renamed
Filters List<GetHostScanRecipesFilter>
State string
The current state of the config.
CompartmentId string
Compartment ID of the scan recipe
HostScanRecipeSummaryCollections []GetHostScanRecipesHostScanRecipeSummaryCollection
The list of host_scan_recipe_summary_collection.
Id string
The provider-assigned unique ID for this managed resource.
DisplayName string
Recipe identifier, which can be renamed
Filters []GetHostScanRecipesFilter
State string
The current state of the config.
compartmentId String
Compartment ID of the scan recipe
hostScanRecipeSummaryCollections List<GetHostScanRecipesHostScanRecipeSummaryCollection>
The list of host_scan_recipe_summary_collection.
id String
The provider-assigned unique ID for this managed resource.
displayName String
Recipe identifier, which can be renamed
filters List<GetHostScanRecipesFilter>
state String
The current state of the config.
compartmentId string
Compartment ID of the scan recipe
hostScanRecipeSummaryCollections GetHostScanRecipesHostScanRecipeSummaryCollection[]
The list of host_scan_recipe_summary_collection.
id string
The provider-assigned unique ID for this managed resource.
displayName string
Recipe identifier, which can be renamed
filters GetHostScanRecipesFilter[]
state string
The current state of the config.
compartment_id str
Compartment ID of the scan recipe
host_scan_recipe_summary_collections Sequence[vulnerabilityscanning.GetHostScanRecipesHostScanRecipeSummaryCollection]
The list of host_scan_recipe_summary_collection.
id str
The provider-assigned unique ID for this managed resource.
display_name str
Recipe identifier, which can be renamed
filters Sequence[vulnerabilityscanning.GetHostScanRecipesFilter]
state str
The current state of the config.
compartmentId String
Compartment ID of the scan recipe
hostScanRecipeSummaryCollections List<Property Map>
The list of host_scan_recipe_summary_collection.
id String
The provider-assigned unique ID for this managed resource.
displayName String
Recipe identifier, which can be renamed
filters List<Property Map>
state String
The current state of the config.

Supporting Types

GetHostScanRecipesFilter

Name This property is required. string
Values This property is required. List<string>
Regex bool
Name This property is required. string
Values This property is required. []string
Regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean
name This property is required. string
values This property is required. string[]
regex boolean
name This property is required. str
values This property is required. Sequence[str]
regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean

GetHostScanRecipesHostScanRecipeSummaryCollection

items This property is required. List<Property Map>

GetHostScanRecipesHostScanRecipeSummaryCollectionItem

AgentSettings This property is required. List<GetHostScanRecipesHostScanRecipeSummaryCollectionItemAgentSetting>
Agent scan settings for a host scan
ApplicationSettings This property is required. List<GetHostScanRecipesHostScanRecipeSummaryCollectionItemApplicationSetting>
Agent scan settings for an application scan (as a part of a host scan)
CompartmentId This property is required. string
The ID of the compartment in which to list resources.
DefinedTags This property is required. Dictionary<string, string>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
DisplayName This property is required. string
A filter to return only resources that match the entire display name given.
FreeformTags This property is required. Dictionary<string, string>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
Id This property is required. string
Unique identifier of the config that is immutable on creation
PortSettings This property is required. List<GetHostScanRecipesHostScanRecipeSummaryCollectionItemPortSetting>
Port scan settings for a host scan
Schedules This property is required. List<GetHostScanRecipesHostScanRecipeSummaryCollectionItemSchedule>
A scanning schedule
State This property is required. string
A filter to return only resources whose lifecycleState matches the given lifecycleState.
SystemTags This property is required. Dictionary<string, string>
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated This property is required. string
Date and time the recipe was created, format as described in RFC 3339
TimeUpdated This property is required. string
Date and time the recipe was last updated, format as described in RFC 3339
AgentSettings This property is required. []GetHostScanRecipesHostScanRecipeSummaryCollectionItemAgentSetting
Agent scan settings for a host scan
ApplicationSettings This property is required. []GetHostScanRecipesHostScanRecipeSummaryCollectionItemApplicationSetting
Agent scan settings for an application scan (as a part of a host scan)
CompartmentId This property is required. string
The ID of the compartment in which to list resources.
DefinedTags This property is required. map[string]string
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
DisplayName This property is required. string
A filter to return only resources that match the entire display name given.
FreeformTags This property is required. map[string]string
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
Id This property is required. string
Unique identifier of the config that is immutable on creation
PortSettings This property is required. []GetHostScanRecipesHostScanRecipeSummaryCollectionItemPortSetting
Port scan settings for a host scan
Schedules This property is required. []GetHostScanRecipesHostScanRecipeSummaryCollectionItemSchedule
A scanning schedule
State This property is required. string
A filter to return only resources whose lifecycleState matches the given lifecycleState.
SystemTags This property is required. map[string]string
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated This property is required. string
Date and time the recipe was created, format as described in RFC 3339
TimeUpdated This property is required. string
Date and time the recipe was last updated, format as described in RFC 3339
agentSettings This property is required. List<GetHostScanRecipesHostScanRecipeSummaryCollectionItemAgentSetting>
Agent scan settings for a host scan
applicationSettings This property is required. List<GetHostScanRecipesHostScanRecipeSummaryCollectionItemApplicationSetting>
Agent scan settings for an application scan (as a part of a host scan)
compartmentId This property is required. String
The ID of the compartment in which to list resources.
definedTags This property is required. Map<String,String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
displayName This property is required. String
A filter to return only resources that match the entire display name given.
freeformTags This property is required. Map<String,String>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
id This property is required. String
Unique identifier of the config that is immutable on creation
portSettings This property is required. List<GetHostScanRecipesHostScanRecipeSummaryCollectionItemPortSetting>
Port scan settings for a host scan
schedules This property is required. List<GetHostScanRecipesHostScanRecipeSummaryCollectionItemSchedule>
A scanning schedule
state This property is required. String
A filter to return only resources whose lifecycleState matches the given lifecycleState.
systemTags This property is required. Map<String,String>
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. String
Date and time the recipe was created, format as described in RFC 3339
timeUpdated This property is required. String
Date and time the recipe was last updated, format as described in RFC 3339
agentSettings This property is required. GetHostScanRecipesHostScanRecipeSummaryCollectionItemAgentSetting[]
Agent scan settings for a host scan
applicationSettings This property is required. GetHostScanRecipesHostScanRecipeSummaryCollectionItemApplicationSetting[]
Agent scan settings for an application scan (as a part of a host scan)
compartmentId This property is required. string
The ID of the compartment in which to list resources.
definedTags This property is required. {[key: string]: string}
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
displayName This property is required. string
A filter to return only resources that match the entire display name given.
freeformTags This property is required. {[key: string]: string}
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
id This property is required. string
Unique identifier of the config that is immutable on creation
portSettings This property is required. GetHostScanRecipesHostScanRecipeSummaryCollectionItemPortSetting[]
Port scan settings for a host scan
schedules This property is required. GetHostScanRecipesHostScanRecipeSummaryCollectionItemSchedule[]
A scanning schedule
state This property is required. string
A filter to return only resources whose lifecycleState matches the given lifecycleState.
systemTags This property is required. {[key: string]: string}
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. string
Date and time the recipe was created, format as described in RFC 3339
timeUpdated This property is required. string
Date and time the recipe was last updated, format as described in RFC 3339
agent_settings This property is required. Sequence[vulnerabilityscanning.GetHostScanRecipesHostScanRecipeSummaryCollectionItemAgentSetting]
Agent scan settings for a host scan
application_settings This property is required. Sequence[vulnerabilityscanning.GetHostScanRecipesHostScanRecipeSummaryCollectionItemApplicationSetting]
Agent scan settings for an application scan (as a part of a host scan)
compartment_id This property is required. str
The ID of the compartment in which to list resources.
defined_tags This property is required. Mapping[str, str]
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
display_name This property is required. str
A filter to return only resources that match the entire display name given.
freeform_tags This property is required. Mapping[str, str]
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
id This property is required. str
Unique identifier of the config that is immutable on creation
port_settings This property is required. Sequence[vulnerabilityscanning.GetHostScanRecipesHostScanRecipeSummaryCollectionItemPortSetting]
Port scan settings for a host scan
schedules This property is required. Sequence[vulnerabilityscanning.GetHostScanRecipesHostScanRecipeSummaryCollectionItemSchedule]
A scanning schedule
state This property is required. str
A filter to return only resources whose lifecycleState matches the given lifecycleState.
system_tags This property is required. Mapping[str, str]
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
time_created This property is required. str
Date and time the recipe was created, format as described in RFC 3339
time_updated This property is required. str
Date and time the recipe was last updated, format as described in RFC 3339
agentSettings This property is required. List<Property Map>
Agent scan settings for a host scan
applicationSettings This property is required. List<Property Map>
Agent scan settings for an application scan (as a part of a host scan)
compartmentId This property is required. String
The ID of the compartment in which to list resources.
definedTags This property is required. Map<String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
displayName This property is required. String
A filter to return only resources that match the entire display name given.
freeformTags This property is required. Map<String>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
id This property is required. String
Unique identifier of the config that is immutable on creation
portSettings This property is required. List<Property Map>
Port scan settings for a host scan
schedules This property is required. List<Property Map>
A scanning schedule
state This property is required. String
A filter to return only resources whose lifecycleState matches the given lifecycleState.
systemTags This property is required. Map<String>
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. String
Date and time the recipe was created, format as described in RFC 3339
timeUpdated This property is required. String
Date and time the recipe was last updated, format as described in RFC 3339

GetHostScanRecipesHostScanRecipeSummaryCollectionItemAgentSetting

AgentConfigurations This property is required. List<GetHostScanRecipesHostScanRecipeSummaryCollectionItemAgentSettingAgentConfiguration>
Agent configuration for host scan agent settings. This model is polymorphic, presenting different configuration options based on selected agent vendor.
ScanLevel This property is required. string
The scan level
AgentConfigurations This property is required. []GetHostScanRecipesHostScanRecipeSummaryCollectionItemAgentSettingAgentConfiguration
Agent configuration for host scan agent settings. This model is polymorphic, presenting different configuration options based on selected agent vendor.
ScanLevel This property is required. string
The scan level
agentConfigurations This property is required. List<GetHostScanRecipesHostScanRecipeSummaryCollectionItemAgentSettingAgentConfiguration>
Agent configuration for host scan agent settings. This model is polymorphic, presenting different configuration options based on selected agent vendor.
scanLevel This property is required. String
The scan level
agentConfigurations This property is required. GetHostScanRecipesHostScanRecipeSummaryCollectionItemAgentSettingAgentConfiguration[]
Agent configuration for host scan agent settings. This model is polymorphic, presenting different configuration options based on selected agent vendor.
scanLevel This property is required. string
The scan level
agent_configurations This property is required. Sequence[vulnerabilityscanning.GetHostScanRecipesHostScanRecipeSummaryCollectionItemAgentSettingAgentConfiguration]
Agent configuration for host scan agent settings. This model is polymorphic, presenting different configuration options based on selected agent vendor.
scan_level This property is required. str
The scan level
agentConfigurations This property is required. List<Property Map>
Agent configuration for host scan agent settings. This model is polymorphic, presenting different configuration options based on selected agent vendor.
scanLevel This property is required. String
The scan level

GetHostScanRecipesHostScanRecipeSummaryCollectionItemAgentSettingAgentConfiguration

CisBenchmarkSettings This property is required. List<GetHostScanRecipesHostScanRecipeSummaryCollectionItemAgentSettingAgentConfigurationCisBenchmarkSetting>
CIS (Center for Internet Security) Benchmark scan settings for a host scan
EndpointProtectionSettings This property is required. List<GetHostScanRecipesHostScanRecipeSummaryCollectionItemAgentSettingAgentConfigurationEndpointProtectionSetting>
Endpoint Protection scan settings for a host scan
ShouldUnInstall This property is required. bool
Boolean flag letting agent know if it should un-install the Qualys agent when it is stopped.
VaultSecretId This property is required. string
Vault secret OCID which stores license information. Content inside this secret in vault would be base64 string containing information about customer's Qualys susbcription license.
Vendor This property is required. string
Vendor to use for the host scan agent.
VendorType This property is required. string
Vendor to use for the host scan agent.
CisBenchmarkSettings This property is required. []GetHostScanRecipesHostScanRecipeSummaryCollectionItemAgentSettingAgentConfigurationCisBenchmarkSetting
CIS (Center for Internet Security) Benchmark scan settings for a host scan
EndpointProtectionSettings This property is required. []GetHostScanRecipesHostScanRecipeSummaryCollectionItemAgentSettingAgentConfigurationEndpointProtectionSetting
Endpoint Protection scan settings for a host scan
ShouldUnInstall This property is required. bool
Boolean flag letting agent know if it should un-install the Qualys agent when it is stopped.
VaultSecretId This property is required. string
Vault secret OCID which stores license information. Content inside this secret in vault would be base64 string containing information about customer's Qualys susbcription license.
Vendor This property is required. string
Vendor to use for the host scan agent.
VendorType This property is required. string
Vendor to use for the host scan agent.
cisBenchmarkSettings This property is required. List<GetHostScanRecipesHostScanRecipeSummaryCollectionItemAgentSettingAgentConfigurationCisBenchmarkSetting>
CIS (Center for Internet Security) Benchmark scan settings for a host scan
endpointProtectionSettings This property is required. List<GetHostScanRecipesHostScanRecipeSummaryCollectionItemAgentSettingAgentConfigurationEndpointProtectionSetting>
Endpoint Protection scan settings for a host scan
shouldUnInstall This property is required. Boolean
Boolean flag letting agent know if it should un-install the Qualys agent when it is stopped.
vaultSecretId This property is required. String
Vault secret OCID which stores license information. Content inside this secret in vault would be base64 string containing information about customer's Qualys susbcription license.
vendor This property is required. String
Vendor to use for the host scan agent.
vendorType This property is required. String
Vendor to use for the host scan agent.
cisBenchmarkSettings This property is required. GetHostScanRecipesHostScanRecipeSummaryCollectionItemAgentSettingAgentConfigurationCisBenchmarkSetting[]
CIS (Center for Internet Security) Benchmark scan settings for a host scan
endpointProtectionSettings This property is required. GetHostScanRecipesHostScanRecipeSummaryCollectionItemAgentSettingAgentConfigurationEndpointProtectionSetting[]
Endpoint Protection scan settings for a host scan
shouldUnInstall This property is required. boolean
Boolean flag letting agent know if it should un-install the Qualys agent when it is stopped.
vaultSecretId This property is required. string
Vault secret OCID which stores license information. Content inside this secret in vault would be base64 string containing information about customer's Qualys susbcription license.
vendor This property is required. string
Vendor to use for the host scan agent.
vendorType This property is required. string
Vendor to use for the host scan agent.
cis_benchmark_settings This property is required. Sequence[vulnerabilityscanning.GetHostScanRecipesHostScanRecipeSummaryCollectionItemAgentSettingAgentConfigurationCisBenchmarkSetting]
CIS (Center for Internet Security) Benchmark scan settings for a host scan
endpoint_protection_settings This property is required. Sequence[vulnerabilityscanning.GetHostScanRecipesHostScanRecipeSummaryCollectionItemAgentSettingAgentConfigurationEndpointProtectionSetting]
Endpoint Protection scan settings for a host scan
should_un_install This property is required. bool
Boolean flag letting agent know if it should un-install the Qualys agent when it is stopped.
vault_secret_id This property is required. str
Vault secret OCID which stores license information. Content inside this secret in vault would be base64 string containing information about customer's Qualys susbcription license.
vendor This property is required. str
Vendor to use for the host scan agent.
vendor_type This property is required. str
Vendor to use for the host scan agent.
cisBenchmarkSettings This property is required. List<Property Map>
CIS (Center for Internet Security) Benchmark scan settings for a host scan
endpointProtectionSettings This property is required. List<Property Map>
Endpoint Protection scan settings for a host scan
shouldUnInstall This property is required. Boolean
Boolean flag letting agent know if it should un-install the Qualys agent when it is stopped.
vaultSecretId This property is required. String
Vault secret OCID which stores license information. Content inside this secret in vault would be base64 string containing information about customer's Qualys susbcription license.
vendor This property is required. String
Vendor to use for the host scan agent.
vendorType This property is required. String
Vendor to use for the host scan agent.

GetHostScanRecipesHostScanRecipeSummaryCollectionItemAgentSettingAgentConfigurationCisBenchmarkSetting

ScanLevel This property is required. string
The scan level
ScanLevel This property is required. string
The scan level
scanLevel This property is required. String
The scan level
scanLevel This property is required. string
The scan level
scan_level This property is required. str
The scan level
scanLevel This property is required. String
The scan level

GetHostScanRecipesHostScanRecipeSummaryCollectionItemAgentSettingAgentConfigurationEndpointProtectionSetting

ScanLevel This property is required. string
The scan level
ScanLevel This property is required. string
The scan level
scanLevel This property is required. String
The scan level
scanLevel This property is required. string
The scan level
scan_level This property is required. str
The scan level
scanLevel This property is required. String
The scan level

GetHostScanRecipesHostScanRecipeSummaryCollectionItemApplicationSetting

ApplicationScanRecurrence This property is required. string
Scan recurrences in RFC-5545 section 3.3.10 format. Only supported input are weekly, biweekly, monthly listed below FREQ=WEEKLY;WKST=;INTERVAL=1 - This weekly scan on the specified weekday (e.g. SU for Sunday) FREQ=WEEKLY;WKST=;INTERVAL=2 - This bi-weekly scan on the specified weekday (e.g. SU for Sunday) FREQ=MONTHLY;WKST=;INTERVAL=1 - This monthly scan on the specified weekday (e.g. SU for Sunday, starting from the next such weekday based on the time of setting creation)
FoldersToScans This property is required. List<GetHostScanRecipesHostScanRecipeSummaryCollectionItemApplicationSettingFoldersToScan>
List of folders selected for scanning
IsEnabled This property is required. bool
Enable or disable application scan
ApplicationScanRecurrence This property is required. string
Scan recurrences in RFC-5545 section 3.3.10 format. Only supported input are weekly, biweekly, monthly listed below FREQ=WEEKLY;WKST=;INTERVAL=1 - This weekly scan on the specified weekday (e.g. SU for Sunday) FREQ=WEEKLY;WKST=;INTERVAL=2 - This bi-weekly scan on the specified weekday (e.g. SU for Sunday) FREQ=MONTHLY;WKST=;INTERVAL=1 - This monthly scan on the specified weekday (e.g. SU for Sunday, starting from the next such weekday based on the time of setting creation)
FoldersToScans This property is required. []GetHostScanRecipesHostScanRecipeSummaryCollectionItemApplicationSettingFoldersToScan
List of folders selected for scanning
IsEnabled This property is required. bool
Enable or disable application scan
applicationScanRecurrence This property is required. String
Scan recurrences in RFC-5545 section 3.3.10 format. Only supported input are weekly, biweekly, monthly listed below FREQ=WEEKLY;WKST=;INTERVAL=1 - This weekly scan on the specified weekday (e.g. SU for Sunday) FREQ=WEEKLY;WKST=;INTERVAL=2 - This bi-weekly scan on the specified weekday (e.g. SU for Sunday) FREQ=MONTHLY;WKST=;INTERVAL=1 - This monthly scan on the specified weekday (e.g. SU for Sunday, starting from the next such weekday based on the time of setting creation)
foldersToScans This property is required. List<GetHostScanRecipesHostScanRecipeSummaryCollectionItemApplicationSettingFoldersToScan>
List of folders selected for scanning
isEnabled This property is required. Boolean
Enable or disable application scan
applicationScanRecurrence This property is required. string
Scan recurrences in RFC-5545 section 3.3.10 format. Only supported input are weekly, biweekly, monthly listed below FREQ=WEEKLY;WKST=;INTERVAL=1 - This weekly scan on the specified weekday (e.g. SU for Sunday) FREQ=WEEKLY;WKST=;INTERVAL=2 - This bi-weekly scan on the specified weekday (e.g. SU for Sunday) FREQ=MONTHLY;WKST=;INTERVAL=1 - This monthly scan on the specified weekday (e.g. SU for Sunday, starting from the next such weekday based on the time of setting creation)
foldersToScans This property is required. GetHostScanRecipesHostScanRecipeSummaryCollectionItemApplicationSettingFoldersToScan[]
List of folders selected for scanning
isEnabled This property is required. boolean
Enable or disable application scan
application_scan_recurrence This property is required. str
Scan recurrences in RFC-5545 section 3.3.10 format. Only supported input are weekly, biweekly, monthly listed below FREQ=WEEKLY;WKST=;INTERVAL=1 - This weekly scan on the specified weekday (e.g. SU for Sunday) FREQ=WEEKLY;WKST=;INTERVAL=2 - This bi-weekly scan on the specified weekday (e.g. SU for Sunday) FREQ=MONTHLY;WKST=;INTERVAL=1 - This monthly scan on the specified weekday (e.g. SU for Sunday, starting from the next such weekday based on the time of setting creation)
folders_to_scans This property is required. Sequence[vulnerabilityscanning.GetHostScanRecipesHostScanRecipeSummaryCollectionItemApplicationSettingFoldersToScan]
List of folders selected for scanning
is_enabled This property is required. bool
Enable or disable application scan
applicationScanRecurrence This property is required. String
Scan recurrences in RFC-5545 section 3.3.10 format. Only supported input are weekly, biweekly, monthly listed below FREQ=WEEKLY;WKST=;INTERVAL=1 - This weekly scan on the specified weekday (e.g. SU for Sunday) FREQ=WEEKLY;WKST=;INTERVAL=2 - This bi-weekly scan on the specified weekday (e.g. SU for Sunday) FREQ=MONTHLY;WKST=;INTERVAL=1 - This monthly scan on the specified weekday (e.g. SU for Sunday, starting from the next such weekday based on the time of setting creation)
foldersToScans This property is required. List<Property Map>
List of folders selected for scanning
isEnabled This property is required. Boolean
Enable or disable application scan

GetHostScanRecipesHostScanRecipeSummaryCollectionItemApplicationSettingFoldersToScan

Folder This property is required. string
Folder to be scanned in the corresponding operating system
Operatingsystem This property is required. string
Operating system type
Folder This property is required. string
Folder to be scanned in the corresponding operating system
Operatingsystem This property is required. string
Operating system type
folder This property is required. String
Folder to be scanned in the corresponding operating system
operatingsystem This property is required. String
Operating system type
folder This property is required. string
Folder to be scanned in the corresponding operating system
operatingsystem This property is required. string
Operating system type
folder This property is required. str
Folder to be scanned in the corresponding operating system
operatingsystem This property is required. str
Operating system type
folder This property is required. String
Folder to be scanned in the corresponding operating system
operatingsystem This property is required. String
Operating system type

GetHostScanRecipesHostScanRecipeSummaryCollectionItemPortSetting

ScanLevel This property is required. string
The scan level
ScanLevel This property is required. string
The scan level
scanLevel This property is required. String
The scan level
scanLevel This property is required. string
The scan level
scan_level This property is required. str
The scan level
scanLevel This property is required. String
The scan level

GetHostScanRecipesHostScanRecipeSummaryCollectionItemSchedule

DayOfWeek This property is required. string
Day of week the scheduled scan occurs (not applicable for DAILY type)
Type This property is required. string
How often the scan occurs
DayOfWeek This property is required. string
Day of week the scheduled scan occurs (not applicable for DAILY type)
Type This property is required. string
How often the scan occurs
dayOfWeek This property is required. String
Day of week the scheduled scan occurs (not applicable for DAILY type)
type This property is required. String
How often the scan occurs
dayOfWeek This property is required. string
Day of week the scheduled scan occurs (not applicable for DAILY type)
type This property is required. string
How often the scan occurs
day_of_week This property is required. str
Day of week the scheduled scan occurs (not applicable for DAILY type)
type This property is required. str
How often the scan occurs
dayOfWeek This property is required. String
Day of week the scheduled scan occurs (not applicable for DAILY type)
type This property is required. String
How often the scan occurs

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi