Skip to content

Commit 54155d0

Browse files
1 parent f856ede commit 54155d0

10 files changed

Lines changed: 498 additions & 88 deletions

File tree

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-rev20260409-2.0.0</version>
25+
<version>v2-rev20260519-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-rev20260409-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudsupport:v2-rev20260519-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: 314 additions & 8 deletions
Large diffs are not rendered by default.

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

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,13 @@ public final class Media extends com.google.api.client.json.GenericJson {
232232
@com.google.api.client.util.Key
233233
private java.lang.String sha256Hash;
234234

235+
/**
236+
* # gdata.* are outside protos with mising documentation
237+
* The value may be {@code null}.
238+
*/
239+
@com.google.api.client.util.Key
240+
private java.lang.String sha512Hash;
241+
235242
/**
236243
* # gdata.* are outside protos with mising documentation
237244
* The value may be {@code null}.
@@ -946,6 +953,51 @@ public Media encodeSha256Hash(byte[] sha256Hash) {
946953
return this;
947954
}
948955

956+
/**
957+
* # gdata.* are outside protos with mising documentation
958+
* @see #decodeSha512Hash()
959+
* @return value or {@code null} for none
960+
*/
961+
public java.lang.String getSha512Hash() {
962+
return sha512Hash;
963+
}
964+
965+
/**
966+
* # gdata.* are outside protos with mising documentation
967+
* @see #getSha512Hash()
968+
* @return Base64 decoded value or {@code null} for none
969+
*
970+
* @since 1.14
971+
*/
972+
public byte[] decodeSha512Hash() {
973+
return com.google.api.client.util.Base64.decodeBase64(sha512Hash);
974+
}
975+
976+
/**
977+
* # gdata.* are outside protos with mising documentation
978+
* @see #encodeSha512Hash()
979+
* @param sha512Hash sha512Hash or {@code null} for none
980+
*/
981+
public Media setSha512Hash(java.lang.String sha512Hash) {
982+
this.sha512Hash = sha512Hash;
983+
return this;
984+
}
985+
986+
/**
987+
* # gdata.* are outside protos with mising documentation
988+
* @see #setSha512Hash()
989+
*
990+
* <p>
991+
* The value is encoded Base64 or {@code null} for none.
992+
* </p>
993+
*
994+
* @since 1.14
995+
*/
996+
public Media encodeSha512Hash(byte[] sha512Hash) {
997+
this.sha512Hash = com.google.api.client.util.Base64.encodeBase64URLSafeString(sha512Hash);
998+
return this;
999+
}
1000+
9491001
/**
9501002
* # gdata.* are outside protos with mising documentation
9511003
* @return value or {@code null} for none

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-rev20260409-2.0.0</version>
12-
<name>Google Cloud Support API v2-rev20260409-2.0.0</name>
11+
<version>v2-rev20260519-2.0.0</version>
12+
<name>Google Cloud Support API v2-rev20260519-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-rev20260409-2.0.0</version>
25+
<version>v2-rev20260519-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-rev20260409-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudsupport:v2-rev20260519-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-rev20260409-2.0.0</version>
25+
<version>v2beta-rev20260519-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-rev20260409-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudsupport:v2beta-rev20260519-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: 68 additions & 68 deletions
Large diffs are not rendered by default.

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

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,13 @@ public final class Media extends com.google.api.client.json.GenericJson {
232232
@com.google.api.client.util.Key
233233
private java.lang.String sha256Hash;
234234

235+
/**
236+
* # gdata.* are outside protos with mising documentation
237+
* The value may be {@code null}.
238+
*/
239+
@com.google.api.client.util.Key
240+
private java.lang.String sha512Hash;
241+
235242
/**
236243
* # gdata.* are outside protos with mising documentation
237244
* The value may be {@code null}.
@@ -946,6 +953,51 @@ public Media encodeSha256Hash(byte[] sha256Hash) {
946953
return this;
947954
}
948955

956+
/**
957+
* # gdata.* are outside protos with mising documentation
958+
* @see #decodeSha512Hash()
959+
* @return value or {@code null} for none
960+
*/
961+
public java.lang.String getSha512Hash() {
962+
return sha512Hash;
963+
}
964+
965+
/**
966+
* # gdata.* are outside protos with mising documentation
967+
* @see #getSha512Hash()
968+
* @return Base64 decoded value or {@code null} for none
969+
*
970+
* @since 1.14
971+
*/
972+
public byte[] decodeSha512Hash() {
973+
return com.google.api.client.util.Base64.decodeBase64(sha512Hash);
974+
}
975+
976+
/**
977+
* # gdata.* are outside protos with mising documentation
978+
* @see #encodeSha512Hash()
979+
* @param sha512Hash sha512Hash or {@code null} for none
980+
*/
981+
public Media setSha512Hash(java.lang.String sha512Hash) {
982+
this.sha512Hash = sha512Hash;
983+
return this;
984+
}
985+
986+
/**
987+
* # gdata.* are outside protos with mising documentation
988+
* @see #setSha512Hash()
989+
*
990+
* <p>
991+
* The value is encoded Base64 or {@code null} for none.
992+
* </p>
993+
*
994+
* @since 1.14
995+
*/
996+
public Media encodeSha512Hash(byte[] sha512Hash) {
997+
this.sha512Hash = com.google.api.client.util.Base64.encodeBase64URLSafeString(sha512Hash);
998+
return this;
999+
}
1000+
9491001
/**
9501002
* # gdata.* are outside protos with mising documentation
9511003
* @return value or {@code null} for none

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-rev20260409-2.0.0</version>
12-
<name>Google Cloud Support API v2beta-rev20260409-2.0.0</name>
11+
<version>v2beta-rev20260519-2.0.0</version>
12+
<name>Google Cloud Support API v2beta-rev20260519-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-rev20260409-2.0.0</version>
25+
<version>v2beta-rev20260519-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-rev20260409-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudsupport:v2beta-rev20260519-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)