@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/v1.ts
CHANGED
|
@@ -179,7 +179,7 @@ export namespace serviceusage_v1 {
|
|
|
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_v1 {
|
|
|
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_v1 {
|
|
|
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
|
/**
|
|
@@ -607,7 +624,7 @@ export namespace serviceusage_v1 {
|
|
|
607
624
|
*/
|
|
608
625
|
referenceDocsUri?: string | null;
|
|
609
626
|
/**
|
|
610
|
-
* Configuration for which RPCs should be generated in the GAPIC client.
|
|
627
|
+
* Configuration for which RPCs should be generated in the GAPIC client. Note: This field should not be used in most cases.
|
|
611
628
|
*/
|
|
612
629
|
selectiveGapicGeneration?: Schema$SelectiveGapicGeneration;
|
|
613
630
|
}
|
|
@@ -616,11 +633,11 @@ export namespace serviceusage_v1 {
|
|
|
616
633
|
*/
|
|
617
634
|
export interface Schema$ConsumerPolicy {
|
|
618
635
|
/**
|
|
619
|
-
*
|
|
636
|
+
* Output only. The time the policy was created. For singleton policies, this is the first touch of the policy.
|
|
620
637
|
*/
|
|
621
|
-
|
|
638
|
+
createTime?: string | null;
|
|
622
639
|
/**
|
|
623
|
-
* Enable rules define usable services and
|
|
640
|
+
* Enable rules define usable services and groups. There can currently be at most one `EnableRule`. This restriction will be lifted in later releases.
|
|
624
641
|
*/
|
|
625
642
|
enableRules?: Schema$EnableRule[];
|
|
626
643
|
/**
|
|
@@ -628,11 +645,11 @@ export namespace serviceusage_v1 {
|
|
|
628
645
|
*/
|
|
629
646
|
etag?: string | null;
|
|
630
647
|
/**
|
|
631
|
-
* Output only. The resource name of the policy.
|
|
648
|
+
* 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`.
|
|
632
649
|
*/
|
|
633
650
|
name?: string | null;
|
|
634
651
|
/**
|
|
635
|
-
* The last
|
|
652
|
+
* Output only. The time the policy was last updated.
|
|
636
653
|
*/
|
|
637
654
|
updateTime?: string | null;
|
|
638
655
|
}
|
|
@@ -897,7 +914,7 @@ export namespace serviceusage_v1 {
|
|
|
897
914
|
serviceId?: string | null;
|
|
898
915
|
}
|
|
899
916
|
/**
|
|
900
|
-
* The consumer policy rule that defines
|
|
917
|
+
* The consumer policy rule that defines enabled services and groups.
|
|
901
918
|
*/
|
|
902
919
|
export interface Schema$EnableRule {
|
|
903
920
|
/**
|
|
@@ -905,15 +922,11 @@ export namespace serviceusage_v1 {
|
|
|
905
922
|
*/
|
|
906
923
|
enableType?: string | null;
|
|
907
924
|
/**
|
|
908
|
-
*
|
|
909
|
-
*/
|
|
910
|
-
groups?: string[] | null;
|
|
911
|
-
/**
|
|
912
|
-
* DEPRECATED: Please use field `values`. Service should have prefix `services/`. The names of the services that are enabled. Example: `storage.googleapis.com`.
|
|
925
|
+
* The names of the services that are enabled. Example: `services/storage.googleapis.com`.
|
|
913
926
|
*/
|
|
914
927
|
services?: string[] | null;
|
|
915
928
|
/**
|
|
916
|
-
* The names of the services or service groups that are enabled. Example: `services/storage.googleapis.com`, `groups/googleServices`, `groups/allServices`.
|
|
929
|
+
* 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`.
|
|
917
930
|
*/
|
|
918
931
|
values?: string[] | null;
|
|
919
932
|
}
|
|
@@ -1138,7 +1151,7 @@ export namespace serviceusage_v1 {
|
|
|
1138
1151
|
*/
|
|
1139
1152
|
documentation?: Schema$Documentation;
|
|
1140
1153
|
/**
|
|
1141
|
-
* 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.
|
|
1154
|
+
* 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.
|
|
1142
1155
|
*/
|
|
1143
1156
|
endpoints?: Schema$Endpoint[];
|
|
1144
1157
|
/**
|
|
@@ -1315,6 +1328,53 @@ export namespace serviceusage_v1 {
|
|
|
1315
1328
|
*/
|
|
1316
1329
|
usage?: Schema$Usage;
|
|
1317
1330
|
}
|
|
1331
|
+
/**
|
|
1332
|
+
* A message to group the analysis information.
|
|
1333
|
+
*/
|
|
1334
|
+
export interface Schema$GoogleApiServiceusageV2alphaAnalysis {
|
|
1335
|
+
/**
|
|
1336
|
+
* Output only. Analysis result of updating a policy.
|
|
1337
|
+
*/
|
|
1338
|
+
analysisResult?: Schema$GoogleApiServiceusageV2alphaAnalysisResult;
|
|
1339
|
+
/**
|
|
1340
|
+
* Output only. The type of analysis.
|
|
1341
|
+
*/
|
|
1342
|
+
analysisType?: string | null;
|
|
1343
|
+
/**
|
|
1344
|
+
* Output only. The user friendly display name of the analysis type. E.g. service dependency analysis, service resource usage analysis, etc.
|
|
1345
|
+
*/
|
|
1346
|
+
displayName?: string | null;
|
|
1347
|
+
/**
|
|
1348
|
+
* The names of the service that has analysis result of warnings or blockers. Example: `services/storage.googleapis.com`.
|
|
1349
|
+
*/
|
|
1350
|
+
service?: string | null;
|
|
1351
|
+
}
|
|
1352
|
+
/**
|
|
1353
|
+
* An analysis result including blockers and warnings.
|
|
1354
|
+
*/
|
|
1355
|
+
export interface Schema$GoogleApiServiceusageV2alphaAnalysisResult {
|
|
1356
|
+
/**
|
|
1357
|
+
* Blocking information that would prevent the policy changes at runtime.
|
|
1358
|
+
*/
|
|
1359
|
+
blockers?: Schema$GoogleApiServiceusageV2alphaImpact[];
|
|
1360
|
+
/**
|
|
1361
|
+
* Warning information indicating that the policy changes might be unsafe, but will not block the changes at runtime.
|
|
1362
|
+
*/
|
|
1363
|
+
warnings?: Schema$GoogleApiServiceusageV2alphaImpact[];
|
|
1364
|
+
}
|
|
1365
|
+
/**
|
|
1366
|
+
* Metadata for the `AnalyzeConsumerPolicy` method.
|
|
1367
|
+
*/
|
|
1368
|
+
export interface Schema$GoogleApiServiceusageV2alphaAnalyzeConsumerPolicyMetadata {}
|
|
1369
|
+
/**
|
|
1370
|
+
* The response of analyzing a consumer policy update.
|
|
1371
|
+
*/
|
|
1372
|
+
export interface Schema$GoogleApiServiceusageV2alphaAnalyzeConsumerPolicyResponse {
|
|
1373
|
+
/**
|
|
1374
|
+
* 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.
|
|
1375
|
+
*/
|
|
1376
|
+
analysis?: Schema$GoogleApiServiceusageV2alphaAnalysis[];
|
|
1377
|
+
}
|
|
1318
1378
|
/**
|
|
1319
1379
|
* Consumer Policy is a set of rules that define what services or service groups can be used for a cloud resource hierarchy.
|
|
1320
1380
|
*/
|
|
@@ -1353,6 +1413,23 @@ export namespace serviceusage_v1 {
|
|
|
1353
1413
|
*/
|
|
1354
1414
|
services?: string[] | null;
|
|
1355
1415
|
}
|
|
1416
|
+
/**
|
|
1417
|
+
* A message to group impacts of updating a policy.
|
|
1418
|
+
*/
|
|
1419
|
+
export interface Schema$GoogleApiServiceusageV2alphaImpact {
|
|
1420
|
+
/**
|
|
1421
|
+
* Output only. User friendly impact detail in a free form message.
|
|
1422
|
+
*/
|
|
1423
|
+
detail?: string | null;
|
|
1424
|
+
/**
|
|
1425
|
+
* Output only. The type of impact.
|
|
1426
|
+
*/
|
|
1427
|
+
impactType?: string | null;
|
|
1428
|
+
/**
|
|
1429
|
+
* 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.
|
|
1430
|
+
*/
|
|
1431
|
+
parent?: string | null;
|
|
1432
|
+
}
|
|
1356
1433
|
/**
|
|
1357
1434
|
* Metadata for the `UpdateConsumerPolicy` method.
|
|
1358
1435
|
*/
|
|
@@ -1590,9 +1667,9 @@ export namespace serviceusage_v1 {
|
|
|
1590
1667
|
*/
|
|
1591
1668
|
impactType?: string | null;
|
|
1592
1669
|
/**
|
|
1593
|
-
*
|
|
1670
|
+
* 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\}.`
|
|
1594
1671
|
*/
|
|
1595
|
-
|
|
1672
|
+
missingDependency?: string | null;
|
|
1596
1673
|
}
|
|
1597
1674
|
/**
|
|
1598
1675
|
* Metadata message that provides information such as progress, partial failures, and similar information on each GetOperation call of LRO returned by ImportAdminOverrides.
|
|
@@ -1786,49 +1863,6 @@ export namespace serviceusage_v1 {
|
|
|
1786
1863
|
*/
|
|
1787
1864
|
totalPollTimeout?: string | null;
|
|
1788
1865
|
}
|
|
1789
|
-
/**
|
|
1790
|
-
* McpEnableRule contains MCP enablement related rules.
|
|
1791
|
-
*/
|
|
1792
|
-
export interface Schema$McpEnableRule {
|
|
1793
|
-
/**
|
|
1794
|
-
* List of enabled MCP services.
|
|
1795
|
-
*/
|
|
1796
|
-
mcpServices?: Schema$McpService[];
|
|
1797
|
-
}
|
|
1798
|
-
/**
|
|
1799
|
-
* MCP Consumer Policy is a set of rules that define MCP related policy for a cloud resource hierarchy.
|
|
1800
|
-
*/
|
|
1801
|
-
export interface Schema$McpPolicy {
|
|
1802
|
-
/**
|
|
1803
|
-
* Output only. The time the policy was created. For singleton policies (such as the `default` policy), this is the first touch of the policy.
|
|
1804
|
-
*/
|
|
1805
|
-
createTime?: string | null;
|
|
1806
|
-
/**
|
|
1807
|
-
* An opaque tag indicating the current version of the policy, used for concurrency control.
|
|
1808
|
-
*/
|
|
1809
|
-
etag?: string | null;
|
|
1810
|
-
/**
|
|
1811
|
-
* McpEnableRules contains MCP enablement related rules.
|
|
1812
|
-
*/
|
|
1813
|
-
mcpEnableRules?: Schema$McpEnableRule[];
|
|
1814
|
-
/**
|
|
1815
|
-
* 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`.
|
|
1816
|
-
*/
|
|
1817
|
-
name?: string | null;
|
|
1818
|
-
/**
|
|
1819
|
-
* Output only. The time the policy was last updated.
|
|
1820
|
-
*/
|
|
1821
|
-
updateTime?: string | null;
|
|
1822
|
-
}
|
|
1823
|
-
/**
|
|
1824
|
-
* McpService contains the service names that are enabled for MCP.
|
|
1825
|
-
*/
|
|
1826
|
-
export interface Schema$McpService {
|
|
1827
|
-
/**
|
|
1828
|
-
* The names of the services that are enabled for MCP. Example: `services/library-example.googleapis.com`
|
|
1829
|
-
*/
|
|
1830
|
-
service?: string | null;
|
|
1831
|
-
}
|
|
1832
1866
|
/**
|
|
1833
1867
|
* 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.
|
|
1834
1868
|
*/
|
|
@@ -1974,10 +2008,18 @@ export namespace serviceusage_v1 {
|
|
|
1974
2008
|
* Bind API methods to metrics. Binding a method to a metric causes that metric's configured quota behaviors to apply to the method call.
|
|
1975
2009
|
*/
|
|
1976
2010
|
export interface Schema$MetricRule {
|
|
2011
|
+
/**
|
|
2012
|
+
* 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.
|
|
2013
|
+
*/
|
|
2014
|
+
agenticMetricCosts?: {[key: string]: string} | null;
|
|
1977
2015
|
/**
|
|
1978
2016
|
* 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.
|
|
1979
2017
|
*/
|
|
1980
2018
|
metricCosts?: {[key: string]: string} | null;
|
|
2019
|
+
/**
|
|
2020
|
+
* 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.
|
|
2021
|
+
*/
|
|
2022
|
+
nonagenticMetricCosts?: {[key: string]: string} | null;
|
|
1981
2023
|
/**
|
|
1982
2024
|
* Selects the methods to which this rule applies. Refer to selector for syntax details.
|
|
1983
2025
|
*/
|
|
@@ -2257,6 +2299,10 @@ export namespace serviceusage_v1 {
|
|
|
2257
2299
|
* 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.
|
|
2258
2300
|
*/
|
|
2259
2301
|
name?: string | null;
|
|
2302
|
+
/**
|
|
2303
|
+
* 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.
|
|
2304
|
+
*/
|
|
2305
|
+
trafficSource?: string | null;
|
|
2260
2306
|
/**
|
|
2261
2307
|
* 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.
|
|
2262
2308
|
*/
|
|
@@ -2322,7 +2368,7 @@ export namespace serviceusage_v1 {
|
|
|
2322
2368
|
common?: Schema$CommonLanguageSettings;
|
|
2323
2369
|
}
|
|
2324
2370
|
/**
|
|
2325
|
-
* This message is used to configure the generation of a subset of the RPCs in a service for client libraries.
|
|
2371
|
+
* 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.
|
|
2326
2372
|
*/
|
|
2327
2373
|
export interface Schema$SelectiveGapicGeneration {
|
|
2328
2374
|
/**
|
|
@@ -2466,10 +2512,6 @@ export namespace serviceusage_v1 {
|
|
|
2466
2512
|
* Metadata for the `UpdateContentSecurityPolicy` method.
|
|
2467
2513
|
*/
|
|
2468
2514
|
export interface Schema$UpdateContentSecurityPolicyMetadata {}
|
|
2469
|
-
/**
|
|
2470
|
-
* Metadata for the `UpdateMcpPolicy` method.
|
|
2471
|
-
*/
|
|
2472
|
-
export interface Schema$UpdateMcpPolicyMetadata {}
|
|
2473
2515
|
/**
|
|
2474
2516
|
* Configuration controlling usage of a service.
|
|
2475
2517
|
*/
|
|
@@ -2492,7 +2534,7 @@ export namespace serviceusage_v1 {
|
|
|
2492
2534
|
*/
|
|
2493
2535
|
export interface Schema$UsageRule {
|
|
2494
2536
|
/**
|
|
2495
|
-
*
|
|
2537
|
+
* 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.
|
|
2496
2538
|
*/
|
|
2497
2539
|
allowUnregisteredCalls?: boolean | null;
|
|
2498
2540
|
/**
|
|
@@ -2606,8 +2648,7 @@ export namespace serviceusage_v1 {
|
|
|
2606
2648
|
| BodyResponseCallback<Schema$Empty>
|
|
2607
2649
|
| BodyResponseCallback<Readable>,
|
|
2608
2650
|
callback?:
|
|
2609
|
-
|
|
2610
|
-
| BodyResponseCallback<Readable>
|
|
2651
|
+
BodyResponseCallback<Schema$Empty> | BodyResponseCallback<Readable>
|
|
2611
2652
|
):
|
|
2612
2653
|
| void
|
|
2613
2654
|
| Promise<GaxiosResponseWithHTTP2<Schema$Empty>>
|
|
@@ -2741,8 +2782,7 @@ export namespace serviceusage_v1 {
|
|
|
2741
2782
|
| BodyResponseCallback<Schema$Empty>
|
|
2742
2783
|
| BodyResponseCallback<Readable>,
|
|
2743
2784
|
callback?:
|
|
2744
|
-
|
|
2745
|
-
| BodyResponseCallback<Readable>
|
|
2785
|
+
BodyResponseCallback<Schema$Empty> | BodyResponseCallback<Readable>
|
|
2746
2786
|
):
|
|
2747
2787
|
| void
|
|
2748
2788
|
| Promise<GaxiosResponseWithHTTP2<Schema$Empty>>
|
|
@@ -2882,8 +2922,7 @@ export namespace serviceusage_v1 {
|
|
|
2882
2922
|
| BodyResponseCallback<Schema$Operation>
|
|
2883
2923
|
| BodyResponseCallback<Readable>,
|
|
2884
2924
|
callback?:
|
|
2885
|
-
|
|
2886
|
-
| BodyResponseCallback<Readable>
|
|
2925
|
+
BodyResponseCallback<Schema$Operation> | BodyResponseCallback<Readable>
|
|
2887
2926
|
):
|
|
2888
2927
|
| void
|
|
2889
2928
|
| Promise<GaxiosResponseWithHTTP2<Schema$Operation>>
|
|
@@ -3010,8 +3049,7 @@ export namespace serviceusage_v1 {
|
|
|
3010
3049
|
list(
|
|
3011
3050
|
params: Params$Resource$Operations$List,
|
|
3012
3051
|
options:
|
|
3013
|
-
|
|
|
3014
|
-
| BodyResponseCallback<Schema$ListOperationsResponse>,
|
|
3052
|
+
MethodOptions | BodyResponseCallback<Schema$ListOperationsResponse>,
|
|
3015
3053
|
callback: BodyResponseCallback<Schema$ListOperationsResponse>
|
|
3016
3054
|
): void;
|
|
3017
3055
|
list(
|
|
@@ -3231,8 +3269,7 @@ export namespace serviceusage_v1 {
|
|
|
3231
3269
|
| BodyResponseCallback<Schema$Operation>
|
|
3232
3270
|
| BodyResponseCallback<Readable>,
|
|
3233
3271
|
callback?:
|
|
3234
|
-
|
|
3235
|
-
| BodyResponseCallback<Readable>
|
|
3272
|
+
BodyResponseCallback<Schema$Operation> | BodyResponseCallback<Readable>
|
|
3236
3273
|
):
|
|
3237
3274
|
| void
|
|
3238
3275
|
| Promise<GaxiosResponseWithHTTP2<Schema$Operation>>
|
|
@@ -3355,8 +3392,7 @@ export namespace serviceusage_v1 {
|
|
|
3355
3392
|
batchGet(
|
|
3356
3393
|
params: Params$Resource$Services$Batchget,
|
|
3357
3394
|
options:
|
|
3358
|
-
|
|
|
3359
|
-
| BodyResponseCallback<Schema$BatchGetServicesResponse>,
|
|
3395
|
+
MethodOptions | BodyResponseCallback<Schema$BatchGetServicesResponse>,
|
|
3360
3396
|
callback: BodyResponseCallback<Schema$BatchGetServicesResponse>
|
|
3361
3397
|
): void;
|
|
3362
3398
|
batchGet(
|
|
@@ -3530,8 +3566,7 @@ export namespace serviceusage_v1 {
|
|
|
3530
3566
|
| BodyResponseCallback<Schema$Operation>
|
|
3531
3567
|
| BodyResponseCallback<Readable>,
|
|
3532
3568
|
callback?:
|
|
3533
|
-
|
|
3534
|
-
| BodyResponseCallback<Readable>
|
|
3569
|
+
BodyResponseCallback<Schema$Operation> | BodyResponseCallback<Readable>
|
|
3535
3570
|
):
|
|
3536
3571
|
| void
|
|
3537
3572
|
| Promise<GaxiosResponseWithHTTP2<Schema$Operation>>
|
|
@@ -3679,8 +3714,7 @@ export namespace serviceusage_v1 {
|
|
|
3679
3714
|
| BodyResponseCallback<Schema$Operation>
|
|
3680
3715
|
| BodyResponseCallback<Readable>,
|
|
3681
3716
|
callback?:
|
|
3682
|
-
|
|
3683
|
-
| BodyResponseCallback<Readable>
|
|
3717
|
+
BodyResponseCallback<Schema$Operation> | BodyResponseCallback<Readable>
|
|
3684
3718
|
):
|
|
3685
3719
|
| void
|
|
3686
3720
|
| Promise<GaxiosResponseWithHTTP2<Schema$Operation>>
|
|
@@ -3949,8 +3983,7 @@ export namespace serviceusage_v1 {
|
|
|
3949
3983
|
list(
|
|
3950
3984
|
params: Params$Resource$Services$List,
|
|
3951
3985
|
options:
|
|
3952
|
-
|
|
|
3953
|
-
| BodyResponseCallback<Schema$ListServicesResponse>,
|
|
3986
|
+
MethodOptions | BodyResponseCallback<Schema$ListServicesResponse>,
|
|
3954
3987
|
callback: BodyResponseCallback<Schema$ListServicesResponse>
|
|
3955
3988
|
): void;
|
|
3956
3989
|
list(
|