Skip to content

Commit 7d13685

Browse files
1 parent db8e670 commit 7d13685

File tree

6 files changed

+76
-7
lines changed

6 files changed

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

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

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,16 @@ public final class ComputeEngineTargetDefaults extends com.google.api.client.jso
193193
@com.google.api.client.util.Key
194194
private java.lang.String serviceAccount;
195195

196+
/**
197+
* Optional. If specified this will be the storage pool in which the disk is created. This is the
198+
* full path of the storage pool resource, for example: "projects/my-project/zones/us-
199+
* central1-a/storagePools/my-storage-pool". The storage pool must be in the same project and zone
200+
* as the target disks. The storage pool's type must match the disk type.
201+
* The value may be {@code null}.
202+
*/
203+
@com.google.api.client.util.Key
204+
private java.lang.String storagePool;
205+
196206
/**
197207
* The full path of the resource of type TargetProject which represents the Compute Engine project
198208
* in which to create this VM.
@@ -592,6 +602,29 @@ public ComputeEngineTargetDefaults setServiceAccount(java.lang.String serviceAcc
592602
return this;
593603
}
594604

605+
/**
606+
* Optional. If specified this will be the storage pool in which the disk is created. This is the
607+
* full path of the storage pool resource, for example: "projects/my-project/zones/us-
608+
* central1-a/storagePools/my-storage-pool". The storage pool must be in the same project and zone
609+
* as the target disks. The storage pool's type must match the disk type.
610+
* @return value or {@code null} for none
611+
*/
612+
public java.lang.String getStoragePool() {
613+
return storagePool;
614+
}
615+
616+
/**
617+
* Optional. If specified this will be the storage pool in which the disk is created. This is the
618+
* full path of the storage pool resource, for example: "projects/my-project/zones/us-
619+
* central1-a/storagePools/my-storage-pool". The storage pool must be in the same project and zone
620+
* as the target disks. The storage pool's type must match the disk type.
621+
* @param storagePool storagePool or {@code null} for none
622+
*/
623+
public ComputeEngineTargetDefaults setStoragePool(java.lang.String storagePool) {
624+
this.storagePool = storagePool;
625+
return this;
626+
}
627+
595628
/**
596629
* The full path of the resource of type TargetProject which represents the Compute Engine project
597630
* in which to create this VM.

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

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,17 @@ public final class ComputeEngineTargetDetails extends com.google.api.client.json
198198
@com.google.api.client.util.Key
199199
private java.lang.String serviceAccount;
200200

201+
/**
202+
* Optional. The storage pool used for the VM disks. If specified this will be the storage pool in
203+
* which the disk is created. This is the full path of the storage pool resource, for example:
204+
* "projects/my-project/zones/us-central1-a/storagePools/my-storage-pool". The storage pool must
205+
* be in the same project and zone as the target disks. The storage pool's type must match the
206+
* disk type.
207+
* The value may be {@code null}.
208+
*/
209+
@com.google.api.client.util.Key
210+
private java.lang.String storagePool;
211+
201212
/**
202213
* The name of the VM to create.
203214
* The value may be {@code null}.
@@ -602,6 +613,31 @@ public ComputeEngineTargetDetails setServiceAccount(java.lang.String serviceAcco
602613
return this;
603614
}
604615

616+
/**
617+
* Optional. The storage pool used for the VM disks. If specified this will be the storage pool in
618+
* which the disk is created. This is the full path of the storage pool resource, for example:
619+
* "projects/my-project/zones/us-central1-a/storagePools/my-storage-pool". The storage pool must
620+
* be in the same project and zone as the target disks. The storage pool's type must match the
621+
* disk type.
622+
* @return value or {@code null} for none
623+
*/
624+
public java.lang.String getStoragePool() {
625+
return storagePool;
626+
}
627+
628+
/**
629+
* Optional. The storage pool used for the VM disks. If specified this will be the storage pool in
630+
* which the disk is created. This is the full path of the storage pool resource, for example:
631+
* "projects/my-project/zones/us-central1-a/storagePools/my-storage-pool". The storage pool must
632+
* be in the same project and zone as the target disks. The storage pool's type must match the
633+
* disk type.
634+
* @param storagePool storagePool or {@code null} for none
635+
*/
636+
public ComputeEngineTargetDetails setStoragePool(java.lang.String storagePool) {
637+
this.storagePool = storagePool;
638+
return this;
639+
}
640+
605641
/**
606642
* The name of the VM to create.
607643
* @return value or {@code null} for none

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.vmmigration.v1.model;
1818

1919
/**
20-
* Mentions that the image import is not using OS adaptation process.
20+
* Used when the image import is not using OS adaptation process.
2121
*
2222
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2323
* transmitted over HTTP when working with the VM Migration API. For a detailed explanation see:

clients/google-api-services-vmmigration/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-vmmigration</artifactId>
11-
<version>v1-rev20251023-2.0.0</version>
12-
<name>VM Migration API v1-rev20251023-2.0.0</name>
11+
<version>v1-rev20251030-2.0.0</version>
12+
<name>VM Migration API v1-rev20251030-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)