You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<pre>Lists the daily call quota and usage per group for your CSS Center account.
95
+
96
+
Args:
97
+
parent: string, Required. The CSS account that owns the collection of method quotas and resources. In most cases, this is the CSS domain. Format: accounts/{account} (required)
98
+
pageSize: integer, Optional. The maximum number of quotas to return in the response, used for paging. Defaults to 500; values above 1000 will be coerced to 1000.
99
+
pageToken: string, Optional. Token (if provided) to retrieve the subsequent page. All other parameters must match the original call that provided the page token.
100
+
x__xgafv: string, V1 error format.
101
+
Allowed values
102
+
1 - v1 error format
103
+
2 - v2 error format
104
+
105
+
Returns:
106
+
An object of the form:
107
+
108
+
{ # Response message for the ListMethodGroups method.
109
+
"nextPageToken": "A String", # A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
110
+
"quotaGroups": [ # The methods, current quota usage and limits per each group. The quota is shared between all methods in the group. The groups are sorted in descending order based on quota_usage.
111
+
{ # The group information for methods in the CSS API. The quota is shared between all methods in the group. Even if none of the methods within the group have usage the information for the group is returned.
112
+
"methodDetails": [ # Output only. List of all methods group quota applies to.
113
+
{ # The method details per method in the CSS API.
114
+
"method": "A String", # Output only. The name of the method for example `cssproductsservice.listcssproducts`.
115
+
"path": "A String", # Output only. The path for the method such as `v1/cssproductsservice.listcssproducts`.
116
+
"subapi": "A String", # Output only. The sub-API that the method belongs to. In the CSS API, this is always `css`.
117
+
"version": "A String", # Output only. The API version that the method belongs to.
118
+
},
119
+
],
120
+
"name": "A String", # Identifier. The resource name of the quota group. Format: accounts/{account}/quotas/{group} Example: `accounts/12345678/quotas/css-products-insert` Note: The {group} part is not guaranteed to follow a specific pattern.
121
+
"quotaLimit": "A String", # Output only. The maximum number of calls allowed per day for the group.
122
+
"quotaMinuteLimit": "A String", # Output only. The maximum number of calls allowed per minute for the group.
123
+
"quotaUsage": "A String", # Output only. The current quota usage, meaning the number of calls already made on a given day to the methods in the group. The daily quota limits reset at at 12:00 PM midday UTC.
Copy file name to clipboardExpand all lines: googleapiclient/discovery_cache/documents/css.v1.json
+123-1
Original file line number
Diff line number
Diff line change
@@ -503,11 +503,51 @@
503
503
]
504
504
}
505
505
}
506
+
},
507
+
"quotas": {
508
+
"methods": {
509
+
"list": {
510
+
"description": "Lists the daily call quota and usage per group for your CSS Center account.",
511
+
"flatPath": "v1/accounts/{accountsId}/quotas",
512
+
"httpMethod": "GET",
513
+
"id": "css.accounts.quotas.list",
514
+
"parameterOrder": [
515
+
"parent"
516
+
],
517
+
"parameters": {
518
+
"pageSize": {
519
+
"description": "Optional. The maximum number of quotas to return in the response, used for paging. Defaults to 500; values above 1000 will be coerced to 1000.",
520
+
"format": "int32",
521
+
"location": "query",
522
+
"type": "integer"
523
+
},
524
+
"pageToken": {
525
+
"description": "Optional. Token (if provided) to retrieve the subsequent page. All other parameters must match the original call that provided the page token.",
526
+
"location": "query",
527
+
"type": "string"
528
+
},
529
+
"parent": {
530
+
"description": "Required. The CSS account that owns the collection of method quotas and resources. In most cases, this is the CSS domain. Format: accounts/{account}",
"description": "Response message for the ListMethodGroups method.",
1261
+
"id": "ListQuotaGroupsResponse",
1262
+
"properties": {
1263
+
"nextPageToken": {
1264
+
"description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.",
1265
+
"type": "string"
1266
+
},
1267
+
"quotaGroups": {
1268
+
"description": "The methods, current quota usage and limits per each group. The quota is shared between all methods in the group. The groups are sorted in descending order based on quota_usage.",
1269
+
"items": {
1270
+
"$ref": "QuotaGroup"
1271
+
},
1272
+
"type": "array"
1273
+
}
1274
+
},
1275
+
"type": "object"
1276
+
},
1277
+
"MethodDetails": {
1278
+
"description": "The method details per method in the CSS API.",
1279
+
"id": "MethodDetails",
1280
+
"properties": {
1281
+
"method": {
1282
+
"description": "Output only. The name of the method for example `cssproductsservice.listcssproducts`.",
1283
+
"readOnly": true,
1284
+
"type": "string"
1285
+
},
1286
+
"path": {
1287
+
"description": "Output only. The path for the method such as `v1/cssproductsservice.listcssproducts`.",
1288
+
"readOnly": true,
1289
+
"type": "string"
1290
+
},
1291
+
"subapi": {
1292
+
"description": "Output only. The sub-API that the method belongs to. In the CSS API, this is always `css`.",
1293
+
"readOnly": true,
1294
+
"type": "string"
1295
+
},
1296
+
"version": {
1297
+
"description": "Output only. The API version that the method belongs to.",
1298
+
"readOnly": true,
1299
+
"type": "string"
1300
+
}
1301
+
},
1302
+
"type": "object"
1303
+
},
1219
1304
"Price": {
1220
1305
"description": "The price represented as a number and currency.",
1221
1306
"id": "Price",
@@ -1283,6 +1368,43 @@
1283
1368
},
1284
1369
"type": "object"
1285
1370
},
1371
+
"QuotaGroup": {
1372
+
"description": "The group information for methods in the CSS API. The quota is shared between all methods in the group. Even if none of the methods within the group have usage the information for the group is returned.",
1373
+
"id": "QuotaGroup",
1374
+
"properties": {
1375
+
"methodDetails": {
1376
+
"description": "Output only. List of all methods group quota applies to.",
1377
+
"items": {
1378
+
"$ref": "MethodDetails"
1379
+
},
1380
+
"readOnly": true,
1381
+
"type": "array"
1382
+
},
1383
+
"name": {
1384
+
"description": "Identifier. The resource name of the quota group. Format: accounts/{account}/quotas/{group} Example: `accounts/12345678/quotas/css-products-insert` Note: The {group} part is not guaranteed to follow a specific pattern.",
1385
+
"type": "string"
1386
+
},
1387
+
"quotaLimit": {
1388
+
"description": "Output only. The maximum number of calls allowed per day for the group.",
1389
+
"format": "int64",
1390
+
"readOnly": true,
1391
+
"type": "string"
1392
+
},
1393
+
"quotaMinuteLimit": {
1394
+
"description": "Output only. The maximum number of calls allowed per minute for the group.",
1395
+
"format": "int64",
1396
+
"readOnly": true,
1397
+
"type": "string"
1398
+
},
1399
+
"quotaUsage": {
1400
+
"description": "Output only. The current quota usage, meaning the number of calls already made on a given day to the methods in the group. The daily quota limits reset at at 12:00 PM midday UTC.",
1401
+
"format": "int64",
1402
+
"readOnly": true,
1403
+
"type": "string"
1404
+
}
1405
+
},
1406
+
"type": "object"
1407
+
},
1286
1408
"UpdateAccountLabelsRequest": {
1287
1409
"description": "The request message for the `UpdateLabels` method.",
0 commit comments