Skip to content

Commit c1a2fd2

Browse files
1 parent 37f3e80 commit c1a2fd2

File tree

4 files changed

+30
-6
lines changed

4 files changed

+30
-6
lines changed

clients/google-api-services-artifactregistry/v1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-artifactregistry</artifactId>
25-
<version>v1-rev20241011-2.0.0</version>
25+
<version>v1-rev20241205-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-artifactregistry:v1-rev20241011-2.0.0'
38+
implementation 'com.google.apis:google-api-services-artifactregistry:v1-rev20241205-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-artifactregistry/v1/2.0.0/com/google/api/services/artifactregistry/v1/model/Repository.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,13 @@ public final class Repository extends com.google.api.client.json.GenericJson {
130130
@com.google.api.client.util.Key
131131
private java.lang.String name;
132132

133+
/**
134+
* Output only. The repository endpoint, for example: `us-docker.pkg.dev/my-proj/my-repo`.
135+
* The value may be {@code null}.
136+
*/
137+
@com.google.api.client.util.Key
138+
private java.lang.String registryUri;
139+
133140
/**
134141
* Configuration specific for a Remote Repository.
135142
* The value may be {@code null}.
@@ -404,6 +411,23 @@ public Repository setName(java.lang.String name) {
404411
return this;
405412
}
406413

414+
/**
415+
* Output only. The repository endpoint, for example: `us-docker.pkg.dev/my-proj/my-repo`.
416+
* @return value or {@code null} for none
417+
*/
418+
public java.lang.String getRegistryUri() {
419+
return registryUri;
420+
}
421+
422+
/**
423+
* Output only. The repository endpoint, for example: `us-docker.pkg.dev/my-proj/my-repo`.
424+
* @param registryUri registryUri or {@code null} for none
425+
*/
426+
public Repository setRegistryUri(java.lang.String registryUri) {
427+
this.registryUri = registryUri;
428+
return this;
429+
}
430+
407431
/**
408432
* Configuration specific for a Remote Repository.
409433
* @return value or {@code null} for none

clients/google-api-services-artifactregistry/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-artifactregistry</artifactId>
11-
<version>v1-rev20241011-2.0.0</version>
12-
<name>Artifact Registry API v1-rev20241011-2.0.0</name>
11+
<version>v1-rev20241205-2.0.0</version>
12+
<name>Artifact Registry API v1-rev20241205-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-artifactregistry/v1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-artifactregistry</artifactId>
25-
<version>v1-rev20241011-2.0.0</version>
25+
<version>v1-rev20241205-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-artifactregistry:v1-rev20241011-2.0.0'
38+
implementation 'com.google.apis:google-api-services-artifactregistry:v1-rev20241205-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)