Skip to content

Commit 1eecc62

Browse files
1 parent d3e426b commit 1eecc62

Some content is hidden

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

49 files changed

+10994
-45
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-rev20240522-2.0.0</version>
25+
<version>v1-rev20240626-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-rev20240522-2.0.0'
38+
implementation 'com.google.apis:google-api-services-backupdr:v1-rev20240626-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: 3734 additions & 30 deletions
Large diffs are not rendered by default.
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+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
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+
* A specification of the type and number of accelerator cards attached to the instance.
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 AcceleratorConfig extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Optional. The number of the guest accelerator cards exposed to this instance.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.Integer acceleratorCount;
39+
40+
/**
41+
* Optional. Full or partial URL of the accelerator type resource to attach to this instance.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String acceleratorType;
46+
47+
/**
48+
* Optional. The number of the guest accelerator cards exposed to this instance.
49+
* @return value or {@code null} for none
50+
*/
51+
public java.lang.Integer getAcceleratorCount() {
52+
return acceleratorCount;
53+
}
54+
55+
/**
56+
* Optional. The number of the guest accelerator cards exposed to this instance.
57+
* @param acceleratorCount acceleratorCount or {@code null} for none
58+
*/
59+
public AcceleratorConfig setAcceleratorCount(java.lang.Integer acceleratorCount) {
60+
this.acceleratorCount = acceleratorCount;
61+
return this;
62+
}
63+
64+
/**
65+
* Optional. Full or partial URL of the accelerator type resource to attach to this instance.
66+
* @return value or {@code null} for none
67+
*/
68+
public java.lang.String getAcceleratorType() {
69+
return acceleratorType;
70+
}
71+
72+
/**
73+
* Optional. Full or partial URL of the accelerator type resource to attach to this instance.
74+
* @param acceleratorType acceleratorType or {@code null} for none
75+
*/
76+
public AcceleratorConfig setAcceleratorType(java.lang.String acceleratorType) {
77+
this.acceleratorType = acceleratorType;
78+
return this;
79+
}
80+
81+
@Override
82+
public AcceleratorConfig set(String fieldName, Object value) {
83+
return (AcceleratorConfig) super.set(fieldName, value);
84+
}
85+
86+
@Override
87+
public AcceleratorConfig clone() {
88+
return (AcceleratorConfig) super.clone();
89+
}
90+
91+
}

0 commit comments

Comments
 (0)