Skip to content

Commit 78404a9

Browse files
1 parent 8733863 commit 78404a9

31 files changed

+1781
-251
lines changed

clients/google-api-services-compute/alpha/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-compute</artifactId>
25-
<version>alpha-rev20240707-2.0.0</version>
25+
<version>alpha-rev20240723-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-compute:alpha-rev20240707-2.0.0'
38+
implementation 'com.google.apis:google-api-services-compute:alpha-rev20240723-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-compute/alpha/2.0.0/com/google/api/services/compute/Compute.java

Lines changed: 412 additions & 60 deletions
Large diffs are not rendered by default.

clients/google-api-services-compute/alpha/2.0.0/com/google/api/services/compute/model/AdvancedMachineFeatures.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ public final class AdvancedMachineFeatures extends com.google.api.client.json.Ge
7777
private java.lang.Integer threadsPerCore;
7878

7979
/**
80-
* Turbo mode to use for the instance. Supported modes include: * ALL_CORE_MAX Using empty string
81-
* or not setting this field will use the default turbo mode.
80+
* Turbo frequency mode to use for the instance. Supported modes include: * ALL_CORE_MAX Using
81+
* empty string or not setting this field will use the platform-specific default turbo mode.
8282
* The value may be {@code null}.
8383
*/
8484
@com.google.api.client.util.Key
@@ -201,17 +201,17 @@ public AdvancedMachineFeatures setThreadsPerCore(java.lang.Integer threadsPerCor
201201
}
202202

203203
/**
204-
* Turbo mode to use for the instance. Supported modes include: * ALL_CORE_MAX Using empty string
205-
* or not setting this field will use the default turbo mode.
204+
* Turbo frequency mode to use for the instance. Supported modes include: * ALL_CORE_MAX Using
205+
* empty string or not setting this field will use the platform-specific default turbo mode.
206206
* @return value or {@code null} for none
207207
*/
208208
public java.lang.String getTurboMode() {
209209
return turboMode;
210210
}
211211

212212
/**
213-
* Turbo mode to use for the instance. Supported modes include: * ALL_CORE_MAX Using empty string
214-
* or not setting this field will use the default turbo mode.
213+
* Turbo frequency mode to use for the instance. Supported modes include: * ALL_CORE_MAX Using
214+
* empty string or not setting this field will use the platform-specific default turbo mode.
215215
* @param turboMode turboMode or {@code null} for none
216216
*/
217217
public AdvancedMachineFeatures setTurboMode(java.lang.String turboMode) {

clients/google-api-services-compute/alpha/2.0.0/com/google/api/services/compute/model/BackendBucket.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,13 @@ public final class BackendBucket extends com.google.api.client.json.GenericJson
137137
@com.google.api.client.util.Key
138138
private java.lang.String selfLinkWithId;
139139

140+
/**
141+
* [Output Only] List of resources referencing that backend bucket.
142+
* The value may be {@code null}.
143+
*/
144+
@com.google.api.client.util.Key
145+
private java.util.List<BackendBucketUsedBy> usedBy;
146+
140147
/**
141148
* Cloud Storage bucket name.
142149
* @return value or {@code null} for none
@@ -393,6 +400,23 @@ public BackendBucket setSelfLinkWithId(java.lang.String selfLinkWithId) {
393400
return this;
394401
}
395402

403+
/**
404+
* [Output Only] List of resources referencing that backend bucket.
405+
* @return value or {@code null} for none
406+
*/
407+
public java.util.List<BackendBucketUsedBy> getUsedBy() {
408+
return usedBy;
409+
}
410+
411+
/**
412+
* [Output Only] List of resources referencing that backend bucket.
413+
* @param usedBy usedBy or {@code null} for none
414+
*/
415+
public BackendBucket setUsedBy(java.util.List<BackendBucketUsedBy> usedBy) {
416+
this.usedBy = usedBy;
417+
return this;
418+
}
419+
396420
@Override
397421
public BackendBucket set(String fieldName, Object value) {
398422
return (BackendBucket) super.set(fieldName, value);

0 commit comments

Comments
 (0)