Skip to content

Commit 655a434

Browse files
1 parent 47e9999 commit 655a434

File tree

10 files changed

+144
-12
lines changed

10 files changed

+144
-12
lines changed

clients/google-api-services-servicenetworking/v1/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-servicenetworking</artifactId>
25-
<version>v1-rev20250129-2.0.0</version>
25+
<version>v1-rev20250202-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-servicenetworking:v1-rev20250129-2.0.0'
38+
implementation 'com.google.apis:google-api-services-servicenetworking:v1-rev20250202-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-servicenetworking/v1/2.0.0/com/google/api/services/servicenetworking/v1/model/ExperimentalFeatures.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,15 @@ public final class ExperimentalFeatures extends com.google.api.client.json.Gener
4949
@com.google.api.client.util.Key
5050
private java.lang.Boolean restAsyncIoEnabled;
5151

52+
/**
53+
* Disables generation of an unversioned Python package for this client library. This means that
54+
* the module names will need to be versioned in import statements. For example `import
55+
* google.cloud.library_v2` instead of `import google.cloud.library`.
56+
* The value may be {@code null}.
57+
*/
58+
@com.google.api.client.util.Key
59+
private java.lang.Boolean unversionedPackageDisabled;
60+
5261
/**
5362
* Enables generation of protobuf code using new types that are more Pythonic which are included
5463
* in `protobuf>=5.29.x`. This feature will be enabled by default 1 month after launching the
@@ -91,6 +100,27 @@ public ExperimentalFeatures setRestAsyncIoEnabled(java.lang.Boolean restAsyncIoE
91100
return this;
92101
}
93102

103+
/**
104+
* Disables generation of an unversioned Python package for this client library. This means that
105+
* the module names will need to be versioned in import statements. For example `import
106+
* google.cloud.library_v2` instead of `import google.cloud.library`.
107+
* @return value or {@code null} for none
108+
*/
109+
public java.lang.Boolean getUnversionedPackageDisabled() {
110+
return unversionedPackageDisabled;
111+
}
112+
113+
/**
114+
* Disables generation of an unversioned Python package for this client library. This means that
115+
* the module names will need to be versioned in import statements. For example `import
116+
* google.cloud.library_v2` instead of `import google.cloud.library`.
117+
* @param unversionedPackageDisabled unversionedPackageDisabled or {@code null} for none
118+
*/
119+
public ExperimentalFeatures setUnversionedPackageDisabled(java.lang.Boolean unversionedPackageDisabled) {
120+
this.unversionedPackageDisabled = unversionedPackageDisabled;
121+
return this;
122+
}
123+
94124
@Override
95125
public ExperimentalFeatures set(String fieldName, Object value) {
96126
return (ExperimentalFeatures) super.set(fieldName, value);

clients/google-api-services-servicenetworking/v1/2.0.0/com/google/api/services/servicenetworking/v1/model/SelectiveGapicGeneration.java

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,17 @@
3131
@SuppressWarnings("javadoc")
3232
public final class SelectiveGapicGeneration extends com.google.api.client.json.GenericJson {
3333

34+
/**
35+
* Setting this to true indicates to the client generators that methods that would be excluded
36+
* from the generation should instead be generated in a way that indicates these methods should
37+
* not be consumed by end users. How this is expressed is up to individual language
38+
* implementations to decide. Some examples may be: added annotations, obfuscated identifiers, or
39+
* other language idiomatic patterns.
40+
* The value may be {@code null}.
41+
*/
42+
@com.google.api.client.util.Key
43+
private java.lang.Boolean generateOmittedAsInternal;
44+
3445
/**
3546
* An allowlist of the fully qualified names of RPCs that should be included on public client
3647
* surfaces.
@@ -39,6 +50,31 @@ public final class SelectiveGapicGeneration extends com.google.api.client.json.G
3950
@com.google.api.client.util.Key
4051
private java.util.List<java.lang.String> methods;
4152

53+
/**
54+
* Setting this to true indicates to the client generators that methods that would be excluded
55+
* from the generation should instead be generated in a way that indicates these methods should
56+
* not be consumed by end users. How this is expressed is up to individual language
57+
* implementations to decide. Some examples may be: added annotations, obfuscated identifiers, or
58+
* other language idiomatic patterns.
59+
* @return value or {@code null} for none
60+
*/
61+
public java.lang.Boolean getGenerateOmittedAsInternal() {
62+
return generateOmittedAsInternal;
63+
}
64+
65+
/**
66+
* Setting this to true indicates to the client generators that methods that would be excluded
67+
* from the generation should instead be generated in a way that indicates these methods should
68+
* not be consumed by end users. How this is expressed is up to individual language
69+
* implementations to decide. Some examples may be: added annotations, obfuscated identifiers, or
70+
* other language idiomatic patterns.
71+
* @param generateOmittedAsInternal generateOmittedAsInternal or {@code null} for none
72+
*/
73+
public SelectiveGapicGeneration setGenerateOmittedAsInternal(java.lang.Boolean generateOmittedAsInternal) {
74+
this.generateOmittedAsInternal = generateOmittedAsInternal;
75+
return this;
76+
}
77+
4278
/**
4379
* An allowlist of the fully qualified names of RPCs that should be included on public client
4480
* surfaces.

clients/google-api-services-servicenetworking/v1/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-servicenetworking</artifactId>
11-
<version>v1-rev20250129-2.0.0</version>
12-
<name>Service Networking API v1-rev20250129-2.0.0</name>
11+
<version>v1-rev20250202-2.0.0</version>
12+
<name>Service Networking API v1-rev20250202-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-servicenetworking/v1/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-servicenetworking</artifactId>
25-
<version>v1-rev20250129-2.0.0</version>
25+
<version>v1-rev20250202-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-servicenetworking:v1-rev20250129-2.0.0'
38+
implementation 'com.google.apis:google-api-services-servicenetworking:v1-rev20250202-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-servicenetworking/v1beta/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-servicenetworking</artifactId>
25-
<version>v1beta-rev20250129-2.0.0</version>
25+
<version>v1beta-rev20250202-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-servicenetworking:v1beta-rev20250129-2.0.0'
38+
implementation 'com.google.apis:google-api-services-servicenetworking:v1beta-rev20250202-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-servicenetworking/v1beta/2.0.0/com/google/api/services/servicenetworking/v1beta/model/ExperimentalFeatures.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,15 @@ public final class ExperimentalFeatures extends com.google.api.client.json.Gener
4949
@com.google.api.client.util.Key
5050
private java.lang.Boolean restAsyncIoEnabled;
5151

52+
/**
53+
* Disables generation of an unversioned Python package for this client library. This means that
54+
* the module names will need to be versioned in import statements. For example `import
55+
* google.cloud.library_v2` instead of `import google.cloud.library`.
56+
* The value may be {@code null}.
57+
*/
58+
@com.google.api.client.util.Key
59+
private java.lang.Boolean unversionedPackageDisabled;
60+
5261
/**
5362
* Enables generation of protobuf code using new types that are more Pythonic which are included
5463
* in `protobuf>=5.29.x`. This feature will be enabled by default 1 month after launching the
@@ -91,6 +100,27 @@ public ExperimentalFeatures setRestAsyncIoEnabled(java.lang.Boolean restAsyncIoE
91100
return this;
92101
}
93102

103+
/**
104+
* Disables generation of an unversioned Python package for this client library. This means that
105+
* the module names will need to be versioned in import statements. For example `import
106+
* google.cloud.library_v2` instead of `import google.cloud.library`.
107+
* @return value or {@code null} for none
108+
*/
109+
public java.lang.Boolean getUnversionedPackageDisabled() {
110+
return unversionedPackageDisabled;
111+
}
112+
113+
/**
114+
* Disables generation of an unversioned Python package for this client library. This means that
115+
* the module names will need to be versioned in import statements. For example `import
116+
* google.cloud.library_v2` instead of `import google.cloud.library`.
117+
* @param unversionedPackageDisabled unversionedPackageDisabled or {@code null} for none
118+
*/
119+
public ExperimentalFeatures setUnversionedPackageDisabled(java.lang.Boolean unversionedPackageDisabled) {
120+
this.unversionedPackageDisabled = unversionedPackageDisabled;
121+
return this;
122+
}
123+
94124
@Override
95125
public ExperimentalFeatures set(String fieldName, Object value) {
96126
return (ExperimentalFeatures) super.set(fieldName, value);

clients/google-api-services-servicenetworking/v1beta/2.0.0/com/google/api/services/servicenetworking/v1beta/model/SelectiveGapicGeneration.java

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,17 @@
3131
@SuppressWarnings("javadoc")
3232
public final class SelectiveGapicGeneration extends com.google.api.client.json.GenericJson {
3333

34+
/**
35+
* Setting this to true indicates to the client generators that methods that would be excluded
36+
* from the generation should instead be generated in a way that indicates these methods should
37+
* not be consumed by end users. How this is expressed is up to individual language
38+
* implementations to decide. Some examples may be: added annotations, obfuscated identifiers, or
39+
* other language idiomatic patterns.
40+
* The value may be {@code null}.
41+
*/
42+
@com.google.api.client.util.Key
43+
private java.lang.Boolean generateOmittedAsInternal;
44+
3445
/**
3546
* An allowlist of the fully qualified names of RPCs that should be included on public client
3647
* surfaces.
@@ -39,6 +50,31 @@ public final class SelectiveGapicGeneration extends com.google.api.client.json.G
3950
@com.google.api.client.util.Key
4051
private java.util.List<java.lang.String> methods;
4152

53+
/**
54+
* Setting this to true indicates to the client generators that methods that would be excluded
55+
* from the generation should instead be generated in a way that indicates these methods should
56+
* not be consumed by end users. How this is expressed is up to individual language
57+
* implementations to decide. Some examples may be: added annotations, obfuscated identifiers, or
58+
* other language idiomatic patterns.
59+
* @return value or {@code null} for none
60+
*/
61+
public java.lang.Boolean getGenerateOmittedAsInternal() {
62+
return generateOmittedAsInternal;
63+
}
64+
65+
/**
66+
* Setting this to true indicates to the client generators that methods that would be excluded
67+
* from the generation should instead be generated in a way that indicates these methods should
68+
* not be consumed by end users. How this is expressed is up to individual language
69+
* implementations to decide. Some examples may be: added annotations, obfuscated identifiers, or
70+
* other language idiomatic patterns.
71+
* @param generateOmittedAsInternal generateOmittedAsInternal or {@code null} for none
72+
*/
73+
public SelectiveGapicGeneration setGenerateOmittedAsInternal(java.lang.Boolean generateOmittedAsInternal) {
74+
this.generateOmittedAsInternal = generateOmittedAsInternal;
75+
return this;
76+
}
77+
4278
/**
4379
* An allowlist of the fully qualified names of RPCs that should be included on public client
4480
* surfaces.

clients/google-api-services-servicenetworking/v1beta/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-servicenetworking</artifactId>
11-
<version>v1beta-rev20250129-2.0.0</version>
12-
<name>Service Networking API v1beta-rev20250129-2.0.0</name>
11+
<version>v1beta-rev20250202-2.0.0</version>
12+
<name>Service Networking API v1beta-rev20250202-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-servicenetworking/v1beta/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-servicenetworking</artifactId>
25-
<version>v1beta-rev20250129-2.0.0</version>
25+
<version>v1beta-rev20250202-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-servicenetworking:v1beta-rev20250129-2.0.0'
38+
implementation 'com.google.apis:google-api-services-servicenetworking:v1beta-rev20250202-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)