Skip to content

Commit 48154a7

Browse files
1 parent a176ce4 commit 48154a7

File tree

8 files changed

+24
-20
lines changed

8 files changed

+24
-20
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-rev20250521-2.0.0</version>
25+
<version>v2-rev20250602-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-rev20250521-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudsupport:v2-rev20250602-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: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2265,8 +2265,9 @@ public Media media() {
22652265
public class Media {
22662266

22672267
/**
2268-
* Download a file attached to a case. Note: HTTP requests must append "?alt=media" to the URL.
2269-
* EXAMPLES: cURL: ```shell name="projects/some-
2268+
* Download a file attached to a case. When this endpoint is called, no "response body" will be
2269+
* returned. Instead, the attachment's blob will be returned. Note: HTTP requests must append
2270+
* "?alt=media" to the URL. EXAMPLES: cURL: ```shell name="projects/some-
22702271
* project/cases/43594844/attachments/0674M00000WijAnZAJ" curl \ --header "Authorization: Bearer
22712272
* $(gcloud auth print-access-token)" \
22722273
* "https://cloudsupport.googleapis.com/v2/$name:download?alt=media" ``` Python: ```python import
@@ -2299,8 +2300,9 @@ public class Download extends CloudSupportRequest<com.google.api.services.clouds
22992300
java.util.regex.Pattern.compile("^[^/]+/[^/]+/cases/[^/]+/attachments/[^/]+$");
23002301

23012302
/**
2302-
* Download a file attached to a case. Note: HTTP requests must append "?alt=media" to the URL.
2303-
* EXAMPLES: cURL: ```shell name="projects/some-
2303+
* Download a file attached to a case. When this endpoint is called, no "response body" will be
2304+
* returned. Instead, the attachment's blob will be returned. Note: HTTP requests must append
2305+
* "?alt=media" to the URL. EXAMPLES: cURL: ```shell name="projects/some-
23042306
* project/cases/43594844/attachments/0674M00000WijAnZAJ" curl \ --header "Authorization: Bearer
23052307
* $(gcloud auth print-access-token)" \
23062308
* "https://cloudsupport.googleapis.com/v2/$name:download?alt=media" ``` Python: ```python import

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-rev20250521-2.0.0</version>
12-
<name>Google Cloud Support API v2-rev20250521-2.0.0</name>
11+
<version>v2-rev20250602-2.0.0</version>
12+
<name>Google Cloud Support API v2-rev20250602-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-rev20250521-2.0.0</version>
25+
<version>v2-rev20250602-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-rev20250521-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudsupport:v2-rev20250602-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-rev20250521-2.0.0</version>
25+
<version>v2beta-rev20250602-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-rev20250521-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudsupport:v2beta-rev20250602-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: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2493,8 +2493,9 @@ public Media media() {
24932493
public class Media {
24942494

24952495
/**
2496-
* Download a file attached to a case. Note: HTTP requests must append "?alt=media" to the URL.
2497-
* EXAMPLES: cURL: ```shell name="projects/some-
2496+
* Download a file attached to a case. When this endpoint is called, no "response body" will be
2497+
* returned. Instead, the attachment's blob will be returned. Note: HTTP requests must append
2498+
* "?alt=media" to the URL. EXAMPLES: cURL: ```shell name="projects/some-
24982499
* project/cases/43594844/attachments/0674M00000WijAnZAJ" curl \ --header "Authorization: Bearer
24992500
* $(gcloud auth print-access-token)" \
25002501
* "https://cloudsupport.googleapis.com/v2/$name:download?alt=media" ``` Python: ```python import
@@ -2527,8 +2528,9 @@ public class Download extends CloudSupportRequest<com.google.api.services.clouds
25272528
java.util.regex.Pattern.compile("^[^/]+/[^/]+/cases/[^/]+/attachments/[^/]+$");
25282529

25292530
/**
2530-
* Download a file attached to a case. Note: HTTP requests must append "?alt=media" to the URL.
2531-
* EXAMPLES: cURL: ```shell name="projects/some-
2531+
* Download a file attached to a case. When this endpoint is called, no "response body" will be
2532+
* returned. Instead, the attachment's blob will be returned. Note: HTTP requests must append
2533+
* "?alt=media" to the URL. EXAMPLES: cURL: ```shell name="projects/some-
25322534
* project/cases/43594844/attachments/0674M00000WijAnZAJ" curl \ --header "Authorization: Bearer
25332535
* $(gcloud auth print-access-token)" \
25342536
* "https://cloudsupport.googleapis.com/v2/$name:download?alt=media" ``` Python: ```python import

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

0 commit comments

Comments
 (0)