Skip to content

Commit db3647b

Browse files
1 parent cb056a6 commit db3647b

File tree

12 files changed

+1982
-6
lines changed

12 files changed

+1982
-6
lines changed

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

clients/google-api-services-config/v1/2.0.0/com/google/api/services/config/v1/Config.java

Lines changed: 840 additions & 0 deletions
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
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.config.v1.model;
18+
19+
/**
20+
* A response to a 'ListResourceChanges' call. Contains a list of ResourceChanges.
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 Infrastructure Manager API. For a detailed
24+
* explanation 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 ListResourceChangesResponse extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* A token to request the next page of resources from the 'ListResourceChanges' method. The value
35+
* of an empty string means that there are no more resources to return.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String nextPageToken;
40+
41+
/**
42+
* List of ResourceChanges.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.util.List<ResourceChange> resourceChanges;
47+
48+
/**
49+
* Unreachable resources, if any.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.util.List<java.lang.String> unreachable;
54+
55+
/**
56+
* A token to request the next page of resources from the 'ListResourceChanges' method. The value
57+
* of an empty string means that there are no more resources to return.
58+
* @return value or {@code null} for none
59+
*/
60+
public java.lang.String getNextPageToken() {
61+
return nextPageToken;
62+
}
63+
64+
/**
65+
* A token to request the next page of resources from the 'ListResourceChanges' method. The value
66+
* of an empty string means that there are no more resources to return.
67+
* @param nextPageToken nextPageToken or {@code null} for none
68+
*/
69+
public ListResourceChangesResponse setNextPageToken(java.lang.String nextPageToken) {
70+
this.nextPageToken = nextPageToken;
71+
return this;
72+
}
73+
74+
/**
75+
* List of ResourceChanges.
76+
* @return value or {@code null} for none
77+
*/
78+
public java.util.List<ResourceChange> getResourceChanges() {
79+
return resourceChanges;
80+
}
81+
82+
/**
83+
* List of ResourceChanges.
84+
* @param resourceChanges resourceChanges or {@code null} for none
85+
*/
86+
public ListResourceChangesResponse setResourceChanges(java.util.List<ResourceChange> resourceChanges) {
87+
this.resourceChanges = resourceChanges;
88+
return this;
89+
}
90+
91+
/**
92+
* Unreachable resources, if any.
93+
* @return value or {@code null} for none
94+
*/
95+
public java.util.List<java.lang.String> getUnreachable() {
96+
return unreachable;
97+
}
98+
99+
/**
100+
* Unreachable resources, if any.
101+
* @param unreachable unreachable or {@code null} for none
102+
*/
103+
public ListResourceChangesResponse setUnreachable(java.util.List<java.lang.String> unreachable) {
104+
this.unreachable = unreachable;
105+
return this;
106+
}
107+
108+
@Override
109+
public ListResourceChangesResponse set(String fieldName, Object value) {
110+
return (ListResourceChangesResponse) super.set(fieldName, value);
111+
}
112+
113+
@Override
114+
public ListResourceChangesResponse clone() {
115+
return (ListResourceChangesResponse) super.clone();
116+
}
117+
118+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
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.config.v1.model;
18+
19+
/**
20+
* A response to a 'ListResourceDrifts' call. Contains a list of ResourceDrifts.
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 Infrastructure Manager API. For a detailed
24+
* explanation 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 ListResourceDriftsResponse extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* A token to request the next page of resources from the 'ListResourceDrifts' method. The value
35+
* of an empty string means that there are no more resources to return.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String nextPageToken;
40+
41+
/**
42+
* List of ResourceDrifts.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.util.List<ResourceDrift> resourceDrifts;
47+
48+
/**
49+
* Unreachable resources, if any.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.util.List<java.lang.String> unreachable;
54+
55+
/**
56+
* A token to request the next page of resources from the 'ListResourceDrifts' method. The value
57+
* of an empty string means that there are no more resources to return.
58+
* @return value or {@code null} for none
59+
*/
60+
public java.lang.String getNextPageToken() {
61+
return nextPageToken;
62+
}
63+
64+
/**
65+
* A token to request the next page of resources from the 'ListResourceDrifts' method. The value
66+
* of an empty string means that there are no more resources to return.
67+
* @param nextPageToken nextPageToken or {@code null} for none
68+
*/
69+
public ListResourceDriftsResponse setNextPageToken(java.lang.String nextPageToken) {
70+
this.nextPageToken = nextPageToken;
71+
return this;
72+
}
73+
74+
/**
75+
* List of ResourceDrifts.
76+
* @return value or {@code null} for none
77+
*/
78+
public java.util.List<ResourceDrift> getResourceDrifts() {
79+
return resourceDrifts;
80+
}
81+
82+
/**
83+
* List of ResourceDrifts.
84+
* @param resourceDrifts resourceDrifts or {@code null} for none
85+
*/
86+
public ListResourceDriftsResponse setResourceDrifts(java.util.List<ResourceDrift> resourceDrifts) {
87+
this.resourceDrifts = resourceDrifts;
88+
return this;
89+
}
90+
91+
/**
92+
* Unreachable resources, if any.
93+
* @return value or {@code null} for none
94+
*/
95+
public java.util.List<java.lang.String> getUnreachable() {
96+
return unreachable;
97+
}
98+
99+
/**
100+
* Unreachable resources, if any.
101+
* @param unreachable unreachable or {@code null} for none
102+
*/
103+
public ListResourceDriftsResponse setUnreachable(java.util.List<java.lang.String> unreachable) {
104+
this.unreachable = unreachable;
105+
return this;
106+
}
107+
108+
@Override
109+
public ListResourceDriftsResponse set(String fieldName, Object value) {
110+
return (ListResourceDriftsResponse) super.set(fieldName, value);
111+
}
112+
113+
@Override
114+
public ListResourceDriftsResponse clone() {
115+
return (ListResourceDriftsResponse) super.clone();
116+
}
117+
118+
}

0 commit comments

Comments
 (0)