Skip to content

Commit 1a0be22

Browse files
1 parent a0db8f9 commit 1a0be22

File tree

13 files changed

+42
-42
lines changed

13 files changed

+42
-42
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-rev20250423-2.0.0</version>
25+
<version>v1-rev20250425-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-rev20250423-2.0.0'
38+
implementation 'com.google.apis:google-api-services-artifactregistry:v1-rev20250425-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: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -145,14 +145,14 @@ public final class Repository extends com.google.api.client.json.GenericJson {
145145
private RemoteRepositoryConfig remoteRepositoryConfig;
146146

147147
/**
148-
* Output only. If set, the repository satisfies physical zone isolation.
148+
* Output only. Whether or not this repository satisfies PZI.
149149
* The value may be {@code null}.
150150
*/
151151
@com.google.api.client.util.Key
152152
private java.lang.Boolean satisfiesPzi;
153153

154154
/**
155-
* Output only. If set, the repository satisfies physical zone separation.
155+
* Output only. Whether or not this repository satisfies PZS.
156156
* The value may be {@code null}.
157157
*/
158158
@com.google.api.client.util.Key
@@ -446,15 +446,15 @@ public Repository setRemoteRepositoryConfig(RemoteRepositoryConfig remoteReposit
446446
}
447447

448448
/**
449-
* Output only. If set, the repository satisfies physical zone isolation.
449+
* Output only. Whether or not this repository satisfies PZI.
450450
* @return value or {@code null} for none
451451
*/
452452
public java.lang.Boolean getSatisfiesPzi() {
453453
return satisfiesPzi;
454454
}
455455

456456
/**
457-
* Output only. If set, the repository satisfies physical zone isolation.
457+
* Output only. Whether or not this repository satisfies PZI.
458458
* @param satisfiesPzi satisfiesPzi or {@code null} for none
459459
*/
460460
public Repository setSatisfiesPzi(java.lang.Boolean satisfiesPzi) {
@@ -463,15 +463,15 @@ public Repository setSatisfiesPzi(java.lang.Boolean satisfiesPzi) {
463463
}
464464

465465
/**
466-
* Output only. If set, the repository satisfies physical zone separation.
466+
* Output only. Whether or not this repository satisfies PZS.
467467
* @return value or {@code null} for none
468468
*/
469469
public java.lang.Boolean getSatisfiesPzs() {
470470
return satisfiesPzs;
471471
}
472472

473473
/**
474-
* Output only. If set, the repository satisfies physical zone separation.
474+
* Output only. Whether or not this repository satisfies PZS.
475475
* @param satisfiesPzs satisfiesPzs or {@code null} for none
476476
*/
477477
public Repository setSatisfiesPzs(java.lang.Boolean satisfiesPzs) {

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ public final class UploadGenericArtifactRequest extends com.google.api.client.js
5252
/**
5353
* The ID of the version of the generic artifact. If the version does not exist, a new version
5454
* will be created. The version_id must start and end with a letter or number, can only contain
55-
* lowercase letters, numbers, hyphens and periods, i.e. [a-z0-9-.] and cannot exceed a total of
56-
* 128 characters. Creating a version called `latest` is not allowed.
55+
* lowercase letters, numbers, the following characters [-.+~:], i.e.[a-z0-9-.+~:] and cannot
56+
* exceed a total of 128 characters. Creating a version called `latest` is not allowed.
5757
* The value may be {@code null}.
5858
*/
5959
@com.google.api.client.util.Key
@@ -102,8 +102,8 @@ public UploadGenericArtifactRequest setPackageId(java.lang.String packageId) {
102102
/**
103103
* The ID of the version of the generic artifact. If the version does not exist, a new version
104104
* will be created. The version_id must start and end with a letter or number, can only contain
105-
* lowercase letters, numbers, hyphens and periods, i.e. [a-z0-9-.] and cannot exceed a total of
106-
* 128 characters. Creating a version called `latest` is not allowed.
105+
* lowercase letters, numbers, the following characters [-.+~:], i.e.[a-z0-9-.+~:] and cannot
106+
* exceed a total of 128 characters. Creating a version called `latest` is not allowed.
107107
* @return value or {@code null} for none
108108
*/
109109
public java.lang.String getVersionId() {
@@ -113,8 +113,8 @@ public java.lang.String getVersionId() {
113113
/**
114114
* The ID of the version of the generic artifact. If the version does not exist, a new version
115115
* will be created. The version_id must start and end with a letter or number, can only contain
116-
* lowercase letters, numbers, hyphens and periods, i.e. [a-z0-9-.] and cannot exceed a total of
117-
* 128 characters. Creating a version called `latest` is not allowed.
116+
* lowercase letters, numbers, the following characters [-.+~:], i.e.[a-z0-9-.+~:] and cannot
117+
* exceed a total of 128 characters. Creating a version called `latest` is not allowed.
118118
* @param versionId versionId or {@code null} for none
119119
*/
120120
public UploadGenericArtifactRequest setVersionId(java.lang.String versionId) {

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-rev20250423-2.0.0</version>
12-
<name>Artifact Registry API v1-rev20250423-2.0.0</name>
11+
<version>v1-rev20250425-2.0.0</version>
12+
<name>Artifact Registry API v1-rev20250425-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-rev20250423-2.0.0</version>
25+
<version>v1-rev20250425-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-rev20250423-2.0.0'
38+
implementation 'com.google.apis:google-api-services-artifactregistry:v1-rev20250425-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-artifactregistry/v1beta1/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>v1beta1-rev20250423-2.0.0</version>
25+
<version>v1beta1-rev20250425-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:v1beta1-rev20250423-2.0.0'
38+
implementation 'com.google.apis:google-api-services-artifactregistry:v1beta1-rev20250425-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,14 @@ public final class Repository extends com.google.api.client.json.GenericJson {
7878
private java.lang.String name;
7979

8080
/**
81-
* Output only. If set, the repository satisfies physical zone isolation.
81+
* Output only. Whether or not this repository satisfies PZI.
8282
* The value may be {@code null}.
8383
*/
8484
@com.google.api.client.util.Key
8585
private java.lang.Boolean satisfiesPzi;
8686

8787
/**
88-
* Output only. If set, the repository satisfies physical zone separation.
88+
* Output only. Whether or not this repository satisfies PZS.
8989
* The value may be {@code null}.
9090
*/
9191
@com.google.api.client.util.Key
@@ -219,15 +219,15 @@ public Repository setName(java.lang.String name) {
219219
}
220220

221221
/**
222-
* Output only. If set, the repository satisfies physical zone isolation.
222+
* Output only. Whether or not this repository satisfies PZI.
223223
* @return value or {@code null} for none
224224
*/
225225
public java.lang.Boolean getSatisfiesPzi() {
226226
return satisfiesPzi;
227227
}
228228

229229
/**
230-
* Output only. If set, the repository satisfies physical zone isolation.
230+
* Output only. Whether or not this repository satisfies PZI.
231231
* @param satisfiesPzi satisfiesPzi or {@code null} for none
232232
*/
233233
public Repository setSatisfiesPzi(java.lang.Boolean satisfiesPzi) {
@@ -236,15 +236,15 @@ public Repository setSatisfiesPzi(java.lang.Boolean satisfiesPzi) {
236236
}
237237

238238
/**
239-
* Output only. If set, the repository satisfies physical zone separation.
239+
* Output only. Whether or not this repository satisfies PZS.
240240
* @return value or {@code null} for none
241241
*/
242242
public java.lang.Boolean getSatisfiesPzs() {
243243
return satisfiesPzs;
244244
}
245245

246246
/**
247-
* Output only. If set, the repository satisfies physical zone separation.
247+
* Output only. Whether or not this repository satisfies PZS.
248248
* @param satisfiesPzs satisfiesPzs or {@code null} for none
249249
*/
250250
public Repository setSatisfiesPzs(java.lang.Boolean satisfiesPzs) {

clients/google-api-services-artifactregistry/v1beta1/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>v1beta1-rev20250423-2.0.0</version>
12-
<name>Artifact Registry API v1beta1-rev20250423-2.0.0</name>
11+
<version>v1beta1-rev20250425-2.0.0</version>
12+
<name>Artifact Registry API v1beta1-rev20250425-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-artifactregistry/v1beta1/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>v1beta1-rev20250423-2.0.0</version>
25+
<version>v1beta1-rev20250425-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:v1beta1-rev20250423-2.0.0'
38+
implementation 'com.google.apis:google-api-services-artifactregistry:v1beta1-rev20250425-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-artifactregistry/v1beta2/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>v1beta2-rev20250415-2.0.0</version>
25+
<version>v1beta2-rev20250425-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:v1beta2-rev20250415-2.0.0'
38+
implementation 'com.google.apis:google-api-services-artifactregistry:v1beta2-rev20250425-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)