@@ -1264,7 +1264,8 @@ public class CssProducts {
1264
1264
* This request holds the parameters needed by the css server. After setting any optional
1265
1265
* parameters, call the {@link Get#execute()} method to invoke the remote operation.
1266
1266
*
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}`
1268
1269
* @return the request
1269
1270
*/
1270
1271
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
1292
1293
* Get#initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest)} must be
1293
1294
* called to initialize this instance immediately after invoking the constructor. </p>
1294
1295
*
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}`
1296
1298
* @since 1.13
1297
1299
*/
1298
1300
protected Get (java .lang .String name ) {
@@ -1370,17 +1372,24 @@ public Get setUploadProtocol(java.lang.String uploadProtocol) {
1370
1372
return (Get ) super .setUploadProtocol (uploadProtocol );
1371
1373
}
1372
1374
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
+ */
1374
1379
@ com .google .api .client .util .Key
1375
1380
private java .lang .String name ;
1376
1381
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}`
1378
1384
*/
1379
1385
public java .lang .String getName () {
1380
1386
return name ;
1381
1387
}
1382
1388
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
+ */
1384
1393
public Get setName (java .lang .String name ) {
1385
1394
if (!getSuppressPatternChecks ()) {
1386
1395
com .google .api .client .util .Preconditions .checkArgument (NAME_PATTERN .matcher (name ).matches (),
0 commit comments