public final class Repository extends GeneratedMessageV3 implements RepositoryOrBuilder
A Repository for storing artifacts with a specific format.
Protobuf type google.devtools.artifactregistry.v1.Repository
Inherited Members
com.google.protobuf.GeneratedMessageV3.<ListT>makeMutableCopy(ListT)
com.google.protobuf.GeneratedMessageV3.<ListT>makeMutableCopy(ListT,int)
com.google.protobuf.GeneratedMessageV3.<T>emptyList(java.lang.Class<T>)
com.google.protobuf.GeneratedMessageV3.internalGetMapFieldReflection(int)
Static Fields
public static final int CLEANUP_POLICIES_FIELD_NUMBER
Field Value |
Type |
Description |
int |
|
public static final int CLEANUP_POLICY_DRY_RUN_FIELD_NUMBER
Field Value |
Type |
Description |
int |
|
public static final int CREATE_TIME_FIELD_NUMBER
Field Value |
Type |
Description |
int |
|
public static final int DESCRIPTION_FIELD_NUMBER
Field Value |
Type |
Description |
int |
|
public static final int DOCKER_CONFIG_FIELD_NUMBER
Field Value |
Type |
Description |
int |
|
public static final int FORMAT_FIELD_NUMBER
Field Value |
Type |
Description |
int |
|
public static final int KMS_KEY_NAME_FIELD_NUMBER
Field Value |
Type |
Description |
int |
|
public static final int LABELS_FIELD_NUMBER
Field Value |
Type |
Description |
int |
|
public static final int MAVEN_CONFIG_FIELD_NUMBER
Field Value |
Type |
Description |
int |
|
public static final int MODE_FIELD_NUMBER
Field Value |
Type |
Description |
int |
|
public static final int NAME_FIELD_NUMBER
Field Value |
Type |
Description |
int |
|
public static final int REMOTE_REPOSITORY_CONFIG_FIELD_NUMBER
Field Value |
Type |
Description |
int |
|
public static final int SATISFIES_PZS_FIELD_NUMBER
Field Value |
Type |
Description |
int |
|
public static final int SIZE_BYTES_FIELD_NUMBER
Field Value |
Type |
Description |
int |
|
public static final int UPDATE_TIME_FIELD_NUMBER
Field Value |
Type |
Description |
int |
|
public static final int VIRTUAL_REPOSITORY_CONFIG_FIELD_NUMBER
Field Value |
Type |
Description |
int |
|
Static Methods
public static Repository getDefaultInstance()
public static final Descriptors.Descriptor getDescriptor()
public static Repository.Builder newBuilder()
public static Repository.Builder newBuilder(Repository prototype)
public static Repository parseDelimitedFrom(InputStream input)
public static Repository parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
public static Repository parseFrom(byte[] data)
Parameter |
Name |
Description |
data |
byte[]
|
public static Repository parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
public static Repository parseFrom(ByteString data)
public static Repository parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
public static Repository parseFrom(CodedInputStream input)
public static Repository parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
public static Repository parseFrom(InputStream input)
public static Repository parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
public static Repository parseFrom(ByteBuffer data)
public static Repository parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
public static Parser<Repository> parser()
Methods
public boolean containsCleanupPolicies(String key)
Optional. Cleanup policies for this repository. Cleanup policies indicate
when certain package versions can be automatically deleted. Map keys are
policy IDs supplied by users during policy creation. They must unique
within a repository and be under 128 characters in length.
map<string, .google.devtools.artifactregistry.v1.CleanupPolicy> cleanup_policies = 12 [(.google.api.field_behavior) = OPTIONAL];
Parameter |
Name |
Description |
key |
String
|
public boolean containsLabels(String key)
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.
map<string, string> labels = 4;
Parameter |
Name |
Description |
key |
String
|
public boolean equals(Object obj)
Parameter |
Name |
Description |
obj |
Object
|
Overrides
public Map<String,CleanupPolicy> getCleanupPolicies()
public int getCleanupPoliciesCount()
Optional. Cleanup policies for this repository. Cleanup policies indicate
when certain package versions can be automatically deleted. Map keys are
policy IDs supplied by users during policy creation. They must unique
within a repository and be under 128 characters in length.
map<string, .google.devtools.artifactregistry.v1.CleanupPolicy> cleanup_policies = 12 [(.google.api.field_behavior) = OPTIONAL];
Returns |
Type |
Description |
int |
|
public Map<String,CleanupPolicy> getCleanupPoliciesMap()
Optional. Cleanup policies for this repository. Cleanup policies indicate
when certain package versions can be automatically deleted. Map keys are
policy IDs supplied by users during policy creation. They must unique
within a repository and be under 128 characters in length.
map<string, .google.devtools.artifactregistry.v1.CleanupPolicy> cleanup_policies = 12 [(.google.api.field_behavior) = OPTIONAL];
public CleanupPolicy getCleanupPoliciesOrDefault(String key, CleanupPolicy defaultValue)
Optional. Cleanup policies for this repository. Cleanup policies indicate
when certain package versions can be automatically deleted. Map keys are
policy IDs supplied by users during policy creation. They must unique
within a repository and be under 128 characters in length.
map<string, .google.devtools.artifactregistry.v1.CleanupPolicy> cleanup_policies = 12 [(.google.api.field_behavior) = OPTIONAL];
public CleanupPolicy getCleanupPoliciesOrThrow(String key)
Optional. Cleanup policies for this repository. Cleanup policies indicate
when certain package versions can be automatically deleted. Map keys are
policy IDs supplied by users during policy creation. They must unique
within a repository and be under 128 characters in length.
map<string, .google.devtools.artifactregistry.v1.CleanupPolicy> cleanup_policies = 12 [(.google.api.field_behavior) = OPTIONAL];
Parameter |
Name |
Description |
key |
String
|
public boolean getCleanupPolicyDryRun()
Optional. If true, the cleanup pipeline is prevented from deleting versions
in this repository.
bool cleanup_policy_dry_run = 18 [(.google.api.field_behavior) = OPTIONAL];
Returns |
Type |
Description |
boolean |
The cleanupPolicyDryRun.
|
public Timestamp getCreateTime()
Output only. The time when the repository was created.
.google.protobuf.Timestamp create_time = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns |
Type |
Description |
Timestamp |
The createTime.
|
public TimestampOrBuilder getCreateTimeOrBuilder()
Output only. The time when the repository was created.
.google.protobuf.Timestamp create_time = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
public Repository getDefaultInstanceForType()
public String getDescription()
The user-provided description of the repository.
string description = 3;
Returns |
Type |
Description |
String |
The description.
|
public ByteString getDescriptionBytes()
The user-provided description of the repository.
string description = 3;
Returns |
Type |
Description |
ByteString |
The bytes for description.
|
public Repository.DockerRepositoryConfig getDockerConfig()
Docker repository config contains repository level configuration
for the repositories of docker type.
.google.devtools.artifactregistry.v1.Repository.DockerRepositoryConfig docker_config = 17;
public Repository.DockerRepositoryConfigOrBuilder getDockerConfigOrBuilder()
Docker repository config contains repository level configuration
for the repositories of docker type.
.google.devtools.artifactregistry.v1.Repository.DockerRepositoryConfig docker_config = 17;
public Repository.Format getFormat()
Optional. The format of packages that are stored in the repository.
.google.devtools.artifactregistry.v1.Repository.Format format = 2 [(.google.api.field_behavior) = OPTIONAL];
public Repository.FormatConfigCase getFormatConfigCase()
public int getFormatValue()
Optional. The format of packages that are stored in the repository.
.google.devtools.artifactregistry.v1.Repository.Format format = 2 [(.google.api.field_behavior) = OPTIONAL];
Returns |
Type |
Description |
int |
The enum numeric value on the wire for format.
|
public String getKmsKeyName()
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.
string kms_key_name = 8;
Returns |
Type |
Description |
String |
The kmsKeyName.
|
public ByteString getKmsKeyNameBytes()
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.
string kms_key_name = 8;
Returns |
Type |
Description |
ByteString |
The bytes for kmsKeyName.
|
public Map<String,String> getLabels()
public int getLabelsCount()
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.
map<string, string> labels = 4;
Returns |
Type |
Description |
int |
|
public Map<String,String> getLabelsMap()
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.
map<string, string> labels = 4;
public String getLabelsOrDefault(String key, String defaultValue)
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.
map<string, string> labels = 4;
Returns |
Type |
Description |
String |
|
public String getLabelsOrThrow(String key)
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.
map<string, string> labels = 4;
Parameter |
Name |
Description |
key |
String
|
Returns |
Type |
Description |
String |
|
public Repository.MavenRepositoryConfig getMavenConfig()
Maven repository config contains repository level configuration
for the repositories of maven type.
.google.devtools.artifactregistry.v1.Repository.MavenRepositoryConfig maven_config = 9;
public Repository.MavenRepositoryConfigOrBuilder getMavenConfigOrBuilder()
Maven repository config contains repository level configuration
for the repositories of maven type.
.google.devtools.artifactregistry.v1.Repository.MavenRepositoryConfig maven_config = 9;
public Repository.Mode getMode()
Optional. The mode of the repository.
.google.devtools.artifactregistry.v1.Repository.Mode mode = 10 [(.google.api.field_behavior) = OPTIONAL];
public Repository.ModeConfigCase getModeConfigCase()
public int getModeValue()
Optional. The mode of the repository.
.google.devtools.artifactregistry.v1.Repository.Mode mode = 10 [(.google.api.field_behavior) = OPTIONAL];
Returns |
Type |
Description |
int |
The enum numeric value on the wire for mode.
|
The name of the repository, for example:
projects/p1/locations/us-central1/repositories/repo1
.
string name = 1;
Returns |
Type |
Description |
String |
The name.
|
public ByteString getNameBytes()
The name of the repository, for example:
projects/p1/locations/us-central1/repositories/repo1
.
string name = 1;
Returns |
Type |
Description |
ByteString |
The bytes for name.
|
public Parser<Repository> getParserForType()
Overrides
public RemoteRepositoryConfig getRemoteRepositoryConfig()
Configuration specific for a Remote Repository.
.google.devtools.artifactregistry.v1.RemoteRepositoryConfig remote_repository_config = 15;
public RemoteRepositoryConfigOrBuilder getRemoteRepositoryConfigOrBuilder()
Configuration specific for a Remote Repository.
.google.devtools.artifactregistry.v1.RemoteRepositoryConfig remote_repository_config = 15;
public boolean getSatisfiesPzs()
Output only. If set, the repository satisfies physical zone separation.
bool satisfies_pzs = 16 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns |
Type |
Description |
boolean |
The satisfiesPzs.
|
public int getSerializedSize()
Returns |
Type |
Description |
int |
|
Overrides
public long getSizeBytes()
Output only. 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.
int64 size_bytes = 13 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns |
Type |
Description |
long |
The sizeBytes.
|
public Timestamp getUpdateTime()
Output only. The time when the repository was last updated.
.google.protobuf.Timestamp update_time = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns |
Type |
Description |
Timestamp |
The updateTime.
|
public TimestampOrBuilder getUpdateTimeOrBuilder()
Output only. The time when the repository was last updated.
.google.protobuf.Timestamp update_time = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
public VirtualRepositoryConfig getVirtualRepositoryConfig()
Configuration specific for a Virtual Repository.
.google.devtools.artifactregistry.v1.VirtualRepositoryConfig virtual_repository_config = 14;
public VirtualRepositoryConfigOrBuilder getVirtualRepositoryConfigOrBuilder()
Configuration specific for a Virtual Repository.
.google.devtools.artifactregistry.v1.VirtualRepositoryConfig virtual_repository_config = 14;
public boolean hasCreateTime()
Output only. The time when the repository was created.
.google.protobuf.Timestamp create_time = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns |
Type |
Description |
boolean |
Whether the createTime field is set.
|
public boolean hasDockerConfig()
Docker repository config contains repository level configuration
for the repositories of docker type.
.google.devtools.artifactregistry.v1.Repository.DockerRepositoryConfig docker_config = 17;
Returns |
Type |
Description |
boolean |
Whether the dockerConfig field is set.
|
public boolean hasMavenConfig()
Maven repository config contains repository level configuration
for the repositories of maven type.
.google.devtools.artifactregistry.v1.Repository.MavenRepositoryConfig maven_config = 9;
Returns |
Type |
Description |
boolean |
Whether the mavenConfig field is set.
|
public boolean hasRemoteRepositoryConfig()
Configuration specific for a Remote Repository.
.google.devtools.artifactregistry.v1.RemoteRepositoryConfig remote_repository_config = 15;
Returns |
Type |
Description |
boolean |
Whether the remoteRepositoryConfig field is set.
|
public boolean hasUpdateTime()
Output only. The time when the repository was last updated.
.google.protobuf.Timestamp update_time = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns |
Type |
Description |
boolean |
Whether the updateTime field is set.
|
public boolean hasVirtualRepositoryConfig()
Configuration specific for a Virtual Repository.
.google.devtools.artifactregistry.v1.VirtualRepositoryConfig virtual_repository_config = 14;
Returns |
Type |
Description |
boolean |
Whether the virtualRepositoryConfig field is set.
|
Returns |
Type |
Description |
int |
|
Overrides
protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Overrides
protected MapFieldReflectionAccessor internalGetMapFieldReflection(int number)
Parameter |
Name |
Description |
number |
int
|
Returns |
Type |
Description |
com.google.protobuf.MapFieldReflectionAccessor |
|
Overrides
com.google.protobuf.GeneratedMessageV3.internalGetMapFieldReflection(int)
public final boolean isInitialized()
Overrides
public Repository.Builder newBuilderForType()
protected Repository.Builder newBuilderForType(GeneratedMessageV3.BuilderParent parent)
Overrides
protected Object newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
Returns |
Type |
Description |
Object |
|
Overrides
public Repository.Builder toBuilder()
public void writeTo(CodedOutputStream output)
Overrides