Skip to content

Commit 5e48f3e

Browse files
1 parent e3afcd4 commit 5e48f3e

File tree

27 files changed

+1257
-102
lines changed

27 files changed

+1257
-102
lines changed

clients/google-api-services-osconfig/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-osconfig</artifactId>
25-
<version>v1-rev20250323-2.0.0</version>
25+
<version>v1-rev20250511-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-osconfig:v1-rev20250323-2.0.0'
38+
implementation 'com.google.apis:google-api-services-osconfig:v1-rev20250511-2.0.0'
3939
}
4040
```
4141

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
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.osconfig.v1.model;
18+
19+
/**
20+
* This is proto2's version of MessageSet. DEPRECATED: DO NOT USE FOR NEW FIELDS. If you are using
21+
* editions or proto2, please make your own extendable messages for your use case. If you are using
22+
* proto3, please use `Any` instead. MessageSet was the implementation of extensions for proto1.
23+
* When proto2 was introduced, extensions were implemented as a first-class feature. This schema for
24+
* MessageSet was meant to be a "bridge" solution to migrate MessageSet-bearing messages from proto1
25+
* to proto2. This schema has been open-sourced only to facilitate the migration of Google products
26+
* with MessageSet-bearing messages to open-source environments.
27+
*
28+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
29+
* transmitted over HTTP when working with the OS Config API. For a detailed explanation see:
30+
* <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>
31+
* </p>
32+
*
33+
* @author Google, Inc.
34+
*/
35+
@SuppressWarnings("javadoc")
36+
public final class MessageSet extends com.google.api.client.json.GenericJson {
37+
38+
@Override
39+
public MessageSet set(String fieldName, Object value) {
40+
return (MessageSet) super.set(fieldName, value);
41+
}
42+
43+
@Override
44+
public MessageSet clone() {
45+
return (MessageSet) super.clone();
46+
}
47+
48+
}
Lines changed: 183 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,183 @@
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.osconfig.v1.model;
18+
19+
/**
20+
* Wire-format for a Status object
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 OS Config API. For a detailed explanation see:
24+
* <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>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class StatusProto extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* copybara:strip_begin(b/383363683) copybara:strip_end_and_replace optional int32 canonical_code
34+
* = 6;
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.Integer canonicalCode;
39+
40+
/**
41+
* Numeric code drawn from the space specified below. Often, this is the canonical error space,
42+
* and code is drawn from google3/util/task/codes.proto copybara:strip_begin(b/383363683)
43+
* copybara:strip_end_and_replace optional int32 code = 1;
44+
* The value may be {@code null}.
45+
*/
46+
@com.google.api.client.util.Key
47+
private java.lang.Integer code;
48+
49+
/**
50+
* Detail message copybara:strip_begin(b/383363683) copybara:strip_end_and_replace optional string
51+
* message = 3;
52+
* The value may be {@code null}.
53+
*/
54+
@com.google.api.client.util.Key
55+
private java.lang.String message;
56+
57+
/**
58+
* message_set associates an arbitrary proto message with the status.
59+
* copybara:strip_begin(b/383363683) copybara:strip_end_and_replace optional
60+
* proto2.bridge.MessageSet message_set = 5;
61+
* The value may be {@code null}.
62+
*/
63+
@com.google.api.client.util.Key
64+
private MessageSet messageSet;
65+
66+
/**
67+
* copybara:strip_begin(b/383363683) Space to which this status belongs
68+
* copybara:strip_end_and_replace optional string space = 2; // Space to which this status belongs
69+
* The value may be {@code null}.
70+
*/
71+
@com.google.api.client.util.Key
72+
private java.lang.String space;
73+
74+
/**
75+
* copybara:strip_begin(b/383363683) copybara:strip_end_and_replace optional int32 canonical_code
76+
* = 6;
77+
* @return value or {@code null} for none
78+
*/
79+
public java.lang.Integer getCanonicalCode() {
80+
return canonicalCode;
81+
}
82+
83+
/**
84+
* copybara:strip_begin(b/383363683) copybara:strip_end_and_replace optional int32 canonical_code
85+
* = 6;
86+
* @param canonicalCode canonicalCode or {@code null} for none
87+
*/
88+
public StatusProto setCanonicalCode(java.lang.Integer canonicalCode) {
89+
this.canonicalCode = canonicalCode;
90+
return this;
91+
}
92+
93+
/**
94+
* Numeric code drawn from the space specified below. Often, this is the canonical error space,
95+
* and code is drawn from google3/util/task/codes.proto copybara:strip_begin(b/383363683)
96+
* copybara:strip_end_and_replace optional int32 code = 1;
97+
* @return value or {@code null} for none
98+
*/
99+
public java.lang.Integer getCode() {
100+
return code;
101+
}
102+
103+
/**
104+
* Numeric code drawn from the space specified below. Often, this is the canonical error space,
105+
* and code is drawn from google3/util/task/codes.proto copybara:strip_begin(b/383363683)
106+
* copybara:strip_end_and_replace optional int32 code = 1;
107+
* @param code code or {@code null} for none
108+
*/
109+
public StatusProto setCode(java.lang.Integer code) {
110+
this.code = code;
111+
return this;
112+
}
113+
114+
/**
115+
* Detail message copybara:strip_begin(b/383363683) copybara:strip_end_and_replace optional string
116+
* message = 3;
117+
* @return value or {@code null} for none
118+
*/
119+
public java.lang.String getMessage() {
120+
return message;
121+
}
122+
123+
/**
124+
* Detail message copybara:strip_begin(b/383363683) copybara:strip_end_and_replace optional string
125+
* message = 3;
126+
* @param message message or {@code null} for none
127+
*/
128+
public StatusProto setMessage(java.lang.String message) {
129+
this.message = message;
130+
return this;
131+
}
132+
133+
/**
134+
* message_set associates an arbitrary proto message with the status.
135+
* copybara:strip_begin(b/383363683) copybara:strip_end_and_replace optional
136+
* proto2.bridge.MessageSet message_set = 5;
137+
* @return value or {@code null} for none
138+
*/
139+
public MessageSet getMessageSet() {
140+
return messageSet;
141+
}
142+
143+
/**
144+
* message_set associates an arbitrary proto message with the status.
145+
* copybara:strip_begin(b/383363683) copybara:strip_end_and_replace optional
146+
* proto2.bridge.MessageSet message_set = 5;
147+
* @param messageSet messageSet or {@code null} for none
148+
*/
149+
public StatusProto setMessageSet(MessageSet messageSet) {
150+
this.messageSet = messageSet;
151+
return this;
152+
}
153+
154+
/**
155+
* copybara:strip_begin(b/383363683) Space to which this status belongs
156+
* copybara:strip_end_and_replace optional string space = 2; // Space to which this status belongs
157+
* @return value or {@code null} for none
158+
*/
159+
public java.lang.String getSpace() {
160+
return space;
161+
}
162+
163+
/**
164+
* copybara:strip_begin(b/383363683) Space to which this status belongs
165+
* copybara:strip_end_and_replace optional string space = 2; // Space to which this status belongs
166+
* @param space space or {@code null} for none
167+
*/
168+
public StatusProto setSpace(java.lang.String space) {
169+
this.space = space;
170+
return this;
171+
}
172+
173+
@Override
174+
public StatusProto set(String fieldName, Object value) {
175+
return (StatusProto) super.set(fieldName, value);
176+
}
177+
178+
@Override
179+
public StatusProto clone() {
180+
return (StatusProto) super.clone();
181+
}
182+
183+
}

clients/google-api-services-osconfig/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-osconfig</artifactId>
11-
<version>v1-rev20250323-2.0.0</version>
12-
<name>OS Config API v1-rev20250323-2.0.0</name>
11+
<version>v1-rev20250511-2.0.0</version>
12+
<name>OS Config API v1-rev20250511-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-osconfig/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-osconfig</artifactId>
25-
<version>v1-rev20250323-2.0.0</version>
25+
<version>v1-rev20250511-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-osconfig:v1-rev20250323-2.0.0'
38+
implementation 'com.google.apis:google-api-services-osconfig:v1-rev20250511-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-osconfig/v1alpha/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-osconfig</artifactId>
25-
<version>v1alpha-rev20250323-2.0.0</version>
25+
<version>v1alpha-rev20250511-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-osconfig:v1alpha-rev20250323-2.0.0'
38+
implementation 'com.google.apis:google-api-services-osconfig:v1alpha-rev20250511-2.0.0'
3939
}
4040
```
4141

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
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.osconfig.v1alpha.model;
18+
19+
/**
20+
* This is proto2's version of MessageSet. DEPRECATED: DO NOT USE FOR NEW FIELDS. If you are using
21+
* editions or proto2, please make your own extendable messages for your use case. If you are using
22+
* proto3, please use `Any` instead. MessageSet was the implementation of extensions for proto1.
23+
* When proto2 was introduced, extensions were implemented as a first-class feature. This schema for
24+
* MessageSet was meant to be a "bridge" solution to migrate MessageSet-bearing messages from proto1
25+
* to proto2. This schema has been open-sourced only to facilitate the migration of Google products
26+
* with MessageSet-bearing messages to open-source environments.
27+
*
28+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
29+
* transmitted over HTTP when working with the OS Config API. For a detailed explanation see:
30+
* <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>
31+
* </p>
32+
*
33+
* @author Google, Inc.
34+
*/
35+
@SuppressWarnings("javadoc")
36+
public final class MessageSet extends com.google.api.client.json.GenericJson {
37+
38+
@Override
39+
public MessageSet set(String fieldName, Object value) {
40+
return (MessageSet) super.set(fieldName, value);
41+
}
42+
43+
@Override
44+
public MessageSet clone() {
45+
return (MessageSet) super.clone();
46+
}
47+
48+
}

0 commit comments

Comments
 (0)