Skip to content

Commit a59001b

Browse files
1 parent fa96279 commit a59001b

File tree

10 files changed

+102
-30
lines changed

10 files changed

+102
-30
lines changed

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

clients/google-api-services-serviceusage/v1/2.0.0/com/google/api/services/serviceusage/v1/model/Page.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@
3131
public final class Page extends com.google.api.client.json.GenericJson {
3232

3333
/**
34-
* The Markdown content of the page. You can use (== include {path} ==) to include content from a
35-
* Markdown file. The content can be used to produce the documentation page such as HTML format
36-
* page.
34+
* The Markdown content of the page. You can use ```(== include {path} ==)``` to include content
35+
* from a Markdown file. The content can be used to produce the documentation page such as HTML
36+
* format page.
3737
* The value may be {@code null}.
3838
*/
3939
@com.google.api.client.util.Key
@@ -60,19 +60,19 @@ public final class Page extends com.google.api.client.json.GenericJson {
6060
private java.util.List<Page> subpages;
6161

6262
/**
63-
* The Markdown content of the page. You can use (== include {path} ==) to include content from a
64-
* Markdown file. The content can be used to produce the documentation page such as HTML format
65-
* page.
63+
* The Markdown content of the page. You can use ```(== include {path} ==)``` to include content
64+
* from a Markdown file. The content can be used to produce the documentation page such as HTML
65+
* format page.
6666
* @return value or {@code null} for none
6767
*/
6868
public java.lang.String getContent() {
6969
return content;
7070
}
7171

7272
/**
73-
* The Markdown content of the page. You can use (== include {path} ==) to include content from a
74-
* Markdown file. The content can be used to produce the documentation page such as HTML format
75-
* page.
73+
* The Markdown content of the page. You can use ```(== include {path} ==)``` to include content
74+
* from a Markdown file. The content can be used to produce the documentation page such as HTML
75+
* format page.
7676
* @param content content or {@code null} for none
7777
*/
7878
public Page setContent(java.lang.String content) {

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

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

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

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

clients/google-api-services-serviceusage/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-serviceusage</artifactId>
11-
<version>v1-rev20241219-2.0.0</version>
12-
<name>Service Usage API v1-rev20241219-2.0.0</name>
11+
<version>v1-rev20250130-2.0.0</version>
12+
<name>Service Usage API v1-rev20250130-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

clients/google-api-services-serviceusage/v1beta1/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-serviceusage</artifactId>
25-
<version>v1beta1-rev20241219-2.0.0</version>
25+
<version>v1beta1-rev20250130-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-serviceusage:v1beta1-rev20241219-2.0.0'
38+
implementation 'com.google.apis:google-api-services-serviceusage:v1beta1-rev20250130-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-serviceusage/v1beta1/2.0.0/com/google/api/services/serviceusage/v1beta1/model/Page.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@
3131
public final class Page extends com.google.api.client.json.GenericJson {
3232

3333
/**
34-
* The Markdown content of the page. You can use (== include {path} ==) to include content from a
35-
* Markdown file. The content can be used to produce the documentation page such as HTML format
36-
* page.
34+
* The Markdown content of the page. You can use ```(== include {path} ==)``` to include content
35+
* from a Markdown file. The content can be used to produce the documentation page such as HTML
36+
* format page.
3737
* The value may be {@code null}.
3838
*/
3939
@com.google.api.client.util.Key
@@ -60,19 +60,19 @@ public final class Page extends com.google.api.client.json.GenericJson {
6060
private java.util.List<Page> subpages;
6161

6262
/**
63-
* The Markdown content of the page. You can use (== include {path} ==) to include content from a
64-
* Markdown file. The content can be used to produce the documentation page such as HTML format
65-
* page.
63+
* The Markdown content of the page. You can use ```(== include {path} ==)``` to include content
64+
* from a Markdown file. The content can be used to produce the documentation page such as HTML
65+
* format page.
6666
* @return value or {@code null} for none
6767
*/
6868
public java.lang.String getContent() {
6969
return content;
7070
}
7171

7272
/**
73-
* The Markdown content of the page. You can use (== include {path} ==) to include content from a
74-
* Markdown file. The content can be used to produce the documentation page such as HTML format
75-
* page.
73+
* The Markdown content of the page. You can use ```(== include {path} ==)``` to include content
74+
* from a Markdown file. The content can be used to produce the documentation page such as HTML
75+
* format page.
7676
* @param content content or {@code null} for none
7777
*/
7878
public Page setContent(java.lang.String content) {

clients/google-api-services-serviceusage/v1beta1/2.0.0/com/google/api/services/serviceusage/v1beta1/model/SelectiveGapicGeneration.java

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

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

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

clients/google-api-services-serviceusage/v1beta1/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-serviceusage</artifactId>
11-
<version>v1beta1-rev20241219-2.0.0</version>
12-
<name>Service Usage API v1beta1-rev20241219-2.0.0</name>
11+
<version>v1beta1-rev20250130-2.0.0</version>
12+
<name>Service Usage API v1beta1-rev20250130-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-serviceusage/v1beta1/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-serviceusage</artifactId>
25-
<version>v1beta1-rev20241219-2.0.0</version>
25+
<version>v1beta1-rev20250130-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-serviceusage:v1beta1-rev20241219-2.0.0'
38+
implementation 'com.google.apis:google-api-services-serviceusage:v1beta1-rev20250130-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)