Skip to content

Commit 0d2423c

Browse files
1 parent f11fb03 commit 0d2423c

34 files changed

+5540
-12
lines changed

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

clients/google-api-services-vmmigration/v1/2.0.0/com/google/api/services/vmmigration/v1/VMMigrationService.java

Lines changed: 1413 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 138 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,138 @@
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.vmmigration.v1.model;
18+
19+
/**
20+
* Represents the source AWS Disk details.
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 VM Migration 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 AwsSourceDiskDetails extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Optional. Output only. Disk type.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String diskType;
38+
39+
/**
40+
* Output only. Size in GiB.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
44+
private java.lang.Long sizeGib;
45+
46+
/**
47+
* Optional. Output only. A map of AWS volume tags.
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private java.util.Map<String, java.lang.String> tags;
52+
53+
/**
54+
* Required. AWS volume ID.
55+
* The value may be {@code null}.
56+
*/
57+
@com.google.api.client.util.Key
58+
private java.lang.String volumeId;
59+
60+
/**
61+
* Optional. Output only. Disk type.
62+
* @return value or {@code null} for none
63+
*/
64+
public java.lang.String getDiskType() {
65+
return diskType;
66+
}
67+
68+
/**
69+
* Optional. Output only. Disk type.
70+
* @param diskType diskType or {@code null} for none
71+
*/
72+
public AwsSourceDiskDetails setDiskType(java.lang.String diskType) {
73+
this.diskType = diskType;
74+
return this;
75+
}
76+
77+
/**
78+
* Output only. Size in GiB.
79+
* @return value or {@code null} for none
80+
*/
81+
public java.lang.Long getSizeGib() {
82+
return sizeGib;
83+
}
84+
85+
/**
86+
* Output only. Size in GiB.
87+
* @param sizeGib sizeGib or {@code null} for none
88+
*/
89+
public AwsSourceDiskDetails setSizeGib(java.lang.Long sizeGib) {
90+
this.sizeGib = sizeGib;
91+
return this;
92+
}
93+
94+
/**
95+
* Optional. Output only. A map of AWS volume tags.
96+
* @return value or {@code null} for none
97+
*/
98+
public java.util.Map<String, java.lang.String> getTags() {
99+
return tags;
100+
}
101+
102+
/**
103+
* Optional. Output only. A map of AWS volume tags.
104+
* @param tags tags or {@code null} for none
105+
*/
106+
public AwsSourceDiskDetails setTags(java.util.Map<String, java.lang.String> tags) {
107+
this.tags = tags;
108+
return this;
109+
}
110+
111+
/**
112+
* Required. AWS volume ID.
113+
* @return value or {@code null} for none
114+
*/
115+
public java.lang.String getVolumeId() {
116+
return volumeId;
117+
}
118+
119+
/**
120+
* Required. AWS volume ID.
121+
* @param volumeId volumeId or {@code null} for none
122+
*/
123+
public AwsSourceDiskDetails setVolumeId(java.lang.String volumeId) {
124+
this.volumeId = volumeId;
125+
return this;
126+
}
127+
128+
@Override
129+
public AwsSourceDiskDetails set(String fieldName, Object value) {
130+
return (AwsSourceDiskDetails) super.set(fieldName, value);
131+
}
132+
133+
@Override
134+
public AwsSourceDiskDetails clone() {
135+
return (AwsSourceDiskDetails) super.clone();
136+
}
137+
138+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
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.vmmigration.v1.model;
18+
19+
/**
20+
* Request message for 'CancelDiskMigrationJob' request.
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 VM Migration 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 CancelDiskMigrationJobRequest extends com.google.api.client.json.GenericJson {
31+
32+
@Override
33+
public CancelDiskMigrationJobRequest set(String fieldName, Object value) {
34+
return (CancelDiskMigrationJobRequest) super.set(fieldName, value);
35+
}
36+
37+
@Override
38+
public CancelDiskMigrationJobRequest clone() {
39+
return (CancelDiskMigrationJobRequest) super.clone();
40+
}
41+
42+
}
Lines changed: 150 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,150 @@
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.vmmigration.v1.model;
18+
19+
/**
20+
* Compute Engine disk target details.
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 VM Migration 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 ComputeEngineDisk extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Optional. Target Compute Engine Disk ID. This is the resource ID segment of the Compute Engine
34+
* Disk to create. In the resource name compute/v1/projects/{project}/zones/{zone}/disks/disk1
35+
* "disk1" is the resource ID for the disk.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String diskId;
40+
41+
/**
42+
* Required. The disk type to use.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String diskType;
47+
48+
/**
49+
* Optional. Replication zones of the regional disk. Should be of the form: projects/{target-
50+
* project}/locations/{replica-zone} Currently only one replica zone is supported.
51+
* The value may be {@code null}.
52+
*/
53+
@com.google.api.client.util.Key
54+
private java.util.List<java.lang.String> replicaZones;
55+
56+
/**
57+
* Required. The Compute Engine zone in which to create the disk. Should be of the form:
58+
* projects/{target-project}/locations/{zone}
59+
* The value may be {@code null}.
60+
*/
61+
@com.google.api.client.util.Key
62+
private java.lang.String zone;
63+
64+
/**
65+
* Optional. Target Compute Engine Disk ID. This is the resource ID segment of the Compute Engine
66+
* Disk to create. In the resource name compute/v1/projects/{project}/zones/{zone}/disks/disk1
67+
* "disk1" is the resource ID for the disk.
68+
* @return value or {@code null} for none
69+
*/
70+
public java.lang.String getDiskId() {
71+
return diskId;
72+
}
73+
74+
/**
75+
* Optional. Target Compute Engine Disk ID. This is the resource ID segment of the Compute Engine
76+
* Disk to create. In the resource name compute/v1/projects/{project}/zones/{zone}/disks/disk1
77+
* "disk1" is the resource ID for the disk.
78+
* @param diskId diskId or {@code null} for none
79+
*/
80+
public ComputeEngineDisk setDiskId(java.lang.String diskId) {
81+
this.diskId = diskId;
82+
return this;
83+
}
84+
85+
/**
86+
* Required. The disk type to use.
87+
* @return value or {@code null} for none
88+
*/
89+
public java.lang.String getDiskType() {
90+
return diskType;
91+
}
92+
93+
/**
94+
* Required. The disk type to use.
95+
* @param diskType diskType or {@code null} for none
96+
*/
97+
public ComputeEngineDisk setDiskType(java.lang.String diskType) {
98+
this.diskType = diskType;
99+
return this;
100+
}
101+
102+
/**
103+
* Optional. Replication zones of the regional disk. Should be of the form: projects/{target-
104+
* project}/locations/{replica-zone} Currently only one replica zone is supported.
105+
* @return value or {@code null} for none
106+
*/
107+
public java.util.List<java.lang.String> getReplicaZones() {
108+
return replicaZones;
109+
}
110+
111+
/**
112+
* Optional. Replication zones of the regional disk. Should be of the form: projects/{target-
113+
* project}/locations/{replica-zone} Currently only one replica zone is supported.
114+
* @param replicaZones replicaZones or {@code null} for none
115+
*/
116+
public ComputeEngineDisk setReplicaZones(java.util.List<java.lang.String> replicaZones) {
117+
this.replicaZones = replicaZones;
118+
return this;
119+
}
120+
121+
/**
122+
* Required. The Compute Engine zone in which to create the disk. Should be of the form:
123+
* projects/{target-project}/locations/{zone}
124+
* @return value or {@code null} for none
125+
*/
126+
public java.lang.String getZone() {
127+
return zone;
128+
}
129+
130+
/**
131+
* Required. The Compute Engine zone in which to create the disk. Should be of the form:
132+
* projects/{target-project}/locations/{zone}
133+
* @param zone zone or {@code null} for none
134+
*/
135+
public ComputeEngineDisk setZone(java.lang.String zone) {
136+
this.zone = zone;
137+
return this;
138+
}
139+
140+
@Override
141+
public ComputeEngineDisk set(String fieldName, Object value) {
142+
return (ComputeEngineDisk) super.set(fieldName, value);
143+
}
144+
145+
@Override
146+
public ComputeEngineDisk clone() {
147+
return (ComputeEngineDisk) super.clone();
148+
}
149+
150+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
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.vmmigration.v1.model;
18+
19+
/**
20+
* CopyingSourceDiskSnapshotStep contains specific step details.
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 VM Migration 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 CopyingSourceDiskSnapshotStep extends com.google.api.client.json.GenericJson {
31+
32+
@Override
33+
public CopyingSourceDiskSnapshotStep set(String fieldName, Object value) {
34+
return (CopyingSourceDiskSnapshotStep) super.set(fieldName, value);
35+
}
36+
37+
@Override
38+
public CopyingSourceDiskSnapshotStep clone() {
39+
return (CopyingSourceDiskSnapshotStep) super.clone();
40+
}
41+
42+
}

0 commit comments

Comments
 (0)