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-compute/alpha/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-compute</artifactId>
<version>alpha-rev20260908-2.0.0</version>
<version>alpha-rev20260910-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-compute:alpha-rev20260908-2.0.0'
implementation 'com.google.apis:google-api-services-compute:alpha-rev20260910-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34071,7 +34071,7 @@ public Get set(String parameterName, Object value) {
* parameters, call the {@link GetVmExtension#execute()} method to invoke the remote operation.
*
* @param folder Folder ID for this request.
* @param extensionName
* @param extensionName Required. Name of the VM extension for this request.
* @return the request
*/
public GetVmExtension getVmExtension(java.lang.String folder, java.lang.String extensionName) throws java.io.IOException {
Expand Down Expand Up @@ -34099,7 +34099,7 @@ public class GetVmExtension extends ComputeRequest<com.google.api.services.compu
* constructor. </p>
*
* @param folder Folder ID for this request.
* @param extensionName
* @param extensionName Required. Name of the VM extension for this request.
* @since 1.13
*/
protected GetVmExtension(java.lang.String folder, java.lang.String extensionName) {
Expand Down Expand Up @@ -34204,16 +34204,17 @@ public GetVmExtension setFolder(java.lang.String folder) {
return this;
}

/** Required. Name of the VM extension for this request. */
@com.google.api.client.util.Key
private java.lang.String extensionName;

/**

/** Required. Name of the VM extension for this request.
*/
public java.lang.String getExtensionName() {
return extensionName;
}

/** Required. Name of the VM extension for this request. */
public GetVmExtension setExtensionName(java.lang.String extensionName) {
this.extensionName = extensionName;
return this;
Expand Down Expand Up @@ -35899,7 +35900,7 @@ public Get set(String parameterName, Object value) {
*
* @param folder Folder ID for this request.
* @param zone Name of the zone for this request.
* @param extensionName
* @param extensionName Required. Name of the VM extension for this request.
* @return the request
*/
public GetVmExtension getVmExtension(java.lang.String folder, java.lang.String zone, java.lang.String extensionName) throws java.io.IOException {
Expand Down Expand Up @@ -35934,7 +35935,7 @@ public class GetVmExtension extends ComputeRequest<com.google.api.services.compu
*
* @param folder Folder ID for this request.
* @param zone Name of the zone for this request.
* @param extensionName
* @param extensionName Required. Name of the VM extension for this request.
* @since 1.13
*/
protected GetVmExtension(java.lang.String folder, java.lang.String zone, java.lang.String extensionName) {
Expand Down Expand Up @@ -36071,16 +36072,17 @@ public GetVmExtension setZone(java.lang.String zone) {
return this;
}

/** Required. Name of the VM extension for this request. */
@com.google.api.client.util.Key
private java.lang.String extensionName;

/**

/** Required. Name of the VM extension for this request.
*/
public java.lang.String getExtensionName() {
return extensionName;
}

/** Required. Name of the VM extension for this request. */
public GetVmExtension setExtensionName(java.lang.String extensionName) {
if (!getSuppressPatternChecks()) {
com.google.api.client.util.Preconditions.checkArgument(EXTENSION_NAME_PATTERN.matcher(extensionName).matches(),
Expand Down Expand Up @@ -46150,7 +46152,7 @@ public class GlobalFrontendSettings {
* This request holds the parameters needed by the compute server. After setting any optional
* parameters, call the {@link Get#execute()} method to invoke the remote operation.
*
* @param project
* @param project Required. Project ID for this request.
* @return the request
*/
public Get get(java.lang.String project) throws java.io.IOException {
Expand All @@ -46173,7 +46175,7 @@ public class Get extends ComputeRequest<com.google.api.services.compute.model.Gl
* Get#initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest)} must be
* called to initialize this instance immediately after invoking the constructor. </p>
*
* @param project
* @param project Required. Project ID for this request.
* @since 1.13
*/
protected Get(java.lang.String project) {
Expand Down Expand Up @@ -46251,16 +46253,17 @@ public Get setUserIp(java.lang.String userIp) {
return (Get) super.setUserIp(userIp);
}

/** Required. Project ID for this request. */
@com.google.api.client.util.Key
private java.lang.String project;

/**

/** Required. Project ID for this request.
*/
public java.lang.String getProject() {
return project;
}

/** Required. Project ID for this request. */
public Get setProject(java.lang.String project) {
this.project = project;
return this;
Expand All @@ -46279,7 +46282,7 @@ public Get set(String parameterName, Object value) {
* This request holds the parameters needed by the compute server. After setting any optional
* parameters, call the {@link Patch#execute()} method to invoke the remote operation.
*
* @param project
* @param project Required. Project ID for this request.
* @param content the {@link com.google.api.services.compute.model.GlobalFrontendSettings}
* @return the request
*/
Expand All @@ -46303,7 +46306,7 @@ public class Patch extends ComputeRequest<com.google.api.services.compute.model.
* Patch#initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest)} must
* be called to initialize this instance immediately after invoking the constructor. </p>
*
* @param project
* @param project Required. Project ID for this request.
* @param content the {@link com.google.api.services.compute.model.GlobalFrontendSettings}
* @since 1.13
*/
Expand Down Expand Up @@ -46372,47 +46375,49 @@ public Patch setUserIp(java.lang.String userIp) {
return (Patch) super.setUserIp(userIp);
}

/** Required. Project ID for this request. */
@com.google.api.client.util.Key
private java.lang.String project;

/**

/** Required. Project ID for this request.
*/
public java.lang.String getProject() {
return project;
}

/** Required. Project ID for this request. */
public Patch setProject(java.lang.String project) {
this.project = project;
return this;
}

/** An optional request ID to identify requests. */
@com.google.api.client.util.Key
private java.lang.String requestId;

/**

/** An optional request ID to identify requests.
*/
public java.lang.String getRequestId() {
return requestId;
}

/** An optional request ID to identify requests. */
public Patch setRequestId(java.lang.String requestId) {
this.requestId = requestId;
return this;
}

/** e.g., "type" */
/** Field mask to support patch. E.g., "type". */
@com.google.api.client.util.Key
private String updateMask;

/** e.g., "type"
/** Field mask to support patch. E.g., "type".
*/
public String getUpdateMask() {
return updateMask;
}

/** e.g., "type" */
/** Field mask to support patch. E.g., "type". */
public Patch setUpdateMask(String updateMask) {
this.updateMask = updateMask;
return this;
Expand Down Expand Up @@ -52574,7 +52579,7 @@ public Get set(String parameterName, Object value) {
* parameters, call the {@link GetVmExtension#execute()} method to invoke the remote operation.
*
* @param project Project ID for this request.
* @param extensionName
* @param extensionName Required. Name of the VM extension for this request.
* @return the request
*/
public GetVmExtension getVmExtension(java.lang.String project, java.lang.String extensionName) throws java.io.IOException {
Expand Down Expand Up @@ -52602,7 +52607,7 @@ public class GetVmExtension extends ComputeRequest<com.google.api.services.compu
* constructor. </p>
*
* @param project Project ID for this request.
* @param extensionName
* @param extensionName Required. Name of the VM extension for this request.
* @since 1.13
*/
protected GetVmExtension(java.lang.String project, java.lang.String extensionName) {
Expand Down Expand Up @@ -52707,16 +52712,17 @@ public GetVmExtension setProject(java.lang.String project) {
return this;
}

/** Required. Name of the VM extension for this request. */
@com.google.api.client.util.Key
private java.lang.String extensionName;

/**

/** Required. Name of the VM extension for this request.
*/
public java.lang.String getExtensionName() {
return extensionName;
}

/** Required. Name of the VM extension for this request. */
public GetVmExtension setExtensionName(java.lang.String extensionName) {
this.extensionName = extensionName;
return this;
Expand Down Expand Up @@ -142899,7 +142905,7 @@ public Get set(String parameterName, Object value) {
* parameters, call the {@link GetVmExtension#execute()} method to invoke the remote operation.
*
* @param organization Organization ID for this request.
* @param extensionName
* @param extensionName Required. Name of the VM extension for this request.
* @return the request
*/
public GetVmExtension getVmExtension(java.lang.String organization, java.lang.String extensionName) throws java.io.IOException {
Expand Down Expand Up @@ -142927,7 +142933,7 @@ public class GetVmExtension extends ComputeRequest<com.google.api.services.compu
* constructor. </p>
*
* @param organization Organization ID for this request.
* @param extensionName
* @param extensionName Required. Name of the VM extension for this request.
* @since 1.13
*/
protected GetVmExtension(java.lang.String organization, java.lang.String extensionName) {
Expand Down Expand Up @@ -143032,16 +143038,17 @@ public GetVmExtension setOrganization(java.lang.String organization) {
return this;
}

/** Required. Name of the VM extension for this request. */
@com.google.api.client.util.Key
private java.lang.String extensionName;

/**

/** Required. Name of the VM extension for this request.
*/
public java.lang.String getExtensionName() {
return extensionName;
}

/** Required. Name of the VM extension for this request. */
public GetVmExtension setExtensionName(java.lang.String extensionName) {
this.extensionName = extensionName;
return this;
Expand Down Expand Up @@ -151103,7 +151110,7 @@ public Get set(String parameterName, Object value) {
*
* @param organization Organization ID for this request.
* @param zone Name of the zone for this request.
* @param extensionName
* @param extensionName Required. Name of the VM extension for this request.
* @return the request
*/
public GetVmExtension getVmExtension(java.lang.String organization, java.lang.String zone, java.lang.String extensionName) throws java.io.IOException {
Expand Down Expand Up @@ -151138,7 +151145,7 @@ public class GetVmExtension extends ComputeRequest<com.google.api.services.compu
*
* @param organization Organization ID for this request.
* @param zone Name of the zone for this request.
* @param extensionName
* @param extensionName Required. Name of the VM extension for this request.
* @since 1.13
*/
protected GetVmExtension(java.lang.String organization, java.lang.String zone, java.lang.String extensionName) {
Expand Down Expand Up @@ -151275,16 +151282,17 @@ public GetVmExtension setZone(java.lang.String zone) {
return this;
}

/** Required. Name of the VM extension for this request. */
@com.google.api.client.util.Key
private java.lang.String extensionName;

/**

/** Required. Name of the VM extension for this request.
*/
public java.lang.String getExtensionName() {
return extensionName;
}

/** Required. Name of the VM extension for this request. */
public GetVmExtension setExtensionName(java.lang.String extensionName) {
if (!getSuppressPatternChecks()) {
com.google.api.client.util.Preconditions.checkArgument(EXTENSION_NAME_PATTERN.matcher(extensionName).matches(),
Expand Down Expand Up @@ -317065,7 +317073,7 @@ public Get set(String parameterName, Object value) {
*
* @param project Project ID for this request.
* @param zone Name of the zone for this request.
* @param extensionName
* @param extensionName Required. Name of the VM extension for this request.
* @return the request
*/
public GetVmExtension getVmExtension(java.lang.String project, java.lang.String zone, java.lang.String extensionName) throws java.io.IOException {
Expand Down Expand Up @@ -317100,7 +317108,7 @@ public class GetVmExtension extends ComputeRequest<com.google.api.services.compu
*
* @param project Project ID for this request.
* @param zone Name of the zone for this request.
* @param extensionName
* @param extensionName Required. Name of the VM extension for this request.
* @since 1.13
*/
protected GetVmExtension(java.lang.String project, java.lang.String zone, java.lang.String extensionName) {
Expand Down Expand Up @@ -317237,16 +317245,17 @@ public GetVmExtension setZone(java.lang.String zone) {
return this;
}

/** Required. Name of the VM extension for this request. */
@com.google.api.client.util.Key
private java.lang.String extensionName;

/**

/** Required. Name of the VM extension for this request.
*/
public java.lang.String getExtensionName() {
return extensionName;
}

/** Required. Name of the VM extension for this request. */
public GetVmExtension setExtensionName(java.lang.String extensionName) {
if (!getSuppressPatternChecks()) {
com.google.api.client.util.Preconditions.checkArgument(EXTENSION_NAME_PATTERN.matcher(extensionName).matches(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,14 @@ public final class CapacityAdviceRequestInstanceFlexibilityPolicyInstanceSelecti
@com.google.api.client.util.Key
private java.util.List<java.lang.String> machineTypes;

/**
* Optional. Rank when prioritizing the shape flexibilities. The instance selections are
* considered in the ascending order of the rank. If not set, defaults to 0.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
private java.lang.Long rank;

/**
* Local SSDs.
* @return value or {@code null} for none
Expand Down Expand Up @@ -107,6 +115,25 @@ public CapacityAdviceRequestInstanceFlexibilityPolicyInstanceSelection setMachin
return this;
}

/**
* Optional. Rank when prioritizing the shape flexibilities. The instance selections are
* considered in the ascending order of the rank. If not set, defaults to 0.
* @return value or {@code null} for none
*/
public java.lang.Long getRank() {
return rank;
}

/**
* Optional. Rank when prioritizing the shape flexibilities. The instance selections are
* considered in the ascending order of the rank. If not set, defaults to 0.
* @param rank rank or {@code null} for none
*/
public CapacityAdviceRequestInstanceFlexibilityPolicyInstanceSelection setRank(java.lang.Long rank) {
this.rank = rank;
return this;
}

@Override
public CapacityAdviceRequestInstanceFlexibilityPolicyInstanceSelection set(String fieldName, Object value) {
return (CapacityAdviceRequestInstanceFlexibilityPolicyInstanceSelection) super.set(fieldName, value);
Expand Down
Loading
Loading