Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions clients/google-api-services-vmmigration/v1/2.0.0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-vmmigration</artifactId>
<version>v1-rev20260423-2.0.0</version>
<version>v1-rev20260521-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-vmmigration:v1-rev20260423-2.0.0'
implementation 'com.google.apis:google-api-services-vmmigration:v1-rev20260521-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,13 @@ public final class ComputeEngineTargetDefaults extends com.google.api.client.jso
@com.google.api.client.util.Key
private java.lang.String diskType;

/**
* Optional. The details of each disk to create.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List<PersistentDiskDefaults> disks;

/**
* Optional. Defines whether the instance has integrity monitoring enabled. This can be set to
* true only if the VM boot option is EFI, and vTPM is enabled.
Expand Down Expand Up @@ -375,6 +382,23 @@ public ComputeEngineTargetDefaults setDiskType(java.lang.String diskType) {
return this;
}

/**
* Optional. The details of each disk to create.
* @return value or {@code null} for none
*/
public java.util.List<PersistentDiskDefaults> getDisks() {
return disks;
}

/**
* Optional. The details of each disk to create.
* @param disks disks or {@code null} for none
*/
public ComputeEngineTargetDefaults setDisks(java.util.List<PersistentDiskDefaults> disks) {
this.disks = disks;
return this;
}

/**
* Optional. Defines whether the instance has integrity monitoring enabled. This can be set to
* true only if the VM boot option is EFI, and vTPM is enabled.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,29 +30,29 @@
public final class PersistentDisk extends com.google.api.client.json.GenericJson {

/**
* The URI of the Persistent Disk.
* Output only. The URI of the Persistent Disk.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String diskUri;

/**
* The ordinal number of the source VM disk.
* Output only. The ordinal number of the source VM disk.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Integer sourceDiskNumber;

/**
* The URI of the Persistent Disk.
* Output only. The URI of the Persistent Disk.
* @return value or {@code null} for none
*/
public java.lang.String getDiskUri() {
return diskUri;
}

/**
* The URI of the Persistent Disk.
* Output only. The URI of the Persistent Disk.
* @param diskUri diskUri or {@code null} for none
*/
public PersistentDisk setDiskUri(java.lang.String diskUri) {
Expand All @@ -61,15 +61,15 @@ public PersistentDisk setDiskUri(java.lang.String diskUri) {
}

/**
* The ordinal number of the source VM disk.
* Output only. The ordinal number of the source VM disk.
* @return value or {@code null} for none
*/
public java.lang.Integer getSourceDiskNumber() {
return sourceDiskNumber;
}

/**
* The ordinal number of the source VM disk.
* Output only. The ordinal number of the source VM disk.
* @param sourceDiskNumber sourceDiskNumber or {@code null} for none
*/
public PersistentDisk setSourceDiskNumber(java.lang.Integer sourceDiskNumber) {
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-vmmigration/v1/2.0.0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-vmmigration</artifactId>
<version>v1-rev20260423-2.0.0</version>
<name>VM Migration API v1-rev20260423-2.0.0</name>
<version>v1-rev20260521-2.0.0</version>
<name>VM Migration API v1-rev20260521-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-vmmigration/v1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-vmmigration</artifactId>
<version>v1-rev20260423-2.0.0</version>
<version>v1-rev20260521-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-vmmigration:v1-rev20260423-2.0.0'
implementation 'com.google.apis:google-api-services-vmmigration:v1-rev20260521-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-vmmigration</artifactId>
<version>v1alpha1-rev20260423-2.0.0</version>
<version>v1alpha1-rev20260521-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-vmmigration:v1alpha1-rev20260423-2.0.0'
implementation 'com.google.apis:google-api-services-vmmigration:v1alpha1-rev20260521-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,13 @@ public final class ComputeEngineTargetDefaults extends com.google.api.client.jso
@com.google.api.client.util.Key
private java.lang.String diskType;

/**
* Optional. The details of each disk to create.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List<PersistentDiskDefaults> disks;

/**
* Optional. Defines whether the instance has integrity monitoring enabled. This can be set to
* true only if the VM boot option is EFI, and vTPM is enabled.
Expand Down Expand Up @@ -375,6 +382,23 @@ public ComputeEngineTargetDefaults setDiskType(java.lang.String diskType) {
return this;
}

/**
* Optional. The details of each disk to create.
* @return value or {@code null} for none
*/
public java.util.List<PersistentDiskDefaults> getDisks() {
return disks;
}

/**
* Optional. The details of each disk to create.
* @param disks disks or {@code null} for none
*/
public ComputeEngineTargetDefaults setDisks(java.util.List<PersistentDiskDefaults> disks) {
this.disks = disks;
return this;
}

/**
* Optional. Defines whether the instance has integrity monitoring enabled. This can be set to
* true only if the VM boot option is EFI, and vTPM is enabled.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,29 +30,29 @@
public final class PersistentDisk extends com.google.api.client.json.GenericJson {

/**
* The URI of the Persistent Disk.
* Output only. The URI of the Persistent Disk.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String diskUri;

/**
* The ordinal number of the source VM disk.
* Output only. The ordinal number of the source VM disk.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Integer sourceDiskNumber;

/**
* The URI of the Persistent Disk.
* Output only. The URI of the Persistent Disk.
* @return value or {@code null} for none
*/
public java.lang.String getDiskUri() {
return diskUri;
}

/**
* The URI of the Persistent Disk.
* Output only. The URI of the Persistent Disk.
* @param diskUri diskUri or {@code null} for none
*/
public PersistentDisk setDiskUri(java.lang.String diskUri) {
Expand All @@ -61,15 +61,15 @@ public PersistentDisk setDiskUri(java.lang.String diskUri) {
}

/**
* The ordinal number of the source VM disk.
* Output only. The ordinal number of the source VM disk.
* @return value or {@code null} for none
*/
public java.lang.Integer getSourceDiskNumber() {
return sourceDiskNumber;
}

/**
* The ordinal number of the source VM disk.
* Output only. The ordinal number of the source VM disk.
* @param sourceDiskNumber sourceDiskNumber or {@code null} for none
*/
public PersistentDisk setSourceDiskNumber(java.lang.Integer sourceDiskNumber) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-vmmigration</artifactId>
<version>v1alpha1-rev20260423-2.0.0</version>
<name>VM Migration API v1alpha1-rev20260423-2.0.0</name>
<version>v1alpha1-rev20260521-2.0.0</version>
<name>VM Migration API v1alpha1-rev20260521-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-vmmigration/v1alpha1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-vmmigration</artifactId>
<version>v1alpha1-rev20260423-2.0.0</version>
<version>v1alpha1-rev20260521-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-vmmigration:v1alpha1-rev20260423-2.0.0'
implementation 'com.google.apis:google-api-services-vmmigration:v1alpha1-rev20260521-2.0.0'
}
```

Expand Down