1. Packages
  2. Google Cloud Native
  3. API Docs
  4. artifactregistry
  5. artifactregistry/v1beta1
  6. Repository

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi

google-native.artifactregistry/v1beta1.Repository

Explore with Pulumi AI

google-native logo

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi

    Creates a repository. The returned Operation will finish once the repository has been created. Its response will be the created Repository.

    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,
                   repository_id: Optional[str] = None,
                   description: Optional[str] = None,
                   format: Optional[RepositoryFormat] = None,
                   kms_key_name: Optional[str] = None,
                   labels: Optional[Mapping[str, str]] = None,
                   location: Optional[str] = None,
                   name: Optional[str] = None,
                   project: Optional[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: google-native:artifactregistry/v1beta1:Repository
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args 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.

    Example

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

    var google_nativeRepositoryResource = new GoogleNative.ArtifactRegistry.V1Beta1.Repository("google-nativeRepositoryResource", new()
    {
        RepositoryId = "string",
        Description = "string",
        Format = GoogleNative.ArtifactRegistry.V1Beta1.RepositoryFormat.FormatUnspecified,
        KmsKeyName = "string",
        Labels = 
        {
            { "string", "string" },
        },
        Location = "string",
        Name = "string",
        Project = "string",
    });
    
    example, err := artifactregistryv1beta1.NewRepository(ctx, "google-nativeRepositoryResource", &artifactregistryv1beta1.RepositoryArgs{
    RepositoryId: pulumi.String("string"),
    Description: pulumi.String("string"),
    Format: artifactregistryv1beta1.RepositoryFormatFormatUnspecified,
    KmsKeyName: pulumi.String("string"),
    Labels: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    Location: pulumi.String("string"),
    Name: pulumi.String("string"),
    Project: pulumi.String("string"),
    })
    
    var google_nativeRepositoryResource = new Repository("google-nativeRepositoryResource", RepositoryArgs.builder()        
        .repositoryId("string")
        .description("string")
        .format("FORMAT_UNSPECIFIED")
        .kmsKeyName("string")
        .labels(Map.of("string", "string"))
        .location("string")
        .name("string")
        .project("string")
        .build());
    
    google_native_repository_resource = google_native.artifactregistry.v1beta1.Repository("google-nativeRepositoryResource",
        repository_id="string",
        description="string",
        format=google_native.artifactregistry.v1beta1.RepositoryFormat.FORMAT_UNSPECIFIED,
        kms_key_name="string",
        labels={
            "string": "string",
        },
        location="string",
        name="string",
        project="string")
    
    const google_nativeRepositoryResource = new google_native.artifactregistry.v1beta1.Repository("google-nativeRepositoryResource", {
        repositoryId: "string",
        description: "string",
        format: google_native.artifactregistry.v1beta1.RepositoryFormat.FormatUnspecified,
        kmsKeyName: "string",
        labels: {
            string: "string",
        },
        location: "string",
        name: "string",
        project: "string",
    });
    
    type: google-native:artifactregistry/v1beta1:Repository
    properties:
        description: string
        format: FORMAT_UNSPECIFIED
        kmsKeyName: string
        labels:
            string: string
        location: string
        name: string
        project: string
        repositoryId: string
    

    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:

    RepositoryId string
    Required. The repository id to use for this repository.
    Description string
    The user-provided description of the repository.
    Format Pulumi.GoogleNative.ArtifactRegistry.V1Beta1.RepositoryFormat
    Optional. The format of packages that are stored in the repository.
    KmsKeyName string
    The Cloud KMS resource name of the customer managed encryption key that's used to encrypt the contents of the Repository. Has the form: projects/my-project/locations/my-region/keyRings/my-kr/cryptoKeys/my-key. This value may not be changed after the Repository has been created.
    Labels Dictionary<string, string>
    Labels with user-defined metadata. This field may contain up to 64 entries. Label keys and values may be no longer than 63 characters. Label keys must begin with a lowercase letter and may only contain lowercase letters, numeric characters, underscores, and dashes.
    Location string
    Name string
    The name of the repository, for example: projects/p1/locations/us-central1/repositories/repo1.
    Project string
    RepositoryId string
    Required. The repository id to use for this repository.
    Description string
    The user-provided description of the repository.
    Format RepositoryFormat
    Optional. The format of packages that are stored in the repository.
    KmsKeyName string
    The Cloud KMS resource name of the customer managed encryption key that's used to encrypt the contents of the Repository. Has the form: projects/my-project/locations/my-region/keyRings/my-kr/cryptoKeys/my-key. This value may not be changed after the Repository has been created.
    Labels map[string]string
    Labels with user-defined metadata. This field may contain up to 64 entries. Label keys and values may be no longer than 63 characters. Label keys must begin with a lowercase letter and may only contain lowercase letters, numeric characters, underscores, and dashes.
    Location string
    Name string
    The name of the repository, for example: projects/p1/locations/us-central1/repositories/repo1.
    Project string
    repositoryId String
    Required. The repository id to use for this repository.
    description String
    The user-provided description of the repository.
    format RepositoryFormat
    Optional. The format of packages that are stored in the repository.
    kmsKeyName String
    The Cloud KMS resource name of the customer managed encryption key that's used to encrypt the contents of the Repository. Has the form: projects/my-project/locations/my-region/keyRings/my-kr/cryptoKeys/my-key. This value may not be changed after the Repository has been created.
    labels Map<String,String>
    Labels with user-defined metadata. This field may contain up to 64 entries. Label keys and values may be no longer than 63 characters. Label keys must begin with a lowercase letter and may only contain lowercase letters, numeric characters, underscores, and dashes.
    location String
    name String
    The name of the repository, for example: projects/p1/locations/us-central1/repositories/repo1.
    project String
    repositoryId string
    Required. The repository id to use for this repository.
    description string
    The user-provided description of the repository.
    format RepositoryFormat
    Optional. The format of packages that are stored in the repository.
    kmsKeyName string
    The Cloud KMS resource name of the customer managed encryption key that's used to encrypt the contents of the Repository. Has the form: projects/my-project/locations/my-region/keyRings/my-kr/cryptoKeys/my-key. This value may not be changed after the Repository has been created.
    labels {[key: string]: string}
    Labels with user-defined metadata. This field may contain up to 64 entries. Label keys and values may be no longer than 63 characters. Label keys must begin with a lowercase letter and may only contain lowercase letters, numeric characters, underscores, and dashes.
    location string
    name string
    The name of the repository, for example: projects/p1/locations/us-central1/repositories/repo1.
    project string
    repository_id str
    Required. The repository id to use for this repository.
    description str
    The user-provided description of the repository.
    format RepositoryFormat
    Optional. The format of packages that are stored in the repository.
    kms_key_name str
    The Cloud KMS resource name of the customer managed encryption key that's used to encrypt the contents of the Repository. Has the form: projects/my-project/locations/my-region/keyRings/my-kr/cryptoKeys/my-key. This value may not be changed after the Repository has been created.
    labels Mapping[str, str]
    Labels with user-defined metadata. This field may contain up to 64 entries. Label keys and values may be no longer than 63 characters. Label keys must begin with a lowercase letter and may only contain lowercase letters, numeric characters, underscores, and dashes.
    location str
    name str
    The name of the repository, for example: projects/p1/locations/us-central1/repositories/repo1.
    project str
    repositoryId String
    Required. The repository id to use for this repository.
    description String
    The user-provided description of the repository.
    format "FORMAT_UNSPECIFIED" | "DOCKER" | "MAVEN" | "NPM" | "APT" | "YUM" | "GOOGET" | "PYTHON"
    Optional. The format of packages that are stored in the repository.
    kmsKeyName String
    The Cloud KMS resource name of the customer managed encryption key that's used to encrypt the contents of the Repository. Has the form: projects/my-project/locations/my-region/keyRings/my-kr/cryptoKeys/my-key. This value may not be changed after the Repository has been created.
    labels Map<String>
    Labels with user-defined metadata. This field may contain up to 64 entries. Label keys and values may be no longer than 63 characters. Label keys must begin with a lowercase letter and may only contain lowercase letters, numeric characters, underscores, and dashes.
    location String
    name String
    The name of the repository, for example: projects/p1/locations/us-central1/repositories/repo1.
    project String

    Outputs

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

    CreateTime string
    The time when the repository was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    SatisfiesPzs bool
    If set, the repository satisfies physical zone separation.
    SizeBytes string
    The size, in bytes, of all artifact storage in this repository. Repositories that are generally available or in public preview use this to calculate storage costs.
    UpdateTime string
    The time when the repository was last updated.
    CreateTime string
    The time when the repository was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    SatisfiesPzs bool
    If set, the repository satisfies physical zone separation.
    SizeBytes string
    The size, in bytes, of all artifact storage in this repository. Repositories that are generally available or in public preview use this to calculate storage costs.
    UpdateTime string
    The time when the repository was last updated.
    createTime String
    The time when the repository was created.
    id String
    The provider-assigned unique ID for this managed resource.
    satisfiesPzs Boolean
    If set, the repository satisfies physical zone separation.
    sizeBytes String
    The size, in bytes, of all artifact storage in this repository. Repositories that are generally available or in public preview use this to calculate storage costs.
    updateTime String
    The time when the repository was last updated.
    createTime string
    The time when the repository was created.
    id string
    The provider-assigned unique ID for this managed resource.
    satisfiesPzs boolean
    If set, the repository satisfies physical zone separation.
    sizeBytes string
    The size, in bytes, of all artifact storage in this repository. Repositories that are generally available or in public preview use this to calculate storage costs.
    updateTime string
    The time when the repository was last updated.
    create_time str
    The time when the repository was created.
    id str
    The provider-assigned unique ID for this managed resource.
    satisfies_pzs bool
    If set, the repository satisfies physical zone separation.
    size_bytes str
    The size, in bytes, of all artifact storage in this repository. Repositories that are generally available or in public preview use this to calculate storage costs.
    update_time str
    The time when the repository was last updated.
    createTime String
    The time when the repository was created.
    id String
    The provider-assigned unique ID for this managed resource.
    satisfiesPzs Boolean
    If set, the repository satisfies physical zone separation.
    sizeBytes String
    The size, in bytes, of all artifact storage in this repository. Repositories that are generally available or in public preview use this to calculate storage costs.
    updateTime String
    The time when the repository was last updated.

    Supporting Types

    RepositoryFormat, RepositoryFormatArgs

    FormatUnspecified
    FORMAT_UNSPECIFIEDUnspecified package format.
    Docker
    DOCKERDocker package format.
    Maven
    MAVENMaven package format.
    Npm
    NPMNPM package format.
    Apt
    APTAPT package format.
    Yum
    YUMYUM package format.
    Googet
    GOOGETGooGet package format.
    Python
    PYTHONPython package format.
    RepositoryFormatFormatUnspecified
    FORMAT_UNSPECIFIEDUnspecified package format.
    RepositoryFormatDocker
    DOCKERDocker package format.
    RepositoryFormatMaven
    MAVENMaven package format.
    RepositoryFormatNpm
    NPMNPM package format.
    RepositoryFormatApt
    APTAPT package format.
    RepositoryFormatYum
    YUMYUM package format.
    RepositoryFormatGooget
    GOOGETGooGet package format.
    RepositoryFormatPython
    PYTHONPython package format.
    FormatUnspecified
    FORMAT_UNSPECIFIEDUnspecified package format.
    Docker
    DOCKERDocker package format.
    Maven
    MAVENMaven package format.
    Npm
    NPMNPM package format.
    Apt
    APTAPT package format.
    Yum
    YUMYUM package format.
    Googet
    GOOGETGooGet package format.
    Python
    PYTHONPython package format.
    FormatUnspecified
    FORMAT_UNSPECIFIEDUnspecified package format.
    Docker
    DOCKERDocker package format.
    Maven
    MAVENMaven package format.
    Npm
    NPMNPM package format.
    Apt
    APTAPT package format.
    Yum
    YUMYUM package format.
    Googet
    GOOGETGooGet package format.
    Python
    PYTHONPython package format.
    FORMAT_UNSPECIFIED
    FORMAT_UNSPECIFIEDUnspecified package format.
    DOCKER
    DOCKERDocker package format.
    MAVEN
    MAVENMaven package format.
    NPM
    NPMNPM package format.
    APT
    APTAPT package format.
    YUM
    YUMYUM package format.
    GOOGET
    GOOGETGooGet package format.
    PYTHON
    PYTHONPython package format.
    "FORMAT_UNSPECIFIED"
    FORMAT_UNSPECIFIEDUnspecified package format.
    "DOCKER"
    DOCKERDocker package format.
    "MAVEN"
    MAVENMaven package format.
    "NPM"
    NPMNPM package format.
    "APT"
    APTAPT package format.
    "YUM"
    YUMYUM package format.
    "GOOGET"
    GOOGETGooGet package format.
    "PYTHON"
    PYTHONPython package format.

    Package Details

    Repository
    Google Cloud Native pulumi/pulumi-google-native
    License
    Apache-2.0
    google-native logo

    Google Cloud Native is in preview. Google Cloud Classic is fully supported.

    Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi