Skip to content

Commit 5ff3fba

Browse files
1 parent fcd2e1c commit 5ff3fba

14 files changed

+2303
-6
lines changed

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

clients/google-api-services-backupdr/v1/2.0.0/com/google/api/services/backupdr/v1/Backupdr.java

Lines changed: 1126 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
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.backupdr.v1.model;
18+
19+
/**
20+
* request message for AbandonBackup.
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 Backup and DR Service 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 AbandonBackupRequest extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Optional. An optional request ID to identify requests. Specify a unique request ID so that if
35+
* you must retry your request, the server will know to ignore the request if it has already been
36+
* completed. The server will guarantee that for at least 60 minutes since the first request. For
37+
* example, consider a situation where you make an initial request and the request times out. If
38+
* you make the request again with the same request ID, the server can check if original operation
39+
* with the same request ID was received, and if so, will ignore the second request. This prevents
40+
* clients from accidentally creating duplicate commitments. The request ID must be a valid UUID
41+
* with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String requestId;
46+
47+
/**
48+
* Optional. An optional request ID to identify requests. Specify a unique request ID so that if
49+
* you must retry your request, the server will know to ignore the request if it has already been
50+
* completed. The server will guarantee that for at least 60 minutes since the first request. For
51+
* example, consider a situation where you make an initial request and the request times out. If
52+
* you make the request again with the same request ID, the server can check if original operation
53+
* with the same request ID was received, and if so, will ignore the second request. This prevents
54+
* clients from accidentally creating duplicate commitments. The request ID must be a valid UUID
55+
* with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
56+
* @return value or {@code null} for none
57+
*/
58+
public java.lang.String getRequestId() {
59+
return requestId;
60+
}
61+
62+
/**
63+
* Optional. An optional request ID to identify requests. Specify a unique request ID so that if
64+
* you must retry your request, the server will know to ignore the request if it has already been
65+
* completed. The server will guarantee that for at least 60 minutes since the first request. For
66+
* example, consider a situation where you make an initial request and the request times out. If
67+
* you make the request again with the same request ID, the server can check if original operation
68+
* with the same request ID was received, and if so, will ignore the second request. This prevents
69+
* clients from accidentally creating duplicate commitments. The request ID must be a valid UUID
70+
* with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
71+
* @param requestId requestId or {@code null} for none
72+
*/
73+
public AbandonBackupRequest setRequestId(java.lang.String requestId) {
74+
this.requestId = requestId;
75+
return this;
76+
}
77+
78+
@Override
79+
public AbandonBackupRequest set(String fieldName, Object value) {
80+
return (AbandonBackupRequest) super.set(fieldName, value);
81+
}
82+
83+
@Override
84+
public AbandonBackupRequest clone() {
85+
return (AbandonBackupRequest) super.clone();
86+
}
87+
88+
}
Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
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.backupdr.v1.model;
18+
19+
/**
20+
* Request message for FetchAccessToken.
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 Backup and DR Service 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 FetchAccessTokenRequest extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Required. The generation of the backup to update.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.Integer generationId;
39+
40+
/**
41+
* Required. The generation of the backup to update.
42+
* @return value or {@code null} for none
43+
*/
44+
public java.lang.Integer getGenerationId() {
45+
return generationId;
46+
}
47+
48+
/**
49+
* Required. The generation of the backup to update.
50+
* @param generationId generationId or {@code null} for none
51+
*/
52+
public FetchAccessTokenRequest setGenerationId(java.lang.Integer generationId) {
53+
this.generationId = generationId;
54+
return this;
55+
}
56+
57+
@Override
58+
public FetchAccessTokenRequest set(String fieldName, Object value) {
59+
return (FetchAccessTokenRequest) super.set(fieldName, value);
60+
}
61+
62+
@Override
63+
public FetchAccessTokenRequest clone() {
64+
return (FetchAccessTokenRequest) super.clone();
65+
}
66+
67+
}
Lines changed: 139 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,139 @@
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.backupdr.v1.model;
18+
19+
/**
20+
* Response message for FetchAccessToken.
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 Backup and DR Service 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 FetchAccessTokenResponse extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* The token is valid until this time.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private String expireTime;
39+
40+
/**
41+
* The location in bucket that can be used for reading.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String readLocation;
46+
47+
/**
48+
* The downscoped token that was created.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.String token;
53+
54+
/**
55+
* The location in bucket that can be used for writing.
56+
* The value may be {@code null}.
57+
*/
58+
@com.google.api.client.util.Key
59+
private java.lang.String writeLocation;
60+
61+
/**
62+
* The token is valid until this time.
63+
* @return value or {@code null} for none
64+
*/
65+
public String getExpireTime() {
66+
return expireTime;
67+
}
68+
69+
/**
70+
* The token is valid until this time.
71+
* @param expireTime expireTime or {@code null} for none
72+
*/
73+
public FetchAccessTokenResponse setExpireTime(String expireTime) {
74+
this.expireTime = expireTime;
75+
return this;
76+
}
77+
78+
/**
79+
* The location in bucket that can be used for reading.
80+
* @return value or {@code null} for none
81+
*/
82+
public java.lang.String getReadLocation() {
83+
return readLocation;
84+
}
85+
86+
/**
87+
* The location in bucket that can be used for reading.
88+
* @param readLocation readLocation or {@code null} for none
89+
*/
90+
public FetchAccessTokenResponse setReadLocation(java.lang.String readLocation) {
91+
this.readLocation = readLocation;
92+
return this;
93+
}
94+
95+
/**
96+
* The downscoped token that was created.
97+
* @return value or {@code null} for none
98+
*/
99+
public java.lang.String getToken() {
100+
return token;
101+
}
102+
103+
/**
104+
* The downscoped token that was created.
105+
* @param token token or {@code null} for none
106+
*/
107+
public FetchAccessTokenResponse setToken(java.lang.String token) {
108+
this.token = token;
109+
return this;
110+
}
111+
112+
/**
113+
* The location in bucket that can be used for writing.
114+
* @return value or {@code null} for none
115+
*/
116+
public java.lang.String getWriteLocation() {
117+
return writeLocation;
118+
}
119+
120+
/**
121+
* The location in bucket that can be used for writing.
122+
* @param writeLocation writeLocation or {@code null} for none
123+
*/
124+
public FetchAccessTokenResponse setWriteLocation(java.lang.String writeLocation) {
125+
this.writeLocation = writeLocation;
126+
return this;
127+
}
128+
129+
@Override
130+
public FetchAccessTokenResponse set(String fieldName, Object value) {
131+
return (FetchAccessTokenResponse) super.set(fieldName, value);
132+
}
133+
134+
@Override
135+
public FetchAccessTokenResponse clone() {
136+
return (FetchAccessTokenResponse) super.clone();
137+
}
138+
139+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
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.backupdr.v1.model;
18+
19+
/**
20+
* Request message for GetMsComplianceMetadata
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 Backup and DR Service 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 FetchMsComplianceMetadataRequest extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Required. The project id of the target project
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String projectId;
39+
40+
/**
41+
* Required. The project id of the target project
42+
* @return value or {@code null} for none
43+
*/
44+
public java.lang.String getProjectId() {
45+
return projectId;
46+
}
47+
48+
/**
49+
* Required. The project id of the target project
50+
* @param projectId projectId or {@code null} for none
51+
*/
52+
public FetchMsComplianceMetadataRequest setProjectId(java.lang.String projectId) {
53+
this.projectId = projectId;
54+
return this;
55+
}
56+
57+
@Override
58+
public FetchMsComplianceMetadataRequest set(String fieldName, Object value) {
59+
return (FetchMsComplianceMetadataRequest) super.set(fieldName, value);
60+
}
61+
62+
@Override
63+
public FetchMsComplianceMetadataRequest clone() {
64+
return (FetchMsComplianceMetadataRequest) super.clone();
65+
}
66+
67+
}

0 commit comments

Comments
 (0)