Skip to content

Commit c19a117

Browse files
1 parent 3189d1d commit c19a117

File tree

4 files changed

+20
-11
lines changed

4 files changed

+20
-11
lines changed

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

clients/google-api-services-css/v1/2.0.0/com/google/api/services/css/v1/Css.java

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1264,7 +1264,8 @@ public class CssProducts {
12641264
* This request holds the parameters needed by the css server. After setting any optional
12651265
* parameters, call the {@link Get#execute()} method to invoke the remote operation.
12661266
*
1267-
* @param name Required. The name of the CSS product to retrieve.
1267+
* @param name Required. The name of the CSS product to retrieve. Format:
1268+
* `accounts/{account}/cssProducts/{css_product}`
12681269
* @return the request
12691270
*/
12701271
public Get get(java.lang.String name) throws java.io.IOException {
@@ -1292,7 +1293,8 @@ public class Get extends CssRequest<com.google.api.services.css.v1.model.CssProd
12921293
* Get#initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest)} must be
12931294
* called to initialize this instance immediately after invoking the constructor. </p>
12941295
*
1295-
* @param name Required. The name of the CSS product to retrieve.
1296+
* @param name Required. The name of the CSS product to retrieve. Format:
1297+
* `accounts/{account}/cssProducts/{css_product}`
12961298
* @since 1.13
12971299
*/
12981300
protected Get(java.lang.String name) {
@@ -1370,17 +1372,24 @@ public Get setUploadProtocol(java.lang.String uploadProtocol) {
13701372
return (Get) super.setUploadProtocol(uploadProtocol);
13711373
}
13721374

1373-
/** Required. The name of the CSS product to retrieve. */
1375+
/**
1376+
* Required. The name of the CSS product to retrieve. Format:
1377+
* `accounts/{account}/cssProducts/{css_product}`
1378+
*/
13741379
@com.google.api.client.util.Key
13751380
private java.lang.String name;
13761381

1377-
/** Required. The name of the CSS product to retrieve.
1382+
/** Required. The name of the CSS product to retrieve. Format:
1383+
`accounts/{account}/cssProducts/{css_product}`
13781384
*/
13791385
public java.lang.String getName() {
13801386
return name;
13811387
}
13821388

1383-
/** Required. The name of the CSS product to retrieve. */
1389+
/**
1390+
* Required. The name of the CSS product to retrieve. Format:
1391+
* `accounts/{account}/cssProducts/{css_product}`
1392+
*/
13841393
public Get setName(java.lang.String name) {
13851394
if (!getSuppressPatternChecks()) {
13861395
com.google.api.client.util.Preconditions.checkArgument(NAME_PATTERN.matcher(name).matches(),

clients/google-api-services-css/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-css</artifactId>
11-
<version>v1-rev20250421-2.0.0</version>
12-
<name>CSS API v1-rev20250421-2.0.0</name>
11+
<version>v1-rev20250603-2.0.0</version>
12+
<name>CSS API v1-rev20250603-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)