Skip to content

Commit 2eabae4

Browse files
1 parent 6808657 commit 2eabae4

File tree

8 files changed

+1874
-6
lines changed

8 files changed

+1874
-6
lines changed

clients/google-api-services-saasservicemgmt/v1beta1/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-saasservicemgmt</artifactId>
25-
<version>v1beta1-rev20250910-2.0.0</version>
25+
<version>v1beta1-rev20250917-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-saasservicemgmt:v1beta1-rev20250910-2.0.0'
38+
implementation 'com.google.apis:google-api-services-saasservicemgmt:v1beta1-rev20250917-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-saasservicemgmt/v1beta1/2.0.0/com/google/api/services/saasservicemgmt/v1beta1/SaaSServiceManagement.java

Lines changed: 1084 additions & 0 deletions
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
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.saasservicemgmt.v1beta1.model;
18+
19+
/**
20+
* The response structure for the ListReplicationsInternal method.
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 SaaS Runtime 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 ListReplicationsInternalResponse extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* If present, the next page token can be provided to a subsequent ListReplicationsInternal call
34+
* to list the next page. If empty, there are no more pages.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String nextPageToken;
39+
40+
/**
41+
* The resulting replication internals.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.util.List<ReplicationInternal> replicationsInternal;
46+
47+
/**
48+
* Locations that could not be reached.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.util.List<java.lang.String> unreachable;
53+
54+
/**
55+
* If present, the next page token can be provided to a subsequent ListReplicationsInternal call
56+
* to list the next page. If empty, there are no more pages.
57+
* @return value or {@code null} for none
58+
*/
59+
public java.lang.String getNextPageToken() {
60+
return nextPageToken;
61+
}
62+
63+
/**
64+
* If present, the next page token can be provided to a subsequent ListReplicationsInternal call
65+
* to list the next page. If empty, there are no more pages.
66+
* @param nextPageToken nextPageToken or {@code null} for none
67+
*/
68+
public ListReplicationsInternalResponse setNextPageToken(java.lang.String nextPageToken) {
69+
this.nextPageToken = nextPageToken;
70+
return this;
71+
}
72+
73+
/**
74+
* The resulting replication internals.
75+
* @return value or {@code null} for none
76+
*/
77+
public java.util.List<ReplicationInternal> getReplicationsInternal() {
78+
return replicationsInternal;
79+
}
80+
81+
/**
82+
* The resulting replication internals.
83+
* @param replicationsInternal replicationsInternal or {@code null} for none
84+
*/
85+
public ListReplicationsInternalResponse setReplicationsInternal(java.util.List<ReplicationInternal> replicationsInternal) {
86+
this.replicationsInternal = replicationsInternal;
87+
return this;
88+
}
89+
90+
/**
91+
* Locations that could not be reached.
92+
* @return value or {@code null} for none
93+
*/
94+
public java.util.List<java.lang.String> getUnreachable() {
95+
return unreachable;
96+
}
97+
98+
/**
99+
* Locations that could not be reached.
100+
* @param unreachable unreachable or {@code null} for none
101+
*/
102+
public ListReplicationsInternalResponse setUnreachable(java.util.List<java.lang.String> unreachable) {
103+
this.unreachable = unreachable;
104+
return this;
105+
}
106+
107+
@Override
108+
public ListReplicationsInternalResponse set(String fieldName, Object value) {
109+
return (ListReplicationsInternalResponse) super.set(fieldName, value);
110+
}
111+
112+
@Override
113+
public ListReplicationsInternalResponse clone() {
114+
return (ListReplicationsInternalResponse) super.clone();
115+
}
116+
117+
}

0 commit comments

Comments
 (0)