@maxim_mazurok/gapi.client.gkehub-v1alpha 0.0.20250324 → 0.0.20250415
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 +13 -2
- 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=v1alpha
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250415
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -199,6 +199,8 @@ declare namespace gapi.client {
|
|
|
199
199
|
multiclusteringress?: MultiClusterIngressFeatureSpec;
|
|
200
200
|
/** Namespace Actuation feature spec */
|
|
201
201
|
namespaceactuation?: NamespaceActuationFeatureSpec;
|
|
202
|
+
/** RBAC Role Binding Actuation feature spec */
|
|
203
|
+
rbacrolebindingactuation?: RBACRoleBindingActuationFeatureSpec;
|
|
202
204
|
/** Workload Certificate spec. */
|
|
203
205
|
workloadcertificate?: FeatureSpec;
|
|
204
206
|
}
|
|
@@ -211,6 +213,8 @@ declare namespace gapi.client {
|
|
|
211
213
|
fleetobservability?: FleetObservabilityFeatureState;
|
|
212
214
|
/** Namespace Actuation feature state. */
|
|
213
215
|
namespaceactuation?: any;
|
|
216
|
+
/** RBAC Role Binding Actuation feature state */
|
|
217
|
+
rbacrolebindingactuation?: any;
|
|
214
218
|
/** Service Mesh-specific state. */
|
|
215
219
|
servicemesh?: ServiceMeshFeatureState;
|
|
216
220
|
/** Output only. The "running state" of the Feature in this Fleet. */
|
|
@@ -1020,7 +1024,7 @@ declare namespace gapi.client {
|
|
|
1020
1024
|
endpoint?: MembershipEndpoint;
|
|
1021
1025
|
/** Optional. An externally-generated and managed ID for this Membership. This ID may be modified after creation, but this is not recommended. The ID must match the regex: `a-zA-Z0-9*` If this Membership represents a Kubernetes cluster, this value should be set to the UID of the `kube-system` namespace object. */
|
|
1022
1026
|
externalId?: string;
|
|
1023
|
-
/** Optional. Labels for this membership. */
|
|
1027
|
+
/** Optional. Labels for this membership. These labels are not leveraged by multi-cluster features, instead, we prefer cluster labels, which can be set on GKE cluster or other cluster types. */
|
|
1024
1028
|
labels?: {[P in string]: string};
|
|
1025
1029
|
/** Output only. For clusters using Connect, the timestamp of the most recent connection established with Google Cloud. This time is updated every several minutes, not continuously. For clusters that do not use GKE Connect, or that have never connected successfully, this field will be unset. */
|
|
1026
1030
|
lastConnectionTime?: string;
|
|
@@ -1368,6 +1372,11 @@ declare namespace gapi.client {
|
|
|
1368
1372
|
/** user is the name of the user as seen by the kubernetes cluster, example "alice" or "alice@domain.tld" */
|
|
1369
1373
|
user?: string;
|
|
1370
1374
|
}
|
|
1375
|
+
interface RBACRoleBindingActuationFeatureSpec {
|
|
1376
|
+
/** The list of allowed custom roles (ClusterRoles). If a ClusterRole is not part of this list, it cannot be used in a Scope RBACRoleBinding. If a ClusterRole in this list is in use, it cannot be removed from the list. */
|
|
1377
|
+
allowedCustomRoles?: string[];
|
|
1378
|
+
}
|
|
1379
|
+
interface RBACRoleBindingActuationFeatureState {}
|
|
1371
1380
|
interface RBACRoleBindingLifecycleState {
|
|
1372
1381
|
/** Output only. The current state of the rbacrolebinding resource. */
|
|
1373
1382
|
code?: string;
|
|
@@ -1387,6 +1396,8 @@ declare namespace gapi.client {
|
|
|
1387
1396
|
v1beta1Crd?: boolean;
|
|
1388
1397
|
}
|
|
1389
1398
|
interface Role {
|
|
1399
|
+
/** Optional. custom_role is the name of a custom KubernetesClusterRole to use. */
|
|
1400
|
+
customRole?: string;
|
|
1390
1401
|
/** predefined_role is the Kubernetes default role to use */
|
|
1391
1402
|
predefinedRole?: string;
|
|
1392
1403
|
}
|