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

oci.Artifacts.ContainerRepository

Explore with Pulumi AI

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("test_container_repository", {
    compartmentId: compartmentId,
    displayName: containerRepositoryDisplayName,
    definedTags: {
        "Operations.CostCenter": "42",
    },
    freeformTags: {
        Department: "Finance",
    },
    isImmutable: containerRepositoryIsImmutable,
    isPublic: containerRepositoryIsPublic,
    readme: {
        content: containerRepositoryReadmeContent,
        format: containerRepositoryReadmeFormat,
    },
});
Copy
import pulumi
import pulumi_oci as oci

test_container_repository = oci.artifacts.ContainerRepository("test_container_repository",
    compartment_id=compartment_id,
    display_name=container_repository_display_name,
    defined_tags={
        "Operations.CostCenter": "42",
    },
    freeform_tags={
        "Department": "Finance",
    },
    is_immutable=container_repository_is_immutable,
    is_public=container_repository_is_public,
    readme={
        "content": container_repository_readme_content,
        "format": container_repository_readme_format,
    })
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := artifacts.NewContainerRepository(ctx, "test_container_repository", &artifacts.ContainerRepositoryArgs{
			CompartmentId: pulumi.Any(compartmentId),
			DisplayName:   pulumi.Any(containerRepositoryDisplayName),
			DefinedTags: pulumi.StringMap{
				"Operations.CostCenter": pulumi.String("42"),
			},
			FreeformTags: pulumi.StringMap{
				"Department": pulumi.String("Finance"),
			},
			IsImmutable: pulumi.Any(containerRepositoryIsImmutable),
			IsPublic:    pulumi.Any(containerRepositoryIsPublic),
			Readme: &artifacts.ContainerRepositoryReadmeArgs{
				Content: pulumi.Any(containerRepositoryReadmeContent),
				Format:  pulumi.Any(containerRepositoryReadmeFormat),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testContainerRepository = new Oci.Artifacts.ContainerRepository("test_container_repository", new()
    {
        CompartmentId = compartmentId,
        DisplayName = containerRepositoryDisplayName,
        DefinedTags = 
        {
            { "Operations.CostCenter", "42" },
        },
        FreeformTags = 
        {
            { "Department", "Finance" },
        },
        IsImmutable = containerRepositoryIsImmutable,
        IsPublic = containerRepositoryIsPublic,
        Readme = new Oci.Artifacts.Inputs.ContainerRepositoryReadmeArgs
        {
            Content = containerRepositoryReadmeContent,
            Format = containerRepositoryReadmeFormat,
        },
    });

});
Copy
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(compartmentId)
            .displayName(containerRepositoryDisplayName)
            .definedTags(Map.of("Operations.CostCenter", "42"))
            .freeformTags(Map.of("Department", "Finance"))
            .isImmutable(containerRepositoryIsImmutable)
            .isPublic(containerRepositoryIsPublic)
            .readme(ContainerRepositoryReadmeArgs.builder()
                .content(containerRepositoryReadmeContent)
                .format(containerRepositoryReadmeFormat)
                .build())
            .build());

    }
}
Copy
resources:
  testContainerRepository:
    type: oci:Artifacts:ContainerRepository
    name: test_container_repository
    properties:
      compartmentId: ${compartmentId}
      displayName: ${containerRepositoryDisplayName}
      definedTags:
        Operations.CostCenter: '42'
      freeformTags:
        Department: Finance
      isImmutable: ${containerRepositoryIsImmutable}
      isPublic: ${containerRepositoryIsPublic}
      readme:
        content: ${containerRepositoryReadmeContent}
        format: ${containerRepositoryReadmeFormat}
Copy

Create ContainerRepository Resource

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

Constructor syntax

new ContainerRepository(name: string, args: ContainerRepositoryArgs, opts?: CustomResourceOptions);
@overload
def ContainerRepository(resource_name: str,
                        args: ContainerRepositoryArgs,
                        opts: Optional[ResourceOptions] = None)

@overload
def ContainerRepository(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        compartment_id: Optional[str] = None,
                        display_name: Optional[str] = None,
                        defined_tags: Optional[Mapping[str, str]] = None,
                        freeform_tags: Optional[Mapping[str, str]] = None,
                        is_immutable: Optional[bool] = None,
                        is_public: Optional[bool] = None,
                        readme: Optional[_artifacts.ContainerRepositoryReadmeArgs] = 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.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ContainerRepositoryArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. ContainerRepositoryArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ContainerRepositoryArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ContainerRepositoryArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

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

var containerRepositoryResource = new Oci.Artifacts.ContainerRepository("containerRepositoryResource", new()
{
    CompartmentId = "string",
    DisplayName = "string",
    DefinedTags = 
    {
        { "string", "string" },
    },
    FreeformTags = 
    {
        { "string", "string" },
    },
    IsImmutable = false,
    IsPublic = false,
    Readme = new Oci.Artifacts.Inputs.ContainerRepositoryReadmeArgs
    {
        Content = "string",
        Format = "string",
    },
});
Copy
example, err := Artifacts.NewContainerRepository(ctx, "containerRepositoryResource", &Artifacts.ContainerRepositoryArgs{
	CompartmentId: pulumi.String("string"),
	DisplayName:   pulumi.String("string"),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	IsImmutable: pulumi.Bool(false),
	IsPublic:    pulumi.Bool(false),
	Readme: &artifacts.ContainerRepositoryReadmeArgs{
		Content: pulumi.String("string"),
		Format:  pulumi.String("string"),
	},
})
Copy
var containerRepositoryResource = new ContainerRepository("containerRepositoryResource", ContainerRepositoryArgs.builder()
    .compartmentId("string")
    .displayName("string")
    .definedTags(Map.of("string", "string"))
    .freeformTags(Map.of("string", "string"))
    .isImmutable(false)
    .isPublic(false)
    .readme(ContainerRepositoryReadmeArgs.builder()
        .content("string")
        .format("string")
        .build())
    .build());
Copy
container_repository_resource = oci.artifacts.ContainerRepository("containerRepositoryResource",
    compartment_id="string",
    display_name="string",
    defined_tags={
        "string": "string",
    },
    freeform_tags={
        "string": "string",
    },
    is_immutable=False,
    is_public=False,
    readme={
        "content": "string",
        "format": "string",
    })
Copy
const containerRepositoryResource = new oci.artifacts.ContainerRepository("containerRepositoryResource", {
    compartmentId: "string",
    displayName: "string",
    definedTags: {
        string: "string",
    },
    freeformTags: {
        string: "string",
    },
    isImmutable: false,
    isPublic: false,
    readme: {
        content: "string",
        format: "string",
    },
});
Copy
type: oci:Artifacts:ContainerRepository
properties:
    compartmentId: string
    definedTags:
        string: string
    displayName: string
    freeformTags:
        string: string
    isImmutable: false
    isPublic: false
    readme:
        content: string
        format: string
Copy

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

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The ContainerRepository resource accepts the following input properties:

CompartmentId This property is required. string
(Updatable) The OCID of the compartment in which to create the resource.
DisplayName
This property is required.
Changes to this property will trigger replacement.
string
The container repository name.
DefinedTags Dictionary<string, string>
(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, string>
(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 This property is required. string
(Updatable) The OCID of the compartment in which to create the resource.
DisplayName
This property is required.
Changes to this property will trigger replacement.
string
The container repository name.
DefinedTags map[string]string
(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]string
(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 This property is required. String
(Updatable) The OCID of the compartment in which to create the resource.
displayName
This property is required.
Changes to this property will trigger replacement.
String
The container repository name.
definedTags Map<String,String>
(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,String>
(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 This property is required. string
(Updatable) The OCID of the compartment in which to create the resource.
displayName
This property is required.
Changes to this property will trigger replacement.
string
The container repository name.
definedTags {[key: string]: string}
(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]: string}
(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 This property is required. str
(Updatable) The OCID of the compartment in which to create the resource.
display_name
This property is required.
Changes to this property will trigger replacement.
str
The container repository name.
defined_tags Mapping[str, str]
(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, str]
(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 artifacts.ContainerRepositoryReadmeArgs
(Updatable) Container repository readme.
compartmentId This property is required. String
(Updatable) The OCID of the compartment in which to create the resource.
displayName
This property is required.
Changes to this property will trigger replacement.
String
The container repository name.
definedTags Map<String>
(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>
(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, string>
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]string
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,String>
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]: string}
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, str]
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<String>
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, str]] = None,
        display_name: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = 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, str]] = 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)
resources:  _:    type: oci:Artifacts:ContainerRepository    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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, string>
(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 Changes to this property will trigger replacement. string
The container repository name.
FreeformTags Dictionary<string, string>
(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, string>
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]string
(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 Changes to this property will trigger replacement. string
The container repository name.
FreeformTags map[string]string
(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]string
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,String>
(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 Changes to this property will trigger replacement. String
The container repository name.
freeformTags Map<String,String>
(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,String>
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]: string}
(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 Changes to this property will trigger replacement. string
The container repository name.
freeformTags {[key: string]: string}
(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]: string}
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, str]
(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 Changes to this property will trigger replacement. str
The container repository name.
freeform_tags Mapping[str, str]
(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 artifacts.ContainerRepositoryReadmeArgs
(Updatable) Container repository readme.
state str
The current state of the container repository.
system_tags Mapping[str, str]
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<String>
(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 Changes to this property will trigger replacement. String
The container repository name.
freeformTags Map<String>
(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<String>
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 This property is required. string
(Updatable) Readme content. Avoid entering confidential information.
Format This property is required. 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 This property is required. string
(Updatable) Readme content. Avoid entering confidential information.
Format This property is required. 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 This property is required. String
(Updatable) Readme content. Avoid entering confidential information.
format This property is required. 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 This property is required. string
(Updatable) Readme content. Avoid entering confidential information.
format This property is required. 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 This property is required. str
(Updatable) Readme content. Avoid entering confidential information.
format This property is required. 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 This property is required. String
(Updatable) Readme content. Avoid entering confidential information.
format This property is required. 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}"
Copy

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.