Skip to content

Commit 074112e

Browse files
1 parent a1da9dd commit 074112e

File tree

8 files changed

+717
-6
lines changed

8 files changed

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

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

Lines changed: 456 additions & 0 deletions
Large diffs are not rendered by default.
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 request message for Operations.CancelOperation.
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 CancelOperationRequest extends com.google.api.client.json.GenericJson {
32+
33+
@Override
34+
public CancelOperationRequest set(String fieldName, Object value) {
35+
return (CancelOperationRequest) super.set(fieldName, value);
36+
}
37+
38+
@Override
39+
public CancelOperationRequest clone() {
40+
return (CancelOperationRequest) super.clone();
41+
}
42+
43+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
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 platform logs config for a project or a repository.
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 PlatformLogsConfig extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Optional. The state of the platform logs: enabled or disabled.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String loggingState;
39+
40+
/**
41+
* Optional. The severity level for the logs. Logs will be generated if their severity level is >=
42+
* than the value of the severity level mentioned here.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String severityLevel;
47+
48+
/**
49+
* Optional. The state of the platform logs: enabled or disabled.
50+
* @return value or {@code null} for none
51+
*/
52+
public java.lang.String getLoggingState() {
53+
return loggingState;
54+
}
55+
56+
/**
57+
* Optional. The state of the platform logs: enabled or disabled.
58+
* @param loggingState loggingState or {@code null} for none
59+
*/
60+
public PlatformLogsConfig setLoggingState(java.lang.String loggingState) {
61+
this.loggingState = loggingState;
62+
return this;
63+
}
64+
65+
/**
66+
* Optional. The severity level for the logs. Logs will be generated if their severity level is >=
67+
* than the value of the severity level mentioned here.
68+
* @return value or {@code null} for none
69+
*/
70+
public java.lang.String getSeverityLevel() {
71+
return severityLevel;
72+
}
73+
74+
/**
75+
* Optional. The severity level for the logs. Logs will be generated if their severity level is >=
76+
* than the value of the severity level mentioned here.
77+
* @param severityLevel severityLevel or {@code null} for none
78+
*/
79+
public PlatformLogsConfig setSeverityLevel(java.lang.String severityLevel) {
80+
this.severityLevel = severityLevel;
81+
return this;
82+
}
83+
84+
@Override
85+
public PlatformLogsConfig set(String fieldName, Object value) {
86+
return (PlatformLogsConfig) super.set(fieldName, value);
87+
}
88+
89+
@Override
90+
public PlatformLogsConfig clone() {
91+
return (PlatformLogsConfig) super.clone();
92+
}
93+
94+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
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 Artifact Registry logging configurations that apply to a Project.
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 ProjectConfig extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Identifier. The name of the project's configuration. Always of the form:
35+
* projects/{project}/locations/{location}/projectConfig
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String name;
40+
41+
/**
42+
* Optional. Configuration for platform logs.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private PlatformLogsConfig platformLogsConfig;
47+
48+
/**
49+
* Identifier. The name of the project's configuration. Always of the form:
50+
* projects/{project}/locations/{location}/projectConfig
51+
* @return value or {@code null} for none
52+
*/
53+
public java.lang.String getName() {
54+
return name;
55+
}
56+
57+
/**
58+
* Identifier. The name of the project's configuration. Always of the form:
59+
* projects/{project}/locations/{location}/projectConfig
60+
* @param name name or {@code null} for none
61+
*/
62+
public ProjectConfig setName(java.lang.String name) {
63+
this.name = name;
64+
return this;
65+
}
66+
67+
/**
68+
* Optional. Configuration for platform logs.
69+
* @return value or {@code null} for none
70+
*/
71+
public PlatformLogsConfig getPlatformLogsConfig() {
72+
return platformLogsConfig;
73+
}
74+
75+
/**
76+
* Optional. Configuration for platform logs.
77+
* @param platformLogsConfig platformLogsConfig or {@code null} for none
78+
*/
79+
public ProjectConfig setPlatformLogsConfig(PlatformLogsConfig platformLogsConfig) {
80+
this.platformLogsConfig = platformLogsConfig;
81+
return this;
82+
}
83+
84+
@Override
85+
public ProjectConfig set(String fieldName, Object value) {
86+
return (ProjectConfig) super.set(fieldName, value);
87+
}
88+
89+
@Override
90+
public ProjectConfig clone() {
91+
return (ProjectConfig) super.clone();
92+
}
93+
94+
}

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+
* Optional. Configuration for platform logs.
135+
* The value may be {@code null}.
136+
*/
137+
@com.google.api.client.util.Key
138+
private PlatformLogsConfig platformLogsConfig;
139+
133140
/**
134141
* Output only. The repository endpoint, for example: `us-docker.pkg.dev/my-proj/my-repo`.
135142
* The value may be {@code null}.
@@ -411,6 +418,23 @@ public Repository setName(java.lang.String name) {
411418
return this;
412419
}
413420

421+
/**
422+
* Optional. Configuration for platform logs.
423+
* @return value or {@code null} for none
424+
*/
425+
public PlatformLogsConfig getPlatformLogsConfig() {
426+
return platformLogsConfig;
427+
}
428+
429+
/**
430+
* Optional. Configuration for platform logs.
431+
* @param platformLogsConfig platformLogsConfig or {@code null} for none
432+
*/
433+
public Repository setPlatformLogsConfig(PlatformLogsConfig platformLogsConfig) {
434+
this.platformLogsConfig = platformLogsConfig;
435+
return this;
436+
}
437+
414438
/**
415439
* Output only. The repository endpoint, for example: `us-docker.pkg.dev/my-proj/my-repo`.
416440
* @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-rev20260206-2.0.0</version>
12-
<name>Artifact Registry API v1-rev20260206-2.0.0</name>
11+
<version>v1-rev20260311-2.0.0</version>
12+
<name>Artifact Registry API v1-rev20260311-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-rev20260206-2.0.0</version>
25+
<version>v1-rev20260311-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-rev20260206-2.0.0'
38+
implementation 'com.google.apis:google-api-services-artifactregistry:v1-rev20260311-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)