Skip to content

Commit 8b9dec6

Browse files
1 parent 2d0a798 commit 8b9dec6

File tree

61 files changed

+9329
-71
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

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

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,216 @@
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+
* Represents the metadata of the 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 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 GoogleCloudOsconfigV2OperationMetadata extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Output only. API version used to start the operation.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String apiVersion;
38+
39+
/**
40+
* Output only. The time the operation was created.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private String createTime;
45+
46+
/**
47+
* Output only. The time the operation finished running.
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private String endTime;
52+
53+
/**
54+
* Output only. Identifies whether the user has requested cancellation of the operation.
55+
* Operations that have been cancelled successfully have Operation.error value with a
56+
* google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
57+
* The value may be {@code null}.
58+
*/
59+
@com.google.api.client.util.Key
60+
private java.lang.Boolean requestedCancellation;
61+
62+
/**
63+
* Output only. Human-readable status of the operation, if any.
64+
* The value may be {@code null}.
65+
*/
66+
@com.google.api.client.util.Key
67+
private java.lang.String statusMessage;
68+
69+
/**
70+
* Output only. Server-defined resource path for the target of the operation.
71+
* The value may be {@code null}.
72+
*/
73+
@com.google.api.client.util.Key
74+
private java.lang.String target;
75+
76+
/**
77+
* Output only. Name of the verb executed by the operation.
78+
* The value may be {@code null}.
79+
*/
80+
@com.google.api.client.util.Key
81+
private java.lang.String verb;
82+
83+
/**
84+
* Output only. API version used to start the operation.
85+
* @return value or {@code null} for none
86+
*/
87+
public java.lang.String getApiVersion() {
88+
return apiVersion;
89+
}
90+
91+
/**
92+
* Output only. API version used to start the operation.
93+
* @param apiVersion apiVersion or {@code null} for none
94+
*/
95+
public GoogleCloudOsconfigV2OperationMetadata setApiVersion(java.lang.String apiVersion) {
96+
this.apiVersion = apiVersion;
97+
return this;
98+
}
99+
100+
/**
101+
* Output only. The time the operation was created.
102+
* @return value or {@code null} for none
103+
*/
104+
public String getCreateTime() {
105+
return createTime;
106+
}
107+
108+
/**
109+
* Output only. The time the operation was created.
110+
* @param createTime createTime or {@code null} for none
111+
*/
112+
public GoogleCloudOsconfigV2OperationMetadata setCreateTime(String createTime) {
113+
this.createTime = createTime;
114+
return this;
115+
}
116+
117+
/**
118+
* Output only. The time the operation finished running.
119+
* @return value or {@code null} for none
120+
*/
121+
public String getEndTime() {
122+
return endTime;
123+
}
124+
125+
/**
126+
* Output only. The time the operation finished running.
127+
* @param endTime endTime or {@code null} for none
128+
*/
129+
public GoogleCloudOsconfigV2OperationMetadata setEndTime(String endTime) {
130+
this.endTime = endTime;
131+
return this;
132+
}
133+
134+
/**
135+
* Output only. Identifies whether the user has requested cancellation of the operation.
136+
* Operations that have been cancelled successfully have Operation.error value with a
137+
* google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
138+
* @return value or {@code null} for none
139+
*/
140+
public java.lang.Boolean getRequestedCancellation() {
141+
return requestedCancellation;
142+
}
143+
144+
/**
145+
* Output only. Identifies whether the user has requested cancellation of the operation.
146+
* Operations that have been cancelled successfully have Operation.error value with a
147+
* google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
148+
* @param requestedCancellation requestedCancellation or {@code null} for none
149+
*/
150+
public GoogleCloudOsconfigV2OperationMetadata setRequestedCancellation(java.lang.Boolean requestedCancellation) {
151+
this.requestedCancellation = requestedCancellation;
152+
return this;
153+
}
154+
155+
/**
156+
* Output only. Human-readable status of the operation, if any.
157+
* @return value or {@code null} for none
158+
*/
159+
public java.lang.String getStatusMessage() {
160+
return statusMessage;
161+
}
162+
163+
/**
164+
* Output only. Human-readable status of the operation, if any.
165+
* @param statusMessage statusMessage or {@code null} for none
166+
*/
167+
public GoogleCloudOsconfigV2OperationMetadata setStatusMessage(java.lang.String statusMessage) {
168+
this.statusMessage = statusMessage;
169+
return this;
170+
}
171+
172+
/**
173+
* Output only. Server-defined resource path for the target of the operation.
174+
* @return value or {@code null} for none
175+
*/
176+
public java.lang.String getTarget() {
177+
return target;
178+
}
179+
180+
/**
181+
* Output only. Server-defined resource path for the target of the operation.
182+
* @param target target or {@code null} for none
183+
*/
184+
public GoogleCloudOsconfigV2OperationMetadata setTarget(java.lang.String target) {
185+
this.target = target;
186+
return this;
187+
}
188+
189+
/**
190+
* Output only. Name of the verb executed by the operation.
191+
* @return value or {@code null} for none
192+
*/
193+
public java.lang.String getVerb() {
194+
return verb;
195+
}
196+
197+
/**
198+
* Output only. Name of the verb executed by the operation.
199+
* @param verb verb or {@code null} for none
200+
*/
201+
public GoogleCloudOsconfigV2OperationMetadata setVerb(java.lang.String verb) {
202+
this.verb = verb;
203+
return this;
204+
}
205+
206+
@Override
207+
public GoogleCloudOsconfigV2OperationMetadata set(String fieldName, Object value) {
208+
return (GoogleCloudOsconfigV2OperationMetadata) super.set(fieldName, value);
209+
}
210+
211+
@Override
212+
public GoogleCloudOsconfigV2OperationMetadata clone() {
213+
return (GoogleCloudOsconfigV2OperationMetadata) super.clone();
214+
}
215+
216+
}

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-rev20241201-2.0.0</version>
12-
<name>OS Config API v1-rev20241201-2.0.0</name>
11+
<version>v1-rev20250323-2.0.0</version>
12+
<name>OS Config API v1-rev20250323-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-rev20241201-2.0.0</version>
25+
<version>v1-rev20250323-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-rev20241201-2.0.0'
38+
implementation 'com.google.apis:google-api-services-osconfig:v1-rev20250323-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-rev20241117-2.0.0</version>
25+
<version>v1alpha-rev20250323-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-rev20241117-2.0.0'
38+
implementation 'com.google.apis:google-api-services-osconfig:v1alpha-rev20250323-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)