import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Container Scan Targets in Oracle Cloud Infrastructure Vulnerability Scanning service. * * Retrieves a list of ContainerScanTargetSummary objects in a compartment. A container scan target specifies a group of one or more Docker image repositories in Oracle Cloud Infrastructure Registry (OCIR) that you want routinely scanned for security vulnerabilities. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testContainerScanTargets = oci.vulnerabilityscanning.getContainerScanTargets({ * compartmentId: compartmentId, * displayName: containerScanTargetDisplayName, * state: containerScanTargetState, * }); * ``` */ export declare function getContainerScanTargets(args: GetContainerScanTargetsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getContainerScanTargets. */ export interface GetContainerScanTargetsArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: string; /** * A filter to return only resources that match the entire display name given. */ displayName?: string; filters?: inputs.VulnerabilityScanning.GetContainerScanTargetsFilter[]; /** * A filter to return only resources whose lifecycleState matches the given lifecycleState. */ state?: string; } /** * A collection of values returned by getContainerScanTargets. */ export interface GetContainerScanTargetsResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to perform the scans in. All listed repositories must be in the compartment. */ readonly compartmentId: string; /** * The list of container_scan_target_summary_collection. */ readonly containerScanTargetSummaryCollections: outputs.VulnerabilityScanning.GetContainerScanTargetsContainerScanTargetSummaryCollection[]; /** * User friendly name of container scan target */ readonly displayName?: string; readonly filters?: outputs.VulnerabilityScanning.GetContainerScanTargetsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The current state of the config. */ readonly state?: string; } /** * This data source provides the list of Container Scan Targets in Oracle Cloud Infrastructure Vulnerability Scanning service. * * Retrieves a list of ContainerScanTargetSummary objects in a compartment. A container scan target specifies a group of one or more Docker image repositories in Oracle Cloud Infrastructure Registry (OCIR) that you want routinely scanned for security vulnerabilities. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testContainerScanTargets = oci.vulnerabilityscanning.getContainerScanTargets({ * compartmentId: compartmentId, * displayName: containerScanTargetDisplayName, * state: containerScanTargetState, * }); * ``` */ export declare function getContainerScanTargetsOutput(args: GetContainerScanTargetsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getContainerScanTargets. */ export interface GetContainerScanTargetsOutputArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: pulumi.Input; /** * A filter to return only resources that match the entire display name given. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return only resources whose lifecycleState matches the given lifecycleState. */ state?: pulumi.Input; } //# sourceMappingURL=getContainerScanTargets.d.ts.map