@maxim_mazurok/gapi.client.gkehub-v1 0.0.20230627 → 0.0.20230712
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 +14 -2
- package/package.json +1 -1
- package/tests.ts +23 -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: 20230712
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -625,6 +625,9 @@ declare namespace gapi.client {
|
|
|
625
625
|
*/
|
|
626
626
|
displayName?:
|
|
627
627
|
string;
|
|
628
|
+
/** Optional. Labels for this Fleet. */
|
|
629
|
+
labels?:
|
|
630
|
+
{ [P in string]: string };
|
|
628
631
|
/**
|
|
629
632
|
* Output only. The full, unique resource name of this fleet in the format of `projects/{project}/locations/{location}/fleets/{fleet}`. Each Google Cloud project can have at most one
|
|
630
633
|
* fleet resource, named "default".
|
|
@@ -744,7 +747,7 @@ declare namespace gapi.client {
|
|
|
744
747
|
/** AzureAD specific Configuration. */
|
|
745
748
|
azureadConfig?:
|
|
746
749
|
IdentityServiceAzureADConfig;
|
|
747
|
-
/** GoogleConfig specific configuration */
|
|
750
|
+
/** GoogleConfig specific configuration. */
|
|
748
751
|
googleConfig?:
|
|
749
752
|
IdentityServiceGoogleConfig;
|
|
750
753
|
/** Identifier for auth config. */
|
|
@@ -773,6 +776,9 @@ declare namespace gapi.client {
|
|
|
773
776
|
/** Kind of Azure AD account to be authenticated. Supported values are or for accounts belonging to a specific tenant. */
|
|
774
777
|
tenant?:
|
|
775
778
|
string;
|
|
779
|
+
/** Optional. Claim in the AzureAD ID Token that holds the user details. */
|
|
780
|
+
userClaim?:
|
|
781
|
+
string;
|
|
776
782
|
}
|
|
777
783
|
interface IdentityServiceGoogleConfig {
|
|
778
784
|
/** Disable automatic configuration of Google Plugin on supported platforms. */
|
|
@@ -1037,6 +1043,9 @@ declare namespace gapi.client {
|
|
|
1037
1043
|
/** Whether the membershipbinding is Fleet-wide; true means that this Membership should be bound to all Namespaces in this entire Fleet. */
|
|
1038
1044
|
fleet?:
|
|
1039
1045
|
boolean;
|
|
1046
|
+
/** Optional. Labels for this MembershipBinding. */
|
|
1047
|
+
labels?:
|
|
1048
|
+
{ [P in string]: string };
|
|
1040
1049
|
/** The resource name for the membershipbinding itself `projects/{project}/locations/{location}/memberships/{membership}/bindings/{membershipbinding}` */
|
|
1041
1050
|
name?:
|
|
1042
1051
|
string;
|
|
@@ -1329,6 +1338,9 @@ declare namespace gapi.client {
|
|
|
1329
1338
|
/** Output only. When the scope was deleted. */
|
|
1330
1339
|
deleteTime?:
|
|
1331
1340
|
string;
|
|
1341
|
+
/** Optional. Labels for this Scope. */
|
|
1342
|
+
labels?:
|
|
1343
|
+
{ [P in string]: string };
|
|
1332
1344
|
/** The resource name for the scope `projects/{project}/locations/{location}/scopes/{scope}` */
|
|
1333
1345
|
name?:
|
|
1334
1346
|
string;
|
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: 20230712
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -124,6 +124,7 @@ gapi.load('client', async () => {
|
|
|
124
124
|
encryptedClientSecret: "Test string",
|
|
125
125
|
kubectlRedirectUri: "Test string",
|
|
126
126
|
tenant: "Test string",
|
|
127
|
+
userClaim: "Test string",
|
|
127
128
|
},
|
|
128
129
|
googleConfig: {
|
|
129
130
|
disable: true,
|
|
@@ -319,6 +320,7 @@ gapi.load('client', async () => {
|
|
|
319
320
|
encryptedClientSecret: "Test string",
|
|
320
321
|
kubectlRedirectUri: "Test string",
|
|
321
322
|
tenant: "Test string",
|
|
323
|
+
userClaim: "Test string",
|
|
322
324
|
},
|
|
323
325
|
googleConfig: {
|
|
324
326
|
disable: true,
|
|
@@ -556,6 +558,7 @@ gapi.load('client', async () => {
|
|
|
556
558
|
encryptedClientSecret: "Test string",
|
|
557
559
|
kubectlRedirectUri: "Test string",
|
|
558
560
|
tenant: "Test string",
|
|
561
|
+
userClaim: "Test string",
|
|
559
562
|
},
|
|
560
563
|
googleConfig: {
|
|
561
564
|
disable: true,
|
|
@@ -751,6 +754,7 @@ gapi.load('client', async () => {
|
|
|
751
754
|
encryptedClientSecret: "Test string",
|
|
752
755
|
kubectlRedirectUri: "Test string",
|
|
753
756
|
tenant: "Test string",
|
|
757
|
+
userClaim: "Test string",
|
|
754
758
|
},
|
|
755
759
|
googleConfig: {
|
|
756
760
|
disable: true,
|
|
@@ -942,6 +946,9 @@ gapi.load('client', async () => {
|
|
|
942
946
|
createTime: "Test string",
|
|
943
947
|
deleteTime: "Test string",
|
|
944
948
|
displayName: "Test string",
|
|
949
|
+
labels: {
|
|
950
|
+
A: "Test string"
|
|
951
|
+
},
|
|
945
952
|
name: "Test string",
|
|
946
953
|
state: {
|
|
947
954
|
code: "Test string",
|
|
@@ -971,6 +978,9 @@ gapi.load('client', async () => {
|
|
|
971
978
|
createTime: "Test string",
|
|
972
979
|
deleteTime: "Test string",
|
|
973
980
|
displayName: "Test string",
|
|
981
|
+
labels: {
|
|
982
|
+
A: "Test string"
|
|
983
|
+
},
|
|
974
984
|
name: "Test string",
|
|
975
985
|
state: {
|
|
976
986
|
code: "Test string",
|
|
@@ -1246,6 +1256,9 @@ gapi.load('client', async () => {
|
|
|
1246
1256
|
createTime: "Test string",
|
|
1247
1257
|
deleteTime: "Test string",
|
|
1248
1258
|
fleet: true,
|
|
1259
|
+
labels: {
|
|
1260
|
+
A: "Test string"
|
|
1261
|
+
},
|
|
1249
1262
|
name: "Test string",
|
|
1250
1263
|
scope: "Test string",
|
|
1251
1264
|
state: {
|
|
@@ -1277,6 +1290,9 @@ gapi.load('client', async () => {
|
|
|
1277
1290
|
createTime: "Test string",
|
|
1278
1291
|
deleteTime: "Test string",
|
|
1279
1292
|
fleet: true,
|
|
1293
|
+
labels: {
|
|
1294
|
+
A: "Test string"
|
|
1295
|
+
},
|
|
1280
1296
|
name: "Test string",
|
|
1281
1297
|
scope: "Test string",
|
|
1282
1298
|
state: {
|
|
@@ -1321,6 +1337,9 @@ gapi.load('client', async () => {
|
|
|
1321
1337
|
allMemberships: true,
|
|
1322
1338
|
createTime: "Test string",
|
|
1323
1339
|
deleteTime: "Test string",
|
|
1340
|
+
labels: {
|
|
1341
|
+
A: "Test string"
|
|
1342
|
+
},
|
|
1324
1343
|
name: "Test string",
|
|
1325
1344
|
state: {
|
|
1326
1345
|
code: "Test string",
|
|
@@ -1355,6 +1374,9 @@ gapi.load('client', async () => {
|
|
|
1355
1374
|
allMemberships: true,
|
|
1356
1375
|
createTime: "Test string",
|
|
1357
1376
|
deleteTime: "Test string",
|
|
1377
|
+
labels: {
|
|
1378
|
+
A: "Test string"
|
|
1379
|
+
},
|
|
1358
1380
|
name: "Test string",
|
|
1359
1381
|
state: {
|
|
1360
1382
|
code: "Test string",
|