@googleapis/serviceusage 21.1.0 → 23.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +23 -0
- package/build/index.js.map +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/build/v1.d.ts +116 -70
- package/build/v1.js.map +1 -1
- package/build/v1beta1.d.ts +116 -70
- package/build/v1beta1.js.map +1 -1
- package/index.ts +1 -4
- package/package.json +1 -1
- package/v1.ts +118 -85
- package/v1beta1.ts +126 -101
package/v1beta1.ts
CHANGED
|
@@ -179,7 +179,7 @@ export namespace serviceusage_v1beta1 {
|
|
|
179
179
|
/**
|
|
180
180
|
* Output only. Analysis result of updating a policy.
|
|
181
181
|
*/
|
|
182
|
-
|
|
182
|
+
analysisResult?: Schema$AnalysisResult;
|
|
183
183
|
/**
|
|
184
184
|
* Output only. The type of analysis.
|
|
185
185
|
*/
|
|
@@ -264,11 +264,28 @@ export namespace serviceusage_v1beta1 {
|
|
|
264
264
|
* The type of this aspect configuration.
|
|
265
265
|
*/
|
|
266
266
|
kind?: string | null;
|
|
267
|
+
/**
|
|
268
|
+
* Optional. Rules of the Configuration.
|
|
269
|
+
*/
|
|
270
|
+
rules?: Schema$AspectRule[];
|
|
267
271
|
/**
|
|
268
272
|
* Content of the configuration. The underlying schema should be defined by Aspect owners as protobuf message under `google/api/configaspects/proto`.
|
|
269
273
|
*/
|
|
270
274
|
spec?: {[key: string]: any} | null;
|
|
271
275
|
}
|
|
276
|
+
/**
|
|
277
|
+
* Rule-based configuration for an aspect.
|
|
278
|
+
*/
|
|
279
|
+
export interface Schema$AspectRule {
|
|
280
|
+
/**
|
|
281
|
+
* Required. Rules of the configuration. The underlying schema should be defined by Aspect owners as protobuf message under `google/api/configaspects/proto`.
|
|
282
|
+
*/
|
|
283
|
+
config?: {[key: string]: any} | null;
|
|
284
|
+
/**
|
|
285
|
+
* Required. Selects the RPC methods to which this rule applies. Refer to selector for syntax details.
|
|
286
|
+
*/
|
|
287
|
+
selector?: string | null;
|
|
288
|
+
}
|
|
272
289
|
/**
|
|
273
290
|
* `Authentication` defines the authentication configuration for API methods provided by an API service. Example: name: calendar.googleapis.com authentication: providers: - id: google_calendar_auth jwks_uri: https://www.googleapis.com/oauth2/v1/certs issuer: https://securetoken.google.com rules: - selector: "*" requirements: provider_id: google_calendar_auth - selector: google.calendar.Delegate oauth: canonical_scopes: https://www.googleapis.com/auth/calendar.read
|
|
274
291
|
*/
|
|
@@ -391,7 +408,7 @@ export namespace serviceusage_v1beta1 {
|
|
|
391
408
|
*/
|
|
392
409
|
overridesByRequestProtocol?: {[key: string]: Schema$BackendRule} | null;
|
|
393
410
|
/**
|
|
394
|
-
*
|
|
411
|
+
* Path translation specifies how to combine the backend address with the request path in order to produce the appropriate forwarding URL for the request. See PathTranslation for more details.
|
|
395
412
|
*/
|
|
396
413
|
pathTranslation?: string | null;
|
|
397
414
|
/**
|
|
@@ -594,7 +611,7 @@ export namespace serviceusage_v1beta1 {
|
|
|
594
611
|
*/
|
|
595
612
|
referenceDocsUri?: string | null;
|
|
596
613
|
/**
|
|
597
|
-
* Configuration for which RPCs should be generated in the GAPIC client.
|
|
614
|
+
* Configuration for which RPCs should be generated in the GAPIC client. Note: This field should not be used in most cases.
|
|
598
615
|
*/
|
|
599
616
|
selectiveGapicGeneration?: Schema$SelectiveGapicGeneration;
|
|
600
617
|
}
|
|
@@ -603,11 +620,11 @@ export namespace serviceusage_v1beta1 {
|
|
|
603
620
|
*/
|
|
604
621
|
export interface Schema$ConsumerPolicy {
|
|
605
622
|
/**
|
|
606
|
-
*
|
|
623
|
+
* Output only. The time the policy was created. For singleton policies, this is the first touch of the policy.
|
|
607
624
|
*/
|
|
608
|
-
|
|
625
|
+
createTime?: string | null;
|
|
609
626
|
/**
|
|
610
|
-
* Enable rules define usable services and
|
|
627
|
+
* Enable rules define usable services and groups. There can currently be at most one `EnableRule`. This restriction will be lifted in later releases.
|
|
611
628
|
*/
|
|
612
629
|
enableRules?: Schema$EnableRule[];
|
|
613
630
|
/**
|
|
@@ -615,11 +632,11 @@ export namespace serviceusage_v1beta1 {
|
|
|
615
632
|
*/
|
|
616
633
|
etag?: string | null;
|
|
617
634
|
/**
|
|
618
|
-
* Output only. The resource name of the policy.
|
|
635
|
+
* Output only. The resource name of the policy. Only the `default` policy is supported: `projects/12345/consumerPolicies/default`, `folders/12345/consumerPolicies/default`, `organizations/12345/consumerPolicies/default`.
|
|
619
636
|
*/
|
|
620
637
|
name?: string | null;
|
|
621
638
|
/**
|
|
622
|
-
* The last
|
|
639
|
+
* Output only. The time the policy was last updated.
|
|
623
640
|
*/
|
|
624
641
|
updateTime?: string | null;
|
|
625
642
|
}
|
|
@@ -937,7 +954,7 @@ export namespace serviceusage_v1beta1 {
|
|
|
937
954
|
serviceId?: string | null;
|
|
938
955
|
}
|
|
939
956
|
/**
|
|
940
|
-
* The consumer policy rule that defines
|
|
957
|
+
* The consumer policy rule that defines enabled services and groups.
|
|
941
958
|
*/
|
|
942
959
|
export interface Schema$EnableRule {
|
|
943
960
|
/**
|
|
@@ -945,15 +962,11 @@ export namespace serviceusage_v1beta1 {
|
|
|
945
962
|
*/
|
|
946
963
|
enableType?: string | null;
|
|
947
964
|
/**
|
|
948
|
-
*
|
|
949
|
-
*/
|
|
950
|
-
groups?: string[] | null;
|
|
951
|
-
/**
|
|
952
|
-
* DEPRECATED: Please use field `values`. Service should have prefix `services/`. The names of the services that are enabled. Example: `storage.googleapis.com`.
|
|
965
|
+
* The names of the services that are enabled. Example: `services/storage.googleapis.com`.
|
|
953
966
|
*/
|
|
954
967
|
services?: string[] | null;
|
|
955
968
|
/**
|
|
956
|
-
* The names of the services or service groups that are enabled. Example: `services/storage.googleapis.com`, `groups/googleServices`, `groups/allServices`.
|
|
969
|
+
* Deprecated: Use the `services` field instead. The names of the services or service groups that are enabled. Example: `services/storage.googleapis.com`, `groups/googleServices`, `groups/allServices`.
|
|
957
970
|
*/
|
|
958
971
|
values?: string[] | null;
|
|
959
972
|
}
|
|
@@ -1178,7 +1191,7 @@ export namespace serviceusage_v1beta1 {
|
|
|
1178
1191
|
*/
|
|
1179
1192
|
documentation?: Schema$Documentation;
|
|
1180
1193
|
/**
|
|
1181
|
-
* Configuration for network endpoints. If this is empty, then an endpoint with the same name as the service is automatically generated to service all defined APIs.
|
|
1194
|
+
* Configuration for network endpoints. If this is empty, then an endpoint with the same name as the service is automatically generated to service all defined APIs.
|
|
1182
1195
|
*/
|
|
1183
1196
|
endpoints?: Schema$Endpoint[];
|
|
1184
1197
|
/**
|
|
@@ -1355,6 +1368,53 @@ export namespace serviceusage_v1beta1 {
|
|
|
1355
1368
|
*/
|
|
1356
1369
|
usage?: Schema$Usage;
|
|
1357
1370
|
}
|
|
1371
|
+
/**
|
|
1372
|
+
* A message to group the analysis information.
|
|
1373
|
+
*/
|
|
1374
|
+
export interface Schema$GoogleApiServiceusageV2alphaAnalysis {
|
|
1375
|
+
/**
|
|
1376
|
+
* Output only. Analysis result of updating a policy.
|
|
1377
|
+
*/
|
|
1378
|
+
analysisResult?: Schema$GoogleApiServiceusageV2alphaAnalysisResult;
|
|
1379
|
+
/**
|
|
1380
|
+
* Output only. The type of analysis.
|
|
1381
|
+
*/
|
|
1382
|
+
analysisType?: string | null;
|
|
1383
|
+
/**
|
|
1384
|
+
* Output only. The user friendly display name of the analysis type. E.g. service dependency analysis, service resource usage analysis, etc.
|
|
1385
|
+
*/
|
|
1386
|
+
displayName?: string | null;
|
|
1387
|
+
/**
|
|
1388
|
+
* The names of the service that has analysis result of warnings or blockers. Example: `services/storage.googleapis.com`.
|
|
1389
|
+
*/
|
|
1390
|
+
service?: string | null;
|
|
1391
|
+
}
|
|
1392
|
+
/**
|
|
1393
|
+
* An analysis result including blockers and warnings.
|
|
1394
|
+
*/
|
|
1395
|
+
export interface Schema$GoogleApiServiceusageV2alphaAnalysisResult {
|
|
1396
|
+
/**
|
|
1397
|
+
* Blocking information that would prevent the policy changes at runtime.
|
|
1398
|
+
*/
|
|
1399
|
+
blockers?: Schema$GoogleApiServiceusageV2alphaImpact[];
|
|
1400
|
+
/**
|
|
1401
|
+
* Warning information indicating that the policy changes might be unsafe, but will not block the changes at runtime.
|
|
1402
|
+
*/
|
|
1403
|
+
warnings?: Schema$GoogleApiServiceusageV2alphaImpact[];
|
|
1404
|
+
}
|
|
1405
|
+
/**
|
|
1406
|
+
* Metadata for the `AnalyzeConsumerPolicy` method.
|
|
1407
|
+
*/
|
|
1408
|
+
export interface Schema$GoogleApiServiceusageV2alphaAnalyzeConsumerPolicyMetadata {}
|
|
1409
|
+
/**
|
|
1410
|
+
* The response of analyzing a consumer policy update.
|
|
1411
|
+
*/
|
|
1412
|
+
export interface Schema$GoogleApiServiceusageV2alphaAnalyzeConsumerPolicyResponse {
|
|
1413
|
+
/**
|
|
1414
|
+
* The list of analyses returned from performing the intended policy update analysis. The analysis is grouped by service name and different analysis types. The empty analysis list means that the consumer policy can be updated without any warnings or blockers.
|
|
1415
|
+
*/
|
|
1416
|
+
analysis?: Schema$GoogleApiServiceusageV2alphaAnalysis[];
|
|
1417
|
+
}
|
|
1358
1418
|
/**
|
|
1359
1419
|
* Consumer Policy is a set of rules that define what services or service groups can be used for a cloud resource hierarchy.
|
|
1360
1420
|
*/
|
|
@@ -1393,6 +1453,23 @@ export namespace serviceusage_v1beta1 {
|
|
|
1393
1453
|
*/
|
|
1394
1454
|
services?: string[] | null;
|
|
1395
1455
|
}
|
|
1456
|
+
/**
|
|
1457
|
+
* A message to group impacts of updating a policy.
|
|
1458
|
+
*/
|
|
1459
|
+
export interface Schema$GoogleApiServiceusageV2alphaImpact {
|
|
1460
|
+
/**
|
|
1461
|
+
* Output only. User friendly impact detail in a free form message.
|
|
1462
|
+
*/
|
|
1463
|
+
detail?: string | null;
|
|
1464
|
+
/**
|
|
1465
|
+
* Output only. The type of impact.
|
|
1466
|
+
*/
|
|
1467
|
+
impactType?: string | null;
|
|
1468
|
+
/**
|
|
1469
|
+
* The parent resource that the analysis is based on and the service name that the analysis is for. Example: `projects/100/services/compute.googleapis.com`, folders/101/services/compute.googleapis.com` and `organizations/102/services/compute.googleapis.com`. Usually, the parent resource here is same as the parent resource of the analyzed policy. However, for some analysis types, the parent can be different. For example, for resource existence analysis, if the parent resource of the analyzed policy is a folder or an organization, the parent resource here can still be the project that contains the resources.
|
|
1470
|
+
*/
|
|
1471
|
+
parent?: string | null;
|
|
1472
|
+
}
|
|
1396
1473
|
/**
|
|
1397
1474
|
* Metadata for the `UpdateConsumerPolicy` method.
|
|
1398
1475
|
*/
|
|
@@ -1630,9 +1707,9 @@ export namespace serviceusage_v1beta1 {
|
|
|
1630
1707
|
*/
|
|
1631
1708
|
impactType?: string | null;
|
|
1632
1709
|
/**
|
|
1633
|
-
*
|
|
1710
|
+
* Output only. This field will be populated only for the `DEPENDENCY_MISSING_DEPENDENCIES` impact type. Example: `services/compute.googleapis.com`. Impact.detail will be in format : `missing service dependency: {missing_dependency\}.`
|
|
1634
1711
|
*/
|
|
1635
|
-
|
|
1712
|
+
missingDependency?: string | null;
|
|
1636
1713
|
}
|
|
1637
1714
|
/**
|
|
1638
1715
|
* Metadata message that provides information such as progress, partial failures, and similar information on each GetOperation call of LRO returned by ImportAdminOverrides.
|
|
@@ -1899,49 +1976,6 @@ export namespace serviceusage_v1beta1 {
|
|
|
1899
1976
|
*/
|
|
1900
1977
|
totalPollTimeout?: string | null;
|
|
1901
1978
|
}
|
|
1902
|
-
/**
|
|
1903
|
-
* McpEnableRule contains MCP enablement related rules.
|
|
1904
|
-
*/
|
|
1905
|
-
export interface Schema$McpEnableRule {
|
|
1906
|
-
/**
|
|
1907
|
-
* List of enabled MCP services.
|
|
1908
|
-
*/
|
|
1909
|
-
mcpServices?: Schema$McpService[];
|
|
1910
|
-
}
|
|
1911
|
-
/**
|
|
1912
|
-
* MCP Consumer Policy is a set of rules that define MCP related policy for a cloud resource hierarchy.
|
|
1913
|
-
*/
|
|
1914
|
-
export interface Schema$McpPolicy {
|
|
1915
|
-
/**
|
|
1916
|
-
* Output only. The time the policy was created. For singleton policies (such as the `default` policy), this is the first touch of the policy.
|
|
1917
|
-
*/
|
|
1918
|
-
createTime?: string | null;
|
|
1919
|
-
/**
|
|
1920
|
-
* An opaque tag indicating the current version of the policy, used for concurrency control.
|
|
1921
|
-
*/
|
|
1922
|
-
etag?: string | null;
|
|
1923
|
-
/**
|
|
1924
|
-
* McpEnableRules contains MCP enablement related rules.
|
|
1925
|
-
*/
|
|
1926
|
-
mcpEnableRules?: Schema$McpEnableRule[];
|
|
1927
|
-
/**
|
|
1928
|
-
* Output only. The resource name of the policy. Only the `default` policy is supported. We allow the following formats: `projects/{PROJECT_NUMBER\}/mcpPolicies/default`, `projects/{PROJECT_ID\}/mcpPolicies/default`, `folders/{FOLDER_ID\}/mcpPolicies/default`, `organizations/{ORG_ID\}/mcpPolicies/default`.
|
|
1929
|
-
*/
|
|
1930
|
-
name?: string | null;
|
|
1931
|
-
/**
|
|
1932
|
-
* Output only. The time the policy was last updated.
|
|
1933
|
-
*/
|
|
1934
|
-
updateTime?: string | null;
|
|
1935
|
-
}
|
|
1936
|
-
/**
|
|
1937
|
-
* McpService contains the service names that are enabled for MCP.
|
|
1938
|
-
*/
|
|
1939
|
-
export interface Schema$McpService {
|
|
1940
|
-
/**
|
|
1941
|
-
* The names of the services that are enabled for MCP. Example: `services/library-example.googleapis.com`
|
|
1942
|
-
*/
|
|
1943
|
-
service?: string | null;
|
|
1944
|
-
}
|
|
1945
1979
|
/**
|
|
1946
1980
|
* Method represents a method of an API interface. New usages of this message as an alternative to MethodDescriptorProto are strongly discouraged. This message does not reliability preserve all information necessary to model the schema and preserve semantics. Instead make use of FileDescriptorSet which preserves the necessary information.
|
|
1947
1981
|
*/
|
|
@@ -2087,10 +2121,18 @@ export namespace serviceusage_v1beta1 {
|
|
|
2087
2121
|
* Bind API methods to metrics. Binding a method to a metric causes that metric's configured quota behaviors to apply to the method call.
|
|
2088
2122
|
*/
|
|
2089
2123
|
export interface Schema$MetricRule {
|
|
2124
|
+
/**
|
|
2125
|
+
* Optional. Metrics to update when the selected methods are called, and the associated cost applied to each metric, iff the source of the call is an agent. The key of the map is the metric name, and the values are the amount increased for the metric against which the quota limits are defined. The value must not be negative.
|
|
2126
|
+
*/
|
|
2127
|
+
agenticMetricCosts?: {[key: string]: string} | null;
|
|
2090
2128
|
/**
|
|
2091
2129
|
* Metrics to update when the selected methods are called, and the associated cost applied to each metric. The key of the map is the metric name, and the values are the amount increased for the metric against which the quota limits are defined. The value must not be negative.
|
|
2092
2130
|
*/
|
|
2093
2131
|
metricCosts?: {[key: string]: string} | null;
|
|
2132
|
+
/**
|
|
2133
|
+
* Optional. Metrics to update when the selected methods are called, and the associated cost applied to each metric, iff the source of the call is not an agent. The key of the map is the metric name, and the values are the amount increased for the metric against which the quota limits are defined. The value must not be negative.
|
|
2134
|
+
*/
|
|
2135
|
+
nonagenticMetricCosts?: {[key: string]: string} | null;
|
|
2094
2136
|
/**
|
|
2095
2137
|
* Selects the methods to which this rule applies. Refer to selector for syntax details.
|
|
2096
2138
|
*/
|
|
@@ -2445,6 +2487,10 @@ export namespace serviceusage_v1beta1 {
|
|
|
2445
2487
|
* Name of the quota limit. The name must be provided, and it must be unique within the service. The name can only include alphanumeric characters as well as '-'. The maximum length of the limit name is 64 characters.
|
|
2446
2488
|
*/
|
|
2447
2489
|
name?: string | null;
|
|
2490
|
+
/**
|
|
2491
|
+
* Optional. This is only informational, the logic to allocate the quota to the correct metric (such as in `metric_rules`) should identify which quota metrics to allocate to.
|
|
2492
|
+
*/
|
|
2493
|
+
trafficSource?: string | null;
|
|
2448
2494
|
/**
|
|
2449
2495
|
* Specify the unit of the quota limit. It uses the same syntax as MetricDescriptor.unit. The supported unit kinds are determined by the quota backend system. Here are some examples: * "1/min/{project\}" for quota per minute per project. Note: the order of unit components is insignificant. The "1" at the beginning is required to follow the metric unit syntax.
|
|
2450
2496
|
*/
|
|
@@ -2519,7 +2565,7 @@ export namespace serviceusage_v1beta1 {
|
|
|
2519
2565
|
common?: Schema$CommonLanguageSettings;
|
|
2520
2566
|
}
|
|
2521
2567
|
/**
|
|
2522
|
-
* This message is used to configure the generation of a subset of the RPCs in a service for client libraries.
|
|
2568
|
+
* This message is used to configure the generation of a subset of the RPCs in a service for client libraries. Note: This feature should not be used in most cases.
|
|
2523
2569
|
*/
|
|
2524
2570
|
export interface Schema$SelectiveGapicGeneration {
|
|
2525
2571
|
/**
|
|
@@ -2729,10 +2775,6 @@ export namespace serviceusage_v1beta1 {
|
|
|
2729
2775
|
* Metadata for the `UpdateContentSecurityPolicy` method.
|
|
2730
2776
|
*/
|
|
2731
2777
|
export interface Schema$UpdateContentSecurityPolicyMetadata {}
|
|
2732
|
-
/**
|
|
2733
|
-
* Metadata for the `UpdateMcpPolicy` method.
|
|
2734
|
-
*/
|
|
2735
|
-
export interface Schema$UpdateMcpPolicyMetadata {}
|
|
2736
2778
|
/**
|
|
2737
2779
|
* Configuration controlling usage of a service.
|
|
2738
2780
|
*/
|
|
@@ -2755,7 +2797,7 @@ export namespace serviceusage_v1beta1 {
|
|
|
2755
2797
|
*/
|
|
2756
2798
|
export interface Schema$UsageRule {
|
|
2757
2799
|
/**
|
|
2758
|
-
*
|
|
2800
|
+
* Use this rule to configure unregistered calls for the service. Unregistered calls are calls that do not contain consumer project identity. (Example: calls that do not contain an API key). WARNING: By default, API methods do not allow unregistered calls, and each method call must be identified by a consumer project identity.
|
|
2759
2801
|
*/
|
|
2760
2802
|
allowUnregisteredCalls?: boolean | null;
|
|
2761
2803
|
/**
|
|
@@ -2869,8 +2911,7 @@ export namespace serviceusage_v1beta1 {
|
|
|
2869
2911
|
| BodyResponseCallback<Schema$Operation>
|
|
2870
2912
|
| BodyResponseCallback<Readable>,
|
|
2871
2913
|
callback?:
|
|
2872
|
-
|
|
2873
|
-
| BodyResponseCallback<Readable>
|
|
2914
|
+
BodyResponseCallback<Schema$Operation> | BodyResponseCallback<Readable>
|
|
2874
2915
|
):
|
|
2875
2916
|
| void
|
|
2876
2917
|
| Promise<GaxiosResponseWithHTTP2<Schema$Operation>>
|
|
@@ -2997,8 +3038,7 @@ export namespace serviceusage_v1beta1 {
|
|
|
2997
3038
|
list(
|
|
2998
3039
|
params: Params$Resource$Operations$List,
|
|
2999
3040
|
options:
|
|
3000
|
-
|
|
|
3001
|
-
| BodyResponseCallback<Schema$ListOperationsResponse>,
|
|
3041
|
+
MethodOptions | BodyResponseCallback<Schema$ListOperationsResponse>,
|
|
3002
3042
|
callback: BodyResponseCallback<Schema$ListOperationsResponse>
|
|
3003
3043
|
): void;
|
|
3004
3044
|
list(
|
|
@@ -3208,8 +3248,7 @@ export namespace serviceusage_v1beta1 {
|
|
|
3208
3248
|
| BodyResponseCallback<Schema$Operation>
|
|
3209
3249
|
| BodyResponseCallback<Readable>,
|
|
3210
3250
|
callback?:
|
|
3211
|
-
|
|
3212
|
-
| BodyResponseCallback<Readable>
|
|
3251
|
+
BodyResponseCallback<Schema$Operation> | BodyResponseCallback<Readable>
|
|
3213
3252
|
):
|
|
3214
3253
|
| void
|
|
3215
3254
|
| Promise<GaxiosResponseWithHTTP2<Schema$Operation>>
|
|
@@ -3358,8 +3397,7 @@ export namespace serviceusage_v1beta1 {
|
|
|
3358
3397
|
| BodyResponseCallback<Schema$Operation>
|
|
3359
3398
|
| BodyResponseCallback<Readable>,
|
|
3360
3399
|
callback?:
|
|
3361
|
-
|
|
3362
|
-
| BodyResponseCallback<Readable>
|
|
3400
|
+
BodyResponseCallback<Schema$Operation> | BodyResponseCallback<Readable>
|
|
3363
3401
|
):
|
|
3364
3402
|
| void
|
|
3365
3403
|
| Promise<GaxiosResponseWithHTTP2<Schema$Operation>>
|
|
@@ -3507,8 +3545,7 @@ export namespace serviceusage_v1beta1 {
|
|
|
3507
3545
|
| BodyResponseCallback<Schema$Operation>
|
|
3508
3546
|
| BodyResponseCallback<Readable>,
|
|
3509
3547
|
callback?:
|
|
3510
|
-
|
|
3511
|
-
| BodyResponseCallback<Readable>
|
|
3548
|
+
BodyResponseCallback<Schema$Operation> | BodyResponseCallback<Readable>
|
|
3512
3549
|
):
|
|
3513
3550
|
| void
|
|
3514
3551
|
| Promise<GaxiosResponseWithHTTP2<Schema$Operation>>
|
|
@@ -3652,8 +3689,7 @@ export namespace serviceusage_v1beta1 {
|
|
|
3652
3689
|
| BodyResponseCallback<Schema$Operation>
|
|
3653
3690
|
| BodyResponseCallback<Readable>,
|
|
3654
3691
|
callback?:
|
|
3655
|
-
|
|
3656
|
-
| BodyResponseCallback<Readable>
|
|
3692
|
+
BodyResponseCallback<Schema$Operation> | BodyResponseCallback<Readable>
|
|
3657
3693
|
):
|
|
3658
3694
|
| void
|
|
3659
3695
|
| Promise<GaxiosResponseWithHTTP2<Schema$Operation>>
|
|
@@ -3794,8 +3830,7 @@ export namespace serviceusage_v1beta1 {
|
|
|
3794
3830
|
| BodyResponseCallback<Schema$Service>
|
|
3795
3831
|
| BodyResponseCallback<Readable>,
|
|
3796
3832
|
callback?:
|
|
3797
|
-
|
|
3798
|
-
| BodyResponseCallback<Readable>
|
|
3833
|
+
BodyResponseCallback<Schema$Service> | BodyResponseCallback<Readable>
|
|
3799
3834
|
):
|
|
3800
3835
|
| void
|
|
3801
3836
|
| Promise<GaxiosResponseWithHTTP2<Schema$Service>>
|
|
@@ -3919,8 +3954,7 @@ export namespace serviceusage_v1beta1 {
|
|
|
3919
3954
|
list(
|
|
3920
3955
|
params: Params$Resource$Services$List,
|
|
3921
3956
|
options:
|
|
3922
|
-
|
|
|
3923
|
-
| BodyResponseCallback<Schema$ListServicesResponse>,
|
|
3957
|
+
MethodOptions | BodyResponseCallback<Schema$ListServicesResponse>,
|
|
3924
3958
|
callback: BodyResponseCallback<Schema$ListServicesResponse>
|
|
3925
3959
|
): void;
|
|
3926
3960
|
list(
|
|
@@ -4314,8 +4348,7 @@ export namespace serviceusage_v1beta1 {
|
|
|
4314
4348
|
| BodyResponseCallback<Schema$Operation>
|
|
4315
4349
|
| BodyResponseCallback<Readable>,
|
|
4316
4350
|
callback?:
|
|
4317
|
-
|
|
4318
|
-
| BodyResponseCallback<Readable>
|
|
4351
|
+
BodyResponseCallback<Schema$Operation> | BodyResponseCallback<Readable>
|
|
4319
4352
|
):
|
|
4320
4353
|
| void
|
|
4321
4354
|
| Promise<GaxiosResponseWithHTTP2<Schema$Operation>>
|
|
@@ -4472,8 +4505,7 @@ export namespace serviceusage_v1beta1 {
|
|
|
4472
4505
|
| BodyResponseCallback<Schema$Operation>
|
|
4473
4506
|
| BodyResponseCallback<Readable>,
|
|
4474
4507
|
callback?:
|
|
4475
|
-
|
|
4476
|
-
| BodyResponseCallback<Readable>
|
|
4508
|
+
BodyResponseCallback<Schema$Operation> | BodyResponseCallback<Readable>
|
|
4477
4509
|
):
|
|
4478
4510
|
| void
|
|
4479
4511
|
| Promise<GaxiosResponseWithHTTP2<Schema$Operation>>
|
|
@@ -5026,8 +5058,7 @@ export namespace serviceusage_v1beta1 {
|
|
|
5026
5058
|
| BodyResponseCallback<Schema$Operation>
|
|
5027
5059
|
| BodyResponseCallback<Readable>,
|
|
5028
5060
|
callback?:
|
|
5029
|
-
|
|
5030
|
-
| BodyResponseCallback<Readable>
|
|
5061
|
+
BodyResponseCallback<Schema$Operation> | BodyResponseCallback<Readable>
|
|
5031
5062
|
):
|
|
5032
5063
|
| void
|
|
5033
5064
|
| Promise<GaxiosResponseWithHTTP2<Schema$Operation>>
|
|
@@ -5178,8 +5209,7 @@ export namespace serviceusage_v1beta1 {
|
|
|
5178
5209
|
| BodyResponseCallback<Schema$Operation>
|
|
5179
5210
|
| BodyResponseCallback<Readable>,
|
|
5180
5211
|
callback?:
|
|
5181
|
-
|
|
5182
|
-
| BodyResponseCallback<Readable>
|
|
5212
|
+
BodyResponseCallback<Schema$Operation> | BodyResponseCallback<Readable>
|
|
5183
5213
|
):
|
|
5184
5214
|
| void
|
|
5185
5215
|
| Promise<GaxiosResponseWithHTTP2<Schema$Operation>>
|
|
@@ -5307,8 +5337,7 @@ export namespace serviceusage_v1beta1 {
|
|
|
5307
5337
|
list(
|
|
5308
5338
|
params: Params$Resource$Services$Consumerquotametrics$Limits$Adminoverrides$List,
|
|
5309
5339
|
options:
|
|
5310
|
-
|
|
|
5311
|
-
| BodyResponseCallback<Schema$ListAdminOverridesResponse>,
|
|
5340
|
+
MethodOptions | BodyResponseCallback<Schema$ListAdminOverridesResponse>,
|
|
5312
5341
|
callback: BodyResponseCallback<Schema$ListAdminOverridesResponse>
|
|
5313
5342
|
): void;
|
|
5314
5343
|
list(
|
|
@@ -5496,8 +5525,7 @@ export namespace serviceusage_v1beta1 {
|
|
|
5496
5525
|
| BodyResponseCallback<Schema$Operation>
|
|
5497
5526
|
| BodyResponseCallback<Readable>,
|
|
5498
5527
|
callback?:
|
|
5499
|
-
|
|
5500
|
-
| BodyResponseCallback<Readable>
|
|
5528
|
+
BodyResponseCallback<Schema$Operation> | BodyResponseCallback<Readable>
|
|
5501
5529
|
):
|
|
5502
5530
|
| void
|
|
5503
5531
|
| Promise<GaxiosResponseWithHTTP2<Schema$Operation>>
|
|
@@ -5737,8 +5765,7 @@ export namespace serviceusage_v1beta1 {
|
|
|
5737
5765
|
| BodyResponseCallback<Schema$Operation>
|
|
5738
5766
|
| BodyResponseCallback<Readable>,
|
|
5739
5767
|
callback?:
|
|
5740
|
-
|
|
5741
|
-
| BodyResponseCallback<Readable>
|
|
5768
|
+
BodyResponseCallback<Schema$Operation> | BodyResponseCallback<Readable>
|
|
5742
5769
|
):
|
|
5743
5770
|
| void
|
|
5744
5771
|
| Promise<GaxiosResponseWithHTTP2<Schema$Operation>>
|
|
@@ -5889,8 +5916,7 @@ export namespace serviceusage_v1beta1 {
|
|
|
5889
5916
|
| BodyResponseCallback<Schema$Operation>
|
|
5890
5917
|
| BodyResponseCallback<Readable>,
|
|
5891
5918
|
callback?:
|
|
5892
|
-
|
|
5893
|
-
| BodyResponseCallback<Readable>
|
|
5919
|
+
BodyResponseCallback<Schema$Operation> | BodyResponseCallback<Readable>
|
|
5894
5920
|
):
|
|
5895
5921
|
| void
|
|
5896
5922
|
| Promise<GaxiosResponseWithHTTP2<Schema$Operation>>
|
|
@@ -6209,8 +6235,7 @@ export namespace serviceusage_v1beta1 {
|
|
|
6209
6235
|
| BodyResponseCallback<Schema$Operation>
|
|
6210
6236
|
| BodyResponseCallback<Readable>,
|
|
6211
6237
|
callback?:
|
|
6212
|
-
|
|
6213
|
-
| BodyResponseCallback<Readable>
|
|
6238
|
+
BodyResponseCallback<Schema$Operation> | BodyResponseCallback<Readable>
|
|
6214
6239
|
):
|
|
6215
6240
|
| void
|
|
6216
6241
|
| Promise<GaxiosResponseWithHTTP2<Schema$Operation>>
|