Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi
oci.VulnerabilityScanning.getHostScanRecipes
Start a Neo task
Explain and create an oci.VulnerabilityScanning.getHostScanRecipes resource
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,
});
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)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v3/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
})
}
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,
});
});
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());
}
}
variables:
testHostScanRecipes:
fn::invoke:
function: oci:VulnerabilityScanning:getHostScanRecipes
arguments:
compartmentId: ${compartmentId}
displayName: ${hostScanRecipeDisplayName}
state: ${hostScanRecipeState}
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>def get_host_scan_recipes(compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[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[GetHostScanRecipesFilterArgs]]]] = None,
state: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetHostScanRecipesResult]func GetHostScanRecipes(ctx *Context, args *GetHostScanRecipesArgs, opts ...InvokeOption) (*GetHostScanRecipesResult, error)
func GetHostScanRecipesOutput(ctx *Context, args *GetHostScanRecipesOutputArgs, opts ...InvokeOption) GetHostScanRecipesResultOutput> 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)
}public static CompletableFuture<GetHostScanRecipesResult> getHostScanRecipes(GetHostScanRecipesArgs args, InvokeOptions options)
public static Output<GetHostScanRecipesResult> getHostScanRecipes(GetHostScanRecipesArgs args, InvokeOptions options)
fn::invoke:
function: oci:VulnerabilityScanning/getHostScanRecipes:getHostScanRecipes
arguments:
# arguments dictionaryThe following arguments are supported:
- Compartment
Id string - The ID of the compartment in which to list resources.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Filters
List<Get
Host Scan Recipes Filter> - State string
- A filter to return only resources whose lifecycleState matches the given lifecycleState.
- Compartment
Id string - The ID of the compartment in which to list resources.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Filters
[]Get
Host Scan Recipes Filter - State string
- A filter to return only resources whose lifecycleState matches the given lifecycleState.
- compartment
Id String - The ID of the compartment in which to list resources.
- display
Name String - A filter to return only resources that match the entire display name given.
- filters
List<Get
Host Scan Recipes Filter> - state String
- A filter to return only resources whose lifecycleState matches the given lifecycleState.
- compartment
Id string - The ID of the compartment in which to list resources.
- display
Name string - A filter to return only resources that match the entire display name given.
- filters
Get
Host Scan Recipes Filter[] - state string
- A filter to return only resources whose lifecycleState matches the given lifecycleState.
- compartment_
id 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
Sequence[Get
Host Scan Recipes Filter] - state str
- A filter to return only resources whose lifecycleState matches the given lifecycleState.
- compartment
Id String - The ID of the compartment in which to list resources.
- display
Name String - A filter to return only resources that match the entire display name given.
- filters 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:
- Compartment
Id string - Compartment ID of the scan recipe
- Host
Scan List<GetRecipe Summary Collections Host Scan Recipes Host Scan Recipe Summary Collection> - The list of host_scan_recipe_summary_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- Display
Name string - Recipe identifier, which can be renamed
- Filters
List<Get
Host Scan Recipes Filter> - State string
- The current state of the config.
- Compartment
Id string - Compartment ID of the scan recipe
- Host
Scan []GetRecipe Summary Collections Host Scan Recipes Host Scan Recipe Summary Collection - The list of host_scan_recipe_summary_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- Display
Name string - Recipe identifier, which can be renamed
- Filters
[]Get
Host Scan Recipes Filter - State string
- The current state of the config.
- compartment
Id String - Compartment ID of the scan recipe
- host
Scan List<GetRecipe Summary Collections Host Scan Recipes Host Scan Recipe Summary Collection> - The list of host_scan_recipe_summary_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- display
Name String - Recipe identifier, which can be renamed
- filters
List<Get
Host Scan Recipes Filter> - state String
- The current state of the config.
- compartment
Id string - Compartment ID of the scan recipe
- host
Scan GetRecipe Summary Collections Host Scan Recipes Host Scan Recipe Summary Collection[] - The list of host_scan_recipe_summary_collection.
- id string
- The provider-assigned unique ID for this managed resource.
- display
Name string - Recipe identifier, which can be renamed
- filters
Get
Host Scan Recipes Filter[] - state string
- The current state of the config.
- compartment_
id str - Compartment ID of the scan recipe
- host_
scan_ Sequence[Getrecipe_ summary_ collections Host Scan Recipes Host Scan Recipe Summary Collection] - 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[Get
Host Scan Recipes Filter] - state str
- The current state of the config.
- compartment
Id String - Compartment ID of the scan recipe
- host
Scan List<Property Map>Recipe Summary Collections - The list of host_scan_recipe_summary_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- display
Name String - Recipe identifier, which can be renamed
- filters List<Property Map>
- state String
- The current state of the config.
Supporting Types
GetHostScanRecipesFilter
GetHostScanRecipesHostScanRecipeSummaryCollection
GetHostScanRecipesHostScanRecipeSummaryCollectionItem
- Agent
Settings List<GetHost Scan Recipes Host Scan Recipe Summary Collection Item Agent Setting> - Agent scan settings for a host scan
- Application
Settings List<GetHost Scan Recipes Host Scan Recipe Summary Collection Item Application Setting> - Agent scan settings for an application scan (as a part of a host scan)
- Compartment
Id string - The ID of the compartment in which to list resources.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - Display
Name string - A filter to return only resources that match the entire display name given.
- 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 string
- Unique identifier of the config that is immutable on creation
- Port
Settings List<GetHost Scan Recipes Host Scan Recipe Summary Collection Item Port Setting> - Port scan settings for a host scan
- Schedules
List<Get
Host Scan Recipes Host Scan Recipe Summary Collection Item Schedule> - A scanning schedule
- State string
- A filter to return only resources whose lifecycleState matches the given lifecycleState.
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - Date and time the recipe was created, format as described in RFC 3339
- Time
Updated string - Date and time the recipe was last updated, format as described in RFC 3339
- Agent
Settings []GetHost Scan Recipes Host Scan Recipe Summary Collection Item Agent Setting - Agent scan settings for a host scan
- Application
Settings []GetHost Scan Recipes Host Scan Recipe Summary Collection Item Application Setting - Agent scan settings for an application scan (as a part of a host scan)
- Compartment
Id string - The ID of the compartment in which to list resources.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - Display
Name string - A filter to return only resources that match the entire display name given.
- 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 string
- Unique identifier of the config that is immutable on creation
- Port
Settings []GetHost Scan Recipes Host Scan Recipe Summary Collection Item Port Setting - Port scan settings for a host scan
- Schedules
[]Get
Host Scan Recipes Host Scan Recipe Summary Collection Item Schedule - A scanning schedule
- State string
- A filter to return only resources whose lifecycleState matches the given lifecycleState.
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - Date and time the recipe was created, format as described in RFC 3339
- Time
Updated string - Date and time the recipe was last updated, format as described in RFC 3339
- agent
Settings List<GetHost Scan Recipes Host Scan Recipe Summary Collection Item Agent Setting> - Agent scan settings for a host scan
- application
Settings List<GetHost Scan Recipes Host Scan Recipe Summary Collection Item Application Setting> - Agent scan settings for an application scan (as a part of a host scan)
- compartment
Id String - The ID of the compartment in which to list resources.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - display
Name String - A filter to return only resources that match the entire display name given.
- 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 String
- Unique identifier of the config that is immutable on creation
- port
Settings List<GetHost Scan Recipes Host Scan Recipe Summary Collection Item Port Setting> - Port scan settings for a host scan
- schedules
List<Get
Host Scan Recipes Host Scan Recipe Summary Collection Item Schedule> - A scanning schedule
- state String
- A filter to return only resources whose lifecycleState matches the given lifecycleState.
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - Date and time the recipe was created, format as described in RFC 3339
- time
Updated String - Date and time the recipe was last updated, format as described in RFC 3339
- agent
Settings GetHost Scan Recipes Host Scan Recipe Summary Collection Item Agent Setting[] - Agent scan settings for a host scan
- application
Settings GetHost Scan Recipes Host Scan Recipe Summary Collection Item Application Setting[] - Agent scan settings for an application scan (as a part of a host scan)
- compartment
Id string - The ID of the compartment in which to list resources.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - display
Name string - A filter to return only resources that match the entire display name given.
- {[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 string
- Unique identifier of the config that is immutable on creation
- port
Settings GetHost Scan Recipes Host Scan Recipe Summary Collection Item Port Setting[] - Port scan settings for a host scan
- schedules
Get
Host Scan Recipes Host Scan Recipe Summary Collection Item Schedule[] - A scanning schedule
- state string
- A filter to return only resources whose lifecycleState matches the given lifecycleState.
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created string - Date and time the recipe was created, format as described in RFC 3339
- time
Updated string - Date and time the recipe was last updated, format as described in RFC 3339
- agent_
settings Sequence[GetHost Scan Recipes Host Scan Recipe Summary Collection Item Agent Setting] - Agent scan settings for a host scan
- application_
settings Sequence[GetHost Scan Recipes Host Scan Recipe Summary Collection Item Application Setting] - Agent scan settings for an application scan (as a part of a host scan)
- compartment_
id str - The ID of the compartment in which to list resources.
- 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 str - A filter to return only resources that match the entire display name given.
- 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 str
- Unique identifier of the config that is immutable on creation
- port_
settings Sequence[GetHost Scan Recipes Host Scan Recipe Summary Collection Item Port Setting] - Port scan settings for a host scan
- schedules
Sequence[Get
Host Scan Recipes Host Scan Recipe Summary Collection Item Schedule] - A scanning schedule
- state str
- A filter to return only resources whose lifecycleState matches the given lifecycleState.
- Mapping[str, str]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - time_
created str - Date and time the recipe was created, format as described in RFC 3339
- time_
updated str - Date and time the recipe was last updated, format as described in RFC 3339
- agent
Settings List<Property Map> - Agent scan settings for a host scan
- application
Settings List<Property Map> - Agent scan settings for an application scan (as a part of a host scan)
- compartment
Id String - The ID of the compartment in which to list resources.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - display
Name String - A filter to return only resources that match the entire display name given.
- 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 String
- Unique identifier of the config that is immutable on creation
- port
Settings List<Property Map> - Port scan settings for a host scan
- schedules List<Property Map>
- A scanning schedule
- state String
- A filter to return only resources whose lifecycleState matches the given lifecycleState.
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - Date and time the recipe was created, format as described in RFC 3339
- time
Updated String - Date and time the recipe was last updated, format as described in RFC 3339
GetHostScanRecipesHostScanRecipeSummaryCollectionItemAgentSetting
- Agent
Configurations List<GetHost Scan Recipes Host Scan Recipe Summary Collection Item Agent Setting Agent Configuration> - Agent configuration for host scan agent settings. This model is polymorphic, presenting different configuration options based on selected agent vendor.
- Scan
Level string - The scan level
- Agent
Configurations []GetHost Scan Recipes Host Scan Recipe Summary Collection Item Agent Setting Agent Configuration - Agent configuration for host scan agent settings. This model is polymorphic, presenting different configuration options based on selected agent vendor.
- Scan
Level string - The scan level
- agent
Configurations List<GetHost Scan Recipes Host Scan Recipe Summary Collection Item Agent Setting Agent Configuration> - Agent configuration for host scan agent settings. This model is polymorphic, presenting different configuration options based on selected agent vendor.
- scan
Level String - The scan level
- agent
Configurations GetHost Scan Recipes Host Scan Recipe Summary Collection Item Agent Setting Agent Configuration[] - Agent configuration for host scan agent settings. This model is polymorphic, presenting different configuration options based on selected agent vendor.
- scan
Level string - The scan level
- agent_
configurations Sequence[GetHost Scan Recipes Host Scan Recipe Summary Collection Item Agent Setting Agent Configuration] - Agent configuration for host scan agent settings. This model is polymorphic, presenting different configuration options based on selected agent vendor.
- scan_
level str - The scan level
- agent
Configurations List<Property Map> - Agent configuration for host scan agent settings. This model is polymorphic, presenting different configuration options based on selected agent vendor.
- scan
Level String - The scan level
GetHostScanRecipesHostScanRecipeSummaryCollectionItemAgentSettingAgentConfiguration
- Cis
Benchmark List<GetSettings Host Scan Recipes Host Scan Recipe Summary Collection Item Agent Setting Agent Configuration Cis Benchmark Setting> - CIS (Center for Internet Security) Benchmark scan settings for a host scan
- Endpoint
Protection List<GetSettings Host Scan Recipes Host Scan Recipe Summary Collection Item Agent Setting Agent Configuration Endpoint Protection Setting> - Endpoint Protection scan settings for a host scan
- Should
Un boolInstall - Boolean flag letting agent know if it should un-install the Qualys agent when it is stopped.
- Vault
Secret stringId - 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 string
- Vendor to use for the host scan agent.
- Vendor
Type string - Vendor to use for the host scan agent.
- Cis
Benchmark []GetSettings Host Scan Recipes Host Scan Recipe Summary Collection Item Agent Setting Agent Configuration Cis Benchmark Setting - CIS (Center for Internet Security) Benchmark scan settings for a host scan
- Endpoint
Protection []GetSettings Host Scan Recipes Host Scan Recipe Summary Collection Item Agent Setting Agent Configuration Endpoint Protection Setting - Endpoint Protection scan settings for a host scan
- Should
Un boolInstall - Boolean flag letting agent know if it should un-install the Qualys agent when it is stopped.
- Vault
Secret stringId - 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 string
- Vendor to use for the host scan agent.
- Vendor
Type string - Vendor to use for the host scan agent.
- cis
Benchmark List<GetSettings Host Scan Recipes Host Scan Recipe Summary Collection Item Agent Setting Agent Configuration Cis Benchmark Setting> - CIS (Center for Internet Security) Benchmark scan settings for a host scan
- endpoint
Protection List<GetSettings Host Scan Recipes Host Scan Recipe Summary Collection Item Agent Setting Agent Configuration Endpoint Protection Setting> - Endpoint Protection scan settings for a host scan
- should
Un BooleanInstall - Boolean flag letting agent know if it should un-install the Qualys agent when it is stopped.
- vault
Secret StringId - 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 String
- Vendor to use for the host scan agent.
- vendor
Type String - Vendor to use for the host scan agent.
- cis
Benchmark GetSettings Host Scan Recipes Host Scan Recipe Summary Collection Item Agent Setting Agent Configuration Cis Benchmark Setting[] - CIS (Center for Internet Security) Benchmark scan settings for a host scan
- endpoint
Protection GetSettings Host Scan Recipes Host Scan Recipe Summary Collection Item Agent Setting Agent Configuration Endpoint Protection Setting[] - Endpoint Protection scan settings for a host scan
- should
Un booleanInstall - Boolean flag letting agent know if it should un-install the Qualys agent when it is stopped.
- vault
Secret stringId - 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 string
- Vendor to use for the host scan agent.
- vendor
Type string - Vendor to use for the host scan agent.
- cis_
benchmark_ Sequence[Getsettings Host Scan Recipes Host Scan Recipe Summary Collection Item Agent Setting Agent Configuration Cis Benchmark Setting] - CIS (Center for Internet Security) Benchmark scan settings for a host scan
- endpoint_
protection_ Sequence[Getsettings Host Scan Recipes Host Scan Recipe Summary Collection Item Agent Setting Agent Configuration Endpoint Protection Setting] - Endpoint Protection scan settings for a host scan
- should_
un_ boolinstall - Boolean flag letting agent know if it should un-install the Qualys agent when it is stopped.
- vault_
secret_ strid - 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 str
- Vendor to use for the host scan agent.
- vendor_
type str - Vendor to use for the host scan agent.
- cis
Benchmark List<Property Map>Settings - CIS (Center for Internet Security) Benchmark scan settings for a host scan
- endpoint
Protection List<Property Map>Settings - Endpoint Protection scan settings for a host scan
- should
Un BooleanInstall - Boolean flag letting agent know if it should un-install the Qualys agent when it is stopped.
- vault
Secret StringId - 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 String
- Vendor to use for the host scan agent.
- vendor
Type String - Vendor to use for the host scan agent.
GetHostScanRecipesHostScanRecipeSummaryCollectionItemAgentSettingAgentConfigurationCisBenchmarkSetting
- Scan
Level string - The scan level
- Scan
Level string - The scan level
- scan
Level String - The scan level
- scan
Level string - The scan level
- scan_
level str - The scan level
- scan
Level String - The scan level
GetHostScanRecipesHostScanRecipeSummaryCollectionItemAgentSettingAgentConfigurationEndpointProtectionSetting
- Scan
Level string - The scan level
- Scan
Level string - The scan level
- scan
Level String - The scan level
- scan
Level string - The scan level
- scan_
level str - The scan level
- scan
Level String - The scan level
GetHostScanRecipesHostScanRecipeSummaryCollectionItemApplicationSetting
- Application
Scan stringRecurrence - 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 List<GetScans Host Scan Recipes Host Scan Recipe Summary Collection Item Application Setting Folders To Scan> - List of folders selected for scanning
- Is
Enabled bool - Enable or disable application scan
- Application
Scan stringRecurrence - 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 []GetScans Host Scan Recipes Host Scan Recipe Summary Collection Item Application Setting Folders To Scan - List of folders selected for scanning
- Is
Enabled bool - Enable or disable application scan
- application
Scan StringRecurrence - 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 List<GetScans Host Scan Recipes Host Scan Recipe Summary Collection Item Application Setting Folders To Scan> - List of folders selected for scanning
- is
Enabled Boolean - Enable or disable application scan
- application
Scan stringRecurrence - 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 GetScans Host Scan Recipes Host Scan Recipe Summary Collection Item Application Setting Folders To Scan[] - List of folders selected for scanning
- is
Enabled boolean - Enable or disable application scan
- application_
scan_ strrecurrence - 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_ Sequence[Getscans Host Scan Recipes Host Scan Recipe Summary Collection Item Application Setting Folders To Scan] - List of folders selected for scanning
- is_
enabled bool - Enable or disable application scan
- application
Scan StringRecurrence - 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 List<Property Map>Scans - List of folders selected for scanning
- is
Enabled Boolean - Enable or disable application scan
GetHostScanRecipesHostScanRecipeSummaryCollectionItemApplicationSettingFoldersToScan
- Folder string
- Folder to be scanned in the corresponding operating system
- Operatingsystem string
- Operating system type
- Folder string
- Folder to be scanned in the corresponding operating system
- Operatingsystem string
- Operating system type
- folder String
- Folder to be scanned in the corresponding operating system
- operatingsystem String
- Operating system type
- folder string
- Folder to be scanned in the corresponding operating system
- operatingsystem string
- Operating system type
- folder str
- Folder to be scanned in the corresponding operating system
- operatingsystem str
- Operating system type
- folder String
- Folder to be scanned in the corresponding operating system
- operatingsystem String
- Operating system type
GetHostScanRecipesHostScanRecipeSummaryCollectionItemPortSetting
- Scan
Level string - The scan level
- Scan
Level string - The scan level
- scan
Level String - The scan level
- scan
Level string - The scan level
- scan_
level str - The scan level
- scan
Level String - The scan level
GetHostScanRecipesHostScanRecipeSummaryCollectionItemSchedule
- day_
of_ strweek - Day of week the scheduled scan occurs (not applicable for DAILY type)
- type str
- How often the scan occurs
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ociTerraform Provider.
