@maxim_mazurok/gapi.client.gkehub-v1 0.0.20240802 → 0.0.20240815
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 +17 -5
- 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://gkehub.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240815
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -171,7 +171,7 @@ declare namespace gapi.client {
|
|
|
171
171
|
clusterupgrade?: ClusterUpgradeFleetState;
|
|
172
172
|
/** FleetObservability feature state. */
|
|
173
173
|
fleetobservability?: FleetObservabilityFeatureState;
|
|
174
|
-
/** Output only. The "running state" of the Feature in this
|
|
174
|
+
/** Output only. The "running state" of the Feature in this Fleet. */
|
|
175
175
|
state?: FeatureState;
|
|
176
176
|
}
|
|
177
177
|
interface CommonFleetDefaultMemberConfigSpec {
|
|
@@ -184,6 +184,16 @@ declare namespace gapi.client {
|
|
|
184
184
|
/** Policy Controller spec. */
|
|
185
185
|
policycontroller?: PolicyControllerMembershipSpec;
|
|
186
186
|
}
|
|
187
|
+
interface CompliancePostureConfig {
|
|
188
|
+
/** List of enabled compliance standards. */
|
|
189
|
+
complianceStandards?: ComplianceStandard[];
|
|
190
|
+
/** Defines the enablement mode for Compliance Posture. */
|
|
191
|
+
mode?: string;
|
|
192
|
+
}
|
|
193
|
+
interface ComplianceStandard {
|
|
194
|
+
/** Name of the compliance standard. */
|
|
195
|
+
standard?: string;
|
|
196
|
+
}
|
|
187
197
|
interface ConfigManagementConfigSync {
|
|
188
198
|
/** Set to true to allow the vertical scaling. Defaults to false which disallows vertical scaling. This field is deprecated. */
|
|
189
199
|
allowVerticalScale?: boolean;
|
|
@@ -339,7 +349,7 @@ declare namespace gapi.client {
|
|
|
339
349
|
cluster?: string;
|
|
340
350
|
/** Config Sync configuration for the cluster. */
|
|
341
351
|
configSync?: ConfigManagementConfigSync;
|
|
342
|
-
/** Hierarchy Controller configuration for the cluster. */
|
|
352
|
+
/** Hierarchy Controller configuration for the cluster. Deprecated: Configuring Hierarchy Controller through the configmanagement feature is no longer recommended. Use https://github.com/kubernetes-sigs/hierarchical-namespaces instead. */
|
|
343
353
|
hierarchyController?: ConfigManagementHierarchyControllerConfig;
|
|
344
354
|
/** Enables automatic Feature management. */
|
|
345
355
|
management?: string;
|
|
@@ -461,6 +471,8 @@ declare namespace gapi.client {
|
|
|
461
471
|
interface DefaultClusterConfig {
|
|
462
472
|
/** Optional. Enable/Disable binary authorization features for the cluster. */
|
|
463
473
|
binaryAuthorizationConfig?: BinaryAuthorizationConfig;
|
|
474
|
+
/** Optional. Enable/Disable Compliance Posture features for the cluster. Note that on UpdateFleet, only full replacement of this field is allowed. Users are not allowed for partial updates through field mask. */
|
|
475
|
+
compliancePostureConfig?: CompliancePostureConfig;
|
|
464
476
|
/** Enable/Disable Security Posture features for the cluster. */
|
|
465
477
|
securityPostureConfig?: SecurityPostureConfig;
|
|
466
478
|
}
|
|
@@ -500,9 +512,9 @@ declare namespace gapi.client {
|
|
|
500
512
|
scopeSpecs?: {[P in string]: any};
|
|
501
513
|
/** Output only. Scope-specific Feature status. If this Feature does report any per-Scope status, this field may be unused. The keys indicate which Scope the state is for, in the form: `projects/{p}/locations/global/scopes/{s}` Where {p} is the project, {s} is a valid Scope in this project. {p} WILL match the Feature's project. */
|
|
502
514
|
scopeStates?: {[P in string]: ScopeFeatureState};
|
|
503
|
-
/** Optional.
|
|
515
|
+
/** Optional. Fleet-wide Feature configuration. If this Feature does not support any Fleet-wide configuration, this field may be unused. */
|
|
504
516
|
spec?: CommonFeatureSpec;
|
|
505
|
-
/** Output only. The
|
|
517
|
+
/** Output only. The Fleet-wide Feature state. */
|
|
506
518
|
state?: CommonFeatureState;
|
|
507
519
|
/** Output only. List of locations that could not be reached while fetching this feature. */
|
|
508
520
|
unreachable?: string[];
|