Skip to content

Commit 1a1706f

Browse files
1 parent b9a486c commit 1a1706f

File tree

4 files changed

+30
-6
lines changed

4 files changed

+30
-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-rev20251008-2.0.0</version>
25+
<version>v2-rev20251016-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-rev20251008-2.0.0'
38+
implementation 'com.google.apis:google-api-services-notebooks:v2-rev20251016-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: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,13 @@ public final class GceSetup extends com.google.api.client.json.GenericJson {
101101
@com.google.api.client.util.Key
102102
private GPUDriverConfig gpuDriverConfig;
103103

104+
/**
105+
* Output only. The unique ID of the Compute Engine instance resource.
106+
* The value may be {@code null}.
107+
*/
108+
@com.google.api.client.util.Key
109+
private java.lang.String instanceId;
110+
104111
/**
105112
* Optional. The machine type of the VM instance. https://cloud.google.com/compute/docs/machine-
106113
* resource
@@ -314,6 +321,23 @@ public GceSetup setGpuDriverConfig(GPUDriverConfig gpuDriverConfig) {
314321
return this;
315322
}
316323

324+
/**
325+
* Output only. The unique ID of the Compute Engine instance resource.
326+
* @return value or {@code null} for none
327+
*/
328+
public java.lang.String getInstanceId() {
329+
return instanceId;
330+
}
331+
332+
/**
333+
* Output only. The unique ID of the Compute Engine instance resource.
334+
* @param instanceId instanceId or {@code null} for none
335+
*/
336+
public GceSetup setInstanceId(java.lang.String instanceId) {
337+
this.instanceId = instanceId;
338+
return this;
339+
}
340+
317341
/**
318342
* Optional. The machine type of the VM instance. https://cloud.google.com/compute/docs/machine-
319343
* resource

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-rev20251008-2.0.0</version>
12-
<name>Notebooks API v2-rev20251008-2.0.0</name>
11+
<version>v2-rev20251016-2.0.0</version>
12+
<name>Notebooks API v2-rev20251016-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-rev20251008-2.0.0</version>
25+
<version>v2-rev20251016-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-rev20251008-2.0.0'
38+
implementation 'com.google.apis:google-api-services-notebooks:v2-rev20251016-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)