1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Artifacts
  5. ContainerRepository
Oracle Cloud Infrastructure v1.27.0 published on Friday, Mar 15, 2024 by Pulumi

oci.Artifacts.ContainerRepository

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.27.0 published on Friday, Mar 15, 2024 by Pulumi

    This resource provides the Container Repository resource in Oracle Cloud Infrastructure Artifacts service.

    Create a new empty container repository. Avoid entering confidential information.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testContainerRepository = new oci.artifacts.ContainerRepository("testContainerRepository", {
        compartmentId: _var.compartment_id,
        displayName: _var.container_repository_display_name,
        definedTags: {
            "Operations.CostCenter": "42",
        },
        freeformTags: {
            Department: "Finance",
        },
        isImmutable: _var.container_repository_is_immutable,
        isPublic: _var.container_repository_is_public,
        readme: {
            content: _var.container_repository_readme_content,
            format: _var.container_repository_readme_format,
        },
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_container_repository = oci.artifacts.ContainerRepository("testContainerRepository",
        compartment_id=var["compartment_id"],
        display_name=var["container_repository_display_name"],
        defined_tags={
            "Operations.CostCenter": "42",
        },
        freeform_tags={
            "Department": "Finance",
        },
        is_immutable=var["container_repository_is_immutable"],
        is_public=var["container_repository_is_public"],
        readme=oci.artifacts.ContainerRepositoryReadmeArgs(
            content=var["container_repository_readme_content"],
            format=var["container_repository_readme_format"],
        ))
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/Artifacts"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := Artifacts.NewContainerRepository(ctx, "testContainerRepository", &Artifacts.ContainerRepositoryArgs{
    			CompartmentId: pulumi.Any(_var.Compartment_id),
    			DisplayName:   pulumi.Any(_var.Container_repository_display_name),
    			DefinedTags: pulumi.Map{
    				"Operations.CostCenter": pulumi.Any("42"),
    			},
    			FreeformTags: pulumi.Map{
    				"Department": pulumi.Any("Finance"),
    			},
    			IsImmutable: pulumi.Any(_var.Container_repository_is_immutable),
    			IsPublic:    pulumi.Any(_var.Container_repository_is_public),
    			Readme: &artifacts.ContainerRepositoryReadmeArgs{
    				Content: pulumi.Any(_var.Container_repository_readme_content),
    				Format:  pulumi.Any(_var.Container_repository_readme_format),
    			},
    		})
    		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 testContainerRepository = new Oci.Artifacts.ContainerRepository("testContainerRepository", new()
        {
            CompartmentId = @var.Compartment_id,
            DisplayName = @var.Container_repository_display_name,
            DefinedTags = 
            {
                { "Operations.CostCenter", "42" },
            },
            FreeformTags = 
            {
                { "Department", "Finance" },
            },
            IsImmutable = @var.Container_repository_is_immutable,
            IsPublic = @var.Container_repository_is_public,
            Readme = new Oci.Artifacts.Inputs.ContainerRepositoryReadmeArgs
            {
                Content = @var.Container_repository_readme_content,
                Format = @var.Container_repository_readme_format,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Artifacts.ContainerRepository;
    import com.pulumi.oci.Artifacts.ContainerRepositoryArgs;
    import com.pulumi.oci.Artifacts.inputs.ContainerRepositoryReadmeArgs;
    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 testContainerRepository = new ContainerRepository("testContainerRepository", ContainerRepositoryArgs.builder()        
                .compartmentId(var_.compartment_id())
                .displayName(var_.container_repository_display_name())
                .definedTags(Map.of("Operations.CostCenter", "42"))
                .freeformTags(Map.of("Department", "Finance"))
                .isImmutable(var_.container_repository_is_immutable())
                .isPublic(var_.container_repository_is_public())
                .readme(ContainerRepositoryReadmeArgs.builder()
                    .content(var_.container_repository_readme_content())
                    .format(var_.container_repository_readme_format())
                    .build())
                .build());
    
        }
    }
    
    resources:
      testContainerRepository:
        type: oci:Artifacts:ContainerRepository
        properties:
          #Required
          compartmentId: ${var.compartment_id}
          displayName: ${var.container_repository_display_name}
          #Optional
          definedTags:
            Operations.CostCenter: '42'
          freeformTags:
            Department: Finance
          isImmutable: ${var.container_repository_is_immutable}
          isPublic: ${var.container_repository_is_public}
          readme:
            content: ${var.container_repository_readme_content}
            format: ${var.container_repository_readme_format}
    

    Create ContainerRepository Resource

    new ContainerRepository(name: string, args: ContainerRepositoryArgs, opts?: CustomResourceOptions);
    @overload
    def ContainerRepository(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            compartment_id: Optional[str] = None,
                            defined_tags: Optional[Mapping[str, Any]] = None,
                            display_name: Optional[str] = None,
                            freeform_tags: Optional[Mapping[str, Any]] = None,
                            is_immutable: Optional[bool] = None,
                            is_public: Optional[bool] = None,
                            readme: Optional[_artifacts.ContainerRepositoryReadmeArgs] = None)
    @overload
    def ContainerRepository(resource_name: str,
                            args: ContainerRepositoryArgs,
                            opts: Optional[ResourceOptions] = None)
    func NewContainerRepository(ctx *Context, name string, args ContainerRepositoryArgs, opts ...ResourceOption) (*ContainerRepository, error)
    public ContainerRepository(string name, ContainerRepositoryArgs args, CustomResourceOptions? opts = null)
    public ContainerRepository(String name, ContainerRepositoryArgs args)
    public ContainerRepository(String name, ContainerRepositoryArgs args, CustomResourceOptions options)
    
    type: oci:Artifacts:ContainerRepository
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args ContainerRepositoryArgs
    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 ContainerRepositoryArgs
    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 ContainerRepositoryArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ContainerRepositoryArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ContainerRepositoryArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    ContainerRepository 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 ContainerRepository resource accepts the following input properties:

    CompartmentId string
    (Updatable) The OCID of the compartment in which to create the resource.
    DisplayName string
    The container repository name.
    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    FreeformTags Dictionary<string, object>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    IsImmutable bool
    (Updatable) Whether the repository is immutable. Images cannot be overwritten in an immutable repository.
    IsPublic bool
    (Updatable) Whether the repository is public. A public repository allows unauthenticated access.
    Readme ContainerRepositoryReadme
    (Updatable) Container repository readme.
    CompartmentId string
    (Updatable) The OCID of the compartment in which to create the resource.
    DisplayName string
    The container repository name.
    DefinedTags map[string]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    FreeformTags map[string]interface{}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    IsImmutable bool
    (Updatable) Whether the repository is immutable. Images cannot be overwritten in an immutable repository.
    IsPublic bool
    (Updatable) Whether the repository is public. A public repository allows unauthenticated access.
    Readme ContainerRepositoryReadmeArgs
    (Updatable) Container repository readme.
    compartmentId String
    (Updatable) The OCID of the compartment in which to create the resource.
    displayName String
    The container repository name.
    definedTags Map<String,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    freeformTags Map<String,Object>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    isImmutable Boolean
    (Updatable) Whether the repository is immutable. Images cannot be overwritten in an immutable repository.
    isPublic Boolean
    (Updatable) Whether the repository is public. A public repository allows unauthenticated access.
    readme ContainerRepositoryReadme
    (Updatable) Container repository readme.
    compartmentId string
    (Updatable) The OCID of the compartment in which to create the resource.
    displayName string
    The container repository name.
    definedTags {[key: string]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    freeformTags {[key: string]: any}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    isImmutable boolean
    (Updatable) Whether the repository is immutable. Images cannot be overwritten in an immutable repository.
    isPublic boolean
    (Updatable) Whether the repository is public. A public repository allows unauthenticated access.
    readme ContainerRepositoryReadme
    (Updatable) Container repository readme.
    compartment_id str
    (Updatable) The OCID of the compartment in which to create the resource.
    display_name str
    The container repository name.
    defined_tags Mapping[str, Any]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    freeform_tags Mapping[str, Any]
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    is_immutable bool
    (Updatable) Whether the repository is immutable. Images cannot be overwritten in an immutable repository.
    is_public bool
    (Updatable) Whether the repository is public. A public repository allows unauthenticated access.
    readme ContainerRepositoryReadmeArgs
    (Updatable) Container repository readme.
    compartmentId String
    (Updatable) The OCID of the compartment in which to create the resource.
    displayName String
    The container repository name.
    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    freeformTags Map<Any>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    isImmutable Boolean
    (Updatable) Whether the repository is immutable. Images cannot be overwritten in an immutable repository.
    isPublic Boolean
    (Updatable) Whether the repository is public. A public repository allows unauthenticated access.
    readme Property Map
    (Updatable) Container repository readme.

    Outputs

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

    BillableSizeInGbs string
    Total storage size in GBs that will be charged.
    CreatedBy string
    The id of the user or principal that created the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    ImageCount int
    Total number of images.
    LayerCount int
    Total number of layers.
    LayersSizeInBytes string
    Total storage in bytes consumed by layers.
    Namespace string
    The tenancy namespace used in the container repository path.
    State string
    The current state of the container repository.
    SystemTags Dictionary<string, object>
    The system tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    An RFC 3339 timestamp indicating when the repository was created.
    TimeLastPushed string
    An RFC 3339 timestamp indicating when an image was last pushed to the repository.
    BillableSizeInGbs string
    Total storage size in GBs that will be charged.
    CreatedBy string
    The id of the user or principal that created the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    ImageCount int
    Total number of images.
    LayerCount int
    Total number of layers.
    LayersSizeInBytes string
    Total storage in bytes consumed by layers.
    Namespace string
    The tenancy namespace used in the container repository path.
    State string
    The current state of the container repository.
    SystemTags map[string]interface{}
    The system tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    An RFC 3339 timestamp indicating when the repository was created.
    TimeLastPushed string
    An RFC 3339 timestamp indicating when an image was last pushed to the repository.
    billableSizeInGbs String
    Total storage size in GBs that will be charged.
    createdBy String
    The id of the user or principal that created the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    imageCount Integer
    Total number of images.
    layerCount Integer
    Total number of layers.
    layersSizeInBytes String
    Total storage in bytes consumed by layers.
    namespace String
    The tenancy namespace used in the container repository path.
    state String
    The current state of the container repository.
    systemTags Map<String,Object>
    The system tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    An RFC 3339 timestamp indicating when the repository was created.
    timeLastPushed String
    An RFC 3339 timestamp indicating when an image was last pushed to the repository.
    billableSizeInGbs string
    Total storage size in GBs that will be charged.
    createdBy string
    The id of the user or principal that created the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    imageCount number
    Total number of images.
    layerCount number
    Total number of layers.
    layersSizeInBytes string
    Total storage in bytes consumed by layers.
    namespace string
    The tenancy namespace used in the container repository path.
    state string
    The current state of the container repository.
    systemTags {[key: string]: any}
    The system tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    An RFC 3339 timestamp indicating when the repository was created.
    timeLastPushed string
    An RFC 3339 timestamp indicating when an image was last pushed to the repository.
    billable_size_in_gbs str
    Total storage size in GBs that will be charged.
    created_by str
    The id of the user or principal that created the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    image_count int
    Total number of images.
    layer_count int
    Total number of layers.
    layers_size_in_bytes str
    Total storage in bytes consumed by layers.
    namespace str
    The tenancy namespace used in the container repository path.
    state str
    The current state of the container repository.
    system_tags Mapping[str, Any]
    The system tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    An RFC 3339 timestamp indicating when the repository was created.
    time_last_pushed str
    An RFC 3339 timestamp indicating when an image was last pushed to the repository.
    billableSizeInGbs String
    Total storage size in GBs that will be charged.
    createdBy String
    The id of the user or principal that created the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    imageCount Number
    Total number of images.
    layerCount Number
    Total number of layers.
    layersSizeInBytes String
    Total storage in bytes consumed by layers.
    namespace String
    The tenancy namespace used in the container repository path.
    state String
    The current state of the container repository.
    systemTags Map<Any>
    The system tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    An RFC 3339 timestamp indicating when the repository was created.
    timeLastPushed String
    An RFC 3339 timestamp indicating when an image was last pushed to the repository.

    Look up Existing ContainerRepository Resource

    Get an existing ContainerRepository 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?: ContainerRepositoryState, opts?: CustomResourceOptions): ContainerRepository
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            billable_size_in_gbs: Optional[str] = None,
            compartment_id: Optional[str] = None,
            created_by: Optional[str] = None,
            defined_tags: Optional[Mapping[str, Any]] = None,
            display_name: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, Any]] = None,
            image_count: Optional[int] = None,
            is_immutable: Optional[bool] = None,
            is_public: Optional[bool] = None,
            layer_count: Optional[int] = None,
            layers_size_in_bytes: Optional[str] = None,
            namespace: Optional[str] = None,
            readme: Optional[_artifacts.ContainerRepositoryReadmeArgs] = None,
            state: Optional[str] = None,
            system_tags: Optional[Mapping[str, Any]] = None,
            time_created: Optional[str] = None,
            time_last_pushed: Optional[str] = None) -> ContainerRepository
    func GetContainerRepository(ctx *Context, name string, id IDInput, state *ContainerRepositoryState, opts ...ResourceOption) (*ContainerRepository, error)
    public static ContainerRepository Get(string name, Input<string> id, ContainerRepositoryState? state, CustomResourceOptions? opts = null)
    public static ContainerRepository get(String name, Output<String> id, ContainerRepositoryState 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:
    BillableSizeInGbs string
    Total storage size in GBs that will be charged.
    CompartmentId string
    (Updatable) The OCID of the compartment in which to create the resource.
    CreatedBy string
    The id of the user or principal that created the resource.
    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    The container repository name.
    FreeformTags Dictionary<string, object>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    ImageCount int
    Total number of images.
    IsImmutable bool
    (Updatable) Whether the repository is immutable. Images cannot be overwritten in an immutable repository.
    IsPublic bool
    (Updatable) Whether the repository is public. A public repository allows unauthenticated access.
    LayerCount int
    Total number of layers.
    LayersSizeInBytes string
    Total storage in bytes consumed by layers.
    Namespace string
    The tenancy namespace used in the container repository path.
    Readme ContainerRepositoryReadme
    (Updatable) Container repository readme.
    State string
    The current state of the container repository.
    SystemTags Dictionary<string, object>
    The system tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    An RFC 3339 timestamp indicating when the repository was created.
    TimeLastPushed string
    An RFC 3339 timestamp indicating when an image was last pushed to the repository.
    BillableSizeInGbs string
    Total storage size in GBs that will be charged.
    CompartmentId string
    (Updatable) The OCID of the compartment in which to create the resource.
    CreatedBy string
    The id of the user or principal that created the resource.
    DefinedTags map[string]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    The container repository name.
    FreeformTags map[string]interface{}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    ImageCount int
    Total number of images.
    IsImmutable bool
    (Updatable) Whether the repository is immutable. Images cannot be overwritten in an immutable repository.
    IsPublic bool
    (Updatable) Whether the repository is public. A public repository allows unauthenticated access.
    LayerCount int
    Total number of layers.
    LayersSizeInBytes string
    Total storage in bytes consumed by layers.
    Namespace string
    The tenancy namespace used in the container repository path.
    Readme ContainerRepositoryReadmeArgs
    (Updatable) Container repository readme.
    State string
    The current state of the container repository.
    SystemTags map[string]interface{}
    The system tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    An RFC 3339 timestamp indicating when the repository was created.
    TimeLastPushed string
    An RFC 3339 timestamp indicating when an image was last pushed to the repository.
    billableSizeInGbs String
    Total storage size in GBs that will be charged.
    compartmentId String
    (Updatable) The OCID of the compartment in which to create the resource.
    createdBy String
    The id of the user or principal that created the resource.
    definedTags Map<String,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    The container repository name.
    freeformTags Map<String,Object>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    imageCount Integer
    Total number of images.
    isImmutable Boolean
    (Updatable) Whether the repository is immutable. Images cannot be overwritten in an immutable repository.
    isPublic Boolean
    (Updatable) Whether the repository is public. A public repository allows unauthenticated access.
    layerCount Integer
    Total number of layers.
    layersSizeInBytes String
    Total storage in bytes consumed by layers.
    namespace String
    The tenancy namespace used in the container repository path.
    readme ContainerRepositoryReadme
    (Updatable) Container repository readme.
    state String
    The current state of the container repository.
    systemTags Map<String,Object>
    The system tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    An RFC 3339 timestamp indicating when the repository was created.
    timeLastPushed String
    An RFC 3339 timestamp indicating when an image was last pushed to the repository.
    billableSizeInGbs string
    Total storage size in GBs that will be charged.
    compartmentId string
    (Updatable) The OCID of the compartment in which to create the resource.
    createdBy string
    The id of the user or principal that created the resource.
    definedTags {[key: string]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName string
    The container repository name.
    freeformTags {[key: string]: any}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    imageCount number
    Total number of images.
    isImmutable boolean
    (Updatable) Whether the repository is immutable. Images cannot be overwritten in an immutable repository.
    isPublic boolean
    (Updatable) Whether the repository is public. A public repository allows unauthenticated access.
    layerCount number
    Total number of layers.
    layersSizeInBytes string
    Total storage in bytes consumed by layers.
    namespace string
    The tenancy namespace used in the container repository path.
    readme ContainerRepositoryReadme
    (Updatable) Container repository readme.
    state string
    The current state of the container repository.
    systemTags {[key: string]: any}
    The system tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    An RFC 3339 timestamp indicating when the repository was created.
    timeLastPushed string
    An RFC 3339 timestamp indicating when an image was last pushed to the repository.
    billable_size_in_gbs str
    Total storage size in GBs that will be charged.
    compartment_id str
    (Updatable) The OCID of the compartment in which to create the resource.
    created_by str
    The id of the user or principal that created the resource.
    defined_tags Mapping[str, Any]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    display_name str
    The container repository name.
    freeform_tags Mapping[str, Any]
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    image_count int
    Total number of images.
    is_immutable bool
    (Updatable) Whether the repository is immutable. Images cannot be overwritten in an immutable repository.
    is_public bool
    (Updatable) Whether the repository is public. A public repository allows unauthenticated access.
    layer_count int
    Total number of layers.
    layers_size_in_bytes str
    Total storage in bytes consumed by layers.
    namespace str
    The tenancy namespace used in the container repository path.
    readme ContainerRepositoryReadmeArgs
    (Updatable) Container repository readme.
    state str
    The current state of the container repository.
    system_tags Mapping[str, Any]
    The system tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    An RFC 3339 timestamp indicating when the repository was created.
    time_last_pushed str
    An RFC 3339 timestamp indicating when an image was last pushed to the repository.
    billableSizeInGbs String
    Total storage size in GBs that will be charged.
    compartmentId String
    (Updatable) The OCID of the compartment in which to create the resource.
    createdBy String
    The id of the user or principal that created the resource.
    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    The container repository name.
    freeformTags Map<Any>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    imageCount Number
    Total number of images.
    isImmutable Boolean
    (Updatable) Whether the repository is immutable. Images cannot be overwritten in an immutable repository.
    isPublic Boolean
    (Updatable) Whether the repository is public. A public repository allows unauthenticated access.
    layerCount Number
    Total number of layers.
    layersSizeInBytes String
    Total storage in bytes consumed by layers.
    namespace String
    The tenancy namespace used in the container repository path.
    readme Property Map
    (Updatable) Container repository readme.
    state String
    The current state of the container repository.
    systemTags Map<Any>
    The system tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    An RFC 3339 timestamp indicating when the repository was created.
    timeLastPushed String
    An RFC 3339 timestamp indicating when an image was last pushed to the repository.

    Supporting Types

    ContainerRepositoryReadme, ContainerRepositoryReadmeArgs

    Content string
    (Updatable) Readme content. Avoid entering confidential information.
    Format string

    (Updatable) Readme format. Supported formats are text/plain and text/markdown.

    ** 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

    Content string
    (Updatable) Readme content. Avoid entering confidential information.
    Format string

    (Updatable) Readme format. Supported formats are text/plain and text/markdown.

    ** 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

    content String
    (Updatable) Readme content. Avoid entering confidential information.
    format String

    (Updatable) Readme format. Supported formats are text/plain and text/markdown.

    ** 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

    content string
    (Updatable) Readme content. Avoid entering confidential information.
    format string

    (Updatable) Readme format. Supported formats are text/plain and text/markdown.

    ** 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

    content str
    (Updatable) Readme content. Avoid entering confidential information.
    format str

    (Updatable) Readme format. Supported formats are text/plain and text/markdown.

    ** 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

    content String
    (Updatable) Readme content. Avoid entering confidential information.
    format String

    (Updatable) Readme format. Supported formats are text/plain and text/markdown.

    ** 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

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

    $ pulumi import oci:Artifacts/containerRepository:ContainerRepository test_container_repository "container/repositories/{repositoryId}"
    

    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.27.0 published on Friday, Mar 15, 2024 by Pulumi