Skip to content

Commit b3750cf

Browse files
1 parent 64fac3c commit b3750cf

File tree

5 files changed

+63
-6
lines changed

5 files changed

+63
-6
lines changed

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

clients/google-api-services-servicemanagement/v1/2.0.0/com/google/api/services/servicemanagement/model/Documentation.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,14 @@
5050
@SuppressWarnings("javadoc")
5151
public final class Documentation extends com.google.api.client.json.GenericJson {
5252

53+
/**
54+
* Optional information about the IAM configuration. This is typically used to link to
55+
* documentation about a product's IAM roles and permissions.
56+
* The value may be {@code null}.
57+
*/
58+
@com.google.api.client.util.Key
59+
private java.lang.String additionalIamInfo;
60+
5361
/**
5462
* The URL to the root of documentation.
5563
* The value may be {@code null}.
@@ -108,6 +116,25 @@ public final class Documentation extends com.google.api.client.json.GenericJson
108116
@com.google.api.client.util.Key
109117
private java.lang.String summary;
110118

119+
/**
120+
* Optional information about the IAM configuration. This is typically used to link to
121+
* documentation about a product's IAM roles and permissions.
122+
* @return value or {@code null} for none
123+
*/
124+
public java.lang.String getAdditionalIamInfo() {
125+
return additionalIamInfo;
126+
}
127+
128+
/**
129+
* Optional information about the IAM configuration. This is typically used to link to
130+
* documentation about a product's IAM roles and permissions.
131+
* @param additionalIamInfo additionalIamInfo or {@code null} for none
132+
*/
133+
public Documentation setAdditionalIamInfo(java.lang.String additionalIamInfo) {
134+
this.additionalIamInfo = additionalIamInfo;
135+
return this;
136+
}
137+
111138
/**
112139
* The URL to the root of documentation.
113140
* @return value or {@code null} for none

clients/google-api-services-servicemanagement/v1/2.0.0/com/google/api/services/servicemanagement/model/GoSettings.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,15 @@ public final class GoSettings extends com.google.api.client.json.GenericJson {
3737
@com.google.api.client.util.Key
3838
private CommonLanguageSettings common;
3939

40+
/**
41+
* Map of service names to renamed services. Keys are the package relative service names and
42+
* values are the name to be used for the service client and call options. publishing:
43+
* go_settings: renamed_services: Publisher: TopicAdmin
44+
* The value may be {@code null}.
45+
*/
46+
@com.google.api.client.util.Key
47+
private java.util.Map<String, java.lang.String> renamedServices;
48+
4049
/**
4150
* Some settings.
4251
* @return value or {@code null} for none
@@ -54,6 +63,27 @@ public GoSettings setCommon(CommonLanguageSettings common) {
5463
return this;
5564
}
5665

66+
/**
67+
* Map of service names to renamed services. Keys are the package relative service names and
68+
* values are the name to be used for the service client and call options. publishing:
69+
* go_settings: renamed_services: Publisher: TopicAdmin
70+
* @return value or {@code null} for none
71+
*/
72+
public java.util.Map<String, java.lang.String> getRenamedServices() {
73+
return renamedServices;
74+
}
75+
76+
/**
77+
* Map of service names to renamed services. Keys are the package relative service names and
78+
* values are the name to be used for the service client and call options. publishing:
79+
* go_settings: renamed_services: Publisher: TopicAdmin
80+
* @param renamedServices renamedServices or {@code null} for none
81+
*/
82+
public GoSettings setRenamedServices(java.util.Map<String, java.lang.String> renamedServices) {
83+
this.renamedServices = renamedServices;
84+
return this;
85+
}
86+
5787
@Override
5888
public GoSettings set(String fieldName, Object value) {
5989
return (GoSettings) super.set(fieldName, value);

clients/google-api-services-servicemanagement/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-servicemanagement</artifactId>
11-
<version>v1-rev20241106-2.0.0</version>
12-
<name>Service Management API v1-rev20241106-2.0.0</name>
11+
<version>v1-rev20241202-2.0.0</version>
12+
<name>Service Management API v1-rev20241202-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)