@maxim_mazurok/gapi.client.gkehub-v1 0.0.20230407 → 0.0.20230424

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.
Files changed (3) hide show
  1. package/index.d.ts +1715 -858
  2. package/package.json +1 -1
  3. package/tests.ts +2 -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: 20230407
12
+ // Revision: 20230424
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -27,46 +27,59 @@ declare namespace gapi.client {
27
27
  }
28
28
  interface AppDevExperienceFeatureState {
29
29
  /** Status of subcomponent that detects configured Service Mesh resources. */
30
- networkingInstallSucceeded?: Status;
30
+ networkingInstallSucceeded?:
31
+ Status;
31
32
  }
32
33
  interface ApplianceCluster {
33
- /** Immutable. Self-link of the GCP resource for the Appliance Cluster. For example: //transferappliance.googleapis.com/projects/my-project/locations/us-west1-a/appliances/my-appliance */
34
- resourceLink?: string;
34
+ /**
35
+ * Immutable. Self-link of the Google Cloud resource for the Appliance Cluster. For example:
36
+ * //transferappliance.googleapis.com/projects/my-project/locations/us-west1-a/appliances/my-appliance
37
+ */
38
+ resourceLink?:
39
+ string;
35
40
  }
36
41
  interface AuditConfig {
37
42
  /** The configuration for logging of each type of permission. */
38
- auditLogConfigs?: AuditLogConfig[];
43
+ auditLogConfigs?:
44
+ AuditLogConfig[];
39
45
  /**
40
46
  * Specifies a service that will be enabled for audit logging. For example, `storage.googleapis.com`, `cloudsql.googleapis.com`. `allServices` is a special value that covers all
41
47
  * services.
42
48
  */
43
- service?: string;
49
+ service?:
50
+ string;
44
51
  }
45
52
  interface AuditLogConfig {
46
53
  /** Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members. */
47
- exemptedMembers?: string[];
54
+ exemptedMembers?:
55
+ string[];
48
56
  /** The log type that this config enables. */
49
- logType?: string;
57
+ logType?:
58
+ string;
50
59
  }
51
60
  interface Authority {
52
61
  /** Output only. An identity provider that reflects the `issuer` in the workload identity pool. */
53
- identityProvider?: string;
62
+ identityProvider?:
63
+ string;
54
64
  /**
55
65
  * Optional. A JSON Web Token (JWT) issuer URI. `issuer` must start with `https://` and be a valid URL with length <2000 characters. If set, then Google will allow valid OIDC tokens
56
66
  * from this issuer to authenticate within the workload_identity_pool. OIDC discovery will be performed on this URI to validate tokens from the issuer. Clearing `issuer` disables
57
67
  * Workload Identity. `issuer` cannot be directly modified; it must be cleared (and Workload Identity disabled) before using a new issuer (and re-enabling Workload Identity).
58
68
  */
59
- issuer?: string;
69
+ issuer?:
70
+ string;
60
71
  /**
61
72
  * Optional. OIDC verification keys for this Membership in JWKS format (RFC 7517). When this field is set, OIDC discovery will NOT be performed on `issuer`, and instead OIDC tokens
62
73
  * will be validated using this field.
63
74
  */
64
- oidcJwks?: string;
75
+ oidcJwks?:
76
+ string;
65
77
  /**
66
78
  * Output only. The name of the workload identity pool in which `issuer` will be recognized. There is a single Workload Identity Pool per Hub that is shared between all Memberships
67
79
  * that belong to that Hub. For a Hub hosted in {PROJECT_ID}, the workload pool format is `{PROJECT_ID}.hub.id.goog`, although this is subject to change in newer versions of this API.
68
80
  */
69
- workloadIdentityPool?: string;
81
+ workloadIdentityPool?:
82
+ string;
70
83
  }
71
84
  interface Binding {
72
85
  /**
@@ -74,7 +87,8 @@ declare namespace gapi.client {
74
87
  * then this binding does not apply to the current request. However, a different role binding might grant the same role to one or more of the principals in this binding. To learn which
75
88
  * resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
76
89
  */
77
- condition?: Expr;
90
+ condition?:
91
+ Expr;
78
92
  /**
79
93
  * Specifies the principals requesting access for a Google Cloud resource. `members` can have the following values: * `allUsers`: A special identifier that represents anyone who is on
80
94
  * the internet; with or without a Google account. * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service
@@ -91,310 +105,424 @@ declare namespace gapi.client {
91
105
  * has been recently deleted. For example, `admins@example.com?uid=123456789012345678901`. If the group is recovered, this value reverts to `group:{emailid}` and the recovered group
92
106
  * retains the role in the binding.
93
107
  */
94
- members?: string[];
108
+ members?:
109
+ string[];
95
110
  /** Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`. */
96
- role?: string;
111
+ role?:
112
+ string;
97
113
  }
98
114
  // tslint:disable-next-line:no-empty-interface
99
115
  interface CancelOperationRequest {
100
116
  }
101
117
  interface CommonFeatureSpec {
102
118
  /** Appdevexperience specific spec. */
103
- appdevexperience?: any;
119
+ appdevexperience?:
120
+ any;
104
121
  /** FleetObservability feature spec. */
105
- fleetobservability?: any;
122
+ fleetobservability?:
123
+ any;
106
124
  /** Multicluster Ingress-specific spec. */
107
- multiclusteringress?: MultiClusterIngressFeatureSpec;
125
+ multiclusteringress?:
126
+ MultiClusterIngressFeatureSpec;
108
127
  }
109
128
  interface CommonFeatureState {
110
129
  /** Appdevexperience specific state. */
111
- appdevexperience?: AppDevExperienceFeatureState;
130
+ appdevexperience?:
131
+ AppDevExperienceFeatureState;
112
132
  /** FleetObservability feature state. */
113
- fleetobservability?: any;
133
+ fleetobservability?:
134
+ any;
114
135
  /** Output only. The "running state" of the Feature in this Hub. */
115
- state?: FeatureState;
136
+ state?:
137
+ FeatureState;
116
138
  }
117
139
  // tslint:disable-next-line:no-empty-interface
118
140
  interface CommonFleetDefaultMemberConfigSpec {
119
141
  }
120
142
  interface ConfigManagementConfigSync {
121
143
  /** Set to true to allow the vertical scaling. Defaults to false which disallows vertical scaling. This field is deprecated. */
122
- allowVerticalScale?: boolean;
144
+ allowVerticalScale?:
145
+ boolean;
123
146
  /**
124
147
  * 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
125
148
  * ConfigSync fields will be ignored, ConfigSync resources will be deleted. If omitted, ConfigSync resources will be managed depends on the presence of git field.
126
149
  */
127
- enabled?: boolean;
150
+ enabled?:
151
+ boolean;
128
152
  /** Git repo configuration for the cluster. */
129
- git?: ConfigManagementGitConfig;
153
+ git?:
154
+ ConfigManagementGitConfig;
130
155
  /** Configuration for Managed Config Sync. */
131
- managed?: ConfigManagementManaged;
156
+ managed?:
157
+ ConfigManagementManaged;
132
158
  /** OCI repo configuration for the cluster */
133
- oci?: ConfigManagementOciConfig;
159
+ oci?:
160
+ ConfigManagementOciConfig;
134
161
  /** Set to true to enable the Config Sync admission webhook to prevent drifts. If set to `false`, disables the Config Sync admission webhook and does not prevent drifts. */
135
- preventDrift?: boolean;
162
+ preventDrift?:
163
+ boolean;
136
164
  /** Specifies whether the Config Sync Repo is in "hierarchical" or "unstructured" mode. */
137
- sourceFormat?: string;
165
+ sourceFormat?:
166
+ string;
138
167
  }
139
168
  interface ConfigManagementConfigSyncDeploymentState {
140
169
  /** Deployment state of admission-webhook */
141
- admissionWebhook?: string;
170
+ admissionWebhook?:
171
+ string;
142
172
  /** Deployment state of the git-sync pod */
143
- gitSync?: string;
173
+ gitSync?:
174
+ string;
144
175
  /** Deployment state of the importer pod */
145
- importer?: string;
176
+ importer?:
177
+ string;
146
178
  /** Deployment state of the monitor pod */
147
- monitor?: string;
179
+ monitor?:
180
+ string;
148
181
  /** Deployment state of reconciler-manager pod */
149
- reconcilerManager?: string;
182
+ reconcilerManager?:
183
+ string;
150
184
  /** Deployment state of root-reconciler */
151
- rootReconciler?: string;
185
+ rootReconciler?:
186
+ string;
152
187
  /** Deployment state of the syncer pod */
153
- syncer?: string;
188
+ syncer?:
189
+ string;
154
190
  }
155
191
  interface ConfigManagementConfigSyncState {
156
192
  /** Information about the deployment of ConfigSync, including the version of the various Pods deployed */
157
- deploymentState?: ConfigManagementConfigSyncDeploymentState;
193
+ deploymentState?:
194
+ ConfigManagementConfigSyncDeploymentState;
158
195
  /** The state of ConfigSync's process to sync configs to a cluster */
159
- syncState?: ConfigManagementSyncState;
196
+ syncState?:
197
+ ConfigManagementSyncState;
160
198
  /** The version of ConfigSync deployed */
161
- version?: ConfigManagementConfigSyncVersion;
199
+ version?:
200
+ ConfigManagementConfigSyncVersion;
162
201
  }
163
202
  interface ConfigManagementConfigSyncVersion {
164
203
  /** Version of the deployed admission_webhook pod */
165
- admissionWebhook?: string;
204
+ admissionWebhook?:
205
+ string;
166
206
  /** Version of the deployed git-sync pod */
167
- gitSync?: string;
207
+ gitSync?:
208
+ string;
168
209
  /** Version of the deployed importer pod */
169
- importer?: string;
210
+ importer?:
211
+ string;
170
212
  /** Version of the deployed monitor pod */
171
- monitor?: string;
213
+ monitor?:
214
+ string;
172
215
  /** Version of the deployed reconciler-manager pod */
173
- reconcilerManager?: string;
216
+ reconcilerManager?:
217
+ string;
174
218
  /** Version of the deployed reconciler container in root-reconciler pod */
175
- rootReconciler?: string;
219
+ rootReconciler?:
220
+ string;
176
221
  /** Version of the deployed syncer pod */
177
- syncer?: string;
222
+ syncer?:
223
+ string;
178
224
  }
179
225
  interface ConfigManagementErrorResource {
180
226
  /** Group/version/kind of the resource that is causing an error */
181
- resourceGvk?: ConfigManagementGroupVersionKind;
227
+ resourceGvk?:
228
+ ConfigManagementGroupVersionKind;
182
229
  /** Metadata name of the resource that is causing an error */
183
- resourceName?: string;
230
+ resourceName?:
231
+ string;
184
232
  /** Namespace of the resource that is causing an error */
185
- resourceNamespace?: string;
233
+ resourceNamespace?:
234
+ string;
186
235
  /** Path in the git repo of the erroneous config */
187
- sourcePath?: string;
236
+ sourcePath?:
237
+ string;
188
238
  }
189
239
  interface ConfigManagementGatekeeperDeploymentState {
190
240
  /** Status of gatekeeper-audit deployment. */
191
- gatekeeperAudit?: string;
241
+ gatekeeperAudit?:
242
+ string;
192
243
  /** Status of gatekeeper-controller-manager pod. */
193
- gatekeeperControllerManagerState?: string;
244
+ gatekeeperControllerManagerState?:
245
+ string;
194
246
  /** Status of the pod serving the mutation webhook. */
195
- gatekeeperMutation?: string;
247
+ gatekeeperMutation?:
248
+ string;
196
249
  }
197
250
  interface ConfigManagementGitConfig {
198
251
  /** The GCP Service Account Email used for auth when secret_type is gcpServiceAccount. */
199
- gcpServiceAccountEmail?: string;
252
+ gcpServiceAccountEmail?:
253
+ string;
200
254
  /** URL for the HTTPS proxy to be used when communicating with the Git repo. */
201
- httpsProxy?: string;
255
+ httpsProxy?:
256
+ string;
202
257
  /** The path within the Git repository that represents the top level of the repo to sync. Default: the root directory of the repository. */
203
- policyDir?: string;
258
+ policyDir?:
259
+ string;
204
260
  /** Type of secret configured for access to the Git repo. Must be one of ssh, cookiefile, gcenode, token, gcpserviceaccount or none. The validation of this is case-sensitive. Required. */
205
- secretType?: string;
261
+ secretType?:
262
+ string;
206
263
  /** The branch of the repository to sync from. Default: master. */
207
- syncBranch?: string;
264
+ syncBranch?:
265
+ string;
208
266
  /** The URL of the Git repository to use as the source of truth. */
209
- syncRepo?: string;
267
+ syncRepo?:
268
+ string;
210
269
  /** Git revision (tag or hash) to check out. Default HEAD. */
211
- syncRev?: string;
270
+ syncRev?:
271
+ string;
212
272
  /** Period in seconds between consecutive syncs. Default: 15. */
213
- syncWaitSecs?: string;
273
+ syncWaitSecs?:
274
+ string;
214
275
  }
215
276
  interface ConfigManagementGroupVersionKind {
216
277
  /** Kubernetes Group */
217
- group?: string;
278
+ group?:
279
+ string;
218
280
  /** Kubernetes Kind */
219
- kind?: string;
281
+ kind?:
282
+ string;
220
283
  /** Kubernetes Version */
221
- version?: string;
284
+ version?:
285
+ string;
222
286
  }
223
287
  interface ConfigManagementHierarchyControllerConfig {
224
288
  /** Whether Hierarchy Controller is enabled in this cluster. */
225
- enabled?: boolean;
289
+ enabled?:
290
+ boolean;
226
291
  /** Whether hierarchical resource quota is enabled in this cluster. */
227
- enableHierarchicalResourceQuota?: boolean;
292
+ enableHierarchicalResourceQuota?:
293
+ boolean;
228
294
  /** Whether pod tree labels are enabled in this cluster. */
229
- enablePodTreeLabels?: boolean;
295
+ enablePodTreeLabels?:
296
+ boolean;
230
297
  }
231
298
  interface ConfigManagementHierarchyControllerDeploymentState {
232
299
  /** The deployment state for Hierarchy Controller extension (e.g. v0.7.0-hc.1) */
233
- extension?: string;
300
+ extension?:
301
+ string;
234
302
  /** The deployment state for open source HNC (e.g. v0.7.0-hc.0) */
235
- hnc?: string;
303
+ hnc?:
304
+ string;
236
305
  }
237
306
  interface ConfigManagementHierarchyControllerState {
238
307
  /** The deployment state for Hierarchy Controller */
239
- state?: ConfigManagementHierarchyControllerDeploymentState;
308
+ state?:
309
+ ConfigManagementHierarchyControllerDeploymentState;
240
310
  /** The version for Hierarchy Controller */
241
- version?: ConfigManagementHierarchyControllerVersion;
311
+ version?:
312
+ ConfigManagementHierarchyControllerVersion;
242
313
  }
243
314
  interface ConfigManagementHierarchyControllerVersion {
244
315
  /** Version for Hierarchy Controller extension */
245
- extension?: string;
316
+ extension?:
317
+ string;
246
318
  /** Version for open source HNC */
247
- hnc?: string;
319
+ hnc?:
320
+ string;
248
321
  }
249
322
  interface ConfigManagementInstallError {
250
323
  /** A string representing the user facing error message */
251
- errorMessage?: string;
324
+ errorMessage?:
325
+ string;
252
326
  }
253
327
  interface ConfigManagementManaged {
254
328
  /** Set to true to enable Managed Config Sync. Defaults to false which disables Managed Config Sync. */
255
- enabled?: boolean;
329
+ enabled?:
330
+ boolean;
256
331
  }
257
332
  interface ConfigManagementMembershipSpec {
258
333
  /** Config Sync configuration for the cluster. */
259
- configSync?: ConfigManagementConfigSync;
334
+ configSync?:
335
+ ConfigManagementConfigSync;
260
336
  /** Hierarchy Controller configuration for the cluster. */
261
- hierarchyController?: ConfigManagementHierarchyControllerConfig;
337
+ hierarchyController?:
338
+ ConfigManagementHierarchyControllerConfig;
262
339
  /** Policy Controller configuration for the cluster. */
263
- policyController?: ConfigManagementPolicyController;
340
+ policyController?:
341
+ ConfigManagementPolicyController;
264
342
  /** Version of ACM installed. */
265
- version?: string;
343
+ version?:
344
+ string;
266
345
  }
267
346
  interface ConfigManagementMembershipState {
268
347
  /**
269
348
  * The user-defined name for the cluster used by ClusterSelectors to group clusters together. This should match Membership's membership_name, unless the user installed ACM on the
270
349
  * cluster manually prior to enabling the ACM hub feature. Unique within a Anthos Config Management installation.
271
350
  */
272
- clusterName?: string;
351
+ clusterName?:
352
+ string;
273
353
  /** Current sync status */
274
- configSyncState?: ConfigManagementConfigSyncState;
354
+ configSyncState?:
355
+ ConfigManagementConfigSyncState;
275
356
  /** Hierarchy Controller status */
276
- hierarchyControllerState?: ConfigManagementHierarchyControllerState;
357
+ hierarchyControllerState?:
358
+ ConfigManagementHierarchyControllerState;
277
359
  /** Membership configuration in the cluster. This represents the actual state in the cluster, while the MembershipSpec in the FeatureSpec represents the intended state */
278
- membershipSpec?: ConfigManagementMembershipSpec;
360
+ membershipSpec?:
361
+ ConfigManagementMembershipSpec;
279
362
  /** Current install status of ACM's Operator */
280
- operatorState?: ConfigManagementOperatorState;
363
+ operatorState?:
364
+ ConfigManagementOperatorState;
281
365
  /** PolicyController status */
282
- policyControllerState?: ConfigManagementPolicyControllerState;
366
+ policyControllerState?:
367
+ ConfigManagementPolicyControllerState;
283
368
  }
284
369
  interface ConfigManagementOciConfig {
285
370
  /** The GCP Service Account Email used for auth when secret_type is gcpServiceAccount. */
286
- gcpServiceAccountEmail?: string;
371
+ gcpServiceAccountEmail?:
372
+ string;
287
373
  /** The absolute path of the directory that contains the local resources. Default: the root directory of the image. */
288
- policyDir?: string;
374
+ policyDir?:
375
+ string;
289
376
  /** Type of secret configured for access to the Git repo. */
290
- secretType?: string;
377
+ secretType?:
378
+ string;
291
379
  /** The OCI image repository URL for the package to sync from. e.g. `LOCATION-docker.pkg.dev/PROJECT_ID/REPOSITORY_NAME/PACKAGE_NAME`. */
292
- syncRepo?: string;
380
+ syncRepo?:
381
+ string;
293
382
  /** Period in seconds between consecutive syncs. Default: 15. */
294
- syncWaitSecs?: string;
383
+ syncWaitSecs?:
384
+ string;
295
385
  }
296
386
  interface ConfigManagementOperatorState {
297
387
  /** The state of the Operator's deployment */
298
- deploymentState?: string;
388
+ deploymentState?:
389
+ string;
299
390
  /** Install errors. */
300
- errors?: ConfigManagementInstallError[];
391
+ errors?:
392
+ ConfigManagementInstallError[];
301
393
  /** The semenatic version number of the operator */
302
- version?: string;
394
+ version?:
395
+ string;
303
396
  }
304
397
  interface ConfigManagementPolicyController {
305
398
  /** Sets the interval for Policy Controller Audit Scans (in seconds). When set to 0, this disables audit functionality altogether. */
306
- auditIntervalSeconds?: string;
399
+ auditIntervalSeconds?:
400
+ string;
307
401
  /** Enables the installation of Policy Controller. If false, the rest of PolicyController fields take no effect. */
308
- enabled?: boolean;
402
+ enabled?:
403
+ boolean;
309
404
  /** The set of namespaces that are excluded from Policy Controller checks. Namespaces do not need to currently exist on the cluster. */
310
- exemptableNamespaces?: string[];
405
+ exemptableNamespaces?:
406
+ string[];
311
407
  /** Logs all denies and dry run failures. */
312
- logDeniesEnabled?: boolean;
408
+ logDeniesEnabled?:
409
+ boolean;
313
410
  /** Monitoring specifies the configuration of monitoring. */
314
- monitoring?: ConfigManagementPolicyControllerMonitoring;
411
+ monitoring?:
412
+ ConfigManagementPolicyControllerMonitoring;
315
413
  /** Enable or disable mutation in policy controller. If true, mutation CRDs, webhook and controller deployment will be deployed to the cluster. */
316
- mutationEnabled?: boolean;
414
+ mutationEnabled?:
415
+ boolean;
317
416
  /** Enables the ability to use Constraint Templates that reference to objects other than the object currently being evaluated. */
318
- referentialRulesEnabled?: boolean;
417
+ referentialRulesEnabled?:
418
+ boolean;
319
419
  /** Installs the default template library along with Policy Controller. */
320
- templateLibraryInstalled?: boolean;
420
+ templateLibraryInstalled?:
421
+ boolean;
321
422
  }
322
423
  interface ConfigManagementPolicyControllerMigration {
323
424
  /** Stage of the migration. */
324
- stage?: string;
425
+ stage?:
426
+ string;
325
427
  }
326
428
  interface ConfigManagementPolicyControllerMonitoring {
327
429
  /** Specifies the list of backends Policy Controller will export to. An empty list would effectively disable metrics export. */
328
- backends?: string[];
430
+ backends?:
431
+ string[];
329
432
  }
330
433
  interface ConfigManagementPolicyControllerState {
331
434
  /** The state about the policy controller installation. */
332
- deploymentState?: ConfigManagementGatekeeperDeploymentState;
435
+ deploymentState?:
436
+ ConfigManagementGatekeeperDeploymentState;
333
437
  /** Record state of ACM -> PoCo Hub migration for this feature. */
334
- migration?: ConfigManagementPolicyControllerMigration;
438
+ migration?:
439
+ ConfigManagementPolicyControllerMigration;
335
440
  /** The version of Gatekeeper Policy Controller deployed. */
336
- version?: ConfigManagementPolicyControllerVersion;
441
+ version?:
442
+ ConfigManagementPolicyControllerVersion;
337
443
  }
338
444
  interface ConfigManagementPolicyControllerVersion {
339
445
  /** The gatekeeper image tag that is composed of ACM version, git tag, build number. */
340
- version?: string;
446
+ version?:
447
+ string;
341
448
  }
342
449
  interface ConfigManagementSyncError {
343
450
  /** An ACM defined error code */
344
- code?: string;
451
+ code?:
452
+ string;
345
453
  /** A description of the error */
346
- errorMessage?: string;
454
+ errorMessage?:
455
+ string;
347
456
  /** A list of config(s) associated with the error, if any */
348
- errorResources?: ConfigManagementErrorResource[];
457
+ errorResources?:
458
+ ConfigManagementErrorResource[];
349
459
  }
350
460
  interface ConfigManagementSyncState {
351
461
  /** Sync status code */
352
- code?: string;
462
+ code?:
463
+ string;
353
464
  /** A list of errors resulting from problematic configs. This list will be truncated after 100 errors, although it is unlikely for that many errors to simultaneously exist. */
354
- errors?: ConfigManagementSyncError[];
465
+ errors?:
466
+ ConfigManagementSyncError[];
355
467
  /** Token indicating the state of the importer. */
356
- importToken?: string;
468
+ importToken?:
469
+ string;
357
470
  /** Deprecated: use last_sync_time instead. Timestamp of when ACM last successfully synced the repo The time format is specified in https://golang.org/pkg/time/#Time.String */
358
- lastSync?: string;
471
+ lastSync?:
472
+ string;
359
473
  /** Timestamp type of when ACM last successfully synced the repo */
360
- lastSyncTime?: string;
474
+ lastSyncTime?:
475
+ string;
361
476
  /** Token indicating the state of the repo. */
362
- sourceToken?: string;
477
+ sourceToken?:
478
+ string;
363
479
  /** Token indicating the state of the syncer. */
364
- syncToken?: string;
480
+ syncToken?:
481
+ string;
365
482
  }
366
483
  interface ConnectAgentResource {
367
484
  /** YAML manifest of the resource. */
368
- manifest?: string;
485
+ manifest?:
486
+ string;
369
487
  /** Kubernetes type of the resource. */
370
- type?: TypeMeta;
488
+ type?:
489
+ TypeMeta;
371
490
  }
372
491
  interface EdgeCluster {
373
- /** Immutable. Self-link of the GCP resource for the Edge Cluster. For example: //edgecontainer.googleapis.com/projects/my-project/locations/us-west1-a/clusters/my-cluster */
374
- resourceLink?: string;
492
+ /** Immutable. Self-link of the Google Cloud resource for the Edge Cluster. For example: //edgecontainer.googleapis.com/projects/my-project/locations/us-west1-a/clusters/my-cluster */
493
+ resourceLink?:
494
+ string;
375
495
  }
376
496
  // tslint:disable-next-line:no-empty-interface
377
497
  interface Empty {
378
498
  }
379
499
  interface Expr {
380
500
  /** Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI. */
381
- description?: string;
501
+ description?:
502
+ string;
382
503
  /** Textual representation of an expression in Common Expression Language syntax. */
383
- expression?: string;
504
+ expression?:
505
+ string;
384
506
  /** Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file. */
385
- location?: string;
507
+ location?:
508
+ string;
386
509
  /** Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression. */
387
- title?: string;
510
+ title?:
511
+ string;
388
512
  }
389
513
  interface Feature {
390
514
  /** Output only. When the Feature resource was created. */
391
- createTime?: string;
515
+ createTime?:
516
+ string;
392
517
  /** Output only. When the Feature resource was deleted. */
393
- deleteTime?: string;
518
+ deleteTime?:
519
+ string;
394
520
  /** Optional. Feature configuration applicable to all memberships of the fleet. */
395
- fleetDefaultMemberConfig?: any;
396
- /** GCP labels for this Feature. */
397
- labels?: { [P in string]: string };
521
+ fleetDefaultMemberConfig?:
522
+ any;
523
+ /** Labels for this Feature. */
524
+ labels?:
525
+ { [P in string]: string };
398
526
  /**
399
527
  * Optional. Membership-specific configuration for this Feature. If this Feature does not support any per-Membership configuration, this field may be unused. The keys indicate which
400
528
  * Membership the configuration is for, in the form: `projects/{p}/locations/{l}/memberships/{m}` Where {p} is the project, {l} is a valid location and {m} is a valid Membership in
@@ -402,17 +530,21 @@ declare namespace gapi.client {
402
530
  * Membership is specified in the map twice (using the project ID form, and the project number form), exactly ONE of the entries will be saved, with no guarantees as to which. For this
403
531
  * reason, it is recommended the same format be used for all entries when mutating a Feature.
404
532
  */
405
- membershipSpecs?: { [P in string]: MembershipFeatureSpec };
533
+ membershipSpecs?:
534
+ { [P in string]: MembershipFeatureSpec };
406
535
  /**
407
536
  * Output only. Membership-specific Feature status. If this Feature does report any per-Membership status, this field may be unused. The keys indicate which Membership the state is
408
537
  * for, in the form: `projects/{p}/locations/{l}/memberships/{m}` Where {p} is the project number, {l} is a valid location and {m} is a valid Membership in this project at that
409
538
  * location. {p} MUST match the Feature's project number.
410
539
  */
411
- membershipStates?: { [P in string]: MembershipFeatureState };
540
+ membershipStates?:
541
+ { [P in string]: MembershipFeatureState };
412
542
  /** Output only. The full, unique name of this Feature resource in the format `projects/*‍/locations/*‍/features/*`. */
413
- name?: string;
543
+ name?:
544
+ string;
414
545
  /** Output only. State of the Feature resource itself. */
415
- resourceState?: FeatureResourceState;
546
+ resourceState?:
547
+ FeatureResourceState;
416
548
  /**
417
549
  * Optional. Scope-specific configuration for this Feature. If this Feature does not support any per-Scope configuration, this field may be unused. The keys indicate which Scope the
418
550
  * configuration 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.
@@ -420,30 +552,39 @@ declare namespace gapi.client {
420
552
  * the project number form), exactly ONE of the entries will be saved, with no guarantees as to which. For this reason, it is recommended the same format be used for all entries when
421
553
  * mutating a Feature.
422
554
  */
423
- scopeSpecs?: { [P in string]: any };
555
+ scopeSpecs?:
556
+ { [P in string]: any };
424
557
  /**
425
558
  * 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:
426
559
  * `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.
427
560
  */
428
- scopeStates?: { [P in string]: ScopeFeatureState };
561
+ scopeStates?:
562
+ { [P in string]: ScopeFeatureState };
429
563
  /** Optional. Hub-wide Feature configuration. If this Feature does not support any Hub-wide configuration, this field may be unused. */
430
- spec?: CommonFeatureSpec;
564
+ spec?:
565
+ CommonFeatureSpec;
431
566
  /** Output only. The Hub-wide Feature state. */
432
- state?: CommonFeatureState;
567
+ state?:
568
+ CommonFeatureState;
433
569
  /** Output only. When the Feature resource was last updated. */
434
- updateTime?: string;
570
+ updateTime?:
571
+ string;
435
572
  }
436
573
  interface FeatureResourceState {
437
574
  /** The current state of the Feature resource in the Hub API. */
438
- state?: string;
575
+ state?:
576
+ string;
439
577
  }
440
578
  interface FeatureState {
441
579
  /** The high-level, machine-readable status of this Feature. */
442
- code?: string;
580
+ code?:
581
+ string;
443
582
  /** A human-readable description of the current status. */
444
- description?: string;
583
+ description?:
584
+ string;
445
585
  /** The time this status and any related Feature-specific details were updated. */
446
- updateTime?: string;
586
+ updateTime?:
587
+ string;
447
588
  }
448
589
  // tslint:disable-next-line:no-empty-interface
449
590
  interface FleetObservabilityFeatureSpec {
@@ -459,119 +600,161 @@ declare namespace gapi.client {
459
600
  }
460
601
  interface GenerateConnectManifestResponse {
461
602
  /** The ordered list of Kubernetes resources that need to be applied to the cluster for GKE Connect agent installation/upgrade. */
462
- manifest?: ConnectAgentResource[];
603
+ manifest?:
604
+ ConnectAgentResource[];
463
605
  }
464
606
  interface GkeCluster {
465
607
  /** Output only. If cluster_missing is set then it denotes that the GKE cluster no longer exists in the GKE Control Plane. */
466
- clusterMissing?: boolean;
608
+ clusterMissing?:
609
+ boolean;
467
610
  /**
468
- * Immutable. Self-link of the GCP resource for the GKE cluster. For example: //container.googleapis.com/projects/my-project/locations/us-west1-a/clusters/my-cluster Zonal clusters are
469
- * also supported.
611
+ * Immutable. Self-link of the Google Cloud resource for the GKE cluster. For example: //container.googleapis.com/projects/my-project/locations/us-west1-a/clusters/my-cluster Zonal
612
+ * clusters are also supported.
470
613
  */
471
- resourceLink?: string;
614
+ resourceLink?:
615
+ string;
472
616
  }
473
617
  interface GoogleRpcStatus {
474
618
  /** The status code, which should be an enum value of google.rpc.Code. */
475
- code?: number;
619
+ code?:
620
+ number;
476
621
  /** A list of messages that carry the error details. There is a common set of message types for APIs to use. */
477
- details?: Array<{ [P in string]: any }>;
622
+ details?:
623
+ Array<{ [P in string]: any }>;
478
624
  /**
479
625
  * A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the
480
626
  * client.
481
627
  */
482
- message?: string;
628
+ message?:
629
+ string;
483
630
  }
484
631
  interface IdentityServiceAuthMethod {
485
632
  /** AzureAD specific Configuration. */
486
- azureadConfig?: IdentityServiceAzureADConfig;
633
+ azureadConfig?:
634
+ IdentityServiceAzureADConfig;
487
635
  /** GoogleConfig specific configuration */
488
- googleConfig?: IdentityServiceGoogleConfig;
636
+ googleConfig?:
637
+ IdentityServiceGoogleConfig;
489
638
  /** Identifier for auth config. */
490
- name?: string;
639
+ name?:
640
+ string;
491
641
  /** OIDC specific configuration. */
492
- oidcConfig?: IdentityServiceOidcConfig;
642
+ oidcConfig?:
643
+ IdentityServiceOidcConfig;
493
644
  /** Proxy server address to use for auth method. */
494
- proxy?: string;
645
+ proxy?:
646
+ string;
495
647
  }
496
648
  interface IdentityServiceAzureADConfig {
497
649
  /** ID for the registered client application that makes authentication requests to the Azure AD identity provider. */
498
- clientId?: string;
650
+ clientId?:
651
+ string;
499
652
  /** Input only. Unencrypted AzureAD client secret will be passed to the GKE Hub CLH. */
500
- clientSecret?: string;
653
+ clientSecret?:
654
+ string;
501
655
  /** Output only. Encrypted AzureAD client secret. */
502
- encryptedClientSecret?: string;
656
+ encryptedClientSecret?:
657
+ string;
503
658
  /** The redirect URL that kubectl uses for authorization. */
504
- kubectlRedirectUri?: string;
659
+ kubectlRedirectUri?:
660
+ string;
505
661
  /** Kind of Azure AD account to be authenticated. Supported values are or for accounts belonging to a specific tenant. */
506
- tenant?: string;
662
+ tenant?:
663
+ string;
507
664
  }
508
665
  interface IdentityServiceGoogleConfig {
509
666
  /** Disable automatic configuration of Google Plugin on supported platforms. */
510
- disable?: boolean;
667
+ disable?:
668
+ boolean;
511
669
  }
512
670
  interface IdentityServiceMembershipSpec {
513
671
  /** A member may support multiple auth methods. */
514
- authMethods?: IdentityServiceAuthMethod[];
672
+ authMethods?:
673
+ IdentityServiceAuthMethod[];
515
674
  }
516
675
  interface IdentityServiceMembershipState {
517
676
  /** The reason of the failure. */
518
- failureReason?: string;
677
+ failureReason?:
678
+ string;
519
679
  /** Installed AIS version. This is the AIS version installed on this member. The values makes sense iff state is OK. */
520
- installedVersion?: string;
680
+ installedVersion?:
681
+ string;
521
682
  /** Last reconciled membership configuration */
522
- memberConfig?: IdentityServiceMembershipSpec;
683
+ memberConfig?:
684
+ IdentityServiceMembershipSpec;
523
685
  /** Deployment state on this member */
524
- state?: string;
686
+ state?:
687
+ string;
525
688
  }
526
689
  interface IdentityServiceOidcConfig {
527
690
  /** PEM-encoded CA for OIDC provider. */
528
- certificateAuthorityData?: string;
691
+ certificateAuthorityData?:
692
+ string;
529
693
  /** ID for OIDC client application. */
530
- clientId?: string;
694
+ clientId?:
695
+ string;
531
696
  /** Input only. Unencrypted OIDC client secret will be passed to the GKE Hub CLH. */
532
- clientSecret?: string;
697
+ clientSecret?:
698
+ string;
533
699
  /** Flag to denote if reverse proxy is used to connect to auth provider. This flag should be set to true when provider is not reachable by Google Cloud Console. */
534
- deployCloudConsoleProxy?: boolean;
700
+ deployCloudConsoleProxy?:
701
+ boolean;
535
702
  /** Enable access token. */
536
- enableAccessToken?: boolean;
703
+ enableAccessToken?:
704
+ boolean;
537
705
  /** Output only. Encrypted OIDC Client secret */
538
- encryptedClientSecret?: string;
706
+ encryptedClientSecret?:
707
+ string;
539
708
  /** Comma-separated list of key-value pairs. */
540
- extraParams?: string;
709
+ extraParams?:
710
+ string;
541
711
  /** Prefix to prepend to group name. */
542
- groupPrefix?: string;
712
+ groupPrefix?:
713
+ string;
543
714
  /** Claim in OIDC ID token that holds group information. */
544
- groupsClaim?: string;
715
+ groupsClaim?:
716
+ string;
545
717
  /** URI for the OIDC provider. This should point to the level below .well-known/openid-configuration. */
546
- issuerUri?: string;
718
+ issuerUri?:
719
+ string;
547
720
  /** Registered redirect uri to redirect users going through OAuth flow using kubectl plugin. */
548
- kubectlRedirectUri?: string;
721
+ kubectlRedirectUri?:
722
+ string;
549
723
  /** Comma-separated list of identifiers. */
550
- scopes?: string;
724
+ scopes?:
725
+ string;
551
726
  /** Claim in OIDC ID token that holds username. */
552
- userClaim?: string;
727
+ userClaim?:
728
+ string;
553
729
  /** Prefix to prepend to user name. */
554
- userPrefix?: string;
730
+ userPrefix?:
731
+ string;
555
732
  }
556
733
  interface KubernetesMetadata {
557
734
  /** Output only. Kubernetes API server version string as reported by `/version`. */
558
- kubernetesApiServerVersion?: string;
735
+ kubernetesApiServerVersion?:
736
+ string;
559
737
  /** Output only. The total memory capacity as reported by the sum of all Kubernetes nodes resources, defined in MB. */
560
- memoryMb?: number;
738
+ memoryMb?:
739
+ number;
561
740
  /** Output only. Node count as reported by Kubernetes nodes resources. */
562
- nodeCount?: number;
741
+ nodeCount?:
742
+ number;
563
743
  /**
564
744
  * Output only. Node providerID as reported by the first node in the list of nodes on the Kubernetes endpoint. On Kubernetes platforms that support zero-node clusters (like
565
745
  * GKE-on-GCP), the node_count will be zero and the node_provider_id will be empty.
566
746
  */
567
- nodeProviderId?: string;
747
+ nodeProviderId?:
748
+ string;
568
749
  /**
569
750
  * Output only. The time at which these details were last updated. This update_time is different from the Membership-level update_time since EndpointDetails are updated internally for
570
751
  * API consumers.
571
752
  */
572
- updateTime?: string;
753
+ updateTime?:
754
+ string;
573
755
  /** Output only. vCPU count as reported by Kubernetes nodes resources. */
574
- vcpuCount?: number;
756
+ vcpuCount?:
757
+ number;
575
758
  }
576
759
  interface KubernetesResource {
577
760
  /**
@@ -579,292 +762,384 @@ declare namespace gapi.client {
579
762
  * CreateMembership or UpdateMembership. It is not populated during normal GetMembership or ListMemberships requests. To get the resource manifest after the initial registration, the
580
763
  * caller should make a UpdateMembership call with an empty field mask.
581
764
  */
582
- connectResources?: ResourceManifest[];
765
+ connectResources?:
766
+ ResourceManifest[];
583
767
  /**
584
768
  * Input only. The YAML representation of the Membership CR. This field is ignored for GKE clusters where Hub can read the CR directly. Callers should provide the CR that is currently
585
769
  * present in the cluster during CreateMembership or UpdateMembership, or leave this field empty if none exists. The CR manifest is used to validate the cluster has not been registered
586
770
  * with another Membership.
587
771
  */
588
- membershipCrManifest?: string;
772
+ membershipCrManifest?:
773
+ string;
589
774
  /**
590
775
  * Output only. Additional Kubernetes resources that need to be applied to the cluster after Membership creation, and after every update. This field is only populated in the Membership
591
776
  * returned from a successful long-running operation from CreateMembership or UpdateMembership. It is not populated during normal GetMembership or ListMemberships requests. To get the
592
777
  * resource manifest after the initial registration, the caller should make a UpdateMembership call with an empty field mask.
593
778
  */
594
- membershipResources?: ResourceManifest[];
779
+ membershipResources?:
780
+ ResourceManifest[];
595
781
  /** Optional. Options for Kubernetes resource generation. */
596
- resourceOptions?: ResourceOptions;
782
+ resourceOptions?:
783
+ ResourceOptions;
597
784
  }
598
785
  interface ListFeaturesResponse {
599
786
  /** A token to request the next page of resources from the `ListFeatures` method. The value of an empty string means that there are no more resources to return. */
600
- nextPageToken?: string;
787
+ nextPageToken?:
788
+ string;
601
789
  /** The list of matching Features */
602
- resources?: Feature[];
790
+ resources?:
791
+ Feature[];
603
792
  }
604
793
  interface ListLocationsResponse {
605
794
  /** A list of locations that matches the specified filter in the request. */
606
- locations?: Location[];
795
+ locations?:
796
+ Location[];
607
797
  /** The standard List next-page token. */
608
- nextPageToken?: string;
798
+ nextPageToken?:
799
+ string;
609
800
  }
610
801
  interface ListMembershipBindingsResponse {
611
802
  /** The list of membership_bindings */
612
- membershipBindings?: MembershipBinding[];
803
+ membershipBindings?:
804
+ MembershipBinding[];
613
805
  /** A token to request the next page of resources from the `ListMembershipBindings` method. The value of an empty string means that there are no more resources to return. */
614
- nextPageToken?: string;
806
+ nextPageToken?:
807
+ string;
615
808
  }
616
809
  interface ListMembershipsResponse {
617
810
  /** A token to request the next page of resources from the `ListMemberships` method. The value of an empty string means that there are no more resources to return. */
618
- nextPageToken?: string;
811
+ nextPageToken?:
812
+ string;
619
813
  /** The list of matching Memberships. */
620
- resources?: Membership[];
814
+ resources?:
815
+ Membership[];
621
816
  /** List of locations that could not be reached while fetching this list. */
622
- unreachable?: string[];
817
+ unreachable?:
818
+ string[];
623
819
  }
624
820
  interface ListOperationsResponse {
625
821
  /** The standard List next-page token. */
626
- nextPageToken?: string;
822
+ nextPageToken?:
823
+ string;
627
824
  /** A list of operations that matches the specified filter in the request. */
628
- operations?: Operation[];
825
+ operations?:
826
+ Operation[];
629
827
  }
630
828
  interface ListScopesResponse {
631
829
  /** A token to request the next page of resources from the `ListScopes` method. The value of an empty string means that there are no more resources to return. */
632
- nextPageToken?: string;
830
+ nextPageToken?:
831
+ string;
633
832
  /** The list of Scopes */
634
- scopes?: Scope[];
833
+ scopes?:
834
+ Scope[];
635
835
  }
636
836
  interface Location {
637
837
  /** The friendly name for this location, typically a nearby city name. For example, "Tokyo". */
638
- displayName?: string;
838
+ displayName?:
839
+ string;
639
840
  /** Cross-service attributes for the location. For example {"cloud.googleapis.com/region": "us-east1"} */
640
- labels?: { [P in string]: string };
841
+ labels?:
842
+ { [P in string]: string };
641
843
  /** The canonical id for this location. For example: `"us-east1"`. */
642
- locationId?: string;
844
+ locationId?:
845
+ string;
643
846
  /** Service-specific metadata. For example the available capacity at the given location. */
644
- metadata?: { [P in string]: any };
847
+ metadata?:
848
+ { [P in string]: any };
645
849
  /** Resource name for the location, which may vary between implementations. For example: `"projects/example-project/locations/us-east1"` */
646
- name?: string;
850
+ name?:
851
+ string;
647
852
  }
648
853
  interface Membership {
649
854
  /**
650
855
  * Optional. How to identify workloads from this Membership. See the documentation on Workload Identity for more details:
651
856
  * https://cloud.google.com/kubernetes-engine/docs/how-to/workload-identity
652
857
  */
653
- authority?: Authority;
858
+ authority?:
859
+ Authority;
654
860
  /** Output only. When the Membership was created. */
655
- createTime?: string;
861
+ createTime?:
862
+ string;
656
863
  /** Output only. When the Membership was deleted. */
657
- deleteTime?: string;
864
+ deleteTime?:
865
+ string;
658
866
  /** Output only. Description of this membership, limited to 63 characters. Must match the regex: `a-zA-Z0-9*` This field is present for legacy purposes. */
659
- description?: string;
867
+ description?:
868
+ string;
660
869
  /** Optional. Endpoint information to reach this member. */
661
- endpoint?: MembershipEndpoint;
870
+ endpoint?:
871
+ MembershipEndpoint;
662
872
  /**
663
873
  * 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*`
664
874
  * If this Membership represents a Kubernetes cluster, this value should be set to the UID of the `kube-system` namespace object.
665
875
  */
666
- externalId?: string;
667
- /** Optional. GCP labels for this membership. */
668
- labels?: { [P in string]: string };
876
+ externalId?:
877
+ string;
878
+ /** Optional. Labels for this membership. */
879
+ labels?:
880
+ { [P in string]: string };
669
881
  /**
670
882
  * 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
671
883
  * clusters that do not use GKE Connect, or that have never connected successfully, this field will be unset.
672
884
  */
673
- lastConnectionTime?: string;
885
+ lastConnectionTime?:
886
+ string;
674
887
  /** Optional. The monitoring config information for this membership. */
675
- monitoringConfig?: MonitoringConfig;
888
+ monitoringConfig?:
889
+ MonitoringConfig;
676
890
  /**
677
891
  * Output only. The full, unique name of this Membership resource in the format `projects/*‍/locations/*‍/memberships/{membership_id}`, set during creation. `membership_id` must be a
678
892
  * valid RFC 1123 compliant DNS label: 1. At most 63 characters in length 2. It must consist of lower case alphanumeric characters or `-` 3. It must start and end with an alphanumeric
679
893
  * character Which can be expressed as the regex: `[a-z0-9]([-a-z0-9]*[a-z0-9])?`, with a maximum length of 63 characters.
680
894
  */
681
- name?: string;
895
+ name?:
896
+ string;
682
897
  /** Output only. State of the Membership resource. */
683
- state?: MembershipState;
898
+ state?:
899
+ MembershipState;
684
900
  /**
685
901
  * Output only. Google-generated UUID for this resource. This is unique across all Membership resources. If a Membership resource is deleted and another resource with the same name is
686
902
  * created, it gets a different unique_id.
687
903
  */
688
- uniqueId?: string;
904
+ uniqueId?:
905
+ string;
689
906
  /** Output only. When the Membership was last updated. */
690
- updateTime?: string;
907
+ updateTime?:
908
+ string;
691
909
  }
692
910
  interface MembershipBinding {
693
911
  /** Output only. When the membership binding was created. */
694
- createTime?: string;
912
+ createTime?:
913
+ string;
695
914
  /** Output only. When the membership binding was deleted. */
696
- deleteTime?: string;
915
+ deleteTime?:
916
+ string;
697
917
  /** Whether the membershipbinding is Fleet-wide; true means that this Membership should be bound to all Namespaces in this entire Fleet. */
698
- fleet?: boolean;
918
+ fleet?:
919
+ boolean;
699
920
  /** The resource name for the membershipbinding itself `projects/{project}/locations/{location}/memberships/{membership}/bindings/{membershipbinding}` */
700
- name?: string;
921
+ name?:
922
+ string;
701
923
  /** A Workspace resource name in the format `projects/*‍/locations/*‍/scopes/*`. */
702
- scope?: string;
924
+ scope?:
925
+ string;
703
926
  /** Output only. State of the membership binding resource. */
704
- state?: MembershipBindingLifecycleState;
927
+ state?:
928
+ MembershipBindingLifecycleState;
705
929
  /**
706
930
  * Output only. Google-generated UUID for this resource. This is unique across all membershipbinding resources. If a membershipbinding resource is deleted and another resource with the
707
931
  * same name is created, it gets a different uid.
708
932
  */
709
- uid?: string;
933
+ uid?:
934
+ string;
710
935
  /** Output only. When the membership binding was last updated. */
711
- updateTime?: string;
936
+ updateTime?:
937
+ string;
712
938
  }
713
939
  interface MembershipBindingLifecycleState {
714
940
  /** Output only. The current state of the MembershipBinding resource. */
715
- code?: string;
941
+ code?:
942
+ string;
716
943
  }
717
944
  interface MembershipEndpoint {
718
945
  /** Optional. Specific information for a GDC Edge Appliance cluster. */
719
- applianceCluster?: ApplianceCluster;
946
+ applianceCluster?:
947
+ ApplianceCluster;
720
948
  /** Optional. Specific information for a Google Edge cluster. */
721
- edgeCluster?: EdgeCluster;
949
+ edgeCluster?:
950
+ EdgeCluster;
722
951
  /** Optional. Specific information for a GKE-on-GCP cluster. */
723
- gkeCluster?: GkeCluster;
952
+ gkeCluster?:
953
+ GkeCluster;
724
954
  /** Output only. Whether the lifecycle of this membership is managed by a google cluster platform service. */
725
- googleManaged?: boolean;
955
+ googleManaged?:
956
+ boolean;
726
957
  /** Output only. Useful Kubernetes-specific metadata. */
727
- kubernetesMetadata?: KubernetesMetadata;
958
+ kubernetesMetadata?:
959
+ KubernetesMetadata;
728
960
  /**
729
961
  * Optional. The in-cluster Kubernetes Resources that should be applied for a correctly registered cluster, in the steady state. These resources: * Ensure that the cluster is
730
962
  * exclusively registered to one and only one Hub Membership. * Propagate Workload Pool Information available in the Membership Authority field. * Ensure proper initial configuration
731
963
  * of default Hub Features.
732
964
  */
733
- kubernetesResource?: KubernetesResource;
965
+ kubernetesResource?:
966
+ KubernetesResource;
734
967
  /** Optional. Specific information for a GKE Multi-Cloud cluster. */
735
- multiCloudCluster?: MultiCloudCluster;
968
+ multiCloudCluster?:
969
+ MultiCloudCluster;
736
970
  /** Optional. Specific information for a GKE On-Prem cluster. An onprem user-cluster who has no resourceLink is not allowed to use this field, it should have a nil "type" instead. */
737
- onPremCluster?: OnPremCluster;
971
+ onPremCluster?:
972
+ OnPremCluster;
738
973
  }
739
974
  interface MembershipFeatureSpec {
740
975
  /** Config Management-specific spec. */
741
- configmanagement?: ConfigManagementMembershipSpec;
976
+ configmanagement?:
977
+ ConfigManagementMembershipSpec;
742
978
  /** True if value of `feature_spec` was inherited from a fleet-level default. */
743
- fleetInherited?: boolean;
979
+ fleetInherited?:
980
+ boolean;
744
981
  /** Fleet observability membership spec */
745
- fleetobservability?: any;
982
+ fleetobservability?:
983
+ any;
746
984
  /** Identity Service-specific spec. */
747
- identityservice?: IdentityServiceMembershipSpec;
985
+ identityservice?:
986
+ IdentityServiceMembershipSpec;
748
987
  /** Anthos Service Mesh-specific spec */
749
- mesh?: ServiceMeshMembershipSpec;
988
+ mesh?:
989
+ ServiceMeshMembershipSpec;
750
990
  }
751
991
  interface MembershipFeatureState {
752
992
  /** Appdevexperience specific state. */
753
- appdevexperience?: AppDevExperienceFeatureState;
993
+ appdevexperience?:
994
+ AppDevExperienceFeatureState;
754
995
  /** Config Management-specific state. */
755
- configmanagement?: ConfigManagementMembershipState;
996
+ configmanagement?:
997
+ ConfigManagementMembershipState;
756
998
  /** Fleet observability membership state. */
757
- fleetobservability?: any;
999
+ fleetobservability?:
1000
+ any;
758
1001
  /** Identity Service-specific state. */
759
- identityservice?: IdentityServiceMembershipState;
1002
+ identityservice?:
1003
+ IdentityServiceMembershipState;
760
1004
  /** Service Mesh-specific state. */
761
- servicemesh?: ServiceMeshMembershipState;
1005
+ servicemesh?:
1006
+ ServiceMeshMembershipState;
762
1007
  /** The high-level state of this Feature for a single membership. */
763
- state?: FeatureState;
1008
+ state?:
1009
+ FeatureState;
764
1010
  }
765
1011
  interface MembershipState {
766
1012
  /** Output only. The current state of the Membership resource. */
767
- code?: string;
1013
+ code?:
1014
+ string;
768
1015
  }
769
1016
  interface MonitoringConfig {
770
1017
  /**
771
1018
  * Immutable. Cluster name used to report metrics. For Anthos on VMWare/Baremetal, it would be in format `memberClusters/cluster_name`; And for Anthos on MultiCloud, it would be in
772
1019
  * format `{azureClusters, awsClusters}/cluster_name`.
773
1020
  */
774
- cluster?: string;
1021
+ cluster?:
1022
+ string;
775
1023
  /**
776
1024
  * Immutable. Cluster hash, this is a unique string generated by google code, which does not contain any PII, which we can use to reference the cluster. This is expected to be created
777
1025
  * by the monitoring stack and persisted into the Cluster object as well as to GKE-Hub.
778
1026
  */
779
- clusterHash?: string;
1027
+ clusterHash?:
1028
+ string;
780
1029
  /**
781
1030
  * Kubernetes system metrics, if available, are written to this prefix. This defaults to kubernetes.io for GKE, and kubernetes.io/anthos for Anthos eventually. Noted: Anthos MultiCloud
782
1031
  * will have kubernetes.io prefix today but will migration to be under kubernetes.io/anthos
783
1032
  */
784
- kubernetesMetricsPrefix?: string;
1033
+ kubernetesMetricsPrefix?:
1034
+ string;
785
1035
  /** Immutable. Location used to report Metrics */
786
- location?: string;
1036
+ location?:
1037
+ string;
787
1038
  /** Immutable. Project used to report Metrics */
788
- projectId?: string;
1039
+ projectId?:
1040
+ string;
789
1041
  }
790
1042
  interface MultiCloudCluster {
791
1043
  /** Output only. If cluster_missing is set then it denotes that API(gkemulticloud.googleapis.com) resource for this GKE Multi-Cloud cluster no longer exists. */
792
- clusterMissing?: boolean;
1044
+ clusterMissing?:
1045
+ boolean;
793
1046
  /**
794
- * Immutable. Self-link of the GCP resource for the GKE Multi-Cloud cluster. For example: //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/awsClusters/my-cluster
1047
+ * Immutable. Self-link of the Google Cloud resource for the GKE Multi-Cloud cluster. For example:
1048
+ * //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/awsClusters/my-cluster
795
1049
  * //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/azureClusters/my-cluster
796
1050
  * //gkemulticloud.googleapis.com/projects/my-project/locations/us-west1-a/attachedClusters/my-cluster
797
1051
  */
798
- resourceLink?: string;
1052
+ resourceLink?:
1053
+ string;
799
1054
  }
800
1055
  interface MultiClusterIngressFeatureSpec {
801
1056
  /** Fully-qualified Membership name which hosts the MultiClusterIngress CRD. Example: `projects/foo-proj/locations/global/memberships/bar` */
802
- configMembership?: string;
1057
+ configMembership?:
1058
+ string;
803
1059
  }
804
1060
  interface OnPremCluster {
805
1061
  /** Immutable. Whether the cluster is an admin cluster. */
806
- adminCluster?: boolean;
1062
+ adminCluster?:
1063
+ boolean;
807
1064
  /** Output only. If cluster_missing is set then it denotes that API(gkeonprem.googleapis.com) resource for this GKE On-Prem cluster no longer exists. */
808
- clusterMissing?: boolean;
1065
+ clusterMissing?:
1066
+ boolean;
809
1067
  /** Immutable. The on prem cluster's type. */
810
- clusterType?: string;
1068
+ clusterType?:
1069
+ string;
811
1070
  /**
812
- * Immutable. Self-link of the GCP resource for the GKE On-Prem cluster. For example: //gkeonprem.googleapis.com/projects/my-project/locations/us-west1-a/vmwareClusters/my-cluster
1071
+ * Immutable. Self-link of the Google Cloud resource for the GKE On-Prem cluster. For example:
1072
+ * //gkeonprem.googleapis.com/projects/my-project/locations/us-west1-a/vmwareClusters/my-cluster
813
1073
  * //gkeonprem.googleapis.com/projects/my-project/locations/us-west1-a/bareMetalClusters/my-cluster
814
1074
  */
815
- resourceLink?: string;
1075
+ resourceLink?:
1076
+ string;
816
1077
  }
817
1078
  interface Operation {
818
1079
  /** If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available. */
819
- done?: boolean;
1080
+ done?:
1081
+ boolean;
820
1082
  /** The error result of the operation in case of failure or cancellation. */
821
- error?: GoogleRpcStatus;
1083
+ error?:
1084
+ GoogleRpcStatus;
822
1085
  /**
823
1086
  * Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such
824
1087
  * metadata. Any method that returns a long-running operation should document the metadata type, if any.
825
1088
  */
826
- metadata?: { [P in string]: any };
1089
+ metadata?:
1090
+ { [P in string]: any };
827
1091
  /**
828
1092
  * The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending
829
1093
  * with `operations/{unique_id}`.
830
1094
  */
831
- name?: string;
1095
+ name?:
1096
+ string;
832
1097
  /**
833
1098
  * The normal response of the operation in case of success. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the
834
1099
  * original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the
835
1100
  * original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
836
1101
  */
837
- response?: { [P in string]: any };
1102
+ response?:
1103
+ { [P in string]: any };
838
1104
  }
839
1105
  interface OperationMetadata {
840
1106
  /** Output only. API version used to start the operation. */
841
- apiVersion?: string;
1107
+ apiVersion?:
1108
+ string;
842
1109
  /**
843
1110
  * Output only. Identifies whether the user has requested cancellation of the operation. Operations that have successfully been cancelled have Operation.error value with a
844
1111
  * google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
845
1112
  */
846
- cancelRequested?: boolean;
1113
+ cancelRequested?:
1114
+ boolean;
847
1115
  /** Output only. The time the operation was created. */
848
- createTime?: string;
1116
+ createTime?:
1117
+ string;
849
1118
  /** Output only. The time the operation finished running. */
850
- endTime?: string;
1119
+ endTime?:
1120
+ string;
851
1121
  /** Output only. Human-readable status of the operation, if any. */
852
- statusDetail?: string;
1122
+ statusDetail?:
1123
+ string;
853
1124
  /** Output only. Server-defined resource path for the target of the operation. */
854
- target?: string;
1125
+ target?:
1126
+ string;
855
1127
  /** Output only. Name of the verb executed by the operation. */
856
- verb?: string;
1128
+ verb?:
1129
+ string;
857
1130
  }
858
1131
  interface Policy {
859
1132
  /** Specifies cloud audit logging configuration for this policy. */
860
- auditConfigs?: AuditConfig[];
1133
+ auditConfigs?:
1134
+ AuditConfig[];
861
1135
  /**
862
1136
  * Associates a list of `members`, or principals, with a `role`. Optionally, may specify a `condition` that determines how and when the `bindings` are applied. Each of the `bindings`
863
1137
  * must contain at least one principal. The `bindings` in a `Policy` can refer to up to 1,500 principals; up to 250 of these principals can be Google groups. Each occurrence of a
864
1138
  * principal counts towards these limits. For example, if the `bindings` grant 50 different roles to `user:alice@example.com`, and not to any other principal, then you can add another
865
1139
  * 1,450 principals to the `bindings` in the `Policy`.
866
1140
  */
867
- bindings?: Binding[];
1141
+ bindings?:
1142
+ Binding[];
868
1143
  /**
869
1144
  * `etag` is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. It is strongly suggested that systems make
870
1145
  * use of the `etag` in the read-modify-write cycle to perform policy updates in order to avoid race conditions: An `etag` is returned in the response to `getIamPolicy`, and systems
@@ -872,7 +1147,8 @@ declare namespace gapi.client {
872
1147
  * Conditions, you must include the `etag` field whenever you call `setIamPolicy`. If you omit this field, then IAM allows you to overwrite a version `3` policy with a version `1`
873
1148
  * policy, and all of the conditions in the version `3` policy are lost.
874
1149
  */
875
- etag?: string;
1150
+ etag?:
1151
+ string;
876
1152
  /**
877
1153
  * Specifies the format of the policy. Valid values are `0`, `1`, and `3`. Requests that specify an invalid value are rejected. Any operation that affects conditional role bindings
878
1154
  * must specify version `3`. This requirement applies to the following operations: * Getting a policy that includes a conditional role binding * Adding a conditional role binding to a
@@ -881,152 +1157,198 @@ declare namespace gapi.client {
881
1157
  * policy, and all of the conditions in the version `3` policy are lost. If a policy does not include any conditions, operations on that policy may specify any valid version or leave
882
1158
  * the field unset. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
883
1159
  */
884
- version?: number;
1160
+ version?:
1161
+ number;
885
1162
  }
886
1163
  interface ResourceManifest {
887
1164
  /**
888
1165
  * Whether the resource provided in the manifest is `cluster_scoped`. If unset, the manifest is assumed to be namespace scoped. This field is used for REST mapping when applying the
889
1166
  * resource in a cluster.
890
1167
  */
891
- clusterScoped?: boolean;
1168
+ clusterScoped?:
1169
+ boolean;
892
1170
  /** YAML manifest of the resource. */
893
- manifest?: string;
1171
+ manifest?:
1172
+ string;
894
1173
  }
895
1174
  interface ResourceOptions {
896
1175
  /**
897
1176
  * Optional. The Connect agent version to use for connect_resources. Defaults to the latest GKE Connect version. The version must be a currently supported version, obsolete versions
898
1177
  * will be rejected.
899
1178
  */
900
- connectVersion?: string;
1179
+ connectVersion?:
1180
+ string;
901
1181
  /**
902
1182
  * Optional. Major version of the Kubernetes cluster. This is only used to determine which version to use for the CustomResourceDefinition resources, `apiextensions/v1beta1`
903
1183
  * or`apiextensions/v1`.
904
1184
  */
905
- k8sVersion?: string;
1185
+ k8sVersion?:
1186
+ string;
906
1187
  /**
907
1188
  * Optional. Use `apiextensions/v1beta1` instead of `apiextensions/v1` for CustomResourceDefinition resources. This option should be set for clusters with Kubernetes apiserver versions
908
1189
  * <1.16.
909
1190
  */
910
- v1beta1Crd?: boolean;
1191
+ v1beta1Crd?:
1192
+ boolean;
911
1193
  }
912
1194
  interface Scope {
1195
+ /** If true, all Memberships in the Fleet bind to this Scope. */
1196
+ allMemberships?:
1197
+ boolean;
913
1198
  /** Output only. When the scope was created. */
914
- createTime?: string;
1199
+ createTime?:
1200
+ string;
915
1201
  /** Output only. When the scope was deleted. */
916
- deleteTime?: string;
1202
+ deleteTime?:
1203
+ string;
917
1204
  /** The resource name for the scope `projects/{project}/locations/{location}/scopes/{scope}` */
918
- name?: string;
1205
+ name?:
1206
+ string;
919
1207
  /** Output only. State of the scope resource. */
920
- state?: ScopeLifecycleState;
1208
+ state?:
1209
+ ScopeLifecycleState;
921
1210
  /**
922
1211
  * Output only. Google-generated UUID for this resource. This is unique across all scope resources. If a scope resource is deleted and another resource with the same name is created,
923
1212
  * it gets a different uid.
924
1213
  */
925
- uid?: string;
1214
+ uid?:
1215
+ string;
926
1216
  /** Output only. When the scope was last updated. */
927
- updateTime?: string;
1217
+ updateTime?:
1218
+ string;
928
1219
  }
929
1220
  // tslint:disable-next-line:no-empty-interface
930
1221
  interface ScopeFeatureSpec {
931
1222
  }
932
1223
  interface ScopeFeatureState {
933
1224
  /** Output only. The "running state" of the Feature in this Scope. */
934
- state?: FeatureState;
1225
+ state?:
1226
+ FeatureState;
935
1227
  }
936
1228
  interface ScopeLifecycleState {
937
1229
  /** Output only. The current state of the scope resource. */
938
- code?: string;
1230
+ code?:
1231
+ string;
939
1232
  }
940
1233
  interface ServiceMeshControlPlaneManagement {
941
1234
  /** Explanation of state. */
942
- details?: ServiceMeshStatusDetails[];
1235
+ details?:
1236
+ ServiceMeshStatusDetails[];
943
1237
  /** LifecycleState of control plane management. */
944
- state?: string;
1238
+ state?:
1239
+ string;
945
1240
  }
946
1241
  interface ServiceMeshDataPlaneManagement {
947
1242
  /** Explanation of the status. */
948
- details?: ServiceMeshStatusDetails[];
1243
+ details?:
1244
+ ServiceMeshStatusDetails[];
949
1245
  /** Lifecycle status of data plane management. */
950
- state?: string;
1246
+ state?:
1247
+ string;
951
1248
  }
952
1249
  interface ServiceMeshMembershipSpec {
953
1250
  /** Deprecated: use `management` instead Enables automatic control plane management. */
954
- controlPlane?: string;
1251
+ controlPlane?:
1252
+ string;
955
1253
  /** Enables automatic Service Mesh management. */
956
- management?: string;
1254
+ management?:
1255
+ string;
957
1256
  }
958
1257
  interface ServiceMeshMembershipState {
959
1258
  /** Output only. Status of control plane management */
960
- controlPlaneManagement?: ServiceMeshControlPlaneManagement;
1259
+ controlPlaneManagement?:
1260
+ ServiceMeshControlPlaneManagement;
961
1261
  /** Output only. Status of data plane management. */
962
- dataPlaneManagement?: ServiceMeshDataPlaneManagement;
1262
+ dataPlaneManagement?:
1263
+ ServiceMeshDataPlaneManagement;
963
1264
  }
964
1265
  interface ServiceMeshStatusDetails {
965
1266
  /** A machine-readable code that further describes a broad status. */
966
- code?: string;
1267
+ code?:
1268
+ string;
967
1269
  /** Human-readable explanation of code. */
968
- details?: string;
1270
+ details?:
1271
+ string;
969
1272
  }
970
1273
  interface SetIamPolicyRequest {
971
1274
  /**
972
1275
  * REQUIRED: The complete policy to be applied to the `resource`. The size of the policy is limited to a few 10s of KB. An empty policy is a valid policy but certain Google Cloud
973
1276
  * services (such as Projects) might reject them.
974
1277
  */
975
- policy?: Policy;
1278
+ policy?:
1279
+ Policy;
976
1280
  /**
977
1281
  * OPTIONAL: A FieldMask specifying which fields of the policy to modify. Only the fields in the mask will be modified. If no mask is provided, the following default mask is used:
978
1282
  * `paths: "bindings, etag"`
979
1283
  */
980
- updateMask?: string;
1284
+ updateMask?:
1285
+ string;
981
1286
  }
982
1287
  interface Status {
983
1288
  /** Code specifies AppDevExperienceFeature's subcomponent ready state. */
984
- code?: string;
1289
+ code?:
1290
+ string;
985
1291
  /** Description is populated if Code is Failed, explaining why it has failed. */
986
- description?: string;
1292
+ description?:
1293
+ string;
987
1294
  }
988
1295
  interface TestIamPermissionsRequest {
989
1296
  /**
990
1297
  * The set of permissions to check for the `resource`. Permissions with wildcards (such as `*` or `storage.*`) are not allowed. For more information see [IAM
991
1298
  * Overview](https://cloud.google.com/iam/docs/overview#permissions).
992
1299
  */
993
- permissions?: string[];
1300
+ permissions?:
1301
+ string[];
994
1302
  }
995
1303
  interface TestIamPermissionsResponse {
996
1304
  /** A subset of `TestPermissionsRequest.permissions` that the caller is allowed. */
997
- permissions?: string[];
1305
+ permissions?:
1306
+ string[];
998
1307
  }
999
1308
  interface TypeMeta {
1000
1309
  /** APIVersion of the resource (e.g. v1). */
1001
- apiVersion?: string;
1310
+ apiVersion?:
1311
+ string;
1002
1312
  /** Kind of the resource (e.g. Deployment). */
1003
- kind?: string;
1313
+ kind?:
1314
+ string;
1004
1315
  }
1005
1316
  interface FeaturesResource {
1006
1317
  /** Adds a new Feature. */
1007
1318
  create(request: {
1008
1319
  /** V1 error format. */
1009
- "$.xgafv"?: string;
1320
+ "$.xgafv"?:
1321
+ string;
1010
1322
  /** OAuth access token. */
1011
- access_token?: string;
1323
+ access_token?:
1324
+ string;
1012
1325
  /** Data format for response. */
1013
- alt?: string;
1326
+ alt?:
1327
+ string;
1014
1328
  /** JSONP */
1015
- callback?: string;
1329
+ callback?:
1330
+ string;
1016
1331
  /** The ID of the feature to create. */
1017
- featureId?: string;
1332
+ featureId?:
1333
+ string;
1018
1334
  /** Selector specifying which fields to include in a partial response. */
1019
- fields?: string;
1335
+ fields?:
1336
+ string;
1020
1337
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1021
- key?: string;
1338
+ key?:
1339
+ string;
1022
1340
  /** OAuth 2.0 token for the current user. */
1023
- oauth_token?: string;
1341
+ oauth_token?:
1342
+ string;
1024
1343
  /** Required. The parent (project and location) where the Feature will be created. Specified in the format `projects/*‍/locations/*`. */
1025
- parent: string;
1344
+ parent:
1345
+ string;
1026
1346
  /** Returns response with indentations and line breaks. */
1027
- prettyPrint?: boolean;
1347
+ prettyPrint?:
1348
+ boolean;
1028
1349
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1029
- quotaUser?: string;
1350
+ quotaUser?:
1351
+ string;
1030
1352
  /**
1031
1353
  * A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been
1032
1354
  * completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the request
@@ -1034,37 +1356,52 @@ declare namespace gapi.client {
1034
1356
  * second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported
1035
1357
  * (00000000-0000-0000-0000-000000000000).
1036
1358
  */
1037
- requestId?: string;
1359
+ requestId?:
1360
+ string;
1038
1361
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1039
- upload_protocol?: string;
1362
+ upload_protocol?:
1363
+ string;
1040
1364
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1041
- uploadType?: string;
1365
+ uploadType?:
1366
+ string;
1042
1367
  /** Request body */
1043
- resource: Feature;
1368
+ resource:
1369
+ Feature;
1044
1370
  }): Request<Operation>;
1045
1371
  create(request: {
1046
1372
  /** V1 error format. */
1047
- "$.xgafv"?: string;
1373
+ "$.xgafv"?:
1374
+ string;
1048
1375
  /** OAuth access token. */
1049
- access_token?: string;
1376
+ access_token?:
1377
+ string;
1050
1378
  /** Data format for response. */
1051
- alt?: string;
1379
+ alt?:
1380
+ string;
1052
1381
  /** JSONP */
1053
- callback?: string;
1382
+ callback?:
1383
+ string;
1054
1384
  /** The ID of the feature to create. */
1055
- featureId?: string;
1385
+ featureId?:
1386
+ string;
1056
1387
  /** Selector specifying which fields to include in a partial response. */
1057
- fields?: string;
1388
+ fields?:
1389
+ string;
1058
1390
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1059
- key?: string;
1391
+ key?:
1392
+ string;
1060
1393
  /** OAuth 2.0 token for the current user. */
1061
- oauth_token?: string;
1394
+ oauth_token?:
1395
+ string;
1062
1396
  /** Required. The parent (project and location) where the Feature will be created. Specified in the format `projects/*‍/locations/*`. */
1063
- parent: string;
1397
+ parent:
1398
+ string;
1064
1399
  /** Returns response with indentations and line breaks. */
1065
- prettyPrint?: boolean;
1400
+ prettyPrint?:
1401
+ boolean;
1066
1402
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1067
- quotaUser?: string;
1403
+ quotaUser?:
1404
+ string;
1068
1405
  /**
1069
1406
  * A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been
1070
1407
  * completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the request
@@ -1072,40 +1409,54 @@ declare namespace gapi.client {
1072
1409
  * second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported
1073
1410
  * (00000000-0000-0000-0000-000000000000).
1074
1411
  */
1075
- requestId?: string;
1412
+ requestId?:
1413
+ string;
1076
1414
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1077
- upload_protocol?: string;
1415
+ upload_protocol?:
1416
+ string;
1078
1417
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1079
- uploadType?: string;
1418
+ uploadType?:
1419
+ string;
1080
1420
  },
1081
1421
  body: Feature): Request<Operation>;
1082
1422
  /** Removes a Feature. */
1083
1423
  delete(request?: {
1084
1424
  /** V1 error format. */
1085
- "$.xgafv"?: string;
1425
+ "$.xgafv"?:
1426
+ string;
1086
1427
  /** OAuth access token. */
1087
- access_token?: string;
1428
+ access_token?:
1429
+ string;
1088
1430
  /** Data format for response. */
1089
- alt?: string;
1431
+ alt?:
1432
+ string;
1090
1433
  /** JSONP */
1091
- callback?: string;
1434
+ callback?:
1435
+ string;
1092
1436
  /** Selector specifying which fields to include in a partial response. */
1093
- fields?: string;
1437
+ fields?:
1438
+ string;
1094
1439
  /**
1095
1440
  * If set to true, the delete will ignore any outstanding resources for this Feature (that is, `FeatureState.has_resources` is set to true). These resources will NOT be cleaned up
1096
1441
  * or modified in any way.
1097
1442
  */
1098
- force?: boolean;
1443
+ force?:
1444
+ boolean;
1099
1445
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1100
- key?: string;
1446
+ key?:
1447
+ string;
1101
1448
  /** Required. The Feature resource name in the format `projects/*‍/locations/*‍/features/*`. */
1102
- name: string;
1449
+ name:
1450
+ string;
1103
1451
  /** OAuth 2.0 token for the current user. */
1104
- oauth_token?: string;
1452
+ oauth_token?:
1453
+ string;
1105
1454
  /** Returns response with indentations and line breaks. */
1106
- prettyPrint?: boolean;
1455
+ prettyPrint?:
1456
+ boolean;
1107
1457
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1108
- quotaUser?: string;
1458
+ quotaUser?:
1459
+ string;
1109
1460
  /**
1110
1461
  * Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already
1111
1462
  * been completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the
@@ -1113,55 +1464,77 @@ declare namespace gapi.client {
1113
1464
  * ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not
1114
1465
  * supported (00000000-0000-0000-0000-000000000000).
1115
1466
  */
1116
- requestId?: string;
1467
+ requestId?:
1468
+ string;
1117
1469
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1118
- upload_protocol?: string;
1470
+ upload_protocol?:
1471
+ string;
1119
1472
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1120
- uploadType?: string;
1473
+ uploadType?:
1474
+ string;
1121
1475
  }): Request<Operation>;
1122
1476
  /** Gets details of a single Feature. */
1123
1477
  get(request?: {
1124
1478
  /** V1 error format. */
1125
- "$.xgafv"?: string;
1479
+ "$.xgafv"?:
1480
+ string;
1126
1481
  /** OAuth access token. */
1127
- access_token?: string;
1482
+ access_token?:
1483
+ string;
1128
1484
  /** Data format for response. */
1129
- alt?: string;
1485
+ alt?:
1486
+ string;
1130
1487
  /** JSONP */
1131
- callback?: string;
1488
+ callback?:
1489
+ string;
1132
1490
  /** Selector specifying which fields to include in a partial response. */
1133
- fields?: string;
1491
+ fields?:
1492
+ string;
1134
1493
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1135
- key?: string;
1494
+ key?:
1495
+ string;
1136
1496
  /** Required. The Feature resource name in the format `projects/*‍/locations/*‍/features/*` */
1137
- name: string;
1497
+ name:
1498
+ string;
1138
1499
  /** OAuth 2.0 token for the current user. */
1139
- oauth_token?: string;
1500
+ oauth_token?:
1501
+ string;
1140
1502
  /** Returns response with indentations and line breaks. */
1141
- prettyPrint?: boolean;
1503
+ prettyPrint?:
1504
+ boolean;
1142
1505
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1143
- quotaUser?: string;
1506
+ quotaUser?:
1507
+ string;
1144
1508
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1145
- upload_protocol?: string;
1509
+ upload_protocol?:
1510
+ string;
1146
1511
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1147
- uploadType?: string;
1512
+ uploadType?:
1513
+ string;
1148
1514
  }): Request<Feature>;
1149
1515
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
1150
1516
  getIamPolicy(request?: {
1151
1517
  /** V1 error format. */
1152
- "$.xgafv"?: string;
1518
+ "$.xgafv"?:
1519
+ string;
1153
1520
  /** OAuth access token. */
1154
- access_token?: string;
1521
+ access_token?:
1522
+ string;
1155
1523
  /** Data format for response. */
1156
- alt?: string;
1524
+ alt?:
1525
+ string;
1157
1526
  /** JSONP */
1158
- callback?: string;
1527
+ callback?:
1528
+ string;
1159
1529
  /** Selector specifying which fields to include in a partial response. */
1160
- fields?: string;
1530
+ fields?:
1531
+ string;
1161
1532
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1162
- key?: string;
1533
+ key?:
1534
+ string;
1163
1535
  /** OAuth 2.0 token for the current user. */
1164
- oauth_token?: string;
1536
+ oauth_token?:
1537
+ string;
1165
1538
  /**
1166
1539
  * Optional. The maximum policy version that will be used to format the policy. Valid values are 0, 1, and 3. Requests specifying an invalid value will be rejected. Requests for
1167
1540
  * policies with any conditional role bindings must specify version 3. Policies with no conditional role bindings may specify any valid value or leave the field unset. The policy
@@ -1169,82 +1542,114 @@ declare namespace gapi.client {
1169
1542
  * role bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM
1170
1543
  * documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
1171
1544
  */
1172
- "options.requestedPolicyVersion"?: number;
1545
+ "options.requestedPolicyVersion"?:
1546
+ number;
1173
1547
  /** Returns response with indentations and line breaks. */
1174
- prettyPrint?: boolean;
1548
+ prettyPrint?:
1549
+ boolean;
1175
1550
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1176
- quotaUser?: string;
1551
+ quotaUser?:
1552
+ string;
1177
1553
  /**
1178
1554
  * REQUIRED: The resource for which the policy is being requested. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this
1179
1555
  * field.
1180
1556
  */
1181
- resource: string;
1557
+ resource:
1558
+ string;
1182
1559
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1183
- upload_protocol?: string;
1560
+ upload_protocol?:
1561
+ string;
1184
1562
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1185
- uploadType?: string;
1563
+ uploadType?:
1564
+ string;
1186
1565
  }): Request<Policy>;
1187
1566
  /** Lists Features in a given project and location. */
1188
1567
  list(request?: {
1189
1568
  /** V1 error format. */
1190
- "$.xgafv"?: string;
1569
+ "$.xgafv"?:
1570
+ string;
1191
1571
  /** OAuth access token. */
1192
- access_token?: string;
1572
+ access_token?:
1573
+ string;
1193
1574
  /** Data format for response. */
1194
- alt?: string;
1575
+ alt?:
1576
+ string;
1195
1577
  /** JSONP */
1196
- callback?: string;
1578
+ callback?:
1579
+ string;
1197
1580
  /** Selector specifying which fields to include in a partial response. */
1198
- fields?: string;
1581
+ fields?:
1582
+ string;
1199
1583
  /**
1200
1584
  * Lists Features that match the filter expression, following the syntax outlined in https://google.aip.dev/160. Examples: - Feature with the name "servicemesh" in project
1201
1585
  * "foo-proj": name = "projects/foo-proj/locations/global/features/servicemesh" - Features that have a label called `foo`: labels.foo:* - Features that have a label called `foo`
1202
1586
  * whose value is `bar`: labels.foo = bar
1203
1587
  */
1204
- filter?: string;
1588
+ filter?:
1589
+ string;
1205
1590
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1206
- key?: string;
1591
+ key?:
1592
+ string;
1207
1593
  /** OAuth 2.0 token for the current user. */
1208
- oauth_token?: string;
1594
+ oauth_token?:
1595
+ string;
1209
1596
  /** One or more fields to compare and use to sort the output. See https://google.aip.dev/132#ordering. */
1210
- orderBy?: string;
1597
+ orderBy?:
1598
+ string;
1211
1599
  /** When requesting a 'page' of resources, `page_size` specifies number of resources to return. If unspecified or set to 0, all resources will be returned. */
1212
- pageSize?: number;
1600
+ pageSize?:
1601
+ number;
1213
1602
  /** Token returned by previous call to `ListFeatures` which specifies the position in the list from where to continue listing the resources. */
1214
- pageToken?: string;
1603
+ pageToken?:
1604
+ string;
1215
1605
  /** Required. The parent (project and location) where the Features will be listed. Specified in the format `projects/*‍/locations/*`. */
1216
- parent: string;
1606
+ parent:
1607
+ string;
1217
1608
  /** Returns response with indentations and line breaks. */
1218
- prettyPrint?: boolean;
1609
+ prettyPrint?:
1610
+ boolean;
1219
1611
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1220
- quotaUser?: string;
1612
+ quotaUser?:
1613
+ string;
1221
1614
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1222
- upload_protocol?: string;
1615
+ upload_protocol?:
1616
+ string;
1223
1617
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1224
- uploadType?: string;
1618
+ uploadType?:
1619
+ string;
1225
1620
  }): Request<ListFeaturesResponse>;
1226
1621
  /** Updates an existing Feature. */
1227
1622
  patch(request: {
1228
1623
  /** V1 error format. */
1229
- "$.xgafv"?: string;
1624
+ "$.xgafv"?:
1625
+ string;
1230
1626
  /** OAuth access token. */
1231
- access_token?: string;
1627
+ access_token?:
1628
+ string;
1232
1629
  /** Data format for response. */
1233
- alt?: string;
1630
+ alt?:
1631
+ string;
1234
1632
  /** JSONP */
1235
- callback?: string;
1633
+ callback?:
1634
+ string;
1236
1635
  /** Selector specifying which fields to include in a partial response. */
1237
- fields?: string;
1636
+ fields?:
1637
+ string;
1238
1638
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1239
- key?: string;
1639
+ key?:
1640
+ string;
1240
1641
  /** Required. The Feature resource name in the format `projects/*‍/locations/*‍/features/*`. */
1241
- name: string;
1642
+ name:
1643
+ string;
1242
1644
  /** OAuth 2.0 token for the current user. */
1243
- oauth_token?: string;
1645
+ oauth_token?:
1646
+ string;
1244
1647
  /** Returns response with indentations and line breaks. */
1245
- prettyPrint?: boolean;
1648
+ prettyPrint?:
1649
+ boolean;
1246
1650
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1247
- quotaUser?: string;
1651
+ quotaUser?:
1652
+ string;
1248
1653
  /**
1249
1654
  * A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been
1250
1655
  * completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the request
@@ -1252,37 +1657,52 @@ declare namespace gapi.client {
1252
1657
  * second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported
1253
1658
  * (00000000-0000-0000-0000-000000000000).
1254
1659
  */
1255
- requestId?: string;
1660
+ requestId?:
1661
+ string;
1256
1662
  /** Mask of fields to update. */
1257
- updateMask?: string;
1663
+ updateMask?:
1664
+ string;
1258
1665
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1259
- upload_protocol?: string;
1666
+ upload_protocol?:
1667
+ string;
1260
1668
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1261
- uploadType?: string;
1669
+ uploadType?:
1670
+ string;
1262
1671
  /** Request body */
1263
- resource: Feature;
1672
+ resource:
1673
+ Feature;
1264
1674
  }): Request<Operation>;
1265
1675
  patch(request: {
1266
1676
  /** V1 error format. */
1267
- "$.xgafv"?: string;
1677
+ "$.xgafv"?:
1678
+ string;
1268
1679
  /** OAuth access token. */
1269
- access_token?: string;
1680
+ access_token?:
1681
+ string;
1270
1682
  /** Data format for response. */
1271
- alt?: string;
1683
+ alt?:
1684
+ string;
1272
1685
  /** JSONP */
1273
- callback?: string;
1686
+ callback?:
1687
+ string;
1274
1688
  /** Selector specifying which fields to include in a partial response. */
1275
- fields?: string;
1689
+ fields?:
1690
+ string;
1276
1691
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1277
- key?: string;
1692
+ key?:
1693
+ string;
1278
1694
  /** Required. The Feature resource name in the format `projects/*‍/locations/*‍/features/*`. */
1279
- name: string;
1695
+ name:
1696
+ string;
1280
1697
  /** OAuth 2.0 token for the current user. */
1281
- oauth_token?: string;
1698
+ oauth_token?:
1699
+ string;
1282
1700
  /** Returns response with indentations and line breaks. */
1283
- prettyPrint?: boolean;
1701
+ prettyPrint?:
1702
+ boolean;
1284
1703
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1285
- quotaUser?: string;
1704
+ quotaUser?:
1705
+ string;
1286
1706
  /**
1287
1707
  * A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been
1288
1708
  * completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the request
@@ -1290,44 +1710,60 @@ declare namespace gapi.client {
1290
1710
  * second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported
1291
1711
  * (00000000-0000-0000-0000-000000000000).
1292
1712
  */
1293
- requestId?: string;
1713
+ requestId?:
1714
+ string;
1294
1715
  /** Mask of fields to update. */
1295
- updateMask?: string;
1716
+ updateMask?:
1717
+ string;
1296
1718
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1297
- upload_protocol?: string;
1719
+ upload_protocol?:
1720
+ string;
1298
1721
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1299
- uploadType?: string;
1722
+ uploadType?:
1723
+ string;
1300
1724
  },
1301
1725
  body: Feature): Request<Operation>;
1302
1726
  /** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
1303
1727
  setIamPolicy(request: {
1304
1728
  /** V1 error format. */
1305
- "$.xgafv"?: string;
1729
+ "$.xgafv"?:
1730
+ string;
1306
1731
  /** OAuth access token. */
1307
- access_token?: string;
1732
+ access_token?:
1733
+ string;
1308
1734
  /** Data format for response. */
1309
- alt?: string;
1735
+ alt?:
1736
+ string;
1310
1737
  /** JSONP */
1311
- callback?: string;
1738
+ callback?:
1739
+ string;
1312
1740
  /** Selector specifying which fields to include in a partial response. */
1313
- fields?: string;
1741
+ fields?:
1742
+ string;
1314
1743
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1315
- key?: string;
1744
+ key?:
1745
+ string;
1316
1746
  /** OAuth 2.0 token for the current user. */
1317
- oauth_token?: string;
1747
+ oauth_token?:
1748
+ string;
1318
1749
  /** Returns response with indentations and line breaks. */
1319
- prettyPrint?: boolean;
1750
+ prettyPrint?:
1751
+ boolean;
1320
1752
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1321
- quotaUser?: string;
1753
+ quotaUser?:
1754
+ string;
1322
1755
  /**
1323
1756
  * REQUIRED: The resource for which the policy is being specified. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this
1324
1757
  * field.
1325
1758
  */
1326
- resource: string;
1759
+ resource:
1760
+ string;
1327
1761
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1328
- upload_protocol?: string;
1762
+ upload_protocol?:
1763
+ string;
1329
1764
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1330
- uploadType?: string;
1765
+ uploadType?:
1766
+ string;
1331
1767
  },
1332
1768
  body: SetIamPolicyRequest): Request<Policy>;
1333
1769
  /**
@@ -1336,32 +1772,44 @@ declare namespace gapi.client {
1336
1772
  */
1337
1773
  testIamPermissions(request: {
1338
1774
  /** V1 error format. */
1339
- "$.xgafv"?: string;
1775
+ "$.xgafv"?:
1776
+ string;
1340
1777
  /** OAuth access token. */
1341
- access_token?: string;
1778
+ access_token?:
1779
+ string;
1342
1780
  /** Data format for response. */
1343
- alt?: string;
1781
+ alt?:
1782
+ string;
1344
1783
  /** JSONP */
1345
- callback?: string;
1784
+ callback?:
1785
+ string;
1346
1786
  /** Selector specifying which fields to include in a partial response. */
1347
- fields?: string;
1787
+ fields?:
1788
+ string;
1348
1789
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1349
- key?: string;
1790
+ key?:
1791
+ string;
1350
1792
  /** OAuth 2.0 token for the current user. */
1351
- oauth_token?: string;
1793
+ oauth_token?:
1794
+ string;
1352
1795
  /** Returns response with indentations and line breaks. */
1353
- prettyPrint?: boolean;
1796
+ prettyPrint?:
1797
+ boolean;
1354
1798
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1355
- quotaUser?: string;
1799
+ quotaUser?:
1800
+ string;
1356
1801
  /**
1357
1802
  * REQUIRED: The resource for which the policy detail is being requested. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for
1358
1803
  * this field.
1359
1804
  */
1360
- resource: string;
1805
+ resource:
1806
+ string;
1361
1807
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1362
- upload_protocol?: string;
1808
+ upload_protocol?:
1809
+ string;
1363
1810
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1364
- uploadType?: string;
1811
+ uploadType?:
1812
+ string;
1365
1813
  },
1366
1814
  body: TestIamPermissionsRequest): Request<TestIamPermissionsResponse>;
1367
1815
  }
@@ -1369,206 +1817,298 @@ declare namespace gapi.client {
1369
1817
  /** Creates a MembershipBinding. */
1370
1818
  create(request: {
1371
1819
  /** V1 error format. */
1372
- "$.xgafv"?: string;
1820
+ "$.xgafv"?:
1821
+ string;
1373
1822
  /** OAuth access token. */
1374
- access_token?: string;
1823
+ access_token?:
1824
+ string;
1375
1825
  /** Data format for response. */
1376
- alt?: string;
1826
+ alt?:
1827
+ string;
1377
1828
  /** JSONP */
1378
- callback?: string;
1829
+ callback?:
1830
+ string;
1379
1831
  /** Selector specifying which fields to include in a partial response. */
1380
- fields?: string;
1832
+ fields?:
1833
+ string;
1381
1834
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1382
- key?: string;
1835
+ key?:
1836
+ string;
1383
1837
  /** Required. The ID to use for the MembershipBinding. */
1384
- membershipBindingId?: string;
1838
+ membershipBindingId?:
1839
+ string;
1385
1840
  /** OAuth 2.0 token for the current user. */
1386
- oauth_token?: string;
1841
+ oauth_token?:
1842
+ string;
1387
1843
  /** Required. The parent (project and location) where the MembershipBinding will be created. Specified in the format `projects/*‍/locations/*‍/memberships/*`. */
1388
- parent: string;
1844
+ parent:
1845
+ string;
1389
1846
  /** Returns response with indentations and line breaks. */
1390
- prettyPrint?: boolean;
1847
+ prettyPrint?:
1848
+ boolean;
1391
1849
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1392
- quotaUser?: string;
1850
+ quotaUser?:
1851
+ string;
1393
1852
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1394
- upload_protocol?: string;
1853
+ upload_protocol?:
1854
+ string;
1395
1855
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1396
- uploadType?: string;
1856
+ uploadType?:
1857
+ string;
1397
1858
  /** Request body */
1398
- resource: MembershipBinding;
1859
+ resource:
1860
+ MembershipBinding;
1399
1861
  }): Request<Operation>;
1400
1862
  create(request: {
1401
1863
  /** V1 error format. */
1402
- "$.xgafv"?: string;
1864
+ "$.xgafv"?:
1865
+ string;
1403
1866
  /** OAuth access token. */
1404
- access_token?: string;
1867
+ access_token?:
1868
+ string;
1405
1869
  /** Data format for response. */
1406
- alt?: string;
1870
+ alt?:
1871
+ string;
1407
1872
  /** JSONP */
1408
- callback?: string;
1873
+ callback?:
1874
+ string;
1409
1875
  /** Selector specifying which fields to include in a partial response. */
1410
- fields?: string;
1876
+ fields?:
1877
+ string;
1411
1878
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1412
- key?: string;
1879
+ key?:
1880
+ string;
1413
1881
  /** Required. The ID to use for the MembershipBinding. */
1414
- membershipBindingId?: string;
1882
+ membershipBindingId?:
1883
+ string;
1415
1884
  /** OAuth 2.0 token for the current user. */
1416
- oauth_token?: string;
1885
+ oauth_token?:
1886
+ string;
1417
1887
  /** Required. The parent (project and location) where the MembershipBinding will be created. Specified in the format `projects/*‍/locations/*‍/memberships/*`. */
1418
- parent: string;
1888
+ parent:
1889
+ string;
1419
1890
  /** Returns response with indentations and line breaks. */
1420
- prettyPrint?: boolean;
1891
+ prettyPrint?:
1892
+ boolean;
1421
1893
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1422
- quotaUser?: string;
1894
+ quotaUser?:
1895
+ string;
1423
1896
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1424
- upload_protocol?: string;
1897
+ upload_protocol?:
1898
+ string;
1425
1899
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1426
- uploadType?: string;
1900
+ uploadType?:
1901
+ string;
1427
1902
  },
1428
1903
  body: MembershipBinding): Request<Operation>;
1429
1904
  /** Deletes a MembershipBinding. */
1430
1905
  delete(request?: {
1431
1906
  /** V1 error format. */
1432
- "$.xgafv"?: string;
1907
+ "$.xgafv"?:
1908
+ string;
1433
1909
  /** OAuth access token. */
1434
- access_token?: string;
1910
+ access_token?:
1911
+ string;
1435
1912
  /** Data format for response. */
1436
- alt?: string;
1913
+ alt?:
1914
+ string;
1437
1915
  /** JSONP */
1438
- callback?: string;
1916
+ callback?:
1917
+ string;
1439
1918
  /** Selector specifying which fields to include in a partial response. */
1440
- fields?: string;
1919
+ fields?:
1920
+ string;
1441
1921
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1442
- key?: string;
1922
+ key?:
1923
+ string;
1443
1924
  /** Required. The MembershipBinding resource name in the format `projects/*‍/locations/*‍/memberships/*‍/bindings/*`. */
1444
- name: string;
1925
+ name:
1926
+ string;
1445
1927
  /** OAuth 2.0 token for the current user. */
1446
- oauth_token?: string;
1928
+ oauth_token?:
1929
+ string;
1447
1930
  /** Returns response with indentations and line breaks. */
1448
- prettyPrint?: boolean;
1931
+ prettyPrint?:
1932
+ boolean;
1449
1933
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1450
- quotaUser?: string;
1934
+ quotaUser?:
1935
+ string;
1451
1936
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1452
- upload_protocol?: string;
1937
+ upload_protocol?:
1938
+ string;
1453
1939
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1454
- uploadType?: string;
1940
+ uploadType?:
1941
+ string;
1455
1942
  }): Request<Operation>;
1456
1943
  /** Returns the details of a MembershipBinding. */
1457
1944
  get(request?: {
1458
1945
  /** V1 error format. */
1459
- "$.xgafv"?: string;
1946
+ "$.xgafv"?:
1947
+ string;
1460
1948
  /** OAuth access token. */
1461
- access_token?: string;
1949
+ access_token?:
1950
+ string;
1462
1951
  /** Data format for response. */
1463
- alt?: string;
1952
+ alt?:
1953
+ string;
1464
1954
  /** JSONP */
1465
- callback?: string;
1955
+ callback?:
1956
+ string;
1466
1957
  /** Selector specifying which fields to include in a partial response. */
1467
- fields?: string;
1958
+ fields?:
1959
+ string;
1468
1960
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1469
- key?: string;
1961
+ key?:
1962
+ string;
1470
1963
  /** Required. The MembershipBinding resource name in the format `projects/*‍/locations/*‍/memberships/*‍/bindings/*`. */
1471
- name: string;
1964
+ name:
1965
+ string;
1472
1966
  /** OAuth 2.0 token for the current user. */
1473
- oauth_token?: string;
1967
+ oauth_token?:
1968
+ string;
1474
1969
  /** Returns response with indentations and line breaks. */
1475
- prettyPrint?: boolean;
1970
+ prettyPrint?:
1971
+ boolean;
1476
1972
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1477
- quotaUser?: string;
1973
+ quotaUser?:
1974
+ string;
1478
1975
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1479
- upload_protocol?: string;
1976
+ upload_protocol?:
1977
+ string;
1480
1978
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1481
- uploadType?: string;
1979
+ uploadType?:
1980
+ string;
1482
1981
  }): Request<MembershipBinding>;
1483
1982
  /** Lists MembershipBindings. */
1484
1983
  list(request?: {
1485
1984
  /** V1 error format. */
1486
- "$.xgafv"?: string;
1985
+ "$.xgafv"?:
1986
+ string;
1487
1987
  /** OAuth access token. */
1488
- access_token?: string;
1988
+ access_token?:
1989
+ string;
1489
1990
  /** Data format for response. */
1490
- alt?: string;
1991
+ alt?:
1992
+ string;
1491
1993
  /** JSONP */
1492
- callback?: string;
1994
+ callback?:
1995
+ string;
1493
1996
  /** Selector specifying which fields to include in a partial response. */
1494
- fields?: string;
1997
+ fields?:
1998
+ string;
1495
1999
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1496
- key?: string;
2000
+ key?:
2001
+ string;
1497
2002
  /** OAuth 2.0 token for the current user. */
1498
- oauth_token?: string;
2003
+ oauth_token?:
2004
+ string;
1499
2005
  /** Optional. When requesting a 'page' of resources, `page_size` specifies number of resources to return. If unspecified or set to 0, all resources will be returned. */
1500
- pageSize?: number;
2006
+ pageSize?:
2007
+ number;
1501
2008
  /** Optional. Token returned by previous call to `ListMembershipBindings` which specifies the position in the list from where to continue listing the resources. */
1502
- pageToken?: string;
2009
+ pageToken?:
2010
+ string;
1503
2011
  /** Required. The parent Membership for which the MembershipBindings will be listed. Specified in the format `projects/*‍/locations/*‍/memberships/*`. */
1504
- parent: string;
2012
+ parent:
2013
+ string;
1505
2014
  /** Returns response with indentations and line breaks. */
1506
- prettyPrint?: boolean;
2015
+ prettyPrint?:
2016
+ boolean;
1507
2017
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1508
- quotaUser?: string;
2018
+ quotaUser?:
2019
+ string;
1509
2020
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1510
- upload_protocol?: string;
2021
+ upload_protocol?:
2022
+ string;
1511
2023
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1512
- uploadType?: string;
2024
+ uploadType?:
2025
+ string;
1513
2026
  }): Request<ListMembershipBindingsResponse>;
1514
2027
  /** Updates a MembershipBinding. */
1515
2028
  patch(request: {
1516
2029
  /** V1 error format. */
1517
- "$.xgafv"?: string;
2030
+ "$.xgafv"?:
2031
+ string;
1518
2032
  /** OAuth access token. */
1519
- access_token?: string;
2033
+ access_token?:
2034
+ string;
1520
2035
  /** Data format for response. */
1521
- alt?: string;
2036
+ alt?:
2037
+ string;
1522
2038
  /** JSONP */
1523
- callback?: string;
2039
+ callback?:
2040
+ string;
1524
2041
  /** Selector specifying which fields to include in a partial response. */
1525
- fields?: string;
2042
+ fields?:
2043
+ string;
1526
2044
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1527
- key?: string;
2045
+ key?:
2046
+ string;
1528
2047
  /** The resource name for the membershipbinding itself `projects/{project}/locations/{location}/memberships/{membership}/bindings/{membershipbinding}` */
1529
- name: string;
2048
+ name:
2049
+ string;
1530
2050
  /** OAuth 2.0 token for the current user. */
1531
- oauth_token?: string;
2051
+ oauth_token?:
2052
+ string;
1532
2053
  /** Returns response with indentations and line breaks. */
1533
- prettyPrint?: boolean;
2054
+ prettyPrint?:
2055
+ boolean;
1534
2056
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1535
- quotaUser?: string;
2057
+ quotaUser?:
2058
+ string;
1536
2059
  /** Required. The fields to be updated. */
1537
- updateMask?: string;
2060
+ updateMask?:
2061
+ string;
1538
2062
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1539
- upload_protocol?: string;
2063
+ upload_protocol?:
2064
+ string;
1540
2065
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1541
- uploadType?: string;
2066
+ uploadType?:
2067
+ string;
1542
2068
  /** Request body */
1543
- resource: MembershipBinding;
2069
+ resource:
2070
+ MembershipBinding;
1544
2071
  }): Request<Operation>;
1545
2072
  patch(request: {
1546
2073
  /** V1 error format. */
1547
- "$.xgafv"?: string;
2074
+ "$.xgafv"?:
2075
+ string;
1548
2076
  /** OAuth access token. */
1549
- access_token?: string;
2077
+ access_token?:
2078
+ string;
1550
2079
  /** Data format for response. */
1551
- alt?: string;
2080
+ alt?:
2081
+ string;
1552
2082
  /** JSONP */
1553
- callback?: string;
2083
+ callback?:
2084
+ string;
1554
2085
  /** Selector specifying which fields to include in a partial response. */
1555
- fields?: string;
2086
+ fields?:
2087
+ string;
1556
2088
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1557
- key?: string;
2089
+ key?:
2090
+ string;
1558
2091
  /** The resource name for the membershipbinding itself `projects/{project}/locations/{location}/memberships/{membership}/bindings/{membershipbinding}` */
1559
- name: string;
2092
+ name:
2093
+ string;
1560
2094
  /** OAuth 2.0 token for the current user. */
1561
- oauth_token?: string;
2095
+ oauth_token?:
2096
+ string;
1562
2097
  /** Returns response with indentations and line breaks. */
1563
- prettyPrint?: boolean;
2098
+ prettyPrint?:
2099
+ boolean;
1564
2100
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1565
- quotaUser?: string;
2101
+ quotaUser?:
2102
+ string;
1566
2103
  /** Required. The fields to be updated. */
1567
- updateMask?: string;
2104
+ updateMask?:
2105
+ string;
1568
2106
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1569
- upload_protocol?: string;
2107
+ upload_protocol?:
2108
+ string;
1570
2109
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1571
- uploadType?: string;
2110
+ uploadType?:
2111
+ string;
1572
2112
  },
1573
2113
  body: MembershipBinding): Request<Operation>;
1574
2114
  }
@@ -1579,31 +2119,42 @@ declare namespace gapi.client {
1579
2119
  */
1580
2120
  create(request: {
1581
2121
  /** V1 error format. */
1582
- "$.xgafv"?: string;
2122
+ "$.xgafv"?:
2123
+ string;
1583
2124
  /** OAuth access token. */
1584
- access_token?: string;
2125
+ access_token?:
2126
+ string;
1585
2127
  /** Data format for response. */
1586
- alt?: string;
2128
+ alt?:
2129
+ string;
1587
2130
  /** JSONP */
1588
- callback?: string;
2131
+ callback?:
2132
+ string;
1589
2133
  /** Selector specifying which fields to include in a partial response. */
1590
- fields?: string;
2134
+ fields?:
2135
+ string;
1591
2136
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1592
- key?: string;
2137
+ key?:
2138
+ string;
1593
2139
  /**
1594
2140
  * Required. Client chosen ID for the membership. `membership_id` must be a valid RFC 1123 compliant DNS label: 1. At most 63 characters in length 2. It must consist of lower case
1595
2141
  * alphanumeric characters or `-` 3. It must start and end with an alphanumeric character Which can be expressed as the regex: `[a-z0-9]([-a-z0-9]*[a-z0-9])?`, with a maximum
1596
2142
  * length of 63 characters.
1597
2143
  */
1598
- membershipId?: string;
2144
+ membershipId?:
2145
+ string;
1599
2146
  /** OAuth 2.0 token for the current user. */
1600
- oauth_token?: string;
2147
+ oauth_token?:
2148
+ string;
1601
2149
  /** Required. The parent (project and location) where the Memberships will be created. Specified in the format `projects/*‍/locations/*`. */
1602
- parent: string;
2150
+ parent:
2151
+ string;
1603
2152
  /** Returns response with indentations and line breaks. */
1604
- prettyPrint?: boolean;
2153
+ prettyPrint?:
2154
+ boolean;
1605
2155
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1606
- quotaUser?: string;
2156
+ quotaUser?:
2157
+ string;
1607
2158
  /**
1608
2159
  * Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already
1609
2160
  * been completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the
@@ -1611,41 +2162,56 @@ declare namespace gapi.client {
1611
2162
  * ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not
1612
2163
  * supported (00000000-0000-0000-0000-000000000000).
1613
2164
  */
1614
- requestId?: string;
2165
+ requestId?:
2166
+ string;
1615
2167
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1616
- upload_protocol?: string;
2168
+ upload_protocol?:
2169
+ string;
1617
2170
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1618
- uploadType?: string;
2171
+ uploadType?:
2172
+ string;
1619
2173
  /** Request body */
1620
- resource: Membership;
2174
+ resource:
2175
+ Membership;
1621
2176
  }): Request<Operation>;
1622
2177
  create(request: {
1623
2178
  /** V1 error format. */
1624
- "$.xgafv"?: string;
2179
+ "$.xgafv"?:
2180
+ string;
1625
2181
  /** OAuth access token. */
1626
- access_token?: string;
2182
+ access_token?:
2183
+ string;
1627
2184
  /** Data format for response. */
1628
- alt?: string;
2185
+ alt?:
2186
+ string;
1629
2187
  /** JSONP */
1630
- callback?: string;
2188
+ callback?:
2189
+ string;
1631
2190
  /** Selector specifying which fields to include in a partial response. */
1632
- fields?: string;
2191
+ fields?:
2192
+ string;
1633
2193
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1634
- key?: string;
2194
+ key?:
2195
+ string;
1635
2196
  /**
1636
2197
  * Required. Client chosen ID for the membership. `membership_id` must be a valid RFC 1123 compliant DNS label: 1. At most 63 characters in length 2. It must consist of lower case
1637
2198
  * alphanumeric characters or `-` 3. It must start and end with an alphanumeric character Which can be expressed as the regex: `[a-z0-9]([-a-z0-9]*[a-z0-9])?`, with a maximum
1638
2199
  * length of 63 characters.
1639
2200
  */
1640
- membershipId?: string;
2201
+ membershipId?:
2202
+ string;
1641
2203
  /** OAuth 2.0 token for the current user. */
1642
- oauth_token?: string;
2204
+ oauth_token?:
2205
+ string;
1643
2206
  /** Required. The parent (project and location) where the Memberships will be created. Specified in the format `projects/*‍/locations/*`. */
1644
- parent: string;
2207
+ parent:
2208
+ string;
1645
2209
  /** Returns response with indentations and line breaks. */
1646
- prettyPrint?: boolean;
2210
+ prettyPrint?:
2211
+ boolean;
1647
2212
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1648
- quotaUser?: string;
2213
+ quotaUser?:
2214
+ string;
1649
2215
  /**
1650
2216
  * Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already
1651
2217
  * been completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the
@@ -1653,11 +2219,14 @@ declare namespace gapi.client {
1653
2219
  * ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not
1654
2220
  * supported (00000000-0000-0000-0000-000000000000).
1655
2221
  */
1656
- requestId?: string;
2222
+ requestId?:
2223
+ string;
1657
2224
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1658
- upload_protocol?: string;
2225
+ upload_protocol?:
2226
+ string;
1659
2227
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1660
- uploadType?: string;
2228
+ uploadType?:
2229
+ string;
1661
2230
  },
1662
2231
  body: Membership): Request<Operation>;
1663
2232
  /**
@@ -1666,27 +2235,38 @@ declare namespace gapi.client {
1666
2235
  */
1667
2236
  delete(request?: {
1668
2237
  /** V1 error format. */
1669
- "$.xgafv"?: string;
2238
+ "$.xgafv"?:
2239
+ string;
1670
2240
  /** OAuth access token. */
1671
- access_token?: string;
2241
+ access_token?:
2242
+ string;
1672
2243
  /** Data format for response. */
1673
- alt?: string;
2244
+ alt?:
2245
+ string;
1674
2246
  /** JSONP */
1675
- callback?: string;
2247
+ callback?:
2248
+ string;
1676
2249
  /** Selector specifying which fields to include in a partial response. */
1677
- fields?: string;
2250
+ fields?:
2251
+ string;
1678
2252
  /** Optional. If set to true, any subresource from this Membership will also be deleted. Otherwise, the request will only work if the Membership has no subresource. */
1679
- force?: boolean;
2253
+ force?:
2254
+ boolean;
1680
2255
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1681
- key?: string;
2256
+ key?:
2257
+ string;
1682
2258
  /** Required. The Membership resource name in the format `projects/*‍/locations/*‍/memberships/*`. */
1683
- name: string;
2259
+ name:
2260
+ string;
1684
2261
  /** OAuth 2.0 token for the current user. */
1685
- oauth_token?: string;
2262
+ oauth_token?:
2263
+ string;
1686
2264
  /** Returns response with indentations and line breaks. */
1687
- prettyPrint?: boolean;
2265
+ prettyPrint?:
2266
+ boolean;
1688
2267
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1689
- quotaUser?: string;
2268
+ quotaUser?:
2269
+ string;
1690
2270
  /**
1691
2271
  * Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already
1692
2272
  * been completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the
@@ -1694,11 +2274,14 @@ declare namespace gapi.client {
1694
2274
  * ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not
1695
2275
  * supported (00000000-0000-0000-0000-000000000000).
1696
2276
  */
1697
- requestId?: string;
2277
+ requestId?:
2278
+ string;
1698
2279
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1699
- upload_protocol?: string;
2280
+ upload_protocol?:
2281
+ string;
1700
2282
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1701
- uploadType?: string;
2283
+ uploadType?:
2284
+ string;
1702
2285
  }): Request<Operation>;
1703
2286
  /**
1704
2287
  * Generates the manifest for deployment of the GKE connect agent. **This method is used internally by Google-provided libraries.** Most clients should not need to call this method
@@ -1706,91 +2289,128 @@ declare namespace gapi.client {
1706
2289
  */
1707
2290
  generateConnectManifest(request?: {
1708
2291
  /** V1 error format. */
1709
- "$.xgafv"?: string;
2292
+ "$.xgafv"?:
2293
+ string;
1710
2294
  /** OAuth access token. */
1711
- access_token?: string;
2295
+ access_token?:
2296
+ string;
1712
2297
  /** Data format for response. */
1713
- alt?: string;
2298
+ alt?:
2299
+ string;
1714
2300
  /** JSONP */
1715
- callback?: string;
2301
+ callback?:
2302
+ string;
1716
2303
  /** Selector specifying which fields to include in a partial response. */
1717
- fields?: string;
2304
+ fields?:
2305
+ string;
1718
2306
  /** Optional. The image pull secret content for the registry, if not public. */
1719
- imagePullSecretContent?: string;
2307
+ imagePullSecretContent?:
2308
+ string;
1720
2309
  /** Optional. If true, generate the resources for upgrade only. Some resources generated only for installation (e.g. secrets) will be excluded. */
1721
- isUpgrade?: boolean;
2310
+ isUpgrade?:
2311
+ boolean;
1722
2312
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1723
- key?: string;
2313
+ key?:
2314
+ string;
1724
2315
  /** Required. The Membership resource name the Agent will associate with, in the format `projects/*‍/locations/*‍/memberships/*`. */
1725
- name: string;
2316
+ name:
2317
+ string;
1726
2318
  /**
1727
2319
  * Optional. Namespace for GKE Connect agent resources. Defaults to `gke-connect`. The Connect Agent is authorized automatically when run in the default namespace. Otherwise,
1728
2320
  * explicit authorization must be granted with an additional IAM binding.
1729
2321
  */
1730
- namespace?: string;
2322
+ namespace?:
2323
+ string;
1731
2324
  /** OAuth 2.0 token for the current user. */
1732
- oauth_token?: string;
2325
+ oauth_token?:
2326
+ string;
1733
2327
  /** Returns response with indentations and line breaks. */
1734
- prettyPrint?: boolean;
2328
+ prettyPrint?:
2329
+ boolean;
1735
2330
  /**
1736
2331
  * Optional. URI of a proxy if connectivity from the agent to gkeconnect.googleapis.com requires the use of a proxy. Format must be in the form `http(s)://{proxy_address}`,
1737
2332
  * depending on the HTTP/HTTPS protocol supported by the proxy. This will direct the connect agent's outbound traffic through a HTTP(S) proxy.
1738
2333
  */
1739
- proxy?: string;
2334
+ proxy?:
2335
+ string;
1740
2336
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1741
- quotaUser?: string;
2337
+ quotaUser?:
2338
+ string;
1742
2339
  /** Optional. The registry to fetch the connect agent image from. Defaults to gcr.io/gkeconnect. */
1743
- registry?: string;
2340
+ registry?:
2341
+ string;
1744
2342
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1745
- upload_protocol?: string;
2343
+ upload_protocol?:
2344
+ string;
1746
2345
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1747
- uploadType?: string;
2346
+ uploadType?:
2347
+ string;
1748
2348
  /** Optional. The Connect agent version to use. Defaults to the most current version. */
1749
- version?: string;
2349
+ version?:
2350
+ string;
1750
2351
  }): Request<GenerateConnectManifestResponse>;
1751
2352
  /** Gets the details of a Membership. */
1752
2353
  get(request?: {
1753
2354
  /** V1 error format. */
1754
- "$.xgafv"?: string;
2355
+ "$.xgafv"?:
2356
+ string;
1755
2357
  /** OAuth access token. */
1756
- access_token?: string;
2358
+ access_token?:
2359
+ string;
1757
2360
  /** Data format for response. */
1758
- alt?: string;
2361
+ alt?:
2362
+ string;
1759
2363
  /** JSONP */
1760
- callback?: string;
2364
+ callback?:
2365
+ string;
1761
2366
  /** Selector specifying which fields to include in a partial response. */
1762
- fields?: string;
2367
+ fields?:
2368
+ string;
1763
2369
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1764
- key?: string;
2370
+ key?:
2371
+ string;
1765
2372
  /** Required. The Membership resource name in the format `projects/*‍/locations/*‍/memberships/*`. */
1766
- name: string;
2373
+ name:
2374
+ string;
1767
2375
  /** OAuth 2.0 token for the current user. */
1768
- oauth_token?: string;
2376
+ oauth_token?:
2377
+ string;
1769
2378
  /** Returns response with indentations and line breaks. */
1770
- prettyPrint?: boolean;
2379
+ prettyPrint?:
2380
+ boolean;
1771
2381
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1772
- quotaUser?: string;
2382
+ quotaUser?:
2383
+ string;
1773
2384
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1774
- upload_protocol?: string;
2385
+ upload_protocol?:
2386
+ string;
1775
2387
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1776
- uploadType?: string;
2388
+ uploadType?:
2389
+ string;
1777
2390
  }): Request<Membership>;
1778
2391
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
1779
2392
  getIamPolicy(request?: {
1780
2393
  /** V1 error format. */
1781
- "$.xgafv"?: string;
2394
+ "$.xgafv"?:
2395
+ string;
1782
2396
  /** OAuth access token. */
1783
- access_token?: string;
2397
+ access_token?:
2398
+ string;
1784
2399
  /** Data format for response. */
1785
- alt?: string;
2400
+ alt?:
2401
+ string;
1786
2402
  /** JSONP */
1787
- callback?: string;
2403
+ callback?:
2404
+ string;
1788
2405
  /** Selector specifying which fields to include in a partial response. */
1789
- fields?: string;
2406
+ fields?:
2407
+ string;
1790
2408
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1791
- key?: string;
2409
+ key?:
2410
+ string;
1792
2411
  /** OAuth 2.0 token for the current user. */
1793
- oauth_token?: string;
2412
+ oauth_token?:
2413
+ string;
1794
2414
  /**
1795
2415
  * Optional. The maximum policy version that will be used to format the policy. Valid values are 0, 1, and 3. Requests specifying an invalid value will be rejected. Requests for
1796
2416
  * policies with any conditional role bindings must specify version 3. Policies with no conditional role bindings may specify any valid value or leave the field unset. The policy
@@ -1798,85 +2418,117 @@ declare namespace gapi.client {
1798
2418
  * role bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM
1799
2419
  * documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
1800
2420
  */
1801
- "options.requestedPolicyVersion"?: number;
2421
+ "options.requestedPolicyVersion"?:
2422
+ number;
1802
2423
  /** Returns response with indentations and line breaks. */
1803
- prettyPrint?: boolean;
2424
+ prettyPrint?:
2425
+ boolean;
1804
2426
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1805
- quotaUser?: string;
2427
+ quotaUser?:
2428
+ string;
1806
2429
  /**
1807
2430
  * REQUIRED: The resource for which the policy is being requested. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this
1808
2431
  * field.
1809
2432
  */
1810
- resource: string;
2433
+ resource:
2434
+ string;
1811
2435
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1812
- upload_protocol?: string;
2436
+ upload_protocol?:
2437
+ string;
1813
2438
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1814
- uploadType?: string;
2439
+ uploadType?:
2440
+ string;
1815
2441
  }): Request<Policy>;
1816
2442
  /** Lists Memberships in a given project and location. */
1817
2443
  list(request?: {
1818
2444
  /** V1 error format. */
1819
- "$.xgafv"?: string;
2445
+ "$.xgafv"?:
2446
+ string;
1820
2447
  /** OAuth access token. */
1821
- access_token?: string;
2448
+ access_token?:
2449
+ string;
1822
2450
  /** Data format for response. */
1823
- alt?: string;
2451
+ alt?:
2452
+ string;
1824
2453
  /** JSONP */
1825
- callback?: string;
2454
+ callback?:
2455
+ string;
1826
2456
  /** Selector specifying which fields to include in a partial response. */
1827
- fields?: string;
2457
+ fields?:
2458
+ string;
1828
2459
  /**
1829
2460
  * Optional. Lists Memberships that match the filter expression, following the syntax outlined in https://google.aip.dev/160. Examples: - Name is `bar` in project `foo-proj` and
1830
2461
  * location `global`: name = "projects/foo-proj/locations/global/membership/bar" - Memberships that have a label called `foo`: labels.foo:* - Memberships that have a label called
1831
2462
  * `foo` whose value is `bar`: labels.foo = bar - Memberships in the CREATING state: state = CREATING
1832
2463
  */
1833
- filter?: string;
2464
+ filter?:
2465
+ string;
1834
2466
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1835
- key?: string;
2467
+ key?:
2468
+ string;
1836
2469
  /** OAuth 2.0 token for the current user. */
1837
- oauth_token?: string;
2470
+ oauth_token?:
2471
+ string;
1838
2472
  /** Optional. One or more fields to compare and use to sort the output. See https://google.aip.dev/132#ordering. */
1839
- orderBy?: string;
2473
+ orderBy?:
2474
+ string;
1840
2475
  /** Optional. When requesting a 'page' of resources, `page_size` specifies number of resources to return. If unspecified or set to 0, all resources will be returned. */
1841
- pageSize?: number;
2476
+ pageSize?:
2477
+ number;
1842
2478
  /** Optional. Token returned by previous call to `ListMemberships` which specifies the position in the list from where to continue listing the resources. */
1843
- pageToken?: string;
2479
+ pageToken?:
2480
+ string;
1844
2481
  /**
1845
2482
  * Required. The parent (project and location) where the Memberships will be listed. Specified in the format `projects/*‍/locations/*`. `projects/*‍/locations/-` list memberships
1846
2483
  * in all the regions.
1847
2484
  */
1848
- parent: string;
2485
+ parent:
2486
+ string;
1849
2487
  /** Returns response with indentations and line breaks. */
1850
- prettyPrint?: boolean;
2488
+ prettyPrint?:
2489
+ boolean;
1851
2490
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1852
- quotaUser?: string;
2491
+ quotaUser?:
2492
+ string;
1853
2493
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1854
- upload_protocol?: string;
2494
+ upload_protocol?:
2495
+ string;
1855
2496
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1856
- uploadType?: string;
2497
+ uploadType?:
2498
+ string;
1857
2499
  }): Request<ListMembershipsResponse>;
1858
2500
  /** Updates an existing Membership. */
1859
2501
  patch(request: {
1860
2502
  /** V1 error format. */
1861
- "$.xgafv"?: string;
2503
+ "$.xgafv"?:
2504
+ string;
1862
2505
  /** OAuth access token. */
1863
- access_token?: string;
2506
+ access_token?:
2507
+ string;
1864
2508
  /** Data format for response. */
1865
- alt?: string;
2509
+ alt?:
2510
+ string;
1866
2511
  /** JSONP */
1867
- callback?: string;
2512
+ callback?:
2513
+ string;
1868
2514
  /** Selector specifying which fields to include in a partial response. */
1869
- fields?: string;
2515
+ fields?:
2516
+ string;
1870
2517
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1871
- key?: string;
2518
+ key?:
2519
+ string;
1872
2520
  /** Required. The Membership resource name in the format `projects/*‍/locations/*‍/memberships/*`. */
1873
- name: string;
2521
+ name:
2522
+ string;
1874
2523
  /** OAuth 2.0 token for the current user. */
1875
- oauth_token?: string;
2524
+ oauth_token?:
2525
+ string;
1876
2526
  /** Returns response with indentations and line breaks. */
1877
- prettyPrint?: boolean;
2527
+ prettyPrint?:
2528
+ boolean;
1878
2529
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1879
- quotaUser?: string;
2530
+ quotaUser?:
2531
+ string;
1880
2532
  /**
1881
2533
  * Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already
1882
2534
  * been completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the
@@ -1884,37 +2536,52 @@ declare namespace gapi.client {
1884
2536
  * ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not
1885
2537
  * supported (00000000-0000-0000-0000-000000000000).
1886
2538
  */
1887
- requestId?: string;
2539
+ requestId?:
2540
+ string;
1888
2541
  /** Required. Mask of fields to update. */
1889
- updateMask?: string;
2542
+ updateMask?:
2543
+ string;
1890
2544
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1891
- upload_protocol?: string;
2545
+ upload_protocol?:
2546
+ string;
1892
2547
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1893
- uploadType?: string;
2548
+ uploadType?:
2549
+ string;
1894
2550
  /** Request body */
1895
- resource: Membership;
2551
+ resource:
2552
+ Membership;
1896
2553
  }): Request<Operation>;
1897
2554
  patch(request: {
1898
2555
  /** V1 error format. */
1899
- "$.xgafv"?: string;
2556
+ "$.xgafv"?:
2557
+ string;
1900
2558
  /** OAuth access token. */
1901
- access_token?: string;
2559
+ access_token?:
2560
+ string;
1902
2561
  /** Data format for response. */
1903
- alt?: string;
2562
+ alt?:
2563
+ string;
1904
2564
  /** JSONP */
1905
- callback?: string;
2565
+ callback?:
2566
+ string;
1906
2567
  /** Selector specifying which fields to include in a partial response. */
1907
- fields?: string;
2568
+ fields?:
2569
+ string;
1908
2570
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1909
- key?: string;
2571
+ key?:
2572
+ string;
1910
2573
  /** Required. The Membership resource name in the format `projects/*‍/locations/*‍/memberships/*`. */
1911
- name: string;
2574
+ name:
2575
+ string;
1912
2576
  /** OAuth 2.0 token for the current user. */
1913
- oauth_token?: string;
2577
+ oauth_token?:
2578
+ string;
1914
2579
  /** Returns response with indentations and line breaks. */
1915
- prettyPrint?: boolean;
2580
+ prettyPrint?:
2581
+ boolean;
1916
2582
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1917
- quotaUser?: string;
2583
+ quotaUser?:
2584
+ string;
1918
2585
  /**
1919
2586
  * Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already
1920
2587
  * been completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the
@@ -1922,44 +2589,60 @@ declare namespace gapi.client {
1922
2589
  * ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not
1923
2590
  * supported (00000000-0000-0000-0000-000000000000).
1924
2591
  */
1925
- requestId?: string;
2592
+ requestId?:
2593
+ string;
1926
2594
  /** Required. Mask of fields to update. */
1927
- updateMask?: string;
2595
+ updateMask?:
2596
+ string;
1928
2597
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1929
- upload_protocol?: string;
2598
+ upload_protocol?:
2599
+ string;
1930
2600
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1931
- uploadType?: string;
2601
+ uploadType?:
2602
+ string;
1932
2603
  },
1933
2604
  body: Membership): Request<Operation>;
1934
2605
  /** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
1935
2606
  setIamPolicy(request: {
1936
2607
  /** V1 error format. */
1937
- "$.xgafv"?: string;
2608
+ "$.xgafv"?:
2609
+ string;
1938
2610
  /** OAuth access token. */
1939
- access_token?: string;
2611
+ access_token?:
2612
+ string;
1940
2613
  /** Data format for response. */
1941
- alt?: string;
2614
+ alt?:
2615
+ string;
1942
2616
  /** JSONP */
1943
- callback?: string;
2617
+ callback?:
2618
+ string;
1944
2619
  /** Selector specifying which fields to include in a partial response. */
1945
- fields?: string;
2620
+ fields?:
2621
+ string;
1946
2622
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1947
- key?: string;
2623
+ key?:
2624
+ string;
1948
2625
  /** OAuth 2.0 token for the current user. */
1949
- oauth_token?: string;
2626
+ oauth_token?:
2627
+ string;
1950
2628
  /** Returns response with indentations and line breaks. */
1951
- prettyPrint?: boolean;
2629
+ prettyPrint?:
2630
+ boolean;
1952
2631
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1953
- quotaUser?: string;
2632
+ quotaUser?:
2633
+ string;
1954
2634
  /**
1955
2635
  * REQUIRED: The resource for which the policy is being specified. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this
1956
2636
  * field.
1957
2637
  */
1958
- resource: string;
2638
+ resource:
2639
+ string;
1959
2640
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1960
- upload_protocol?: string;
2641
+ upload_protocol?:
2642
+ string;
1961
2643
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1962
- uploadType?: string;
2644
+ uploadType?:
2645
+ string;
1963
2646
  },
1964
2647
  body: SetIamPolicyRequest): Request<Policy>;
1965
2648
  /**
@@ -1968,35 +2651,48 @@ declare namespace gapi.client {
1968
2651
  */
1969
2652
  testIamPermissions(request: {
1970
2653
  /** V1 error format. */
1971
- "$.xgafv"?: string;
2654
+ "$.xgafv"?:
2655
+ string;
1972
2656
  /** OAuth access token. */
1973
- access_token?: string;
2657
+ access_token?:
2658
+ string;
1974
2659
  /** Data format for response. */
1975
- alt?: string;
2660
+ alt?:
2661
+ string;
1976
2662
  /** JSONP */
1977
- callback?: string;
2663
+ callback?:
2664
+ string;
1978
2665
  /** Selector specifying which fields to include in a partial response. */
1979
- fields?: string;
2666
+ fields?:
2667
+ string;
1980
2668
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1981
- key?: string;
2669
+ key?:
2670
+ string;
1982
2671
  /** OAuth 2.0 token for the current user. */
1983
- oauth_token?: string;
2672
+ oauth_token?:
2673
+ string;
1984
2674
  /** Returns response with indentations and line breaks. */
1985
- prettyPrint?: boolean;
2675
+ prettyPrint?:
2676
+ boolean;
1986
2677
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1987
- quotaUser?: string;
2678
+ quotaUser?:
2679
+ string;
1988
2680
  /**
1989
2681
  * REQUIRED: The resource for which the policy detail is being requested. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for
1990
2682
  * this field.
1991
2683
  */
1992
- resource: string;
2684
+ resource:
2685
+ string;
1993
2686
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1994
- upload_protocol?: string;
2687
+ upload_protocol?:
2688
+ string;
1995
2689
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1996
- uploadType?: string;
2690
+ uploadType?:
2691
+ string;
1997
2692
  },
1998
2693
  body: TestIamPermissionsRequest): Request<TestIamPermissionsResponse>;
1999
- bindings: BindingsResource;
2694
+ bindings:
2695
+ BindingsResource;
2000
2696
  }
2001
2697
  interface OperationsResource {
2002
2698
  /**
@@ -2007,57 +2703,82 @@ declare namespace gapi.client {
2007
2703
  */
2008
2704
  cancel(request: {
2009
2705
  /** V1 error format. */
2010
- "$.xgafv"?: string;
2706
+ "$.xgafv"?:
2707
+ string;
2011
2708
  /** OAuth access token. */
2012
- access_token?: string;
2709
+ access_token?:
2710
+ string;
2013
2711
  /** Data format for response. */
2014
- alt?: string;
2712
+ alt?:
2713
+ string;
2015
2714
  /** JSONP */
2016
- callback?: string;
2715
+ callback?:
2716
+ string;
2017
2717
  /** Selector specifying which fields to include in a partial response. */
2018
- fields?: string;
2718
+ fields?:
2719
+ string;
2019
2720
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2020
- key?: string;
2721
+ key?:
2722
+ string;
2021
2723
  /** The name of the operation resource to be cancelled. */
2022
- name: string;
2724
+ name:
2725
+ string;
2023
2726
  /** OAuth 2.0 token for the current user. */
2024
- oauth_token?: string;
2727
+ oauth_token?:
2728
+ string;
2025
2729
  /** Returns response with indentations and line breaks. */
2026
- prettyPrint?: boolean;
2730
+ prettyPrint?:
2731
+ boolean;
2027
2732
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
2028
- quotaUser?: string;
2733
+ quotaUser?:
2734
+ string;
2029
2735
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2030
- upload_protocol?: string;
2736
+ upload_protocol?:
2737
+ string;
2031
2738
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2032
- uploadType?: string;
2739
+ uploadType?:
2740
+ string;
2033
2741
  /** Request body */
2034
- resource: CancelOperationRequest;
2742
+ resource:
2743
+ CancelOperationRequest;
2035
2744
  }): Request<{}>;
2036
2745
  cancel(request: {
2037
2746
  /** V1 error format. */
2038
- "$.xgafv"?: string;
2747
+ "$.xgafv"?:
2748
+ string;
2039
2749
  /** OAuth access token. */
2040
- access_token?: string;
2750
+ access_token?:
2751
+ string;
2041
2752
  /** Data format for response. */
2042
- alt?: string;
2753
+ alt?:
2754
+ string;
2043
2755
  /** JSONP */
2044
- callback?: string;
2756
+ callback?:
2757
+ string;
2045
2758
  /** Selector specifying which fields to include in a partial response. */
2046
- fields?: string;
2759
+ fields?:
2760
+ string;
2047
2761
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2048
- key?: string;
2762
+ key?:
2763
+ string;
2049
2764
  /** The name of the operation resource to be cancelled. */
2050
- name: string;
2765
+ name:
2766
+ string;
2051
2767
  /** OAuth 2.0 token for the current user. */
2052
- oauth_token?: string;
2768
+ oauth_token?:
2769
+ string;
2053
2770
  /** Returns response with indentations and line breaks. */
2054
- prettyPrint?: boolean;
2771
+ prettyPrint?:
2772
+ boolean;
2055
2773
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
2056
- quotaUser?: string;
2774
+ quotaUser?:
2775
+ string;
2057
2776
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2058
- upload_protocol?: string;
2777
+ upload_protocol?:
2778
+ string;
2059
2779
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2060
- uploadType?: string;
2780
+ uploadType?:
2781
+ string;
2061
2782
  },
2062
2783
  body: CancelOperationRequest): Request<{}>;
2063
2784
  /**
@@ -2066,309 +2787,445 @@ declare namespace gapi.client {
2066
2787
  */
2067
2788
  delete(request?: {
2068
2789
  /** V1 error format. */
2069
- "$.xgafv"?: string;
2790
+ "$.xgafv"?:
2791
+ string;
2070
2792
  /** OAuth access token. */
2071
- access_token?: string;
2793
+ access_token?:
2794
+ string;
2072
2795
  /** Data format for response. */
2073
- alt?: string;
2796
+ alt?:
2797
+ string;
2074
2798
  /** JSONP */
2075
- callback?: string;
2799
+ callback?:
2800
+ string;
2076
2801
  /** Selector specifying which fields to include in a partial response. */
2077
- fields?: string;
2802
+ fields?:
2803
+ string;
2078
2804
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2079
- key?: string;
2805
+ key?:
2806
+ string;
2080
2807
  /** The name of the operation resource to be deleted. */
2081
- name: string;
2808
+ name:
2809
+ string;
2082
2810
  /** OAuth 2.0 token for the current user. */
2083
- oauth_token?: string;
2811
+ oauth_token?:
2812
+ string;
2084
2813
  /** Returns response with indentations and line breaks. */
2085
- prettyPrint?: boolean;
2814
+ prettyPrint?:
2815
+ boolean;
2086
2816
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
2087
- quotaUser?: string;
2817
+ quotaUser?:
2818
+ string;
2088
2819
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2089
- upload_protocol?: string;
2820
+ upload_protocol?:
2821
+ string;
2090
2822
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2091
- uploadType?: string;
2823
+ uploadType?:
2824
+ string;
2092
2825
  }): Request<{}>;
2093
2826
  /** Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service. */
2094
2827
  get(request?: {
2095
2828
  /** V1 error format. */
2096
- "$.xgafv"?: string;
2829
+ "$.xgafv"?:
2830
+ string;
2097
2831
  /** OAuth access token. */
2098
- access_token?: string;
2832
+ access_token?:
2833
+ string;
2099
2834
  /** Data format for response. */
2100
- alt?: string;
2835
+ alt?:
2836
+ string;
2101
2837
  /** JSONP */
2102
- callback?: string;
2838
+ callback?:
2839
+ string;
2103
2840
  /** Selector specifying which fields to include in a partial response. */
2104
- fields?: string;
2841
+ fields?:
2842
+ string;
2105
2843
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2106
- key?: string;
2844
+ key?:
2845
+ string;
2107
2846
  /** The name of the operation resource. */
2108
- name: string;
2847
+ name:
2848
+ string;
2109
2849
  /** OAuth 2.0 token for the current user. */
2110
- oauth_token?: string;
2850
+ oauth_token?:
2851
+ string;
2111
2852
  /** Returns response with indentations and line breaks. */
2112
- prettyPrint?: boolean;
2853
+ prettyPrint?:
2854
+ boolean;
2113
2855
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
2114
- quotaUser?: string;
2856
+ quotaUser?:
2857
+ string;
2115
2858
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2116
- upload_protocol?: string;
2859
+ upload_protocol?:
2860
+ string;
2117
2861
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2118
- uploadType?: string;
2862
+ uploadType?:
2863
+ string;
2119
2864
  }): Request<Operation>;
2120
2865
  /** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
2121
2866
  list(request?: {
2122
2867
  /** V1 error format. */
2123
- "$.xgafv"?: string;
2868
+ "$.xgafv"?:
2869
+ string;
2124
2870
  /** OAuth access token. */
2125
- access_token?: string;
2871
+ access_token?:
2872
+ string;
2126
2873
  /** Data format for response. */
2127
- alt?: string;
2874
+ alt?:
2875
+ string;
2128
2876
  /** JSONP */
2129
- callback?: string;
2877
+ callback?:
2878
+ string;
2130
2879
  /** Selector specifying which fields to include in a partial response. */
2131
- fields?: string;
2880
+ fields?:
2881
+ string;
2132
2882
  /** The standard list filter. */
2133
- filter?: string;
2883
+ filter?:
2884
+ string;
2134
2885
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2135
- key?: string;
2886
+ key?:
2887
+ string;
2136
2888
  /** The name of the operation's parent resource. */
2137
- name: string;
2889
+ name:
2890
+ string;
2138
2891
  /** OAuth 2.0 token for the current user. */
2139
- oauth_token?: string;
2892
+ oauth_token?:
2893
+ string;
2140
2894
  /** The standard list page size. */
2141
- pageSize?: number;
2895
+ pageSize?:
2896
+ number;
2142
2897
  /** The standard list page token. */
2143
- pageToken?: string;
2898
+ pageToken?:
2899
+ string;
2144
2900
  /** Returns response with indentations and line breaks. */
2145
- prettyPrint?: boolean;
2901
+ prettyPrint?:
2902
+ boolean;
2146
2903
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
2147
- quotaUser?: string;
2904
+ quotaUser?:
2905
+ string;
2148
2906
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2149
- upload_protocol?: string;
2907
+ upload_protocol?:
2908
+ string;
2150
2909
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2151
- uploadType?: string;
2910
+ uploadType?:
2911
+ string;
2152
2912
  }): Request<ListOperationsResponse>;
2153
2913
  }
2154
2914
  interface ScopesResource {
2155
2915
  /** Creates a Scope. */
2156
2916
  create(request: {
2157
2917
  /** V1 error format. */
2158
- "$.xgafv"?: string;
2918
+ "$.xgafv"?:
2919
+ string;
2159
2920
  /** OAuth access token. */
2160
- access_token?: string;
2921
+ access_token?:
2922
+ string;
2161
2923
  /** Data format for response. */
2162
- alt?: string;
2924
+ alt?:
2925
+ string;
2163
2926
  /** JSONP */
2164
- callback?: string;
2927
+ callback?:
2928
+ string;
2165
2929
  /** Selector specifying which fields to include in a partial response. */
2166
- fields?: string;
2930
+ fields?:
2931
+ string;
2167
2932
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2168
- key?: string;
2933
+ key?:
2934
+ string;
2169
2935
  /** OAuth 2.0 token for the current user. */
2170
- oauth_token?: string;
2936
+ oauth_token?:
2937
+ string;
2171
2938
  /** Required. The parent (project and location) where the Scope will be created. Specified in the format `projects/*‍/locations/*`. */
2172
- parent: string;
2939
+ parent:
2940
+ string;
2173
2941
  /** Returns response with indentations and line breaks. */
2174
- prettyPrint?: boolean;
2942
+ prettyPrint?:
2943
+ boolean;
2175
2944
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
2176
- quotaUser?: string;
2945
+ quotaUser?:
2946
+ string;
2177
2947
  /** Required. Client chosen ID for the Scope. `scope_id` must be a ???? */
2178
- scopeId?: string;
2948
+ scopeId?:
2949
+ string;
2179
2950
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2180
- upload_protocol?: string;
2951
+ upload_protocol?:
2952
+ string;
2181
2953
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2182
- uploadType?: string;
2954
+ uploadType?:
2955
+ string;
2183
2956
  /** Request body */
2184
- resource: Scope;
2957
+ resource:
2958
+ Scope;
2185
2959
  }): Request<Operation>;
2186
2960
  create(request: {
2187
2961
  /** V1 error format. */
2188
- "$.xgafv"?: string;
2962
+ "$.xgafv"?:
2963
+ string;
2189
2964
  /** OAuth access token. */
2190
- access_token?: string;
2965
+ access_token?:
2966
+ string;
2191
2967
  /** Data format for response. */
2192
- alt?: string;
2968
+ alt?:
2969
+ string;
2193
2970
  /** JSONP */
2194
- callback?: string;
2971
+ callback?:
2972
+ string;
2195
2973
  /** Selector specifying which fields to include in a partial response. */
2196
- fields?: string;
2974
+ fields?:
2975
+ string;
2197
2976
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2198
- key?: string;
2977
+ key?:
2978
+ string;
2199
2979
  /** OAuth 2.0 token for the current user. */
2200
- oauth_token?: string;
2980
+ oauth_token?:
2981
+ string;
2201
2982
  /** Required. The parent (project and location) where the Scope will be created. Specified in the format `projects/*‍/locations/*`. */
2202
- parent: string;
2983
+ parent:
2984
+ string;
2203
2985
  /** Returns response with indentations and line breaks. */
2204
- prettyPrint?: boolean;
2986
+ prettyPrint?:
2987
+ boolean;
2205
2988
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
2206
- quotaUser?: string;
2989
+ quotaUser?:
2990
+ string;
2207
2991
  /** Required. Client chosen ID for the Scope. `scope_id` must be a ???? */
2208
- scopeId?: string;
2992
+ scopeId?:
2993
+ string;
2209
2994
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2210
- upload_protocol?: string;
2995
+ upload_protocol?:
2996
+ string;
2211
2997
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2212
- uploadType?: string;
2998
+ uploadType?:
2999
+ string;
2213
3000
  },
2214
3001
  body: Scope): Request<Operation>;
2215
3002
  /** Deletes a Scope. */
2216
3003
  delete(request?: {
2217
3004
  /** V1 error format. */
2218
- "$.xgafv"?: string;
3005
+ "$.xgafv"?:
3006
+ string;
2219
3007
  /** OAuth access token. */
2220
- access_token?: string;
3008
+ access_token?:
3009
+ string;
2221
3010
  /** Data format for response. */
2222
- alt?: string;
3011
+ alt?:
3012
+ string;
2223
3013
  /** JSONP */
2224
- callback?: string;
3014
+ callback?:
3015
+ string;
2225
3016
  /** Selector specifying which fields to include in a partial response. */
2226
- fields?: string;
3017
+ fields?:
3018
+ string;
2227
3019
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2228
- key?: string;
3020
+ key?:
3021
+ string;
2229
3022
  /** Required. The Scope resource name in the format `projects/*‍/locations/*‍/scopes/*`. */
2230
- name: string;
3023
+ name:
3024
+ string;
2231
3025
  /** OAuth 2.0 token for the current user. */
2232
- oauth_token?: string;
3026
+ oauth_token?:
3027
+ string;
2233
3028
  /** Returns response with indentations and line breaks. */
2234
- prettyPrint?: boolean;
3029
+ prettyPrint?:
3030
+ boolean;
2235
3031
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
2236
- quotaUser?: string;
3032
+ quotaUser?:
3033
+ string;
2237
3034
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2238
- upload_protocol?: string;
3035
+ upload_protocol?:
3036
+ string;
2239
3037
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2240
- uploadType?: string;
3038
+ uploadType?:
3039
+ string;
2241
3040
  }): Request<Operation>;
2242
3041
  /** Returns the details of a Scope. */
2243
3042
  get(request?: {
2244
3043
  /** V1 error format. */
2245
- "$.xgafv"?: string;
3044
+ "$.xgafv"?:
3045
+ string;
2246
3046
  /** OAuth access token. */
2247
- access_token?: string;
3047
+ access_token?:
3048
+ string;
2248
3049
  /** Data format for response. */
2249
- alt?: string;
3050
+ alt?:
3051
+ string;
2250
3052
  /** JSONP */
2251
- callback?: string;
3053
+ callback?:
3054
+ string;
2252
3055
  /** Selector specifying which fields to include in a partial response. */
2253
- fields?: string;
3056
+ fields?:
3057
+ string;
2254
3058
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2255
- key?: string;
3059
+ key?:
3060
+ string;
2256
3061
  /** Required. The Scope resource name in the format `projects/*‍/locations/*‍/scopes/*`. */
2257
- name: string;
3062
+ name:
3063
+ string;
2258
3064
  /** OAuth 2.0 token for the current user. */
2259
- oauth_token?: string;
3065
+ oauth_token?:
3066
+ string;
2260
3067
  /** Returns response with indentations and line breaks. */
2261
- prettyPrint?: boolean;
3068
+ prettyPrint?:
3069
+ boolean;
2262
3070
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
2263
- quotaUser?: string;
3071
+ quotaUser?:
3072
+ string;
2264
3073
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2265
- upload_protocol?: string;
3074
+ upload_protocol?:
3075
+ string;
2266
3076
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2267
- uploadType?: string;
3077
+ uploadType?:
3078
+ string;
2268
3079
  }): Request<Scope>;
2269
3080
  /** Lists Scopes. */
2270
3081
  list(request?: {
2271
3082
  /** V1 error format. */
2272
- "$.xgafv"?: string;
3083
+ "$.xgafv"?:
3084
+ string;
2273
3085
  /** OAuth access token. */
2274
- access_token?: string;
3086
+ access_token?:
3087
+ string;
2275
3088
  /** Data format for response. */
2276
- alt?: string;
3089
+ alt?:
3090
+ string;
2277
3091
  /** JSONP */
2278
- callback?: string;
3092
+ callback?:
3093
+ string;
2279
3094
  /** Selector specifying which fields to include in a partial response. */
2280
- fields?: string;
3095
+ fields?:
3096
+ string;
2281
3097
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2282
- key?: string;
3098
+ key?:
3099
+ string;
2283
3100
  /** OAuth 2.0 token for the current user. */
2284
- oauth_token?: string;
3101
+ oauth_token?:
3102
+ string;
2285
3103
  /** Optional. When requesting a 'page' of resources, `page_size` specifies number of resources to return. If unspecified or set to 0, all resources will be returned. */
2286
- pageSize?: number;
3104
+ pageSize?:
3105
+ number;
2287
3106
  /** Optional. Token returned by previous call to `ListScopes` which specifies the position in the list from where to continue listing the resources. */
2288
- pageToken?: string;
3107
+ pageToken?:
3108
+ string;
2289
3109
  /** Required. The parent (project and location) where the Scope will be listed. Specified in the format `projects/*‍/locations/*`. */
2290
- parent: string;
3110
+ parent:
3111
+ string;
2291
3112
  /** Returns response with indentations and line breaks. */
2292
- prettyPrint?: boolean;
3113
+ prettyPrint?:
3114
+ boolean;
2293
3115
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
2294
- quotaUser?: string;
3116
+ quotaUser?:
3117
+ string;
2295
3118
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2296
- upload_protocol?: string;
3119
+ upload_protocol?:
3120
+ string;
2297
3121
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2298
- uploadType?: string;
3122
+ uploadType?:
3123
+ string;
2299
3124
  }): Request<ListScopesResponse>;
2300
3125
  }
2301
3126
  interface LocationsResource {
2302
3127
  /** Gets information about a location. */
2303
3128
  get(request?: {
2304
3129
  /** V1 error format. */
2305
- "$.xgafv"?: string;
3130
+ "$.xgafv"?:
3131
+ string;
2306
3132
  /** OAuth access token. */
2307
- access_token?: string;
3133
+ access_token?:
3134
+ string;
2308
3135
  /** Data format for response. */
2309
- alt?: string;
3136
+ alt?:
3137
+ string;
2310
3138
  /** JSONP */
2311
- callback?: string;
3139
+ callback?:
3140
+ string;
2312
3141
  /** Selector specifying which fields to include in a partial response. */
2313
- fields?: string;
3142
+ fields?:
3143
+ string;
2314
3144
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2315
- key?: string;
3145
+ key?:
3146
+ string;
2316
3147
  /** Resource name for the location. */
2317
- name: string;
3148
+ name:
3149
+ string;
2318
3150
  /** OAuth 2.0 token for the current user. */
2319
- oauth_token?: string;
3151
+ oauth_token?:
3152
+ string;
2320
3153
  /** Returns response with indentations and line breaks. */
2321
- prettyPrint?: boolean;
3154
+ prettyPrint?:
3155
+ boolean;
2322
3156
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
2323
- quotaUser?: string;
3157
+ quotaUser?:
3158
+ string;
2324
3159
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2325
- upload_protocol?: string;
3160
+ upload_protocol?:
3161
+ string;
2326
3162
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2327
- uploadType?: string;
3163
+ uploadType?:
3164
+ string;
2328
3165
  }): Request<Location>;
2329
3166
  /** Lists information about the supported locations for this service. */
2330
3167
  list(request?: {
2331
3168
  /** V1 error format. */
2332
- "$.xgafv"?: string;
3169
+ "$.xgafv"?:
3170
+ string;
2333
3171
  /** OAuth access token. */
2334
- access_token?: string;
3172
+ access_token?:
3173
+ string;
2335
3174
  /** Data format for response. */
2336
- alt?: string;
3175
+ alt?:
3176
+ string;
2337
3177
  /** JSONP */
2338
- callback?: string;
3178
+ callback?:
3179
+ string;
2339
3180
  /** Selector specifying which fields to include in a partial response. */
2340
- fields?: string;
3181
+ fields?:
3182
+ string;
2341
3183
  /**
2342
3184
  * A filter to narrow down results to a preferred subset. The filtering language accepts strings like `"displayName=tokyo"`, and is documented in more detail in
2343
3185
  * [AIP-160](https://google.aip.dev/160).
2344
3186
  */
2345
- filter?: string;
3187
+ filter?:
3188
+ string;
2346
3189
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2347
- key?: string;
3190
+ key?:
3191
+ string;
2348
3192
  /** The resource that owns the locations collection, if applicable. */
2349
- name: string;
3193
+ name:
3194
+ string;
2350
3195
  /** OAuth 2.0 token for the current user. */
2351
- oauth_token?: string;
3196
+ oauth_token?:
3197
+ string;
2352
3198
  /** The maximum number of results to return. If not set, the service selects a default. */
2353
- pageSize?: number;
3199
+ pageSize?:
3200
+ number;
2354
3201
  /** A page token received from the `next_page_token` field in the response. Send that page token to receive the subsequent page. */
2355
- pageToken?: string;
3202
+ pageToken?:
3203
+ string;
2356
3204
  /** Returns response with indentations and line breaks. */
2357
- prettyPrint?: boolean;
3205
+ prettyPrint?:
3206
+ boolean;
2358
3207
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
2359
- quotaUser?: string;
3208
+ quotaUser?:
3209
+ string;
2360
3210
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2361
- upload_protocol?: string;
3211
+ upload_protocol?:
3212
+ string;
2362
3213
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2363
- uploadType?: string;
3214
+ uploadType?:
3215
+ string;
2364
3216
  }): Request<ListLocationsResponse>;
2365
- features: FeaturesResource;
2366
- memberships: MembershipsResource;
2367
- operations: OperationsResource;
2368
- scopes: ScopesResource;
3217
+ features:
3218
+ FeaturesResource;
3219
+ memberships:
3220
+ MembershipsResource;
3221
+ operations:
3222
+ OperationsResource;
3223
+ scopes:
3224
+ ScopesResource;
2369
3225
  }
2370
3226
  interface ProjectsResource {
2371
- locations: LocationsResource;
3227
+ locations:
3228
+ LocationsResource;
2372
3229
  }
2373
3230
 
2374
3231
  const projects: ProjectsResource;