Skip to content

Commit 98bedb6

Browse files
chore: regenerate serviceconsumermanagement client (googleapis#25365)
Generated in GitHub action: https://togithub.com/googleapis/googleapis/google-api-java-client-services/actions/workflows/codegen.yaml
1 parent a59001b commit 98bedb6

File tree

10 files changed

+102
-30
lines changed

10 files changed

+102
-30
lines changed

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

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

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

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

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

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

clients/google-api-services-serviceconsumermanagement/v1/2.0.0/com/google/api/services/serviceconsumermanagement/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-serviceconsumermanagement/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-serviceconsumermanagement</artifactId>
11-
<version>v1-rev20241210-2.0.0</version>
12-
<name>Service Consumer Management API v1-rev20241210-2.0.0</name>
11+
<version>v1-rev20250130-2.0.0</version>
12+
<name>Service Consumer Management API v1-rev20250130-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

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

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

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

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

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

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

clients/google-api-services-serviceconsumermanagement/v1beta1/2.0.0/com/google/api/services/serviceconsumermanagement/v1beta1/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-serviceconsumermanagement/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-serviceconsumermanagement</artifactId>
11-
<version>v1beta1-rev20241205-2.0.0</version>
12-
<name>Service Consumer Management API v1beta1-rev20241205-2.0.0</name>
11+
<version>v1beta1-rev20250130-2.0.0</version>
12+
<name>Service Consumer Management API v1beta1-rev20250130-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)