@maxim_mazurok/gapi.client.serviceusage-v1beta1 0.0.20240804 → 0.0.20240814
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 +28 -1
- 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: 20240814
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -49,6 +49,27 @@ declare namespace gapi.client {
|
|
|
49
49
|
/** The limit unit of the limit to which this policy applies. An example unit would be: `1/{project}/{region}` Note that `{project}` and `{region}` are not placeholders in this example; the literal characters `{` and `}` occur in the string. */
|
|
50
50
|
unit?: string;
|
|
51
51
|
}
|
|
52
|
+
interface Analysis {
|
|
53
|
+
/** Output only. Analysis result of updating a policy. */
|
|
54
|
+
analysis?: AnalysisResult;
|
|
55
|
+
/** Output only. The type of analysis. */
|
|
56
|
+
analysisType?: string;
|
|
57
|
+
/** Output only. The user friendly display name of the analysis type. E.g. service dependency analysis, service resource usage analysis, etc. */
|
|
58
|
+
displayName?: string;
|
|
59
|
+
/** The names of the service that has analysis result of warnings or blockers. Example: `services/storage.googleapis.com`. */
|
|
60
|
+
service?: string;
|
|
61
|
+
}
|
|
62
|
+
interface AnalysisResult {
|
|
63
|
+
/** Blocking information that would prevent the policy changes at runtime. */
|
|
64
|
+
blockers?: Impact[];
|
|
65
|
+
/** Warning information indicating that the policy changes might be unsafe, but will not block the changes at runtime. */
|
|
66
|
+
warnings?: Impact[];
|
|
67
|
+
}
|
|
68
|
+
interface AnalyzeConsumerPolicyMetadata {}
|
|
69
|
+
interface AnalyzeConsumerPolicyResponse {
|
|
70
|
+
/** 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. */
|
|
71
|
+
analysis?: Analysis[];
|
|
72
|
+
}
|
|
52
73
|
interface Api {
|
|
53
74
|
/** The methods of this interface, in unspecified order. */
|
|
54
75
|
methods?: Method[];
|
|
@@ -565,6 +586,12 @@ declare namespace gapi.client {
|
|
|
565
586
|
/** Selects a method to which this rule applies. Refer to selector for syntax details. */
|
|
566
587
|
selector?: string;
|
|
567
588
|
}
|
|
589
|
+
interface Impact {
|
|
590
|
+
/** Output only. User friendly impact detail in a free form message. */
|
|
591
|
+
detail?: string;
|
|
592
|
+
/** Output only. The type of impact. */
|
|
593
|
+
impactType?: string;
|
|
594
|
+
}
|
|
568
595
|
interface ImportAdminOverridesMetadata {}
|
|
569
596
|
interface ImportAdminOverridesRequest {
|
|
570
597
|
/** Whether to force the creation of the quota overrides. Setting the force parameter to 'true' ignores all quota safety checks that would fail the request. QuotaSafetyCheck lists all such validations. If force is set to true, it is recommended to include a case id in "X-Goog-Request-Reason" header when sending the request. */
|