@maxim_mazurok/gapi.client.gkehub-v1 0.0.20250324 → 0.0.20250421
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 -3
- 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: 20250421
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -167,6 +167,8 @@ declare namespace gapi.client {
|
|
|
167
167
|
fleetobservability?: FleetObservabilityFeatureSpec;
|
|
168
168
|
/** Multicluster Ingress-specific spec. */
|
|
169
169
|
multiclusteringress?: MultiClusterIngressFeatureSpec;
|
|
170
|
+
/** RBAC Role Binding Actuation feature spec */
|
|
171
|
+
rbacrolebindingactuation?: RBACRoleBindingActuationFeatureSpec;
|
|
170
172
|
}
|
|
171
173
|
interface CommonFeatureState {
|
|
172
174
|
/** Appdevexperience specific state. */
|
|
@@ -175,6 +177,8 @@ declare namespace gapi.client {
|
|
|
175
177
|
clusterupgrade?: ClusterUpgradeFleetState;
|
|
176
178
|
/** FleetObservability feature state. */
|
|
177
179
|
fleetobservability?: FleetObservabilityFeatureState;
|
|
180
|
+
/** RBAC Role Binding Actuation feature state */
|
|
181
|
+
rbacrolebindingactuation?: any;
|
|
178
182
|
/** Output only. The "running state" of the Feature in this Fleet. */
|
|
179
183
|
state?: FeatureState;
|
|
180
184
|
}
|
|
@@ -944,7 +948,7 @@ declare namespace gapi.client {
|
|
|
944
948
|
endpoint?: MembershipEndpoint;
|
|
945
949
|
/** 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. */
|
|
946
950
|
externalId?: string;
|
|
947
|
-
/** Optional. Labels for this membership. */
|
|
951
|
+
/** 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. */
|
|
948
952
|
labels?: {[P in string]: string};
|
|
949
953
|
/** 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. */
|
|
950
954
|
lastConnectionTime?: string;
|
|
@@ -1263,6 +1267,11 @@ declare namespace gapi.client {
|
|
|
1263
1267
|
/** user is the name of the user as seen by the kubernetes cluster, example "alice" or "alice@domain.tld" */
|
|
1264
1268
|
user?: string;
|
|
1265
1269
|
}
|
|
1270
|
+
interface RBACRoleBindingActuationFeatureSpec {
|
|
1271
|
+
/** 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. */
|
|
1272
|
+
allowedCustomRoles?: string[];
|
|
1273
|
+
}
|
|
1274
|
+
interface RBACRoleBindingActuationFeatureState {}
|
|
1266
1275
|
interface RBACRoleBindingLifecycleState {
|
|
1267
1276
|
/** Output only. The current state of the rbacrolebinding resource. */
|
|
1268
1277
|
code?: string;
|
|
@@ -1282,6 +1291,8 @@ declare namespace gapi.client {
|
|
|
1282
1291
|
v1beta1Crd?: boolean;
|
|
1283
1292
|
}
|
|
1284
1293
|
interface Role {
|
|
1294
|
+
/** Optional. custom_role is the name of a custom KubernetesClusterRole to use. */
|
|
1295
|
+
customRole?: string;
|
|
1285
1296
|
/** predefined_role is the Kubernetes default role to use */
|
|
1286
1297
|
predefinedRole?: string;
|
|
1287
1298
|
}
|
|
@@ -1351,7 +1362,7 @@ declare namespace gapi.client {
|
|
|
1351
1362
|
management?: string;
|
|
1352
1363
|
}
|
|
1353
1364
|
interface ServiceMeshMembershipState {
|
|
1354
|
-
/** Output only. List of conditions reported for this membership.
|
|
1365
|
+
/** Output only. List of conditions reported for this membership. */
|
|
1355
1366
|
conditions?: ServiceMeshCondition[];
|
|
1356
1367
|
/** Output only. Status of control plane management */
|
|
1357
1368
|
controlPlaneManagement?: ServiceMeshControlPlaneManagement;
|