Class Repository (1.6.1)

Repository(mapping=None, *, ignore_unknown_fields=False, **kwargs)

A Repository for storing artifacts with a specific format.

.. _oneof: https://proto-plus-python.readthedocs.io/en/stable/fields.html#oneofs-mutually-exclusive-fields

Attributes

NameDescription
maven_config google.cloud.artifactregistry_v1.types.Repository.MavenRepositoryConfig
Maven repository config contains repository level configuration for the repositories of maven type. This field is a member of oneof_ format_config.
name str
The name of the repository, for example: "projects/p1/locations/us-central1/repositories/repo1".
format_ google.cloud.artifactregistry_v1.types.Repository.Format
The format of packages that are stored in the repository.
description str
The user-provided description of the repository.
labels MutableMapping[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.
create_time google.protobuf.timestamp_pb2.Timestamp
The time when the repository was created.
update_time google.protobuf.timestamp_pb2.Timestamp
The time when the repository was last updated.
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.

Classes

Format

Format(value)

A package format.

Values: FORMAT_UNSPECIFIED (0): Unspecified package format. DOCKER (1): Docker package format. MAVEN (2): Maven package format. NPM (3): NPM package format. APT (5): APT package format. YUM (6): YUM package format. PYTHON (8): Python package format.

LabelsEntry

LabelsEntry(mapping=None, *, ignore_unknown_fields=False, **kwargs)

The abstract base class for a message.

Parameters
NameDescription
kwargs dict

Keys and values corresponding to the fields of the message.

mapping Union[dict, .Message]

A dictionary or message to be used to determine the values for this message.

ignore_unknown_fields Optional(bool)

If True, do not raise errors for unknown fields. Only applied if mapping is a mapping type or there are keyword parameters.

MavenRepositoryConfig

MavenRepositoryConfig(mapping=None, *, ignore_unknown_fields=False, **kwargs)

MavenRepositoryConfig is maven related repository details. Provides additional configuration details for repositories of the maven format type.