Skip to content

Commit 57c24a3

Browse files
1 parent e8787ea commit 57c24a3

File tree

4 files changed

+36
-6
lines changed

4 files changed

+36
-6
lines changed

clients/google-api-services-notebooks/v2/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-notebooks</artifactId>
25-
<version>v2-rev20240530-2.0.0</version>
25+
<version>v2-rev20240731-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-notebooks:v2-rev20240530-2.0.0'
38+
implementation 'com.google.apis:google-api-services-notebooks:v2-rev20240731-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-notebooks/v2/2.0.0/com/google/api/services/notebooks/v2/model/GceSetup.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,15 @@ public final class GceSetup extends com.google.api.client.json.GenericJson {
109109
@com.google.api.client.util.Key
110110
private java.util.Map<String, java.lang.String> metadata;
111111

112+
/**
113+
* Optional. The minimum CPU platform to use for this instance. The list of valid values can be
114+
* found in https://cloud.google.com/compute/docs/instances/specify-min-cpu-
115+
* platform#availablezones
116+
* The value may be {@code null}.
117+
*/
118+
@com.google.api.client.util.Key
119+
private java.lang.String minCpuPlatform;
120+
112121
/**
113122
* Optional. The network interfaces for the VM. Supports only one interface.
114123
* The value may be {@code null}.
@@ -310,6 +319,27 @@ public GceSetup setMetadata(java.util.Map<String, java.lang.String> metadata) {
310319
return this;
311320
}
312321

322+
/**
323+
* Optional. The minimum CPU platform to use for this instance. The list of valid values can be
324+
* found in https://cloud.google.com/compute/docs/instances/specify-min-cpu-
325+
* platform#availablezones
326+
* @return value or {@code null} for none
327+
*/
328+
public java.lang.String getMinCpuPlatform() {
329+
return minCpuPlatform;
330+
}
331+
332+
/**
333+
* Optional. The minimum CPU platform to use for this instance. The list of valid values can be
334+
* found in https://cloud.google.com/compute/docs/instances/specify-min-cpu-
335+
* platform#availablezones
336+
* @param minCpuPlatform minCpuPlatform or {@code null} for none
337+
*/
338+
public GceSetup setMinCpuPlatform(java.lang.String minCpuPlatform) {
339+
this.minCpuPlatform = minCpuPlatform;
340+
return this;
341+
}
342+
313343
/**
314344
* Optional. The network interfaces for the VM. Supports only one interface.
315345
* @return value or {@code null} for none

clients/google-api-services-notebooks/v2/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-notebooks</artifactId>
11-
<version>v2-rev20240530-2.0.0</version>
12-
<name>Notebooks API v2-rev20240530-2.0.0</name>
11+
<version>v2-rev20240731-2.0.0</version>
12+
<name>Notebooks API v2-rev20240731-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-notebooks/v2/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-notebooks</artifactId>
25-
<version>v2-rev20240530-2.0.0</version>
25+
<version>v2-rev20240731-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-notebooks:v2-rev20240530-2.0.0'
38+
implementation 'com.google.apis:google-api-services-notebooks:v2-rev20240731-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)