@maxim_mazurok/gapi.client.serviceusage-v1beta1 0.2.20260609 → 0.3.20260616
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/index.d.ts +4 -11
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://serviceusage.googleapis.com/$discovery/rest?version=v1beta1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260616
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -218,10 +218,7 @@ declare namespace gapi.client {
|
|
|
218
218
|
flowControlElementLimit?: number;
|
|
219
219
|
/** The behavior to take when the flow control limit is exceeded. */
|
|
220
220
|
flowControlLimitExceededBehavior?:
|
|
221
|
-
| '
|
|
222
|
-
| 'THROW_EXCEPTION'
|
|
223
|
-
| 'BLOCK'
|
|
224
|
-
| 'IGNORE';
|
|
221
|
+
'UNSET_BEHAVIOR' | 'THROW_EXCEPTION' | 'BLOCK' | 'IGNORE';
|
|
225
222
|
/** The maximum size of the request that could be accepted by server. */
|
|
226
223
|
requestByteLimit?: number;
|
|
227
224
|
/** The aggregated size of the batched field which, if exceeded, causes the batch to be sent. This size is computed by aggregating the sizes of the request field to be batched, not of the entire request message. */
|
|
@@ -439,10 +436,7 @@ declare namespace gapi.client {
|
|
|
439
436
|
interface EnableRule {
|
|
440
437
|
/** Client and resource project enable type. */
|
|
441
438
|
enableType?:
|
|
442
|
-
| '
|
|
443
|
-
| 'CLIENT'
|
|
444
|
-
| 'RESOURCE'
|
|
445
|
-
| 'V1_COMPATIBLE';
|
|
439
|
+
'ENABLE_TYPE_UNSPECIFIED' | 'CLIENT' | 'RESOURCE' | 'V1_COMPATIBLE';
|
|
446
440
|
/** DEPRECATED: Please use field `values`. Service group should have prefix `groups/`. The names of the service groups that are enabled (Not Implemented). Example: `groups/googleServices`. */
|
|
447
441
|
groups?: string[];
|
|
448
442
|
/** DEPRECATED: Please use field `values`. Service should have prefix `services/`. The names of the services that are enabled. Example: `storage.googleapis.com`. */
|
|
@@ -727,8 +721,7 @@ declare namespace gapi.client {
|
|
|
727
721
|
detail?: string;
|
|
728
722
|
/** Output only. The type of impact. */
|
|
729
723
|
impactType?:
|
|
730
|
-
| '
|
|
731
|
-
| 'DEPENDENCY_MISSING_DEPENDENCIES';
|
|
724
|
+
'IMPACT_TYPE_UNSPECIFIED' | 'DEPENDENCY_MISSING_DEPENDENCIES';
|
|
732
725
|
/** 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}.` */
|
|
733
726
|
missingDependency?: string;
|
|
734
727
|
}
|