Skip to content

Commit 7d03b76

Browse files
1 parent 4554632 commit 7d03b76

File tree

5 files changed

+55
-15
lines changed

5 files changed

+55
-15
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-rev20240603-2.0.0</version>
25+
<version>v1-rev20240708-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-rev20240603-2.0.0'
38+
implementation 'com.google.apis:google-api-services-artifactregistry:v1-rev20240708-2.0.0'
3939
}
4040
```
4141

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.artifactregistry.v1.model;
18+
19+
/**
20+
* The metadata for promote artifact long running operation.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Artifact Registry API. For a detailed explanation
24+
* see:
25+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class PromoteArtifactMetadata extends com.google.api.client.json.GenericJson {
32+
33+
@Override
34+
public PromoteArtifactMetadata set(String fieldName, Object value) {
35+
return (PromoteArtifactMetadata) super.set(fieldName, value);
36+
}
37+
38+
@Override
39+
public PromoteArtifactMetadata clone() {
40+
return (PromoteArtifactMetadata) super.clone();
41+
}
42+
43+
}

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

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,8 @@ public final class UploadGenericArtifactRequest extends com.google.api.client.js
4242

4343
/**
4444
* The ID of the package of the generic artifact. If the package does not exist, a new package
45-
* will be created. The `package_id` must start with a letter, end with a letter or number, only
46-
* contain letters, numbers, hyphens and periods i.e. [a-z0-9-.], and cannot exceed 256
47-
* characters.
45+
* will be created. The `package_id` should start and end with a letter or number, only contain
46+
* letters, numbers, hyphens, underscores, and periods, and not exceed 256 characters.
4847
* The value may be {@code null}.
4948
*/
5049
@com.google.api.client.util.Key
@@ -81,9 +80,8 @@ public UploadGenericArtifactRequest setFilename(java.lang.String filename) {
8180

8281
/**
8382
* The ID of the package of the generic artifact. If the package does not exist, a new package
84-
* will be created. The `package_id` must start with a letter, end with a letter or number, only
85-
* contain letters, numbers, hyphens and periods i.e. [a-z0-9-.], and cannot exceed 256
86-
* characters.
83+
* will be created. The `package_id` should start and end with a letter or number, only contain
84+
* letters, numbers, hyphens, underscores, and periods, and not exceed 256 characters.
8785
* @return value or {@code null} for none
8886
*/
8987
public java.lang.String getPackageId() {
@@ -92,9 +90,8 @@ public java.lang.String getPackageId() {
9290

9391
/**
9492
* The ID of the package of the generic artifact. If the package does not exist, a new package
95-
* will be created. The `package_id` must start with a letter, end with a letter or number, only
96-
* contain letters, numbers, hyphens and periods i.e. [a-z0-9-.], and cannot exceed 256
97-
* characters.
93+
* will be created. The `package_id` should start and end with a letter or number, only contain
94+
* letters, numbers, hyphens, underscores, and periods, and not exceed 256 characters.
9895
* @param packageId packageId or {@code null} for none
9996
*/
10097
public UploadGenericArtifactRequest setPackageId(java.lang.String packageId) {

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

0 commit comments

Comments
 (0)