@maxim_mazurok/gapi.client.gkehub-v1 0.0.20221031 → 0.0.20221207
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 -2
- package/package.json +1 -1
- package/tests.ts +3 -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: 20221207
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -115,7 +115,7 @@ declare namespace gapi.client {
|
|
|
115
115
|
state?: FeatureState;
|
|
116
116
|
}
|
|
117
117
|
interface ConfigManagementConfigSync {
|
|
118
|
-
/** Set to true to allow the vertical scaling. Defaults to false which disallows vertical scaling. */
|
|
118
|
+
/** Set to true to allow the vertical scaling. Defaults to false which disallows vertical scaling. This field is deprecated. */
|
|
119
119
|
allowVerticalScale?: boolean;
|
|
120
120
|
/**
|
|
121
121
|
* Enables the installation of ConfigSync. If set to true, ConfigSync resources will be created and the other ConfigSync fields will be applied if exist. If set to false, all other
|
|
@@ -681,6 +681,8 @@ declare namespace gapi.client {
|
|
|
681
681
|
interface MembershipFeatureSpec {
|
|
682
682
|
/** Config Management-specific spec. */
|
|
683
683
|
configmanagement?: ConfigManagementMembershipSpec;
|
|
684
|
+
/** True if value of `feature_spec` was inherited from a fleet-level default. */
|
|
685
|
+
fleetInherited?: boolean;
|
|
684
686
|
/** Fleet observability membership spec */
|
|
685
687
|
fleetobservability?: any;
|
|
686
688
|
/** Identity Service-specific spec. */
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20221207
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -100,6 +100,7 @@ gapi.load('client', async () => {
|
|
|
100
100
|
},
|
|
101
101
|
version: "Test string",
|
|
102
102
|
},
|
|
103
|
+
fleetInherited: true,
|
|
103
104
|
fleetobservability: {
|
|
104
105
|
},
|
|
105
106
|
identityservice: {
|
|
@@ -469,6 +470,7 @@ gapi.load('client', async () => {
|
|
|
469
470
|
},
|
|
470
471
|
version: "Test string",
|
|
471
472
|
},
|
|
473
|
+
fleetInherited: true,
|
|
472
474
|
fleetobservability: {
|
|
473
475
|
},
|
|
474
476
|
identityservice: {
|