Skip to content

Commit 28dadc0

Browse files
1 parent 54155d0 commit 28dadc0

5 files changed

Lines changed: 50 additions & 14 deletions

File tree

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

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ public Get set(String parameterName, Object value) {
313313
}
314314
/**
315315
* Lists information about the supported locations for this service. This method lists locations
316-
* based on the resource scope provided in the [ListLocationsRequest.name] field: * **Global
316+
* based on the resource scope provided in the ListLocationsRequest.name field: * **Global
317317
* locations**: If `name` is empty, the method lists the public locations available to all projects.
318318
* * **Project-specific locations**: If `name` follows the format `projects/{project}`, the method
319319
* lists locations visible to that specific project. This includes public, private, or other
@@ -344,7 +344,7 @@ public class List extends AIPlatformNotebooksRequest<com.google.api.services.not
344344

345345
/**
346346
* Lists information about the supported locations for this service. This method lists locations
347-
* based on the resource scope provided in the [ListLocationsRequest.name] field: * **Global
347+
* based on the resource scope provided in the ListLocationsRequest.name field: * **Global
348348
* locations**: If `name` is empty, the method lists the public locations available to all
349349
* projects. * **Project-specific locations**: If `name` follows the format `projects/{project}`,
350350
* the method lists locations visible to that specific project. This includes public, private, or
@@ -460,22 +460,22 @@ public List setName(java.lang.String name) {
460460
}
461461

462462
/**
463-
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
464-
* documented otherwise. This is primarily for internal usage.
463+
* Optional. Do not use this field unless explicitly documented otherwise. This is primarily
464+
* for internal usage.
465465
*/
466466
@com.google.api.client.util.Key
467467
private java.util.List<java.lang.String> extraLocationTypes;
468468

469-
/** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented
470-
otherwise. This is primarily for internal usage.
469+
/** Optional. Do not use this field unless explicitly documented otherwise. This is primarily for
470+
internal usage.
471471
*/
472472
public java.util.List<java.lang.String> getExtraLocationTypes() {
473473
return extraLocationTypes;
474474
}
475475

476476
/**
477-
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
478-
* documented otherwise. This is primarily for internal usage.
477+
* Optional. Do not use this field unless explicitly documented otherwise. This is primarily
478+
* for internal usage.
479479
*/
480480
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
481481
this.extraLocationTypes = extraLocationTypes;

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

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,42 @@
2929
@SuppressWarnings("javadoc")
3030
public final class UpgradeInstanceRequest extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Optional. The Compute Engine image family resource name to upgrade to. Format:
34+
* `projects/{project_id}/global/images/family/{image_family}` If specified, the instance will be
35+
* upgraded to the latest image in the specified image family, allowing upgrades across image
36+
* families. If not specified, the instance will be upgraded to the latest image in its current
37+
* image family.
38+
* The value may be {@code null}.
39+
*/
40+
@com.google.api.client.util.Key
41+
private java.lang.String imageFamily;
42+
43+
/**
44+
* Optional. The Compute Engine image family resource name to upgrade to. Format:
45+
* `projects/{project_id}/global/images/family/{image_family}` If specified, the instance will be
46+
* upgraded to the latest image in the specified image family, allowing upgrades across image
47+
* families. If not specified, the instance will be upgraded to the latest image in its current
48+
* image family.
49+
* @return value or {@code null} for none
50+
*/
51+
public java.lang.String getImageFamily() {
52+
return imageFamily;
53+
}
54+
55+
/**
56+
* Optional. The Compute Engine image family resource name to upgrade to. Format:
57+
* `projects/{project_id}/global/images/family/{image_family}` If specified, the instance will be
58+
* upgraded to the latest image in the specified image family, allowing upgrades across image
59+
* families. If not specified, the instance will be upgraded to the latest image in its current
60+
* image family.
61+
* @param imageFamily imageFamily or {@code null} for none
62+
*/
63+
public UpgradeInstanceRequest setImageFamily(java.lang.String imageFamily) {
64+
this.imageFamily = imageFamily;
65+
return this;
66+
}
67+
3268
@Override
3369
public UpgradeInstanceRequest set(String fieldName, Object value) {
3470
return (UpgradeInstanceRequest) super.set(fieldName, value);

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

0 commit comments

Comments
 (0)