1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Artifacts
  5. Repository
Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi

oci.Artifacts.Repository

Explore with Pulumi AI

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

Creates a new repository for storing artifacts.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testRepository = new oci.artifacts.Repository("test_repository", {
    compartmentId: compartmentId,
    isImmutable: repositoryIsImmutable,
    repositoryType: repositoryRepositoryType,
    definedTags: {
        "Operations.CostCenter": "42",
    },
    description: repositoryDescription,
    displayName: repositoryDisplayName,
    freeformTags: {
        Department: "Finance",
    },
});
Copy
import pulumi
import pulumi_oci as oci

test_repository = oci.artifacts.Repository("test_repository",
    compartment_id=compartment_id,
    is_immutable=repository_is_immutable,
    repository_type=repository_repository_type,
    defined_tags={
        "Operations.CostCenter": "42",
    },
    description=repository_description,
    display_name=repository_display_name,
    freeform_tags={
        "Department": "Finance",
    })
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.NewRepository(ctx, "test_repository", &artifacts.RepositoryArgs{
			CompartmentId:  pulumi.Any(compartmentId),
			IsImmutable:    pulumi.Any(repositoryIsImmutable),
			RepositoryType: pulumi.Any(repositoryRepositoryType),
			DefinedTags: pulumi.StringMap{
				"Operations.CostCenter": pulumi.String("42"),
			},
			Description: pulumi.Any(repositoryDescription),
			DisplayName: pulumi.Any(repositoryDisplayName),
			FreeformTags: pulumi.StringMap{
				"Department": pulumi.String("Finance"),
			},
		})
		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 testRepository = new Oci.Artifacts.Repository("test_repository", new()
    {
        CompartmentId = compartmentId,
        IsImmutable = repositoryIsImmutable,
        RepositoryType = repositoryRepositoryType,
        DefinedTags = 
        {
            { "Operations.CostCenter", "42" },
        },
        Description = repositoryDescription,
        DisplayName = repositoryDisplayName,
        FreeformTags = 
        {
            { "Department", "Finance" },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Artifacts.Repository;
import com.pulumi.oci.Artifacts.RepositoryArgs;
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 testRepository = new Repository("testRepository", RepositoryArgs.builder()
            .compartmentId(compartmentId)
            .isImmutable(repositoryIsImmutable)
            .repositoryType(repositoryRepositoryType)
            .definedTags(Map.of("Operations.CostCenter", "42"))
            .description(repositoryDescription)
            .displayName(repositoryDisplayName)
            .freeformTags(Map.of("Department", "Finance"))
            .build());

    }
}
Copy
resources:
  testRepository:
    type: oci:Artifacts:Repository
    name: test_repository
    properties:
      compartmentId: ${compartmentId}
      isImmutable: ${repositoryIsImmutable}
      repositoryType: ${repositoryRepositoryType}
      definedTags:
        Operations.CostCenter: '42'
      description: ${repositoryDescription}
      displayName: ${repositoryDisplayName}
      freeformTags:
        Department: Finance
Copy

Create Repository Resource

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

Constructor syntax

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

@overload
def Repository(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               compartment_id: Optional[str] = None,
               is_immutable: Optional[bool] = None,
               repository_type: Optional[str] = None,
               defined_tags: Optional[Mapping[str, str]] = None,
               description: Optional[str] = None,
               display_name: Optional[str] = None,
               freeform_tags: Optional[Mapping[str, str]] = None)
func NewRepository(ctx *Context, name string, args RepositoryArgs, opts ...ResourceOption) (*Repository, error)
public Repository(string name, RepositoryArgs args, CustomResourceOptions? opts = null)
public Repository(String name, RepositoryArgs args)
public Repository(String name, RepositoryArgs args, CustomResourceOptions options)
type: oci:Artifacts:Repository
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. RepositoryArgs
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. RepositoryArgs
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. RepositoryArgs
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. RepositoryArgs
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. RepositoryArgs
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 repositoryResource = new Oci.Artifacts.Repository("repositoryResource", new()
{
    CompartmentId = "string",
    IsImmutable = false,
    RepositoryType = "string",
    DefinedTags = 
    {
        { "string", "string" },
    },
    Description = "string",
    DisplayName = "string",
    FreeformTags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := Artifacts.NewRepository(ctx, "repositoryResource", &Artifacts.RepositoryArgs{
	CompartmentId:  pulumi.String("string"),
	IsImmutable:    pulumi.Bool(false),
	RepositoryType: pulumi.String("string"),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Description: pulumi.String("string"),
	DisplayName: pulumi.String("string"),
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var repositoryResource = new Repository("repositoryResource", RepositoryArgs.builder()
    .compartmentId("string")
    .isImmutable(false)
    .repositoryType("string")
    .definedTags(Map.of("string", "string"))
    .description("string")
    .displayName("string")
    .freeformTags(Map.of("string", "string"))
    .build());
Copy
repository_resource = oci.artifacts.Repository("repositoryResource",
    compartment_id="string",
    is_immutable=False,
    repository_type="string",
    defined_tags={
        "string": "string",
    },
    description="string",
    display_name="string",
    freeform_tags={
        "string": "string",
    })
Copy
const repositoryResource = new oci.artifacts.Repository("repositoryResource", {
    compartmentId: "string",
    isImmutable: false,
    repositoryType: "string",
    definedTags: {
        string: "string",
    },
    description: "string",
    displayName: "string",
    freeformTags: {
        string: "string",
    },
});
Copy
type: oci:Artifacts:Repository
properties:
    compartmentId: string
    definedTags:
        string: string
    description: string
    displayName: string
    freeformTags:
        string: string
    isImmutable: false
    repositoryType: string
Copy

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

CompartmentId This property is required. string
(Updatable) The OCID of the repository's compartment.
IsImmutable
This property is required.
Changes to this property will trigger replacement.
bool
Whether to make the repository immutable. The artifacts of an immutable repository cannot be overwritten.
RepositoryType This property is required. string

(Updatable) The repository's supported artifact type.

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

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"}
Description string
(Updatable) A short description of the repository. It can be updated later.
DisplayName string
(Updatable) A user-friendly display name for the repository. If not present, will be auto-generated. It can be modified later. Avoid entering confidential information.
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"}
CompartmentId This property is required. string
(Updatable) The OCID of the repository's compartment.
IsImmutable
This property is required.
Changes to this property will trigger replacement.
bool
Whether to make the repository immutable. The artifacts of an immutable repository cannot be overwritten.
RepositoryType This property is required. string

(Updatable) The repository's supported artifact type.

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

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"}
Description string
(Updatable) A short description of the repository. It can be updated later.
DisplayName string
(Updatable) A user-friendly display name for the repository. If not present, will be auto-generated. It can be modified later. Avoid entering confidential information.
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"}
compartmentId This property is required. String
(Updatable) The OCID of the repository's compartment.
isImmutable
This property is required.
Changes to this property will trigger replacement.
Boolean
Whether to make the repository immutable. The artifacts of an immutable repository cannot be overwritten.
repositoryType This property is required. String

(Updatable) The repository's supported artifact type.

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

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"}
description String
(Updatable) A short description of the repository. It can be updated later.
displayName String
(Updatable) A user-friendly display name for the repository. If not present, will be auto-generated. It can be modified later. Avoid entering confidential information.
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"}
compartmentId This property is required. string
(Updatable) The OCID of the repository's compartment.
isImmutable
This property is required.
Changes to this property will trigger replacement.
boolean
Whether to make the repository immutable. The artifacts of an immutable repository cannot be overwritten.
repositoryType This property is required. string

(Updatable) The repository's supported artifact type.

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

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"}
description string
(Updatable) A short description of the repository. It can be updated later.
displayName string
(Updatable) A user-friendly display name for the repository. If not present, will be auto-generated. It can be modified later. Avoid entering confidential information.
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"}
compartment_id This property is required. str
(Updatable) The OCID of the repository's compartment.
is_immutable
This property is required.
Changes to this property will trigger replacement.
bool
Whether to make the repository immutable. The artifacts of an immutable repository cannot be overwritten.
repository_type This property is required. str

(Updatable) The repository's supported artifact type.

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

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"}
description str
(Updatable) A short description of the repository. It can be updated later.
display_name str
(Updatable) A user-friendly display name for the repository. If not present, will be auto-generated. It can be modified later. Avoid entering confidential information.
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"}
compartmentId This property is required. String
(Updatable) The OCID of the repository's compartment.
isImmutable
This property is required.
Changes to this property will trigger replacement.
Boolean
Whether to make the repository immutable. The artifacts of an immutable repository cannot be overwritten.
repositoryType This property is required. String

(Updatable) The repository's supported artifact type.

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

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"}
description String
(Updatable) A short description of the repository. It can be updated later.
displayName String
(Updatable) A user-friendly display name for the repository. If not present, will be auto-generated. It can be modified later. Avoid entering confidential information.
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"}

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
State string
The current state of the repository.
TimeCreated string
An RFC 3339 timestamp indicating when the repository was created.
Id string
The provider-assigned unique ID for this managed resource.
State string
The current state of the repository.
TimeCreated string
An RFC 3339 timestamp indicating when the repository was created.
id String
The provider-assigned unique ID for this managed resource.
state String
The current state of the repository.
timeCreated String
An RFC 3339 timestamp indicating when the repository was created.
id string
The provider-assigned unique ID for this managed resource.
state string
The current state of the repository.
timeCreated string
An RFC 3339 timestamp indicating when the repository was created.
id str
The provider-assigned unique ID for this managed resource.
state str
The current state of the repository.
time_created str
An RFC 3339 timestamp indicating when the repository was created.
id String
The provider-assigned unique ID for this managed resource.
state String
The current state of the repository.
timeCreated String
An RFC 3339 timestamp indicating when the repository was created.

Look up Existing Repository Resource

Get an existing Repository 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?: RepositoryState, opts?: CustomResourceOptions): Repository
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        compartment_id: Optional[str] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        description: Optional[str] = None,
        display_name: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        is_immutable: Optional[bool] = None,
        repository_type: Optional[str] = None,
        state: Optional[str] = None,
        time_created: Optional[str] = None) -> Repository
func GetRepository(ctx *Context, name string, id IDInput, state *RepositoryState, opts ...ResourceOption) (*Repository, error)
public static Repository Get(string name, Input<string> id, RepositoryState? state, CustomResourceOptions? opts = null)
public static Repository get(String name, Output<String> id, RepositoryState state, CustomResourceOptions options)
resources:  _:    type: oci:Artifacts:Repository    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:
CompartmentId string
(Updatable) The OCID of the repository's compartment.
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"}
Description string
(Updatable) A short description of the repository. It can be updated later.
DisplayName string
(Updatable) A user-friendly display name for the repository. If not present, will be auto-generated. It can be modified later. Avoid entering confidential information.
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 Changes to this property will trigger replacement. bool
Whether to make the repository immutable. The artifacts of an immutable repository cannot be overwritten.
RepositoryType string

(Updatable) The repository's supported artifact type.

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

State string
The current state of the repository.
TimeCreated string
An RFC 3339 timestamp indicating when the repository was created.
CompartmentId string
(Updatable) The OCID of the repository's compartment.
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"}
Description string
(Updatable) A short description of the repository. It can be updated later.
DisplayName string
(Updatable) A user-friendly display name for the repository. If not present, will be auto-generated. It can be modified later. Avoid entering confidential information.
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 Changes to this property will trigger replacement. bool
Whether to make the repository immutable. The artifacts of an immutable repository cannot be overwritten.
RepositoryType string

(Updatable) The repository's supported artifact type.

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

State string
The current state of the repository.
TimeCreated string
An RFC 3339 timestamp indicating when the repository was created.
compartmentId String
(Updatable) The OCID of the repository's compartment.
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"}
description String
(Updatable) A short description of the repository. It can be updated later.
displayName String
(Updatable) A user-friendly display name for the repository. If not present, will be auto-generated. It can be modified later. Avoid entering confidential information.
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 Changes to this property will trigger replacement. Boolean
Whether to make the repository immutable. The artifacts of an immutable repository cannot be overwritten.
repositoryType String

(Updatable) The repository's supported artifact type.

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

state String
The current state of the repository.
timeCreated String
An RFC 3339 timestamp indicating when the repository was created.
compartmentId string
(Updatable) The OCID of the repository's compartment.
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"}
description string
(Updatable) A short description of the repository. It can be updated later.
displayName string
(Updatable) A user-friendly display name for the repository. If not present, will be auto-generated. It can be modified later. Avoid entering confidential information.
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 Changes to this property will trigger replacement. boolean
Whether to make the repository immutable. The artifacts of an immutable repository cannot be overwritten.
repositoryType string

(Updatable) The repository's supported artifact type.

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

state string
The current state of the repository.
timeCreated string
An RFC 3339 timestamp indicating when the repository was created.
compartment_id str
(Updatable) The OCID of the repository's compartment.
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"}
description str
(Updatable) A short description of the repository. It can be updated later.
display_name str
(Updatable) A user-friendly display name for the repository. If not present, will be auto-generated. It can be modified later. Avoid entering confidential information.
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 Changes to this property will trigger replacement. bool
Whether to make the repository immutable. The artifacts of an immutable repository cannot be overwritten.
repository_type str

(Updatable) The repository's supported artifact type.

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

state str
The current state of the repository.
time_created str
An RFC 3339 timestamp indicating when the repository was created.
compartmentId String
(Updatable) The OCID of the repository's compartment.
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"}
description String
(Updatable) A short description of the repository. It can be updated later.
displayName String
(Updatable) A user-friendly display name for the repository. If not present, will be auto-generated. It can be modified later. Avoid entering confidential information.
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 Changes to this property will trigger replacement. Boolean
Whether to make the repository immutable. The artifacts of an immutable repository cannot be overwritten.
repositoryType String

(Updatable) The repository's supported artifact type.

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

state String
The current state of the repository.
timeCreated String
An RFC 3339 timestamp indicating when the repository was created.

Import

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

$ pulumi import oci:Artifacts/repository:Repository test_repository "id"
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.