1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DevOps
  5. Repository
Oracle Cloud Infrastructure v1.29.0 published on Thursday, Mar 28, 2024 by Pulumi

oci.DevOps.Repository

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.29.0 published on Thursday, Mar 28, 2024 by Pulumi

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

    Creates a new repository.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testRepository = new oci.devops.Repository("testRepository", {
        projectId: oci_devops_project.test_project.id,
        repositoryType: _var.repository_repository_type,
        defaultBranch: _var.repository_default_branch,
        definedTags: {
            "foo-namespace.bar-key": "value",
        },
        description: _var.repository_description,
        freeformTags: {
            "bar-key": "value",
        },
        mirrorRepositoryConfig: {
            connectorId: oci_devops_connector.test_connector.id,
            repositoryUrl: _var.repository_mirror_repository_config_repository_url,
            triggerSchedule: {
                scheduleType: _var.repository_mirror_repository_config_trigger_schedule_schedule_type,
                customSchedule: _var.repository_mirror_repository_config_trigger_schedule_custom_schedule,
            },
        },
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_repository = oci.dev_ops.Repository("testRepository",
        project_id=oci_devops_project["test_project"]["id"],
        repository_type=var["repository_repository_type"],
        default_branch=var["repository_default_branch"],
        defined_tags={
            "foo-namespace.bar-key": "value",
        },
        description=var["repository_description"],
        freeform_tags={
            "bar-key": "value",
        },
        mirror_repository_config=oci.dev_ops.RepositoryMirrorRepositoryConfigArgs(
            connector_id=oci_devops_connector["test_connector"]["id"],
            repository_url=var["repository_mirror_repository_config_repository_url"],
            trigger_schedule=oci.dev_ops.RepositoryMirrorRepositoryConfigTriggerScheduleArgs(
                schedule_type=var["repository_mirror_repository_config_trigger_schedule_schedule_type"],
                custom_schedule=var["repository_mirror_repository_config_trigger_schedule_custom_schedule"],
            ),
        ))
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/DevOps"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := DevOps.NewRepository(ctx, "testRepository", &DevOps.RepositoryArgs{
    			ProjectId:      pulumi.Any(oci_devops_project.Test_project.Id),
    			RepositoryType: pulumi.Any(_var.Repository_repository_type),
    			DefaultBranch:  pulumi.Any(_var.Repository_default_branch),
    			DefinedTags: pulumi.Map{
    				"foo-namespace.bar-key": pulumi.Any("value"),
    			},
    			Description: pulumi.Any(_var.Repository_description),
    			FreeformTags: pulumi.Map{
    				"bar-key": pulumi.Any("value"),
    			},
    			MirrorRepositoryConfig: &devops.RepositoryMirrorRepositoryConfigArgs{
    				ConnectorId:   pulumi.Any(oci_devops_connector.Test_connector.Id),
    				RepositoryUrl: pulumi.Any(_var.Repository_mirror_repository_config_repository_url),
    				TriggerSchedule: &devops.RepositoryMirrorRepositoryConfigTriggerScheduleArgs{
    					ScheduleType:   pulumi.Any(_var.Repository_mirror_repository_config_trigger_schedule_schedule_type),
    					CustomSchedule: pulumi.Any(_var.Repository_mirror_repository_config_trigger_schedule_custom_schedule),
    				},
    			},
    		})
    		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 testRepository = new Oci.DevOps.Repository("testRepository", new()
        {
            ProjectId = oci_devops_project.Test_project.Id,
            RepositoryType = @var.Repository_repository_type,
            DefaultBranch = @var.Repository_default_branch,
            DefinedTags = 
            {
                { "foo-namespace.bar-key", "value" },
            },
            Description = @var.Repository_description,
            FreeformTags = 
            {
                { "bar-key", "value" },
            },
            MirrorRepositoryConfig = new Oci.DevOps.Inputs.RepositoryMirrorRepositoryConfigArgs
            {
                ConnectorId = oci_devops_connector.Test_connector.Id,
                RepositoryUrl = @var.Repository_mirror_repository_config_repository_url,
                TriggerSchedule = new Oci.DevOps.Inputs.RepositoryMirrorRepositoryConfigTriggerScheduleArgs
                {
                    ScheduleType = @var.Repository_mirror_repository_config_trigger_schedule_schedule_type,
                    CustomSchedule = @var.Repository_mirror_repository_config_trigger_schedule_custom_schedule,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.DevOps.Repository;
    import com.pulumi.oci.DevOps.RepositoryArgs;
    import com.pulumi.oci.DevOps.inputs.RepositoryMirrorRepositoryConfigArgs;
    import com.pulumi.oci.DevOps.inputs.RepositoryMirrorRepositoryConfigTriggerScheduleArgs;
    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()        
                .projectId(oci_devops_project.test_project().id())
                .repositoryType(var_.repository_repository_type())
                .defaultBranch(var_.repository_default_branch())
                .definedTags(Map.of("foo-namespace.bar-key", "value"))
                .description(var_.repository_description())
                .freeformTags(Map.of("bar-key", "value"))
                .mirrorRepositoryConfig(RepositoryMirrorRepositoryConfigArgs.builder()
                    .connectorId(oci_devops_connector.test_connector().id())
                    .repositoryUrl(var_.repository_mirror_repository_config_repository_url())
                    .triggerSchedule(RepositoryMirrorRepositoryConfigTriggerScheduleArgs.builder()
                        .scheduleType(var_.repository_mirror_repository_config_trigger_schedule_schedule_type())
                        .customSchedule(var_.repository_mirror_repository_config_trigger_schedule_custom_schedule())
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      testRepository:
        type: oci:DevOps:Repository
        properties:
          projectId: ${oci_devops_project.test_project.id}
          repositoryType: ${var.repository_repository_type}
          #Optional
          defaultBranch: ${var.repository_default_branch}
          definedTags:
            foo-namespace.bar-key: value
          description: ${var.repository_description}
          freeformTags:
            bar-key: value
          mirrorRepositoryConfig:
            connectorId: ${oci_devops_connector.test_connector.id}
            repositoryUrl: ${var.repository_mirror_repository_config_repository_url}
            triggerSchedule:
              scheduleType: ${var.repository_mirror_repository_config_trigger_schedule_schedule_type}
              customSchedule: ${var.repository_mirror_repository_config_trigger_schedule_custom_schedule}
    

    Create Repository Resource

    new Repository(name: string, args: RepositoryArgs, opts?: CustomResourceOptions);
    @overload
    def Repository(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   default_branch: Optional[str] = None,
                   defined_tags: Optional[Mapping[str, Any]] = None,
                   description: Optional[str] = None,
                   freeform_tags: Optional[Mapping[str, Any]] = None,
                   mirror_repository_config: Optional[_devops.RepositoryMirrorRepositoryConfigArgs] = None,
                   name: Optional[str] = None,
                   project_id: Optional[str] = None,
                   repository_type: Optional[str] = None)
    @overload
    def Repository(resource_name: str,
                   args: RepositoryArgs,
                   opts: Optional[ResourceOptions] = 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:DevOps:Repository
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args RepositoryArgs
    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 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 string
    The unique name of the resource.
    args RepositoryArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RepositoryArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RepositoryArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    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

    The Repository resource accepts the following input properties:

    ProjectId string
    The OCID of the DevOps project containing the repository.
    RepositoryType string

    (Updatable) Type of repository. Allowed values: MIRRORED HOSTED

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

    DefaultBranch string
    (Updatable) The default branch of the repository.
    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
    Description string
    (Updatable) Details of the repository. Avoid entering confidential information.
    FreeformTags Dictionary<string, object>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example: {"bar-key": "value"}
    MirrorRepositoryConfig RepositoryMirrorRepositoryConfig
    (Updatable) Configuration information for mirroring the repository.
    Name string
    (Updatable) Unique name of a repository.
    ProjectId string
    The OCID of the DevOps project containing the repository.
    RepositoryType string

    (Updatable) Type of repository. Allowed values: MIRRORED HOSTED

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

    DefaultBranch string
    (Updatable) The default branch of the repository.
    DefinedTags map[string]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
    Description string
    (Updatable) Details of the repository. Avoid entering confidential information.
    FreeformTags map[string]interface{}
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example: {"bar-key": "value"}
    MirrorRepositoryConfig RepositoryMirrorRepositoryConfigArgs
    (Updatable) Configuration information for mirroring the repository.
    Name string
    (Updatable) Unique name of a repository.
    projectId String
    The OCID of the DevOps project containing the repository.
    repositoryType String

    (Updatable) Type of repository. Allowed values: MIRRORED HOSTED

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

    defaultBranch String
    (Updatable) The default branch of the repository.
    definedTags Map<String,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
    description String
    (Updatable) Details of the repository. Avoid entering confidential information.
    freeformTags Map<String,Object>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example: {"bar-key": "value"}
    mirrorRepositoryConfig RepositoryMirrorRepositoryConfig
    (Updatable) Configuration information for mirroring the repository.
    name String
    (Updatable) Unique name of a repository.
    projectId string
    The OCID of the DevOps project containing the repository.
    repositoryType string

    (Updatable) Type of repository. Allowed values: MIRRORED HOSTED

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

    defaultBranch string
    (Updatable) The default branch of the repository.
    definedTags {[key: string]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
    description string
    (Updatable) Details of the repository. Avoid entering confidential information.
    freeformTags {[key: string]: any}
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example: {"bar-key": "value"}
    mirrorRepositoryConfig RepositoryMirrorRepositoryConfig
    (Updatable) Configuration information for mirroring the repository.
    name string
    (Updatable) Unique name of a repository.
    project_id str
    The OCID of the DevOps project containing the repository.
    repository_type str

    (Updatable) Type of repository. Allowed values: MIRRORED HOSTED

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

    default_branch str
    (Updatable) The default branch of the repository.
    defined_tags Mapping[str, Any]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
    description str
    (Updatable) Details of the repository. Avoid entering confidential information.
    freeform_tags Mapping[str, Any]
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example: {"bar-key": "value"}
    mirror_repository_config RepositoryMirrorRepositoryConfigArgs
    (Updatable) Configuration information for mirroring the repository.
    name str
    (Updatable) Unique name of a repository.
    projectId String
    The OCID of the DevOps project containing the repository.
    repositoryType String

    (Updatable) Type of repository. Allowed values: MIRRORED HOSTED

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

    defaultBranch String
    (Updatable) The default branch of the repository.
    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
    description String
    (Updatable) Details of the repository. Avoid entering confidential information.
    freeformTags Map<Any>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example: {"bar-key": "value"}
    mirrorRepositoryConfig Property Map
    (Updatable) Configuration information for mirroring the repository.
    name String
    (Updatable) Unique name of a repository.

    Outputs

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

    BranchCount int
    The count of the branches present in the repository.
    CommitCount int
    The count of the commits present in the repository.
    CompartmentId string
    The OCID of the repository's compartment.
    HttpUrl string
    HTTP URL that you use to git clone, pull and push.
    Id string
    The provider-assigned unique ID for this managed resource.
    LifecyleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    Namespace string
    Tenancy unique namespace.
    ProjectName string
    Unique project name in a namespace.
    SizeInBytes string
    The size of the repository in bytes.
    SshUrl string
    SSH URL that you use to git clone, pull and push.
    State string
    The current state of the repository.
    SystemTags Dictionary<string, object>
    Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The time the repository was created. Format defined by RFC3339.
    TimeUpdated string
    The time the repository was updated. Format defined by RFC3339.
    TriggerBuildEvents List<string>
    Trigger build events supported for this repository: PUSH - Build is triggered when a push event occurs. COMMIT_UPDATES - Build is triggered when new commits are mirrored into a repository.
    BranchCount int
    The count of the branches present in the repository.
    CommitCount int
    The count of the commits present in the repository.
    CompartmentId string
    The OCID of the repository's compartment.
    HttpUrl string
    HTTP URL that you use to git clone, pull and push.
    Id string
    The provider-assigned unique ID for this managed resource.
    LifecyleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    Namespace string
    Tenancy unique namespace.
    ProjectName string
    Unique project name in a namespace.
    SizeInBytes string
    The size of the repository in bytes.
    SshUrl string
    SSH URL that you use to git clone, pull and push.
    State string
    The current state of the repository.
    SystemTags map[string]interface{}
    Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The time the repository was created. Format defined by RFC3339.
    TimeUpdated string
    The time the repository was updated. Format defined by RFC3339.
    TriggerBuildEvents []string
    Trigger build events supported for this repository: PUSH - Build is triggered when a push event occurs. COMMIT_UPDATES - Build is triggered when new commits are mirrored into a repository.
    branchCount Integer
    The count of the branches present in the repository.
    commitCount Integer
    The count of the commits present in the repository.
    compartmentId String
    The OCID of the repository's compartment.
    httpUrl String
    HTTP URL that you use to git clone, pull and push.
    id String
    The provider-assigned unique ID for this managed resource.
    lifecyleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    namespace String
    Tenancy unique namespace.
    projectName String
    Unique project name in a namespace.
    sizeInBytes String
    The size of the repository in bytes.
    sshUrl String
    SSH URL that you use to git clone, pull and push.
    state String
    The current state of the repository.
    systemTags Map<String,Object>
    Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The time the repository was created. Format defined by RFC3339.
    timeUpdated String
    The time the repository was updated. Format defined by RFC3339.
    triggerBuildEvents List<String>
    Trigger build events supported for this repository: PUSH - Build is triggered when a push event occurs. COMMIT_UPDATES - Build is triggered when new commits are mirrored into a repository.
    branchCount number
    The count of the branches present in the repository.
    commitCount number
    The count of the commits present in the repository.
    compartmentId string
    The OCID of the repository's compartment.
    httpUrl string
    HTTP URL that you use to git clone, pull and push.
    id string
    The provider-assigned unique ID for this managed resource.
    lifecyleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    namespace string
    Tenancy unique namespace.
    projectName string
    Unique project name in a namespace.
    sizeInBytes string
    The size of the repository in bytes.
    sshUrl string
    SSH URL that you use to git clone, pull and push.
    state string
    The current state of the repository.
    systemTags {[key: string]: any}
    Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The time the repository was created. Format defined by RFC3339.
    timeUpdated string
    The time the repository was updated. Format defined by RFC3339.
    triggerBuildEvents string[]
    Trigger build events supported for this repository: PUSH - Build is triggered when a push event occurs. COMMIT_UPDATES - Build is triggered when new commits are mirrored into a repository.
    branch_count int
    The count of the branches present in the repository.
    commit_count int
    The count of the commits present in the repository.
    compartment_id str
    The OCID of the repository's compartment.
    http_url str
    HTTP URL that you use to git clone, pull and push.
    id str
    The provider-assigned unique ID for this managed resource.
    lifecyle_details str
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    namespace str
    Tenancy unique namespace.
    project_name str
    Unique project name in a namespace.
    size_in_bytes str
    The size of the repository in bytes.
    ssh_url str
    SSH URL that you use to git clone, pull and push.
    state str
    The current state of the repository.
    system_tags Mapping[str, Any]
    Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    The time the repository was created. Format defined by RFC3339.
    time_updated str
    The time the repository was updated. Format defined by RFC3339.
    trigger_build_events Sequence[str]
    Trigger build events supported for this repository: PUSH - Build is triggered when a push event occurs. COMMIT_UPDATES - Build is triggered when new commits are mirrored into a repository.
    branchCount Number
    The count of the branches present in the repository.
    commitCount Number
    The count of the commits present in the repository.
    compartmentId String
    The OCID of the repository's compartment.
    httpUrl String
    HTTP URL that you use to git clone, pull and push.
    id String
    The provider-assigned unique ID for this managed resource.
    lifecyleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    namespace String
    Tenancy unique namespace.
    projectName String
    Unique project name in a namespace.
    sizeInBytes String
    The size of the repository in bytes.
    sshUrl String
    SSH URL that you use to git clone, pull and push.
    state String
    The current state of the repository.
    systemTags Map<Any>
    Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The time the repository was created. Format defined by RFC3339.
    timeUpdated String
    The time the repository was updated. Format defined by RFC3339.
    triggerBuildEvents List<String>
    Trigger build events supported for this repository: PUSH - Build is triggered when a push event occurs. COMMIT_UPDATES - Build is triggered when new commits are mirrored into a repository.

    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,
            branch_count: Optional[int] = None,
            commit_count: Optional[int] = None,
            compartment_id: Optional[str] = None,
            default_branch: Optional[str] = None,
            defined_tags: Optional[Mapping[str, Any]] = None,
            description: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, Any]] = None,
            http_url: Optional[str] = None,
            lifecyle_details: Optional[str] = None,
            mirror_repository_config: Optional[_devops.RepositoryMirrorRepositoryConfigArgs] = None,
            name: Optional[str] = None,
            namespace: Optional[str] = None,
            project_id: Optional[str] = None,
            project_name: Optional[str] = None,
            repository_type: Optional[str] = None,
            size_in_bytes: Optional[str] = None,
            ssh_url: Optional[str] = None,
            state: Optional[str] = None,
            system_tags: Optional[Mapping[str, Any]] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None,
            trigger_build_events: Optional[Sequence[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)
    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:
    BranchCount int
    The count of the branches present in the repository.
    CommitCount int
    The count of the commits present in the repository.
    CompartmentId string
    The OCID of the repository's compartment.
    DefaultBranch string
    (Updatable) The default branch of the repository.
    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
    Description string
    (Updatable) Details of the repository. Avoid entering confidential information.
    FreeformTags Dictionary<string, object>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example: {"bar-key": "value"}
    HttpUrl string
    HTTP URL that you use to git clone, pull and push.
    LifecyleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    MirrorRepositoryConfig RepositoryMirrorRepositoryConfig
    (Updatable) Configuration information for mirroring the repository.
    Name string
    (Updatable) Unique name of a repository.
    Namespace string
    Tenancy unique namespace.
    ProjectId string
    The OCID of the DevOps project containing the repository.
    ProjectName string
    Unique project name in a namespace.
    RepositoryType string

    (Updatable) Type of repository. Allowed values: MIRRORED HOSTED

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

    SizeInBytes string
    The size of the repository in bytes.
    SshUrl string
    SSH URL that you use to git clone, pull and push.
    State string
    The current state of the repository.
    SystemTags Dictionary<string, object>
    Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The time the repository was created. Format defined by RFC3339.
    TimeUpdated string
    The time the repository was updated. Format defined by RFC3339.
    TriggerBuildEvents List<string>
    Trigger build events supported for this repository: PUSH - Build is triggered when a push event occurs. COMMIT_UPDATES - Build is triggered when new commits are mirrored into a repository.
    BranchCount int
    The count of the branches present in the repository.
    CommitCount int
    The count of the commits present in the repository.
    CompartmentId string
    The OCID of the repository's compartment.
    DefaultBranch string
    (Updatable) The default branch of the repository.
    DefinedTags map[string]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
    Description string
    (Updatable) Details of the repository. Avoid entering confidential information.
    FreeformTags map[string]interface{}
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example: {"bar-key": "value"}
    HttpUrl string
    HTTP URL that you use to git clone, pull and push.
    LifecyleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    MirrorRepositoryConfig RepositoryMirrorRepositoryConfigArgs
    (Updatable) Configuration information for mirroring the repository.
    Name string
    (Updatable) Unique name of a repository.
    Namespace string
    Tenancy unique namespace.
    ProjectId string
    The OCID of the DevOps project containing the repository.
    ProjectName string
    Unique project name in a namespace.
    RepositoryType string

    (Updatable) Type of repository. Allowed values: MIRRORED HOSTED

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

    SizeInBytes string
    The size of the repository in bytes.
    SshUrl string
    SSH URL that you use to git clone, pull and push.
    State string
    The current state of the repository.
    SystemTags map[string]interface{}
    Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The time the repository was created. Format defined by RFC3339.
    TimeUpdated string
    The time the repository was updated. Format defined by RFC3339.
    TriggerBuildEvents []string
    Trigger build events supported for this repository: PUSH - Build is triggered when a push event occurs. COMMIT_UPDATES - Build is triggered when new commits are mirrored into a repository.
    branchCount Integer
    The count of the branches present in the repository.
    commitCount Integer
    The count of the commits present in the repository.
    compartmentId String
    The OCID of the repository's compartment.
    defaultBranch String
    (Updatable) The default branch of the repository.
    definedTags Map<String,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
    description String
    (Updatable) Details of the repository. Avoid entering confidential information.
    freeformTags Map<String,Object>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example: {"bar-key": "value"}
    httpUrl String
    HTTP URL that you use to git clone, pull and push.
    lifecyleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    mirrorRepositoryConfig RepositoryMirrorRepositoryConfig
    (Updatable) Configuration information for mirroring the repository.
    name String
    (Updatable) Unique name of a repository.
    namespace String
    Tenancy unique namespace.
    projectId String
    The OCID of the DevOps project containing the repository.
    projectName String
    Unique project name in a namespace.
    repositoryType String

    (Updatable) Type of repository. Allowed values: MIRRORED HOSTED

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

    sizeInBytes String
    The size of the repository in bytes.
    sshUrl String
    SSH URL that you use to git clone, pull and push.
    state String
    The current state of the repository.
    systemTags Map<String,Object>
    Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The time the repository was created. Format defined by RFC3339.
    timeUpdated String
    The time the repository was updated. Format defined by RFC3339.
    triggerBuildEvents List<String>
    Trigger build events supported for this repository: PUSH - Build is triggered when a push event occurs. COMMIT_UPDATES - Build is triggered when new commits are mirrored into a repository.
    branchCount number
    The count of the branches present in the repository.
    commitCount number
    The count of the commits present in the repository.
    compartmentId string
    The OCID of the repository's compartment.
    defaultBranch string
    (Updatable) The default branch of the repository.
    definedTags {[key: string]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
    description string
    (Updatable) Details of the repository. Avoid entering confidential information.
    freeformTags {[key: string]: any}
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example: {"bar-key": "value"}
    httpUrl string
    HTTP URL that you use to git clone, pull and push.
    lifecyleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    mirrorRepositoryConfig RepositoryMirrorRepositoryConfig
    (Updatable) Configuration information for mirroring the repository.
    name string
    (Updatable) Unique name of a repository.
    namespace string
    Tenancy unique namespace.
    projectId string
    The OCID of the DevOps project containing the repository.
    projectName string
    Unique project name in a namespace.
    repositoryType string

    (Updatable) Type of repository. Allowed values: MIRRORED HOSTED

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

    sizeInBytes string
    The size of the repository in bytes.
    sshUrl string
    SSH URL that you use to git clone, pull and push.
    state string
    The current state of the repository.
    systemTags {[key: string]: any}
    Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The time the repository was created. Format defined by RFC3339.
    timeUpdated string
    The time the repository was updated. Format defined by RFC3339.
    triggerBuildEvents string[]
    Trigger build events supported for this repository: PUSH - Build is triggered when a push event occurs. COMMIT_UPDATES - Build is triggered when new commits are mirrored into a repository.
    branch_count int
    The count of the branches present in the repository.
    commit_count int
    The count of the commits present in the repository.
    compartment_id str
    The OCID of the repository's compartment.
    default_branch str
    (Updatable) The default branch of the repository.
    defined_tags Mapping[str, Any]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
    description str
    (Updatable) Details of the repository. Avoid entering confidential information.
    freeform_tags Mapping[str, Any]
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example: {"bar-key": "value"}
    http_url str
    HTTP URL that you use to git clone, pull and push.
    lifecyle_details str
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    mirror_repository_config RepositoryMirrorRepositoryConfigArgs
    (Updatable) Configuration information for mirroring the repository.
    name str
    (Updatable) Unique name of a repository.
    namespace str
    Tenancy unique namespace.
    project_id str
    The OCID of the DevOps project containing the repository.
    project_name str
    Unique project name in a namespace.
    repository_type str

    (Updatable) Type of repository. Allowed values: MIRRORED HOSTED

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

    size_in_bytes str
    The size of the repository in bytes.
    ssh_url str
    SSH URL that you use to git clone, pull and push.
    state str
    The current state of the repository.
    system_tags Mapping[str, Any]
    Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    The time the repository was created. Format defined by RFC3339.
    time_updated str
    The time the repository was updated. Format defined by RFC3339.
    trigger_build_events Sequence[str]
    Trigger build events supported for this repository: PUSH - Build is triggered when a push event occurs. COMMIT_UPDATES - Build is triggered when new commits are mirrored into a repository.
    branchCount Number
    The count of the branches present in the repository.
    commitCount Number
    The count of the commits present in the repository.
    compartmentId String
    The OCID of the repository's compartment.
    defaultBranch String
    (Updatable) The default branch of the repository.
    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
    description String
    (Updatable) Details of the repository. Avoid entering confidential information.
    freeformTags Map<Any>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example: {"bar-key": "value"}
    httpUrl String
    HTTP URL that you use to git clone, pull and push.
    lifecyleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    mirrorRepositoryConfig Property Map
    (Updatable) Configuration information for mirroring the repository.
    name String
    (Updatable) Unique name of a repository.
    namespace String
    Tenancy unique namespace.
    projectId String
    The OCID of the DevOps project containing the repository.
    projectName String
    Unique project name in a namespace.
    repositoryType String

    (Updatable) Type of repository. Allowed values: MIRRORED HOSTED

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

    sizeInBytes String
    The size of the repository in bytes.
    sshUrl String
    SSH URL that you use to git clone, pull and push.
    state String
    The current state of the repository.
    systemTags Map<Any>
    Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The time the repository was created. Format defined by RFC3339.
    timeUpdated String
    The time the repository was updated. Format defined by RFC3339.
    triggerBuildEvents List<String>
    Trigger build events supported for this repository: PUSH - Build is triggered when a push event occurs. COMMIT_UPDATES - Build is triggered when new commits are mirrored into a repository.

    Supporting Types

    RepositoryMirrorRepositoryConfig, RepositoryMirrorRepositoryConfigArgs

    ConnectorId string
    (Updatable) Upstream git repository connection identifer.
    RepositoryUrl string
    (Updatable) URL of external repository you want to mirror.
    TriggerSchedule RepositoryMirrorRepositoryConfigTriggerSchedule
    (Updatable) Specifies a trigger schedule. Timing information for when to initiate automated syncs.
    ConnectorId string
    (Updatable) Upstream git repository connection identifer.
    RepositoryUrl string
    (Updatable) URL of external repository you want to mirror.
    TriggerSchedule RepositoryMirrorRepositoryConfigTriggerSchedule
    (Updatable) Specifies a trigger schedule. Timing information for when to initiate automated syncs.
    connectorId String
    (Updatable) Upstream git repository connection identifer.
    repositoryUrl String
    (Updatable) URL of external repository you want to mirror.
    triggerSchedule RepositoryMirrorRepositoryConfigTriggerSchedule
    (Updatable) Specifies a trigger schedule. Timing information for when to initiate automated syncs.
    connectorId string
    (Updatable) Upstream git repository connection identifer.
    repositoryUrl string
    (Updatable) URL of external repository you want to mirror.
    triggerSchedule RepositoryMirrorRepositoryConfigTriggerSchedule
    (Updatable) Specifies a trigger schedule. Timing information for when to initiate automated syncs.
    connector_id str
    (Updatable) Upstream git repository connection identifer.
    repository_url str
    (Updatable) URL of external repository you want to mirror.
    trigger_schedule RepositoryMirrorRepositoryConfigTriggerSchedule
    (Updatable) Specifies a trigger schedule. Timing information for when to initiate automated syncs.
    connectorId String
    (Updatable) Upstream git repository connection identifer.
    repositoryUrl String
    (Updatable) URL of external repository you want to mirror.
    triggerSchedule Property Map
    (Updatable) Specifies a trigger schedule. Timing information for when to initiate automated syncs.

    RepositoryMirrorRepositoryConfigTriggerSchedule, RepositoryMirrorRepositoryConfigTriggerScheduleArgs

    ScheduleType string
    (Updatable) Different types of trigger schedule: NONE - No automated synchronization schedule. DEFAULT - Trigger schedule is every 30 minutes. CUSTOM - Custom triggering schedule.
    CustomSchedule string
    (Updatable) Valid if type is CUSTOM. Following RFC 5545 recurrence rules, we can specify starting time, occurrence frequency, and interval size. Example for frequency could be DAILY/WEEKLY/HOURLY or any RFC 5545 supported frequency, which is followed by start time of this window. You can control the start time with BYHOUR, BYMINUTE and BYSECONDS. It is followed by the interval size.
    ScheduleType string
    (Updatable) Different types of trigger schedule: NONE - No automated synchronization schedule. DEFAULT - Trigger schedule is every 30 minutes. CUSTOM - Custom triggering schedule.
    CustomSchedule string
    (Updatable) Valid if type is CUSTOM. Following RFC 5545 recurrence rules, we can specify starting time, occurrence frequency, and interval size. Example for frequency could be DAILY/WEEKLY/HOURLY or any RFC 5545 supported frequency, which is followed by start time of this window. You can control the start time with BYHOUR, BYMINUTE and BYSECONDS. It is followed by the interval size.
    scheduleType String
    (Updatable) Different types of trigger schedule: NONE - No automated synchronization schedule. DEFAULT - Trigger schedule is every 30 minutes. CUSTOM - Custom triggering schedule.
    customSchedule String
    (Updatable) Valid if type is CUSTOM. Following RFC 5545 recurrence rules, we can specify starting time, occurrence frequency, and interval size. Example for frequency could be DAILY/WEEKLY/HOURLY or any RFC 5545 supported frequency, which is followed by start time of this window. You can control the start time with BYHOUR, BYMINUTE and BYSECONDS. It is followed by the interval size.
    scheduleType string
    (Updatable) Different types of trigger schedule: NONE - No automated synchronization schedule. DEFAULT - Trigger schedule is every 30 minutes. CUSTOM - Custom triggering schedule.
    customSchedule string
    (Updatable) Valid if type is CUSTOM. Following RFC 5545 recurrence rules, we can specify starting time, occurrence frequency, and interval size. Example for frequency could be DAILY/WEEKLY/HOURLY or any RFC 5545 supported frequency, which is followed by start time of this window. You can control the start time with BYHOUR, BYMINUTE and BYSECONDS. It is followed by the interval size.
    schedule_type str
    (Updatable) Different types of trigger schedule: NONE - No automated synchronization schedule. DEFAULT - Trigger schedule is every 30 minutes. CUSTOM - Custom triggering schedule.
    custom_schedule str
    (Updatable) Valid if type is CUSTOM. Following RFC 5545 recurrence rules, we can specify starting time, occurrence frequency, and interval size. Example for frequency could be DAILY/WEEKLY/HOURLY or any RFC 5545 supported frequency, which is followed by start time of this window. You can control the start time with BYHOUR, BYMINUTE and BYSECONDS. It is followed by the interval size.
    scheduleType String
    (Updatable) Different types of trigger schedule: NONE - No automated synchronization schedule. DEFAULT - Trigger schedule is every 30 minutes. CUSTOM - Custom triggering schedule.
    customSchedule String
    (Updatable) Valid if type is CUSTOM. Following RFC 5545 recurrence rules, we can specify starting time, occurrence frequency, and interval size. Example for frequency could be DAILY/WEEKLY/HOURLY or any RFC 5545 supported frequency, which is followed by start time of this window. You can control the start time with BYHOUR, BYMINUTE and BYSECONDS. It is followed by the interval size.

    Import

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

    $ pulumi import oci:DevOps/repository:Repository test_repository "id"
    

    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.29.0 published on Thursday, Mar 28, 2024 by Pulumi