Skip to content

Commit 6ea9a8a

Browse files
1 parent 6b7d5f2 commit 6ea9a8a

File tree

14 files changed

+40
-46
lines changed

14 files changed

+40
-46
lines changed

clients/google-api-services-cloudsupport/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-cloudsupport</artifactId>
25-
<version>v2-rev20241231-2.0.0</version>
25+
<version>v2-rev20250521-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-cloudsupport:v2-rev20241231-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudsupport:v2-rev20250521-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-cloudsupport/v2/2.0.0/com/google/api/services/cloudsupport/v2/CloudSupport.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1234,7 +1234,7 @@ public List set(String parameterName, Object value) {
12341234
* This request holds the parameters needed by the cloudsupport server. After setting any optional
12351235
* parameters, call the {@link Patch#execute()} method to invoke the remote operation.
12361236
*
1237-
* @param name The resource name for the case.
1237+
* @param name Identifier. The resource name for the case.
12381238
* @param content the {@link com.google.api.services.cloudsupport.v2.model.CloudSupportCase}
12391239
* @return the request
12401240
*/
@@ -1270,7 +1270,7 @@ public class Patch extends CloudSupportRequest<com.google.api.services.cloudsupp
12701270
* Patch#initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest)} must
12711271
* be called to initialize this instance immediately after invoking the constructor. </p>
12721272
*
1273-
* @param name The resource name for the case.
1273+
* @param name Identifier. The resource name for the case.
12741274
* @param content the {@link com.google.api.services.cloudsupport.v2.model.CloudSupportCase}
12751275
* @since 1.13
12761276
*/
@@ -1339,17 +1339,17 @@ public Patch setUploadProtocol(java.lang.String uploadProtocol) {
13391339
return (Patch) super.setUploadProtocol(uploadProtocol);
13401340
}
13411341

1342-
/** The resource name for the case. */
1342+
/** Identifier. The resource name for the case. */
13431343
@com.google.api.client.util.Key
13441344
private java.lang.String name;
13451345

1346-
/** The resource name for the case.
1346+
/** Identifier. The resource name for the case.
13471347
*/
13481348
public java.lang.String getName() {
13491349
return name;
13501350
}
13511351

1352-
/** The resource name for the case. */
1352+
/** Identifier. The resource name for the case. */
13531353
public Patch setName(java.lang.String name) {
13541354
if (!getSuppressPatternChecks()) {
13551355
com.google.api.client.util.Preconditions.checkArgument(NAME_PATTERN.matcher(name).matches(),

clients/google-api-services-cloudsupport/v2/2.0.0/com/google/api/services/cloudsupport/v2/model/Actor.java

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@ public final class Actor extends com.google.api.client.json.GenericJson {
4444
/**
4545
* The email address of the actor. If not provided, it is inferred from the credentials supplied
4646
* during case creation. When a name is provided, an email must also be provided. If the user is a
47-
* Google Support agent, this is obfuscated. This field is deprecated. Use **username** field
48-
* instead.
47+
* Google Support agent, this is obfuscated. This field is deprecated. Use `username` instead.
4948
* The value may be {@code null}.
5049
*/
5150
@com.google.api.client.util.Key
@@ -92,8 +91,7 @@ public Actor setDisplayName(java.lang.String displayName) {
9291
/**
9392
* The email address of the actor. If not provided, it is inferred from the credentials supplied
9493
* during case creation. When a name is provided, an email must also be provided. If the user is a
95-
* Google Support agent, this is obfuscated. This field is deprecated. Use **username** field
96-
* instead.
94+
* Google Support agent, this is obfuscated. This field is deprecated. Use `username` instead.
9795
* @return value or {@code null} for none
9896
*/
9997
public java.lang.String getEmail() {
@@ -103,8 +101,7 @@ public java.lang.String getEmail() {
103101
/**
104102
* The email address of the actor. If not provided, it is inferred from the credentials supplied
105103
* during case creation. When a name is provided, an email must also be provided. If the user is a
106-
* Google Support agent, this is obfuscated. This field is deprecated. Use **username** field
107-
* instead.
104+
* Google Support agent, this is obfuscated. This field is deprecated. Use `username` instead.
108105
* @param email email or {@code null} for none
109106
*/
110107
public Actor setEmail(java.lang.String email) {

clients/google-api-services-cloudsupport/v2/2.0.0/com/google/api/services/cloudsupport/v2/model/Attachment.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public final class Attachment extends com.google.api.client.json.GenericJson {
6464
private java.lang.String mimeType;
6565

6666
/**
67-
* Output only. The resource name of the attachment.
67+
* Output only. Identifier. The resource name of the attachment.
6868
* The value may be {@code null}.
6969
*/
7070
@com.google.api.client.util.Key
@@ -148,15 +148,15 @@ public Attachment setMimeType(java.lang.String mimeType) {
148148
}
149149

150150
/**
151-
* Output only. The resource name of the attachment.
151+
* Output only. Identifier. The resource name of the attachment.
152152
* @return value or {@code null} for none
153153
*/
154154
public java.lang.String getName() {
155155
return name;
156156
}
157157

158158
/**
159-
* Output only. The resource name of the attachment.
159+
* Output only. Identifier. The resource name of the attachment.
160160
* @param name name or {@code null} for none
161161
*/
162162
public Attachment setName(java.lang.String name) {

clients/google-api-services-cloudsupport/v2/2.0.0/com/google/api/services/cloudsupport/v2/model/CloudSupportCase.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public final class CloudSupportCase extends com.google.api.client.json.GenericJs
100100
private java.lang.String languageCode;
101101

102102
/**
103-
* The resource name for the case.
103+
* Identifier. The resource name for the case.
104104
* The value may be {@code null}.
105105
*/
106106
@com.google.api.client.util.Key
@@ -299,15 +299,15 @@ public CloudSupportCase setLanguageCode(java.lang.String languageCode) {
299299
}
300300

301301
/**
302-
* The resource name for the case.
302+
* Identifier. The resource name for the case.
303303
* @return value or {@code null} for none
304304
*/
305305
public java.lang.String getName() {
306306
return name;
307307
}
308308

309309
/**
310-
* The resource name for the case.
310+
* Identifier. The resource name for the case.
311311
* @param name name or {@code null} for none
312312
*/
313313
public CloudSupportCase setName(java.lang.String name) {

clients/google-api-services-cloudsupport/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-cloudsupport</artifactId>
11-
<version>v2-rev20241231-2.0.0</version>
12-
<name>Google Cloud Support API v2-rev20241231-2.0.0</name>
11+
<version>v2-rev20250521-2.0.0</version>
12+
<name>Google Cloud Support API v2-rev20250521-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-cloudsupport/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-cloudsupport</artifactId>
25-
<version>v2-rev20241231-2.0.0</version>
25+
<version>v2-rev20250521-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-cloudsupport:v2-rev20241231-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudsupport:v2-rev20250521-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-cloudsupport/v2beta/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-cloudsupport</artifactId>
25-
<version>v2beta-rev20241231-2.0.0</version>
25+
<version>v2beta-rev20250521-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-cloudsupport:v2beta-rev20241231-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudsupport:v2beta-rev20250521-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-cloudsupport/v2beta/2.0.0/com/google/api/services/cloudsupport/v2beta/CloudSupport.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1272,7 +1272,7 @@ public List set(String parameterName, Object value) {
12721272
* This request holds the parameters needed by the cloudsupport server. After setting any optional
12731273
* parameters, call the {@link Patch#execute()} method to invoke the remote operation.
12741274
*
1275-
* @param name The resource name for the case.
1275+
* @param name Identifier. The resource name for the case.
12761276
* @param content the {@link com.google.api.services.cloudsupport.v2beta.model.CloudSupportCase}
12771277
* @return the request
12781278
*/
@@ -1308,7 +1308,7 @@ public class Patch extends CloudSupportRequest<com.google.api.services.cloudsupp
13081308
* Patch#initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest)} must
13091309
* be called to initialize this instance immediately after invoking the constructor. </p>
13101310
*
1311-
* @param name The resource name for the case.
1311+
* @param name Identifier. The resource name for the case.
13121312
* @param content the {@link com.google.api.services.cloudsupport.v2beta.model.CloudSupportCase}
13131313
* @since 1.13
13141314
*/
@@ -1377,17 +1377,17 @@ public Patch setUploadProtocol(java.lang.String uploadProtocol) {
13771377
return (Patch) super.setUploadProtocol(uploadProtocol);
13781378
}
13791379

1380-
/** The resource name for the case. */
1380+
/** Identifier. The resource name for the case. */
13811381
@com.google.api.client.util.Key
13821382
private java.lang.String name;
13831383

1384-
/** The resource name for the case.
1384+
/** Identifier. The resource name for the case.
13851385
*/
13861386
public java.lang.String getName() {
13871387
return name;
13881388
}
13891389

1390-
/** The resource name for the case. */
1390+
/** Identifier. The resource name for the case. */
13911391
public Patch setName(java.lang.String name) {
13921392
if (!getSuppressPatternChecks()) {
13931393
com.google.api.client.util.Preconditions.checkArgument(NAME_PATTERN.matcher(name).matches(),

clients/google-api-services-cloudsupport/v2beta/2.0.0/com/google/api/services/cloudsupport/v2beta/model/Actor.java

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@ public final class Actor extends com.google.api.client.json.GenericJson {
4444
/**
4545
* The email address of the actor. If not provided, it is inferred from the credentials supplied
4646
* during case creation. When a name is provided, an email must also be provided. If the user is a
47-
* Google Support agent, this is obfuscated. This field is deprecated. Use **username** field
48-
* instead.
47+
* Google Support agent, this is obfuscated. This field is deprecated. Use `username` instead.
4948
* The value may be {@code null}.
5049
*/
5150
@com.google.api.client.util.Key
@@ -92,8 +91,7 @@ public Actor setDisplayName(java.lang.String displayName) {
9291
/**
9392
* The email address of the actor. If not provided, it is inferred from the credentials supplied
9493
* during case creation. When a name is provided, an email must also be provided. If the user is a
95-
* Google Support agent, this is obfuscated. This field is deprecated. Use **username** field
96-
* instead.
94+
* Google Support agent, this is obfuscated. This field is deprecated. Use `username` instead.
9795
* @return value or {@code null} for none
9896
*/
9997
public java.lang.String getEmail() {
@@ -103,8 +101,7 @@ public java.lang.String getEmail() {
103101
/**
104102
* The email address of the actor. If not provided, it is inferred from the credentials supplied
105103
* during case creation. When a name is provided, an email must also be provided. If the user is a
106-
* Google Support agent, this is obfuscated. This field is deprecated. Use **username** field
107-
* instead.
104+
* Google Support agent, this is obfuscated. This field is deprecated. Use `username` instead.
108105
* @param email email or {@code null} for none
109106
*/
110107
public Actor setEmail(java.lang.String email) {

clients/google-api-services-cloudsupport/v2beta/2.0.0/com/google/api/services/cloudsupport/v2beta/model/Attachment.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public final class Attachment extends com.google.api.client.json.GenericJson {
6464
private java.lang.String mimeType;
6565

6666
/**
67-
* Output only. The resource name of the attachment.
67+
* Output only. Identifier. The resource name of the attachment.
6868
* The value may be {@code null}.
6969
*/
7070
@com.google.api.client.util.Key
@@ -148,15 +148,15 @@ public Attachment setMimeType(java.lang.String mimeType) {
148148
}
149149

150150
/**
151-
* Output only. The resource name of the attachment.
151+
* Output only. Identifier. The resource name of the attachment.
152152
* @return value or {@code null} for none
153153
*/
154154
public java.lang.String getName() {
155155
return name;
156156
}
157157

158158
/**
159-
* Output only. The resource name of the attachment.
159+
* Output only. Identifier. The resource name of the attachment.
160160
* @param name name or {@code null} for none
161161
*/
162162
public Attachment setName(java.lang.String name) {

clients/google-api-services-cloudsupport/v2beta/2.0.0/com/google/api/services/cloudsupport/v2beta/model/CloudSupportCase.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public final class CloudSupportCase extends com.google.api.client.json.GenericJs
100100
private java.lang.String languageCode;
101101

102102
/**
103-
* The resource name for the case.
103+
* Identifier. The resource name for the case.
104104
* The value may be {@code null}.
105105
*/
106106
@com.google.api.client.util.Key
@@ -306,15 +306,15 @@ public CloudSupportCase setLanguageCode(java.lang.String languageCode) {
306306
}
307307

308308
/**
309-
* The resource name for the case.
309+
* Identifier. The resource name for the case.
310310
* @return value or {@code null} for none
311311
*/
312312
public java.lang.String getName() {
313313
return name;
314314
}
315315

316316
/**
317-
* The resource name for the case.
317+
* Identifier. The resource name for the case.
318318
* @param name name or {@code null} for none
319319
*/
320320
public CloudSupportCase setName(java.lang.String name) {

clients/google-api-services-cloudsupport/v2beta/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-cloudsupport</artifactId>
11-
<version>v2beta-rev20241231-2.0.0</version>
12-
<name>Google Cloud Support API v2beta-rev20241231-2.0.0</name>
11+
<version>v2beta-rev20250521-2.0.0</version>
12+
<name>Google Cloud Support API v2beta-rev20250521-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-cloudsupport/v2beta/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-cloudsupport</artifactId>
25-
<version>v2beta-rev20241231-2.0.0</version>
25+
<version>v2beta-rev20250521-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-cloudsupport:v2beta-rev20241231-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudsupport:v2beta-rev20250521-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)