1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. VulnerabilityScanning
  5. ContainerScanTarget
Oracle Cloud Infrastructure v1.33.0 published on Thursday, Apr 25, 2024 by Pulumi

oci.VulnerabilityScanning.ContainerScanTarget

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.33.0 published on Thursday, Apr 25, 2024 by Pulumi

    This resource provides the Container Scan Target resource in Oracle Cloud Infrastructure Vulnerability Scanning service.

    Creates a new ContainerScanTarget. 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

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testContainerScanTarget = new oci.vulnerabilityscanning.ContainerScanTarget("test_container_scan_target", {
        compartmentId: compartmentId,
        containerScanRecipeId: testContainerScanRecipe.id,
        targetRegistry: {
            compartmentId: compartmentId,
            type: containerScanTargetTargetRegistryType,
            repositories: containerScanTargetTargetRegistryRepositories,
            url: containerScanTargetTargetRegistryUrl,
        },
        definedTags: {
            "foo-namespace.bar-key": "value",
        },
        description: containerScanTargetDescription,
        displayName: containerScanTargetDisplayName,
        freeformTags: {
            "bar-key": "value",
        },
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_container_scan_target = oci.vulnerability_scanning.ContainerScanTarget("test_container_scan_target",
        compartment_id=compartment_id,
        container_scan_recipe_id=test_container_scan_recipe["id"],
        target_registry=oci.vulnerability_scanning.ContainerScanTargetTargetRegistryArgs(
            compartment_id=compartment_id,
            type=container_scan_target_target_registry_type,
            repositories=container_scan_target_target_registry_repositories,
            url=container_scan_target_target_registry_url,
        ),
        defined_tags={
            "foo-namespace.bar-key": "value",
        },
        description=container_scan_target_description,
        display_name=container_scan_target_display_name,
        freeform_tags={
            "bar-key": "value",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/VulnerabilityScanning"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := VulnerabilityScanning.NewContainerScanTarget(ctx, "test_container_scan_target", &VulnerabilityScanning.ContainerScanTargetArgs{
    			CompartmentId:         pulumi.Any(compartmentId),
    			ContainerScanRecipeId: pulumi.Any(testContainerScanRecipe.Id),
    			TargetRegistry: &vulnerabilityscanning.ContainerScanTargetTargetRegistryArgs{
    				CompartmentId: pulumi.Any(compartmentId),
    				Type:          pulumi.Any(containerScanTargetTargetRegistryType),
    				Repositories:  pulumi.Any(containerScanTargetTargetRegistryRepositories),
    				Url:           pulumi.Any(containerScanTargetTargetRegistryUrl),
    			},
    			DefinedTags: pulumi.Map{
    				"foo-namespace.bar-key": pulumi.Any("value"),
    			},
    			Description: pulumi.Any(containerScanTargetDescription),
    			DisplayName: pulumi.Any(containerScanTargetDisplayName),
    			FreeformTags: pulumi.Map{
    				"bar-key": pulumi.Any("value"),
    			},
    		})
    		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 testContainerScanTarget = new Oci.VulnerabilityScanning.ContainerScanTarget("test_container_scan_target", new()
        {
            CompartmentId = compartmentId,
            ContainerScanRecipeId = testContainerScanRecipe.Id,
            TargetRegistry = new Oci.VulnerabilityScanning.Inputs.ContainerScanTargetTargetRegistryArgs
            {
                CompartmentId = compartmentId,
                Type = containerScanTargetTargetRegistryType,
                Repositories = containerScanTargetTargetRegistryRepositories,
                Url = containerScanTargetTargetRegistryUrl,
            },
            DefinedTags = 
            {
                { "foo-namespace.bar-key", "value" },
            },
            Description = containerScanTargetDescription,
            DisplayName = containerScanTargetDisplayName,
            FreeformTags = 
            {
                { "bar-key", "value" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.VulnerabilityScanning.ContainerScanTarget;
    import com.pulumi.oci.VulnerabilityScanning.ContainerScanTargetArgs;
    import com.pulumi.oci.VulnerabilityScanning.inputs.ContainerScanTargetTargetRegistryArgs;
    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) {
            var testContainerScanTarget = new ContainerScanTarget("testContainerScanTarget", ContainerScanTargetArgs.builder()        
                .compartmentId(compartmentId)
                .containerScanRecipeId(testContainerScanRecipe.id())
                .targetRegistry(ContainerScanTargetTargetRegistryArgs.builder()
                    .compartmentId(compartmentId)
                    .type(containerScanTargetTargetRegistryType)
                    .repositories(containerScanTargetTargetRegistryRepositories)
                    .url(containerScanTargetTargetRegistryUrl)
                    .build())
                .definedTags(Map.of("foo-namespace.bar-key", "value"))
                .description(containerScanTargetDescription)
                .displayName(containerScanTargetDisplayName)
                .freeformTags(Map.of("bar-key", "value"))
                .build());
    
        }
    }
    
    resources:
      testContainerScanTarget:
        type: oci:VulnerabilityScanning:ContainerScanTarget
        name: test_container_scan_target
        properties:
          compartmentId: ${compartmentId}
          containerScanRecipeId: ${testContainerScanRecipe.id}
          targetRegistry:
            compartmentId: ${compartmentId}
            type: ${containerScanTargetTargetRegistryType}
            repositories: ${containerScanTargetTargetRegistryRepositories}
            url: ${containerScanTargetTargetRegistryUrl}
          definedTags:
            foo-namespace.bar-key: value
          description: ${containerScanTargetDescription}
          displayName: ${containerScanTargetDisplayName}
          freeformTags:
            bar-key: value
    

    Create ContainerScanTarget Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ContainerScanTarget(name: string, args: ContainerScanTargetArgs, opts?: CustomResourceOptions);
    @overload
    def ContainerScanTarget(resource_name: str,
                            args: ContainerScanTargetArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def ContainerScanTarget(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            compartment_id: Optional[str] = None,
                            container_scan_recipe_id: Optional[str] = None,
                            target_registry: Optional[_vulnerabilityscanning.ContainerScanTargetTargetRegistryArgs] = None,
                            defined_tags: Optional[Mapping[str, Any]] = None,
                            description: Optional[str] = None,
                            display_name: Optional[str] = None,
                            freeform_tags: Optional[Mapping[str, Any]] = None)
    func NewContainerScanTarget(ctx *Context, name string, args ContainerScanTargetArgs, opts ...ResourceOption) (*ContainerScanTarget, error)
    public ContainerScanTarget(string name, ContainerScanTargetArgs args, CustomResourceOptions? opts = null)
    public ContainerScanTarget(String name, ContainerScanTargetArgs args)
    public ContainerScanTarget(String name, ContainerScanTargetArgs args, CustomResourceOptions options)
    
    type: oci:VulnerabilityScanning:ContainerScanTarget
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ContainerScanTargetArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ContainerScanTargetArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ContainerScanTargetArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ContainerScanTargetArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ContainerScanTargetArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var containerScanTargetResource = new Oci.VulnerabilityScanning.ContainerScanTarget("containerScanTargetResource", new()
    {
        CompartmentId = "string",
        ContainerScanRecipeId = "string",
        TargetRegistry = new Oci.VulnerabilityScanning.Inputs.ContainerScanTargetTargetRegistryArgs
        {
            CompartmentId = "string",
            Type = "string",
            Repositories = new[]
            {
                "string",
            },
            Url = "string",
        },
        DefinedTags = 
        {
            { "string", "any" },
        },
        Description = "string",
        DisplayName = "string",
        FreeformTags = 
        {
            { "string", "any" },
        },
    });
    
    example, err := VulnerabilityScanning.NewContainerScanTarget(ctx, "containerScanTargetResource", &VulnerabilityScanning.ContainerScanTargetArgs{
    	CompartmentId:         pulumi.String("string"),
    	ContainerScanRecipeId: pulumi.String("string"),
    	TargetRegistry: &vulnerabilityscanning.ContainerScanTargetTargetRegistryArgs{
    		CompartmentId: pulumi.String("string"),
    		Type:          pulumi.String("string"),
    		Repositories: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		Url: pulumi.String("string"),
    	},
    	DefinedTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	Description: pulumi.String("string"),
    	DisplayName: pulumi.String("string"),
    	FreeformTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    })
    
    var containerScanTargetResource = new ContainerScanTarget("containerScanTargetResource", ContainerScanTargetArgs.builder()        
        .compartmentId("string")
        .containerScanRecipeId("string")
        .targetRegistry(ContainerScanTargetTargetRegistryArgs.builder()
            .compartmentId("string")
            .type("string")
            .repositories("string")
            .url("string")
            .build())
        .definedTags(Map.of("string", "any"))
        .description("string")
        .displayName("string")
        .freeformTags(Map.of("string", "any"))
        .build());
    
    container_scan_target_resource = oci.vulnerability_scanning.ContainerScanTarget("containerScanTargetResource",
        compartment_id="string",
        container_scan_recipe_id="string",
        target_registry=oci.vulnerability_scanning.ContainerScanTargetTargetRegistryArgs(
            compartment_id="string",
            type="string",
            repositories=["string"],
            url="string",
        ),
        defined_tags={
            "string": "any",
        },
        description="string",
        display_name="string",
        freeform_tags={
            "string": "any",
        })
    
    const containerScanTargetResource = new oci.vulnerabilityscanning.ContainerScanTarget("containerScanTargetResource", {
        compartmentId: "string",
        containerScanRecipeId: "string",
        targetRegistry: {
            compartmentId: "string",
            type: "string",
            repositories: ["string"],
            url: "string",
        },
        definedTags: {
            string: "any",
        },
        description: "string",
        displayName: "string",
        freeformTags: {
            string: "any",
        },
    });
    
    type: oci:VulnerabilityScanning:ContainerScanTarget
    properties:
        compartmentId: string
        containerScanRecipeId: string
        definedTags:
            string: any
        description: string
        displayName: string
        freeformTags:
            string: any
        targetRegistry:
            compartmentId: string
            repositories:
                - string
            type: string
            url: string
    

    ContainerScanTarget Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The ContainerScanTarget resource accepts the following input properties:

    CompartmentId string
    (Updatable) The OCID of the compartment to perform the scans in. All listed repositories must be in the compartment.
    ContainerScanRecipeId string
    (Updatable) ID of the container scan recipe this target applies.
    TargetRegistry ContainerScanTargetTargetRegistry
    (Updatable) Registry information for a container scan target
    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string
    (Updatable) Target description.
    DisplayName string
    (Updatable) User friendly name of container scan target. If not present, will be auto-generated.
    FreeformTags Dictionary<string, object>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    CompartmentId string
    (Updatable) The OCID of the compartment to perform the scans in. All listed repositories must be in the compartment.
    ContainerScanRecipeId string
    (Updatable) ID of the container scan recipe this target applies.
    TargetRegistry ContainerScanTargetTargetRegistryArgs
    (Updatable) Registry information for a container scan target
    DefinedTags map[string]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string
    (Updatable) Target description.
    DisplayName string
    (Updatable) User friendly name of container scan target. If not present, will be auto-generated.
    FreeformTags map[string]interface{}
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    compartmentId String
    (Updatable) The OCID of the compartment to perform the scans in. All listed repositories must be in the compartment.
    containerScanRecipeId String
    (Updatable) ID of the container scan recipe this target applies.
    targetRegistry ContainerScanTargetTargetRegistry
    (Updatable) Registry information for a container scan target
    definedTags Map<String,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String
    (Updatable) Target description.
    displayName String
    (Updatable) User friendly name of container scan target. If not present, will be auto-generated.
    freeformTags Map<String,Object>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    compartmentId string
    (Updatable) The OCID of the compartment to perform the scans in. All listed repositories must be in the compartment.
    containerScanRecipeId string
    (Updatable) ID of the container scan recipe this target applies.
    targetRegistry ContainerScanTargetTargetRegistry
    (Updatable) Registry information for a container scan target
    definedTags {[key: string]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description string
    (Updatable) Target description.
    displayName string
    (Updatable) User friendly name of container scan target. If not present, will be auto-generated.
    freeformTags {[key: string]: any}
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    compartment_id str
    (Updatable) The OCID of the compartment to perform the scans in. All listed repositories must be in the compartment.
    container_scan_recipe_id str
    (Updatable) ID of the container scan recipe this target applies.
    target_registry vulnerabilityscanning.ContainerScanTargetTargetRegistryArgs
    (Updatable) Registry information for a container scan target
    defined_tags Mapping[str, Any]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description str
    (Updatable) Target description.
    display_name str
    (Updatable) User friendly name of container scan target. If not present, will be auto-generated.
    freeform_tags Mapping[str, Any]
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    compartmentId String
    (Updatable) The OCID of the compartment to perform the scans in. All listed repositories must be in the compartment.
    containerScanRecipeId String
    (Updatable) ID of the container scan recipe this target applies.
    targetRegistry Property Map
    (Updatable) Registry information for a container scan target
    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String
    (Updatable) Target description.
    displayName String
    (Updatable) User friendly name of container scan target. If not present, will be auto-generated.
    freeformTags Map<Any>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ContainerScanTarget resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    State string
    The current state of the config.
    SystemTags Dictionary<string, object>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    Date and time the target was created, format as described in RFC 3339
    TimeUpdated string
    Date and time the target was last updated, format as described in RFC 3339
    Id string
    The provider-assigned unique ID for this managed resource.
    State string
    The current state of the config.
    SystemTags map[string]interface{}
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    Date and time the target was created, format as described in RFC 3339
    TimeUpdated string
    Date and time the target was last updated, format as described in RFC 3339
    id String
    The provider-assigned unique ID for this managed resource.
    state String
    The current state of the config.
    systemTags Map<String,Object>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    Date and time the target was created, format as described in RFC 3339
    timeUpdated String
    Date and time the target was last updated, format as described in RFC 3339
    id string
    The provider-assigned unique ID for this managed resource.
    state string
    The current state of the config.
    systemTags {[key: string]: any}
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    Date and time the target was created, format as described in RFC 3339
    timeUpdated string
    Date and time the target was last updated, format as described in RFC 3339
    id str
    The provider-assigned unique ID for this managed resource.
    state str
    The current state of the config.
    system_tags Mapping[str, Any]
    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 target was created, format as described in RFC 3339
    time_updated str
    Date and time the target was last updated, format as described in RFC 3339
    id String
    The provider-assigned unique ID for this managed resource.
    state String
    The current state of the config.
    systemTags Map<Any>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    Date and time the target was created, format as described in RFC 3339
    timeUpdated String
    Date and time the target was last updated, format as described in RFC 3339

    Look up Existing ContainerScanTarget Resource

    Get an existing ContainerScanTarget resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ContainerScanTargetState, opts?: CustomResourceOptions): ContainerScanTarget
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            compartment_id: Optional[str] = None,
            container_scan_recipe_id: Optional[str] = None,
            defined_tags: Optional[Mapping[str, Any]] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, Any]] = None,
            state: Optional[str] = None,
            system_tags: Optional[Mapping[str, Any]] = None,
            target_registry: Optional[_vulnerabilityscanning.ContainerScanTargetTargetRegistryArgs] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None) -> ContainerScanTarget
    func GetContainerScanTarget(ctx *Context, name string, id IDInput, state *ContainerScanTargetState, opts ...ResourceOption) (*ContainerScanTarget, error)
    public static ContainerScanTarget Get(string name, Input<string> id, ContainerScanTargetState? state, CustomResourceOptions? opts = null)
    public static ContainerScanTarget get(String name, Output<String> id, ContainerScanTargetState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CompartmentId string
    (Updatable) The OCID of the compartment to perform the scans in. All listed repositories must be in the compartment.
    ContainerScanRecipeId string
    (Updatable) ID of the container scan recipe this target applies.
    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string
    (Updatable) Target description.
    DisplayName string
    (Updatable) User friendly name of container scan target. If not present, will be auto-generated.
    FreeformTags Dictionary<string, object>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    State string
    The current state of the config.
    SystemTags Dictionary<string, object>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TargetRegistry ContainerScanTargetTargetRegistry
    (Updatable) Registry information for a container scan target
    TimeCreated string
    Date and time the target was created, format as described in RFC 3339
    TimeUpdated string
    Date and time the target was last updated, format as described in RFC 3339
    CompartmentId string
    (Updatable) The OCID of the compartment to perform the scans in. All listed repositories must be in the compartment.
    ContainerScanRecipeId string
    (Updatable) ID of the container scan recipe this target applies.
    DefinedTags map[string]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string
    (Updatable) Target description.
    DisplayName string
    (Updatable) User friendly name of container scan target. If not present, will be auto-generated.
    FreeformTags map[string]interface{}
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    State string
    The current state of the config.
    SystemTags map[string]interface{}
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TargetRegistry ContainerScanTargetTargetRegistryArgs
    (Updatable) Registry information for a container scan target
    TimeCreated string
    Date and time the target was created, format as described in RFC 3339
    TimeUpdated string
    Date and time the target was last updated, format as described in RFC 3339
    compartmentId String
    (Updatable) The OCID of the compartment to perform the scans in. All listed repositories must be in the compartment.
    containerScanRecipeId String
    (Updatable) ID of the container scan recipe this target applies.
    definedTags Map<String,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String
    (Updatable) Target description.
    displayName String
    (Updatable) User friendly name of container scan target. If not present, will be auto-generated.
    freeformTags Map<String,Object>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    state String
    The current state of the config.
    systemTags Map<String,Object>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    targetRegistry ContainerScanTargetTargetRegistry
    (Updatable) Registry information for a container scan target
    timeCreated String
    Date and time the target was created, format as described in RFC 3339
    timeUpdated String
    Date and time the target was last updated, format as described in RFC 3339
    compartmentId string
    (Updatable) The OCID of the compartment to perform the scans in. All listed repositories must be in the compartment.
    containerScanRecipeId string
    (Updatable) ID of the container scan recipe this target applies.
    definedTags {[key: string]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description string
    (Updatable) Target description.
    displayName string
    (Updatable) User friendly name of container scan target. If not present, will be auto-generated.
    freeformTags {[key: string]: any}
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    state string
    The current state of the config.
    systemTags {[key: string]: any}
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    targetRegistry ContainerScanTargetTargetRegistry
    (Updatable) Registry information for a container scan target
    timeCreated string
    Date and time the target was created, format as described in RFC 3339
    timeUpdated string
    Date and time the target was last updated, format as described in RFC 3339
    compartment_id str
    (Updatable) The OCID of the compartment to perform the scans in. All listed repositories must be in the compartment.
    container_scan_recipe_id str
    (Updatable) ID of the container scan recipe this target applies.
    defined_tags Mapping[str, Any]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description str
    (Updatable) Target description.
    display_name str
    (Updatable) User friendly name of container scan target. If not present, will be auto-generated.
    freeform_tags Mapping[str, Any]
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    state str
    The current state of the config.
    system_tags Mapping[str, Any]
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    target_registry vulnerabilityscanning.ContainerScanTargetTargetRegistryArgs
    (Updatable) Registry information for a container scan target
    time_created str
    Date and time the target was created, format as described in RFC 3339
    time_updated str
    Date and time the target was last updated, format as described in RFC 3339
    compartmentId String
    (Updatable) The OCID of the compartment to perform the scans in. All listed repositories must be in the compartment.
    containerScanRecipeId String
    (Updatable) ID of the container scan recipe this target applies.
    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String
    (Updatable) Target description.
    displayName String
    (Updatable) User friendly name of container scan target. If not present, will be auto-generated.
    freeformTags Map<Any>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    state String
    The current state of the config.
    systemTags Map<Any>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    targetRegistry Property Map
    (Updatable) Registry information for a container scan target
    timeCreated String
    Date and time the target was created, format as described in RFC 3339
    timeUpdated String
    Date and time the target was last updated, format as described in RFC 3339

    Supporting Types

    ContainerScanTargetTargetRegistry, ContainerScanTargetTargetRegistryArgs

    CompartmentId string
    (Updatable) The OCID of the compartment to perform the scans in. All listed repositories must be in the compartment.
    Type string
    (Updatable) The scan level
    Repositories List<string>
    (Updatable) List of repositories to scan images in. If left empty, the target defaults to scanning all repos in the compartmentId
    Url string

    (Updatable) URL of the registry. Required for non-OCIR registry types (for OCIR registry types, it can be inferred from the tenancy).

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    CompartmentId string
    (Updatable) The OCID of the compartment to perform the scans in. All listed repositories must be in the compartment.
    Type string
    (Updatable) The scan level
    Repositories []string
    (Updatable) List of repositories to scan images in. If left empty, the target defaults to scanning all repos in the compartmentId
    Url string

    (Updatable) URL of the registry. Required for non-OCIR registry types (for OCIR registry types, it can be inferred from the tenancy).

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    compartmentId String
    (Updatable) The OCID of the compartment to perform the scans in. All listed repositories must be in the compartment.
    type String
    (Updatable) The scan level
    repositories List<String>
    (Updatable) List of repositories to scan images in. If left empty, the target defaults to scanning all repos in the compartmentId
    url String

    (Updatable) URL of the registry. Required for non-OCIR registry types (for OCIR registry types, it can be inferred from the tenancy).

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    compartmentId string
    (Updatable) The OCID of the compartment to perform the scans in. All listed repositories must be in the compartment.
    type string
    (Updatable) The scan level
    repositories string[]
    (Updatable) List of repositories to scan images in. If left empty, the target defaults to scanning all repos in the compartmentId
    url string

    (Updatable) URL of the registry. Required for non-OCIR registry types (for OCIR registry types, it can be inferred from the tenancy).

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    compartment_id str
    (Updatable) The OCID of the compartment to perform the scans in. All listed repositories must be in the compartment.
    type str
    (Updatable) The scan level
    repositories Sequence[str]
    (Updatable) List of repositories to scan images in. If left empty, the target defaults to scanning all repos in the compartmentId
    url str

    (Updatable) URL of the registry. Required for non-OCIR registry types (for OCIR registry types, it can be inferred from the tenancy).

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    compartmentId String
    (Updatable) The OCID of the compartment to perform the scans in. All listed repositories must be in the compartment.
    type String
    (Updatable) The scan level
    repositories List<String>
    (Updatable) List of repositories to scan images in. If left empty, the target defaults to scanning all repos in the compartmentId
    url String

    (Updatable) URL of the registry. Required for non-OCIR registry types (for OCIR registry types, it can be inferred from the tenancy).

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    Import

    ContainerScanTargets can be imported using the id, e.g.

    $ pulumi import oci:VulnerabilityScanning/containerScanTarget:ContainerScanTarget test_container_scan_target "id"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.33.0 published on Thursday, Apr 25, 2024 by Pulumi