@maxim_mazurok/gapi.client.gkehub-v1alpha 0.0.20231103 → 0.0.20231114
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +104 -737
- package/package.json +1 -1
- package/tests.ts +17 -127
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://gkehub.googleapis.com/$discovery/rest?version=v1alpha
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20231114
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -98,6 +98,14 @@ declare namespace gapi.client {
|
|
|
98
98
|
workloadIdentityPool?:
|
|
99
99
|
string;
|
|
100
100
|
}
|
|
101
|
+
interface BinaryAuthorizationConfig {
|
|
102
|
+
/** Optional. Mode of operation for binauthz policy evaluation. */
|
|
103
|
+
evaluationMode?:
|
|
104
|
+
string;
|
|
105
|
+
/** Optional. Binauthz policies that apply to this cluster. */
|
|
106
|
+
policyBindings?:
|
|
107
|
+
PolicyBinding[];
|
|
108
|
+
}
|
|
101
109
|
interface Binding {
|
|
102
110
|
/**
|
|
103
111
|
* The condition that is associated with this binding. If the condition evaluates to `true`, then this binding applies to the current request. If the condition evaluates to `false`,
|
|
@@ -409,12 +417,6 @@ declare namespace gapi.client {
|
|
|
409
417
|
/** Specifies whether the Config Sync Repo is in "hierarchical" or "unstructured" mode. */
|
|
410
418
|
sourceFormat?:
|
|
411
419
|
string;
|
|
412
|
-
/**
|
|
413
|
-
* Set to true to stop syncing configs for a single cluster when automatic Feature management is enabled. Default to false. The field will be ignored when automatic Feature management
|
|
414
|
-
* is disabled.
|
|
415
|
-
*/
|
|
416
|
-
stopSyncing?:
|
|
417
|
-
boolean;
|
|
418
420
|
}
|
|
419
421
|
interface ConfigManagementConfigSyncDeploymentState {
|
|
420
422
|
/** Deployment state of admission-webhook */
|
|
@@ -600,9 +602,6 @@ declare namespace gapi.client {
|
|
|
600
602
|
/** Hierarchy Controller configuration for the cluster. */
|
|
601
603
|
hierarchyController?:
|
|
602
604
|
ConfigManagementHierarchyControllerConfig;
|
|
603
|
-
/** Enables automatic Feature management. */
|
|
604
|
-
management?:
|
|
605
|
-
string;
|
|
606
605
|
/** Policy Controller configuration for the cluster. */
|
|
607
606
|
policyController?:
|
|
608
607
|
ConfigManagementPolicyController;
|
|
@@ -762,6 +761,9 @@ declare namespace gapi.client {
|
|
|
762
761
|
TypeMeta;
|
|
763
762
|
}
|
|
764
763
|
interface DefaultClusterConfig {
|
|
764
|
+
/** Optional. Enable/Disable binary authorization features for the cluster. */
|
|
765
|
+
binaryAuthorizationConfig?:
|
|
766
|
+
BinaryAuthorizationConfig;
|
|
765
767
|
/** Enable/Disable Security Posture features for the cluster. */
|
|
766
768
|
securityPostureConfig?:
|
|
767
769
|
SecurityPostureConfig;
|
|
@@ -1227,14 +1229,6 @@ declare namespace gapi.client {
|
|
|
1227
1229
|
unreachable?:
|
|
1228
1230
|
string[];
|
|
1229
1231
|
}
|
|
1230
|
-
interface ListNamespacesResponse {
|
|
1231
|
-
/** The list of fleet namespaces */
|
|
1232
|
-
namespaces?:
|
|
1233
|
-
Namespace[];
|
|
1234
|
-
/** A token to request the next page of resources from the `ListNamespaces` method. The value of an empty string means that there are no more resources to return. */
|
|
1235
|
-
nextPageToken?:
|
|
1236
|
-
string;
|
|
1237
|
-
}
|
|
1238
1232
|
interface ListOperationsResponse {
|
|
1239
1233
|
/** The standard List next-page token. */
|
|
1240
1234
|
nextPageToken?:
|
|
@@ -1243,14 +1237,6 @@ declare namespace gapi.client {
|
|
|
1243
1237
|
operations?:
|
|
1244
1238
|
Operation[];
|
|
1245
1239
|
}
|
|
1246
|
-
interface ListRBACRoleBindingsResponse {
|
|
1247
|
-
/** A token to request the next page of resources from the `ListRBACRoleBindings` method. The value of an empty string means that there are no more resources to return. */
|
|
1248
|
-
nextPageToken?:
|
|
1249
|
-
string;
|
|
1250
|
-
/** The list of RBACRoleBindings */
|
|
1251
|
-
rbacrolebindings?:
|
|
1252
|
-
RBACRoleBinding[];
|
|
1253
|
-
}
|
|
1254
1240
|
interface ListScopeNamespacesResponse {
|
|
1255
1241
|
/** A token to request the next page of resources from the `ListNamespaces` method. The value of an empty string means that there are no more resources to return. */
|
|
1256
1242
|
nextPageToken?:
|
|
@@ -1704,6 +1690,11 @@ declare namespace gapi.client {
|
|
|
1704
1690
|
version?:
|
|
1705
1691
|
number;
|
|
1706
1692
|
}
|
|
1693
|
+
interface PolicyBinding {
|
|
1694
|
+
/** The relative resource name of the binauthz platform policy to audit. GKE platform policies have the following format: `projects/{project_number}/platforms/gke/policies/{policy_id}`. */
|
|
1695
|
+
name?:
|
|
1696
|
+
string;
|
|
1697
|
+
}
|
|
1707
1698
|
interface PolicyControllerBundleInstallSpec {
|
|
1708
1699
|
/** The set of namespaces to be exempted from the bundle. */
|
|
1709
1700
|
exemptedNamespaces?:
|
|
@@ -1864,7 +1855,7 @@ declare namespace gapi.client {
|
|
|
1864
1855
|
labels?:
|
|
1865
1856
|
{ [P in string]: string };
|
|
1866
1857
|
/**
|
|
1867
|
-
* The resource name for the rbacrolebinding `projects/{project}/locations/{location}/
|
|
1858
|
+
* The resource name for the rbacrolebinding `projects/{project}/locations/{location}/scopes/{scope}/rbacrolebindings/{rbacrolebinding}` or
|
|
1868
1859
|
* `projects/{project}/locations/{location}/memberships/{membership}/rbacrolebindings/{rbacrolebinding}`
|
|
1869
1860
|
*/
|
|
1870
1861
|
name?:
|
|
@@ -3650,7 +3641,7 @@ declare namespace gapi.client {
|
|
|
3650
3641
|
key?:
|
|
3651
3642
|
string;
|
|
3652
3643
|
/**
|
|
3653
|
-
* The resource name for the rbacrolebinding `projects/{project}/locations/{location}/
|
|
3644
|
+
* The resource name for the rbacrolebinding `projects/{project}/locations/{location}/scopes/{scope}/rbacrolebindings/{rbacrolebinding}` or
|
|
3654
3645
|
* `projects/{project}/locations/{location}/memberships/{membership}/rbacrolebindings/{rbacrolebinding}`
|
|
3655
3646
|
*/
|
|
3656
3647
|
name:
|
|
@@ -3697,7 +3688,7 @@ declare namespace gapi.client {
|
|
|
3697
3688
|
key?:
|
|
3698
3689
|
string;
|
|
3699
3690
|
/**
|
|
3700
|
-
* The resource name for the rbacrolebinding `projects/{project}/locations/{location}/
|
|
3691
|
+
* The resource name for the rbacrolebinding `projects/{project}/locations/{location}/scopes/{scope}/rbacrolebindings/{rbacrolebinding}` or
|
|
3701
3692
|
* `projects/{project}/locations/{location}/memberships/{membership}/rbacrolebindings/{rbacrolebinding}`
|
|
3702
3693
|
*/
|
|
3703
3694
|
name:
|
|
@@ -4442,9 +4433,14 @@ declare namespace gapi.client {
|
|
|
4442
4433
|
rbacrolebindings:
|
|
4443
4434
|
RbacrolebindingsResource;
|
|
4444
4435
|
}
|
|
4445
|
-
interface
|
|
4446
|
-
/**
|
|
4447
|
-
|
|
4436
|
+
interface OperationsResource {
|
|
4437
|
+
/**
|
|
4438
|
+
* Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support
|
|
4439
|
+
* this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the
|
|
4440
|
+
* operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a
|
|
4441
|
+
* google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
|
|
4442
|
+
*/
|
|
4443
|
+
cancel(request: {
|
|
4448
4444
|
/** V1 error format. */
|
|
4449
4445
|
"$.xgafv"?:
|
|
4450
4446
|
string;
|
|
@@ -4463,25 +4459,18 @@ declare namespace gapi.client {
|
|
|
4463
4459
|
/** 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. */
|
|
4464
4460
|
key?:
|
|
4465
4461
|
string;
|
|
4462
|
+
/** The name of the operation resource to be cancelled. */
|
|
4463
|
+
name:
|
|
4464
|
+
string;
|
|
4466
4465
|
/** OAuth 2.0 token for the current user. */
|
|
4467
4466
|
oauth_token?:
|
|
4468
4467
|
string;
|
|
4469
|
-
/** Required. The parent (project and location) where the RBACRoleBinding will be created. Specified in the format `projects/*/locations/*/namespaces/*`. */
|
|
4470
|
-
parent:
|
|
4471
|
-
string;
|
|
4472
4468
|
/** Returns response with indentations and line breaks. */
|
|
4473
4469
|
prettyPrint?:
|
|
4474
4470
|
boolean;
|
|
4475
4471
|
/** 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. */
|
|
4476
4472
|
quotaUser?:
|
|
4477
4473
|
string;
|
|
4478
|
-
/**
|
|
4479
|
-
* Required. Client chosen ID for the RBACRoleBinding. `rbacrolebinding_id` must be a valid RFC 1123 compliant DNS label: 1. At most 63 characters in length 2. It must consist of
|
|
4480
|
-
* lower case 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
|
|
4481
|
-
* maximum length of 63 characters.
|
|
4482
|
-
*/
|
|
4483
|
-
rbacrolebindingId?:
|
|
4484
|
-
string;
|
|
4485
4474
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4486
4475
|
upload_protocol?:
|
|
4487
4476
|
string;
|
|
@@ -4490,9 +4479,9 @@ declare namespace gapi.client {
|
|
|
4490
4479
|
string;
|
|
4491
4480
|
/** Request body */
|
|
4492
4481
|
resource:
|
|
4493
|
-
|
|
4494
|
-
}): Request<
|
|
4495
|
-
|
|
4482
|
+
CancelOperationRequest;
|
|
4483
|
+
}): Request<{}>;
|
|
4484
|
+
cancel(request: {
|
|
4496
4485
|
/** V1 error format. */
|
|
4497
4486
|
"$.xgafv"?:
|
|
4498
4487
|
string;
|
|
@@ -4511,25 +4500,18 @@ declare namespace gapi.client {
|
|
|
4511
4500
|
/** 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. */
|
|
4512
4501
|
key?:
|
|
4513
4502
|
string;
|
|
4503
|
+
/** The name of the operation resource to be cancelled. */
|
|
4504
|
+
name:
|
|
4505
|
+
string;
|
|
4514
4506
|
/** OAuth 2.0 token for the current user. */
|
|
4515
4507
|
oauth_token?:
|
|
4516
4508
|
string;
|
|
4517
|
-
/** Required. The parent (project and location) where the RBACRoleBinding will be created. Specified in the format `projects/*/locations/*/namespaces/*`. */
|
|
4518
|
-
parent:
|
|
4519
|
-
string;
|
|
4520
4509
|
/** Returns response with indentations and line breaks. */
|
|
4521
4510
|
prettyPrint?:
|
|
4522
4511
|
boolean;
|
|
4523
4512
|
/** 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. */
|
|
4524
4513
|
quotaUser?:
|
|
4525
4514
|
string;
|
|
4526
|
-
/**
|
|
4527
|
-
* Required. Client chosen ID for the RBACRoleBinding. `rbacrolebinding_id` must be a valid RFC 1123 compliant DNS label: 1. At most 63 characters in length 2. It must consist of
|
|
4528
|
-
* lower case 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
|
|
4529
|
-
* maximum length of 63 characters.
|
|
4530
|
-
*/
|
|
4531
|
-
rbacrolebindingId?:
|
|
4532
|
-
string;
|
|
4533
4515
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4534
4516
|
upload_protocol?:
|
|
4535
4517
|
string;
|
|
@@ -4537,8 +4519,11 @@ declare namespace gapi.client {
|
|
|
4537
4519
|
uploadType?:
|
|
4538
4520
|
string;
|
|
4539
4521
|
},
|
|
4540
|
-
body:
|
|
4541
|
-
/**
|
|
4522
|
+
body: CancelOperationRequest): Request<{}>;
|
|
4523
|
+
/**
|
|
4524
|
+
* Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't
|
|
4525
|
+
* support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
|
|
4526
|
+
*/
|
|
4542
4527
|
delete(request?: {
|
|
4543
4528
|
/** V1 error format. */
|
|
4544
4529
|
"$.xgafv"?:
|
|
@@ -4558,7 +4543,7 @@ declare namespace gapi.client {
|
|
|
4558
4543
|
/** 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. */
|
|
4559
4544
|
key?:
|
|
4560
4545
|
string;
|
|
4561
|
-
/**
|
|
4546
|
+
/** The name of the operation resource to be deleted. */
|
|
4562
4547
|
name:
|
|
4563
4548
|
string;
|
|
4564
4549
|
/** OAuth 2.0 token for the current user. */
|
|
@@ -4576,8 +4561,8 @@ declare namespace gapi.client {
|
|
|
4576
4561
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4577
4562
|
uploadType?:
|
|
4578
4563
|
string;
|
|
4579
|
-
}): Request<
|
|
4580
|
-
/**
|
|
4564
|
+
}): Request<{}>;
|
|
4565
|
+
/** 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. */
|
|
4581
4566
|
get(request?: {
|
|
4582
4567
|
/** V1 error format. */
|
|
4583
4568
|
"$.xgafv"?:
|
|
@@ -4597,7 +4582,7 @@ declare namespace gapi.client {
|
|
|
4597
4582
|
/** 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. */
|
|
4598
4583
|
key?:
|
|
4599
4584
|
string;
|
|
4600
|
-
/**
|
|
4585
|
+
/** The name of the operation resource. */
|
|
4601
4586
|
name:
|
|
4602
4587
|
string;
|
|
4603
4588
|
/** OAuth 2.0 token for the current user. */
|
|
@@ -4615,8 +4600,8 @@ declare namespace gapi.client {
|
|
|
4615
4600
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4616
4601
|
uploadType?:
|
|
4617
4602
|
string;
|
|
4618
|
-
}): Request<
|
|
4619
|
-
/** Lists
|
|
4603
|
+
}): Request<Operation>;
|
|
4604
|
+
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
4620
4605
|
list(request?: {
|
|
4621
4606
|
/** V1 error format. */
|
|
4622
4607
|
"$.xgafv"?:
|
|
@@ -4633,21 +4618,24 @@ declare namespace gapi.client {
|
|
|
4633
4618
|
/** Selector specifying which fields to include in a partial response. */
|
|
4634
4619
|
fields?:
|
|
4635
4620
|
string;
|
|
4621
|
+
/** The standard list filter. */
|
|
4622
|
+
filter?:
|
|
4623
|
+
string;
|
|
4636
4624
|
/** 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. */
|
|
4637
4625
|
key?:
|
|
4638
4626
|
string;
|
|
4627
|
+
/** The name of the operation's parent resource. */
|
|
4628
|
+
name:
|
|
4629
|
+
string;
|
|
4639
4630
|
/** OAuth 2.0 token for the current user. */
|
|
4640
4631
|
oauth_token?:
|
|
4641
4632
|
string;
|
|
4642
|
-
/**
|
|
4633
|
+
/** The standard list page size. */
|
|
4643
4634
|
pageSize?:
|
|
4644
4635
|
number;
|
|
4645
|
-
/**
|
|
4636
|
+
/** The standard list page token. */
|
|
4646
4637
|
pageToken?:
|
|
4647
4638
|
string;
|
|
4648
|
-
/** Required. The parent (project and location) where the Features will be listed. Specified in the format `projects/*/locations/*/namespaces/*`. */
|
|
4649
|
-
parent:
|
|
4650
|
-
string;
|
|
4651
4639
|
/** Returns response with indentations and line breaks. */
|
|
4652
4640
|
prettyPrint?:
|
|
4653
4641
|
boolean;
|
|
@@ -4660,9 +4648,11 @@ declare namespace gapi.client {
|
|
|
4660
4648
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4661
4649
|
uploadType?:
|
|
4662
4650
|
string;
|
|
4663
|
-
}): Request<
|
|
4664
|
-
|
|
4665
|
-
|
|
4651
|
+
}): Request<ListOperationsResponse>;
|
|
4652
|
+
}
|
|
4653
|
+
interface NamespacesResource {
|
|
4654
|
+
/** Creates a fleet namespace. */
|
|
4655
|
+
create(request: {
|
|
4666
4656
|
/** V1 error format. */
|
|
4667
4657
|
"$.xgafv"?:
|
|
4668
4658
|
string;
|
|
@@ -4681,61 +4671,11 @@ declare namespace gapi.client {
|
|
|
4681
4671
|
/** 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. */
|
|
4682
4672
|
key?:
|
|
4683
4673
|
string;
|
|
4684
|
-
/**
|
|
4685
|
-
* The resource name for the rbacrolebinding `projects/{project}/locations/{location}/namespaces/{namespace}/rbacrolebindings/{rbacrolebinding}` or
|
|
4686
|
-
* `projects/{project}/locations/{location}/memberships/{membership}/rbacrolebindings/{rbacrolebinding}`
|
|
4687
|
-
*/
|
|
4688
|
-
name:
|
|
4689
|
-
string;
|
|
4690
4674
|
/** OAuth 2.0 token for the current user. */
|
|
4691
4675
|
oauth_token?:
|
|
4692
4676
|
string;
|
|
4693
|
-
/**
|
|
4694
|
-
|
|
4695
|
-
boolean;
|
|
4696
|
-
/** 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. */
|
|
4697
|
-
quotaUser?:
|
|
4698
|
-
string;
|
|
4699
|
-
/** Required. The fields to be updated. */
|
|
4700
|
-
updateMask?:
|
|
4701
|
-
string;
|
|
4702
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4703
|
-
upload_protocol?:
|
|
4704
|
-
string;
|
|
4705
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4706
|
-
uploadType?:
|
|
4707
|
-
string;
|
|
4708
|
-
/** Request body */
|
|
4709
|
-
resource:
|
|
4710
|
-
RBACRoleBinding;
|
|
4711
|
-
}): Request<Operation>;
|
|
4712
|
-
patch(request: {
|
|
4713
|
-
/** V1 error format. */
|
|
4714
|
-
"$.xgafv"?:
|
|
4715
|
-
string;
|
|
4716
|
-
/** OAuth access token. */
|
|
4717
|
-
access_token?:
|
|
4718
|
-
string;
|
|
4719
|
-
/** Data format for response. */
|
|
4720
|
-
alt?:
|
|
4721
|
-
string;
|
|
4722
|
-
/** JSONP */
|
|
4723
|
-
callback?:
|
|
4724
|
-
string;
|
|
4725
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
4726
|
-
fields?:
|
|
4727
|
-
string;
|
|
4728
|
-
/** 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. */
|
|
4729
|
-
key?:
|
|
4730
|
-
string;
|
|
4731
|
-
/**
|
|
4732
|
-
* The resource name for the rbacrolebinding `projects/{project}/locations/{location}/namespaces/{namespace}/rbacrolebindings/{rbacrolebinding}` or
|
|
4733
|
-
* `projects/{project}/locations/{location}/memberships/{membership}/rbacrolebindings/{rbacrolebinding}`
|
|
4734
|
-
*/
|
|
4735
|
-
name:
|
|
4736
|
-
string;
|
|
4737
|
-
/** OAuth 2.0 token for the current user. */
|
|
4738
|
-
oauth_token?:
|
|
4677
|
+
/** Required. The parent (project and location) where the Namespace will be created. Specified in the format `projects/*/locations/*/scopes/*`. */
|
|
4678
|
+
parent:
|
|
4739
4679
|
string;
|
|
4740
4680
|
/** Returns response with indentations and line breaks. */
|
|
4741
4681
|
prettyPrint?:
|
|
@@ -4743,57 +4683,12 @@ declare namespace gapi.client {
|
|
|
4743
4683
|
/** 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. */
|
|
4744
4684
|
quotaUser?:
|
|
4745
4685
|
string;
|
|
4746
|
-
/** Required. The fields to be updated. */
|
|
4747
|
-
updateMask?:
|
|
4748
|
-
string;
|
|
4749
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4750
|
-
upload_protocol?:
|
|
4751
|
-
string;
|
|
4752
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4753
|
-
uploadType?:
|
|
4754
|
-
string;
|
|
4755
|
-
},
|
|
4756
|
-
body: RBACRoleBinding): Request<Operation>;
|
|
4757
|
-
}
|
|
4758
|
-
interface NamespacesResource {
|
|
4759
|
-
/** Creates a fleet namespace. */
|
|
4760
|
-
create(request: {
|
|
4761
|
-
/** V1 error format. */
|
|
4762
|
-
"$.xgafv"?:
|
|
4763
|
-
string;
|
|
4764
|
-
/** OAuth access token. */
|
|
4765
|
-
access_token?:
|
|
4766
|
-
string;
|
|
4767
|
-
/** Data format for response. */
|
|
4768
|
-
alt?:
|
|
4769
|
-
string;
|
|
4770
|
-
/** JSONP */
|
|
4771
|
-
callback?:
|
|
4772
|
-
string;
|
|
4773
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
4774
|
-
fields?:
|
|
4775
|
-
string;
|
|
4776
|
-
/** 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. */
|
|
4777
|
-
key?:
|
|
4778
|
-
string;
|
|
4779
4686
|
/**
|
|
4780
4687
|
* Required. Client chosen ID for the Namespace. `namespace_id` must be a valid RFC 1123 compliant DNS label: 1. At most 63 characters in length 2. It must consist of lower case
|
|
4781
4688
|
* 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
|
|
4782
4689
|
* length of 63 characters.
|
|
4783
4690
|
*/
|
|
4784
|
-
|
|
4785
|
-
string;
|
|
4786
|
-
/** OAuth 2.0 token for the current user. */
|
|
4787
|
-
oauth_token?:
|
|
4788
|
-
string;
|
|
4789
|
-
/** Required. The parent (project and location) where the Namespace will be created. Specified in the format `projects/*/locations/*`. */
|
|
4790
|
-
parent:
|
|
4791
|
-
string;
|
|
4792
|
-
/** Returns response with indentations and line breaks. */
|
|
4793
|
-
prettyPrint?:
|
|
4794
|
-
boolean;
|
|
4795
|
-
/** 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. */
|
|
4796
|
-
quotaUser?:
|
|
4691
|
+
scopeNamespaceId?:
|
|
4797
4692
|
string;
|
|
4798
4693
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4799
4694
|
upload_protocol?:
|
|
@@ -4824,17 +4719,10 @@ declare namespace gapi.client {
|
|
|
4824
4719
|
/** 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. */
|
|
4825
4720
|
key?:
|
|
4826
4721
|
string;
|
|
4827
|
-
/**
|
|
4828
|
-
* Required. Client chosen ID for the Namespace. `namespace_id` must be a valid RFC 1123 compliant DNS label: 1. At most 63 characters in length 2. It must consist of lower case
|
|
4829
|
-
* 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
|
|
4830
|
-
* length of 63 characters.
|
|
4831
|
-
*/
|
|
4832
|
-
namespaceId?:
|
|
4833
|
-
string;
|
|
4834
4722
|
/** OAuth 2.0 token for the current user. */
|
|
4835
4723
|
oauth_token?:
|
|
4836
4724
|
string;
|
|
4837
|
-
/** Required. The parent (project and location) where the Namespace will be created. Specified in the format `projects/*/locations/*`. */
|
|
4725
|
+
/** Required. The parent (project and location) where the Namespace will be created. Specified in the format `projects/*/locations/*/scopes/*`. */
|
|
4838
4726
|
parent:
|
|
4839
4727
|
string;
|
|
4840
4728
|
/** Returns response with indentations and line breaks. */
|
|
@@ -4843,6 +4731,13 @@ declare namespace gapi.client {
|
|
|
4843
4731
|
/** 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. */
|
|
4844
4732
|
quotaUser?:
|
|
4845
4733
|
string;
|
|
4734
|
+
/**
|
|
4735
|
+
* Required. Client chosen ID for the Namespace. `namespace_id` must be a valid RFC 1123 compliant DNS label: 1. At most 63 characters in length 2. It must consist of lower case
|
|
4736
|
+
* 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
|
|
4737
|
+
* length of 63 characters.
|
|
4738
|
+
*/
|
|
4739
|
+
scopeNamespaceId?:
|
|
4740
|
+
string;
|
|
4846
4741
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4847
4742
|
upload_protocol?:
|
|
4848
4743
|
string;
|
|
@@ -4871,7 +4766,7 @@ declare namespace gapi.client {
|
|
|
4871
4766
|
/** 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. */
|
|
4872
4767
|
key?:
|
|
4873
4768
|
string;
|
|
4874
|
-
/** Required. The Namespace resource name in the format `projects/*/locations/*/namespaces/*`. */
|
|
4769
|
+
/** Required. The Namespace resource name in the format `projects/*/locations/*/scopes/*/namespaces/*`. */
|
|
4875
4770
|
name:
|
|
4876
4771
|
string;
|
|
4877
4772
|
/** OAuth 2.0 token for the current user. */
|
|
@@ -4910,7 +4805,7 @@ declare namespace gapi.client {
|
|
|
4910
4805
|
/** 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. */
|
|
4911
4806
|
key?:
|
|
4912
4807
|
string;
|
|
4913
|
-
/** Required. The Namespace resource name in the format `projects/*/locations/*/namespaces/*`. */
|
|
4808
|
+
/** Required. The Namespace resource name in the format `projects/*/locations/*/scopes/*/namespaces/*`. */
|
|
4914
4809
|
name:
|
|
4915
4810
|
string;
|
|
4916
4811
|
/** OAuth 2.0 token for the current user. */
|
|
@@ -4958,7 +4853,7 @@ declare namespace gapi.client {
|
|
|
4958
4853
|
/** Optional. Token returned by previous call to `ListFeatures` which specifies the position in the list from where to continue listing the resources. */
|
|
4959
4854
|
pageToken?:
|
|
4960
4855
|
string;
|
|
4961
|
-
/** Required. The parent (project and location) where the Features will be listed. Specified in the format `projects/*/locations/*`. */
|
|
4856
|
+
/** Required. The parent (project and location) where the Features will be listed. Specified in the format `projects/*/locations/*/scopes/*`. */
|
|
4962
4857
|
parent:
|
|
4963
4858
|
string;
|
|
4964
4859
|
/** Returns response with indentations and line breaks. */
|
|
@@ -4973,7 +4868,7 @@ declare namespace gapi.client {
|
|
|
4973
4868
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4974
4869
|
uploadType?:
|
|
4975
4870
|
string;
|
|
4976
|
-
}): Request<
|
|
4871
|
+
}): Request<ListScopeNamespacesResponse>;
|
|
4977
4872
|
/** Updates a fleet namespace. */
|
|
4978
4873
|
patch(request: {
|
|
4979
4874
|
/** V1 error format. */
|
|
@@ -5061,17 +4956,10 @@ declare namespace gapi.client {
|
|
|
5061
4956
|
string;
|
|
5062
4957
|
},
|
|
5063
4958
|
body: Namespace): Request<Operation>;
|
|
5064
|
-
rbacrolebindings:
|
|
5065
|
-
RbacrolebindingsResource;
|
|
5066
4959
|
}
|
|
5067
|
-
interface
|
|
5068
|
-
/**
|
|
5069
|
-
|
|
5070
|
-
* this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the
|
|
5071
|
-
* operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a
|
|
5072
|
-
* google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
|
|
5073
|
-
*/
|
|
5074
|
-
cancel(request: {
|
|
4960
|
+
interface RbacrolebindingsResource {
|
|
4961
|
+
/** Creates a Scope RBACRoleBinding. */
|
|
4962
|
+
create(request: {
|
|
5075
4963
|
/** V1 error format. */
|
|
5076
4964
|
"$.xgafv"?:
|
|
5077
4965
|
string;
|
|
@@ -5090,18 +4978,25 @@ declare namespace gapi.client {
|
|
|
5090
4978
|
/** 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. */
|
|
5091
4979
|
key?:
|
|
5092
4980
|
string;
|
|
5093
|
-
/** The name of the operation resource to be cancelled. */
|
|
5094
|
-
name:
|
|
5095
|
-
string;
|
|
5096
4981
|
/** OAuth 2.0 token for the current user. */
|
|
5097
4982
|
oauth_token?:
|
|
5098
4983
|
string;
|
|
4984
|
+
/** Required. The parent (project and location) where the RBACRoleBinding will be created. Specified in the format `projects/*/locations/*/scopes/*`. */
|
|
4985
|
+
parent:
|
|
4986
|
+
string;
|
|
5099
4987
|
/** Returns response with indentations and line breaks. */
|
|
5100
4988
|
prettyPrint?:
|
|
5101
4989
|
boolean;
|
|
5102
4990
|
/** 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. */
|
|
5103
4991
|
quotaUser?:
|
|
5104
4992
|
string;
|
|
4993
|
+
/**
|
|
4994
|
+
* Required. Client chosen ID for the RBACRoleBinding. `rbacrolebinding_id` must be a valid RFC 1123 compliant DNS label: 1. At most 63 characters in length 2. It must consist of
|
|
4995
|
+
* lower case 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
|
|
4996
|
+
* maximum length of 63 characters.
|
|
4997
|
+
*/
|
|
4998
|
+
rbacrolebindingId?:
|
|
4999
|
+
string;
|
|
5105
5000
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5106
5001
|
upload_protocol?:
|
|
5107
5002
|
string;
|
|
@@ -5110,9 +5005,9 @@ declare namespace gapi.client {
|
|
|
5110
5005
|
string;
|
|
5111
5006
|
/** Request body */
|
|
5112
5007
|
resource:
|
|
5113
|
-
|
|
5114
|
-
}): Request<
|
|
5115
|
-
|
|
5008
|
+
RBACRoleBinding;
|
|
5009
|
+
}): Request<Operation>;
|
|
5010
|
+
create(request: {
|
|
5116
5011
|
/** V1 error format. */
|
|
5117
5012
|
"$.xgafv"?:
|
|
5118
5013
|
string;
|
|
@@ -5131,550 +5026,24 @@ declare namespace gapi.client {
|
|
|
5131
5026
|
/** 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. */
|
|
5132
5027
|
key?:
|
|
5133
5028
|
string;
|
|
5134
|
-
/** The name of the operation resource to be cancelled. */
|
|
5135
|
-
name:
|
|
5136
|
-
string;
|
|
5137
5029
|
/** OAuth 2.0 token for the current user. */
|
|
5138
5030
|
oauth_token?:
|
|
5139
5031
|
string;
|
|
5032
|
+
/** Required. The parent (project and location) where the RBACRoleBinding will be created. Specified in the format `projects/*/locations/*/scopes/*`. */
|
|
5033
|
+
parent:
|
|
5034
|
+
string;
|
|
5140
5035
|
/** Returns response with indentations and line breaks. */
|
|
5141
5036
|
prettyPrint?:
|
|
5142
5037
|
boolean;
|
|
5143
5038
|
/** 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. */
|
|
5144
5039
|
quotaUser?:
|
|
5145
|
-
string;
|
|
5146
|
-
/**
|
|
5147
|
-
|
|
5148
|
-
|
|
5149
|
-
|
|
5150
|
-
|
|
5151
|
-
|
|
5152
|
-
},
|
|
5153
|
-
body: CancelOperationRequest): Request<{}>;
|
|
5154
|
-
/**
|
|
5155
|
-
* Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't
|
|
5156
|
-
* support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
|
|
5157
|
-
*/
|
|
5158
|
-
delete(request?: {
|
|
5159
|
-
/** V1 error format. */
|
|
5160
|
-
"$.xgafv"?:
|
|
5161
|
-
string;
|
|
5162
|
-
/** OAuth access token. */
|
|
5163
|
-
access_token?:
|
|
5164
|
-
string;
|
|
5165
|
-
/** Data format for response. */
|
|
5166
|
-
alt?:
|
|
5167
|
-
string;
|
|
5168
|
-
/** JSONP */
|
|
5169
|
-
callback?:
|
|
5170
|
-
string;
|
|
5171
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
5172
|
-
fields?:
|
|
5173
|
-
string;
|
|
5174
|
-
/** 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. */
|
|
5175
|
-
key?:
|
|
5176
|
-
string;
|
|
5177
|
-
/** The name of the operation resource to be deleted. */
|
|
5178
|
-
name:
|
|
5179
|
-
string;
|
|
5180
|
-
/** OAuth 2.0 token for the current user. */
|
|
5181
|
-
oauth_token?:
|
|
5182
|
-
string;
|
|
5183
|
-
/** Returns response with indentations and line breaks. */
|
|
5184
|
-
prettyPrint?:
|
|
5185
|
-
boolean;
|
|
5186
|
-
/** 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. */
|
|
5187
|
-
quotaUser?:
|
|
5188
|
-
string;
|
|
5189
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5190
|
-
upload_protocol?:
|
|
5191
|
-
string;
|
|
5192
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5193
|
-
uploadType?:
|
|
5194
|
-
string;
|
|
5195
|
-
}): Request<{}>;
|
|
5196
|
-
/** 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. */
|
|
5197
|
-
get(request?: {
|
|
5198
|
-
/** V1 error format. */
|
|
5199
|
-
"$.xgafv"?:
|
|
5200
|
-
string;
|
|
5201
|
-
/** OAuth access token. */
|
|
5202
|
-
access_token?:
|
|
5203
|
-
string;
|
|
5204
|
-
/** Data format for response. */
|
|
5205
|
-
alt?:
|
|
5206
|
-
string;
|
|
5207
|
-
/** JSONP */
|
|
5208
|
-
callback?:
|
|
5209
|
-
string;
|
|
5210
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
5211
|
-
fields?:
|
|
5212
|
-
string;
|
|
5213
|
-
/** 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. */
|
|
5214
|
-
key?:
|
|
5215
|
-
string;
|
|
5216
|
-
/** The name of the operation resource. */
|
|
5217
|
-
name:
|
|
5218
|
-
string;
|
|
5219
|
-
/** OAuth 2.0 token for the current user. */
|
|
5220
|
-
oauth_token?:
|
|
5221
|
-
string;
|
|
5222
|
-
/** Returns response with indentations and line breaks. */
|
|
5223
|
-
prettyPrint?:
|
|
5224
|
-
boolean;
|
|
5225
|
-
/** 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. */
|
|
5226
|
-
quotaUser?:
|
|
5227
|
-
string;
|
|
5228
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5229
|
-
upload_protocol?:
|
|
5230
|
-
string;
|
|
5231
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5232
|
-
uploadType?:
|
|
5233
|
-
string;
|
|
5234
|
-
}): Request<Operation>;
|
|
5235
|
-
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
5236
|
-
list(request?: {
|
|
5237
|
-
/** V1 error format. */
|
|
5238
|
-
"$.xgafv"?:
|
|
5239
|
-
string;
|
|
5240
|
-
/** OAuth access token. */
|
|
5241
|
-
access_token?:
|
|
5242
|
-
string;
|
|
5243
|
-
/** Data format for response. */
|
|
5244
|
-
alt?:
|
|
5245
|
-
string;
|
|
5246
|
-
/** JSONP */
|
|
5247
|
-
callback?:
|
|
5248
|
-
string;
|
|
5249
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
5250
|
-
fields?:
|
|
5251
|
-
string;
|
|
5252
|
-
/** The standard list filter. */
|
|
5253
|
-
filter?:
|
|
5254
|
-
string;
|
|
5255
|
-
/** 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. */
|
|
5256
|
-
key?:
|
|
5257
|
-
string;
|
|
5258
|
-
/** The name of the operation's parent resource. */
|
|
5259
|
-
name:
|
|
5260
|
-
string;
|
|
5261
|
-
/** OAuth 2.0 token for the current user. */
|
|
5262
|
-
oauth_token?:
|
|
5263
|
-
string;
|
|
5264
|
-
/** The standard list page size. */
|
|
5265
|
-
pageSize?:
|
|
5266
|
-
number;
|
|
5267
|
-
/** The standard list page token. */
|
|
5268
|
-
pageToken?:
|
|
5269
|
-
string;
|
|
5270
|
-
/** Returns response with indentations and line breaks. */
|
|
5271
|
-
prettyPrint?:
|
|
5272
|
-
boolean;
|
|
5273
|
-
/** 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. */
|
|
5274
|
-
quotaUser?:
|
|
5275
|
-
string;
|
|
5276
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5277
|
-
upload_protocol?:
|
|
5278
|
-
string;
|
|
5279
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5280
|
-
uploadType?:
|
|
5281
|
-
string;
|
|
5282
|
-
}): Request<ListOperationsResponse>;
|
|
5283
|
-
}
|
|
5284
|
-
interface NamespacesResource {
|
|
5285
|
-
/** Creates a fleet namespace. */
|
|
5286
|
-
create(request: {
|
|
5287
|
-
/** V1 error format. */
|
|
5288
|
-
"$.xgafv"?:
|
|
5289
|
-
string;
|
|
5290
|
-
/** OAuth access token. */
|
|
5291
|
-
access_token?:
|
|
5292
|
-
string;
|
|
5293
|
-
/** Data format for response. */
|
|
5294
|
-
alt?:
|
|
5295
|
-
string;
|
|
5296
|
-
/** JSONP */
|
|
5297
|
-
callback?:
|
|
5298
|
-
string;
|
|
5299
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
5300
|
-
fields?:
|
|
5301
|
-
string;
|
|
5302
|
-
/** 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. */
|
|
5303
|
-
key?:
|
|
5304
|
-
string;
|
|
5305
|
-
/** OAuth 2.0 token for the current user. */
|
|
5306
|
-
oauth_token?:
|
|
5307
|
-
string;
|
|
5308
|
-
/** Required. The parent (project and location) where the Namespace will be created. Specified in the format `projects/*/locations/*/scopes/*`. */
|
|
5309
|
-
parent:
|
|
5310
|
-
string;
|
|
5311
|
-
/** Returns response with indentations and line breaks. */
|
|
5312
|
-
prettyPrint?:
|
|
5313
|
-
boolean;
|
|
5314
|
-
/** 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. */
|
|
5315
|
-
quotaUser?:
|
|
5316
|
-
string;
|
|
5317
|
-
/**
|
|
5318
|
-
* Required. Client chosen ID for the Namespace. `namespace_id` must be a valid RFC 1123 compliant DNS label: 1. At most 63 characters in length 2. It must consist of lower case
|
|
5319
|
-
* 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
|
|
5320
|
-
* length of 63 characters.
|
|
5321
|
-
*/
|
|
5322
|
-
scopeNamespaceId?:
|
|
5323
|
-
string;
|
|
5324
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5325
|
-
upload_protocol?:
|
|
5326
|
-
string;
|
|
5327
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5328
|
-
uploadType?:
|
|
5329
|
-
string;
|
|
5330
|
-
/** Request body */
|
|
5331
|
-
resource:
|
|
5332
|
-
Namespace;
|
|
5333
|
-
}): Request<Operation>;
|
|
5334
|
-
create(request: {
|
|
5335
|
-
/** V1 error format. */
|
|
5336
|
-
"$.xgafv"?:
|
|
5337
|
-
string;
|
|
5338
|
-
/** OAuth access token. */
|
|
5339
|
-
access_token?:
|
|
5340
|
-
string;
|
|
5341
|
-
/** Data format for response. */
|
|
5342
|
-
alt?:
|
|
5343
|
-
string;
|
|
5344
|
-
/** JSONP */
|
|
5345
|
-
callback?:
|
|
5346
|
-
string;
|
|
5347
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
5348
|
-
fields?:
|
|
5349
|
-
string;
|
|
5350
|
-
/** 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. */
|
|
5351
|
-
key?:
|
|
5352
|
-
string;
|
|
5353
|
-
/** OAuth 2.0 token for the current user. */
|
|
5354
|
-
oauth_token?:
|
|
5355
|
-
string;
|
|
5356
|
-
/** Required. The parent (project and location) where the Namespace will be created. Specified in the format `projects/*/locations/*/scopes/*`. */
|
|
5357
|
-
parent:
|
|
5358
|
-
string;
|
|
5359
|
-
/** Returns response with indentations and line breaks. */
|
|
5360
|
-
prettyPrint?:
|
|
5361
|
-
boolean;
|
|
5362
|
-
/** 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. */
|
|
5363
|
-
quotaUser?:
|
|
5364
|
-
string;
|
|
5365
|
-
/**
|
|
5366
|
-
* Required. Client chosen ID for the Namespace. `namespace_id` must be a valid RFC 1123 compliant DNS label: 1. At most 63 characters in length 2. It must consist of lower case
|
|
5367
|
-
* 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
|
|
5368
|
-
* length of 63 characters.
|
|
5369
|
-
*/
|
|
5370
|
-
scopeNamespaceId?:
|
|
5371
|
-
string;
|
|
5372
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5373
|
-
upload_protocol?:
|
|
5374
|
-
string;
|
|
5375
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5376
|
-
uploadType?:
|
|
5377
|
-
string;
|
|
5378
|
-
},
|
|
5379
|
-
body: Namespace): Request<Operation>;
|
|
5380
|
-
/** Deletes a fleet namespace. */
|
|
5381
|
-
delete(request?: {
|
|
5382
|
-
/** V1 error format. */
|
|
5383
|
-
"$.xgafv"?:
|
|
5384
|
-
string;
|
|
5385
|
-
/** OAuth access token. */
|
|
5386
|
-
access_token?:
|
|
5387
|
-
string;
|
|
5388
|
-
/** Data format for response. */
|
|
5389
|
-
alt?:
|
|
5390
|
-
string;
|
|
5391
|
-
/** JSONP */
|
|
5392
|
-
callback?:
|
|
5393
|
-
string;
|
|
5394
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
5395
|
-
fields?:
|
|
5396
|
-
string;
|
|
5397
|
-
/** 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. */
|
|
5398
|
-
key?:
|
|
5399
|
-
string;
|
|
5400
|
-
/** Required. The Namespace resource name in the format `projects/*/locations/*/scopes/*/namespaces/*`. */
|
|
5401
|
-
name:
|
|
5402
|
-
string;
|
|
5403
|
-
/** OAuth 2.0 token for the current user. */
|
|
5404
|
-
oauth_token?:
|
|
5405
|
-
string;
|
|
5406
|
-
/** Returns response with indentations and line breaks. */
|
|
5407
|
-
prettyPrint?:
|
|
5408
|
-
boolean;
|
|
5409
|
-
/** 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. */
|
|
5410
|
-
quotaUser?:
|
|
5411
|
-
string;
|
|
5412
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5413
|
-
upload_protocol?:
|
|
5414
|
-
string;
|
|
5415
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5416
|
-
uploadType?:
|
|
5417
|
-
string;
|
|
5418
|
-
}): Request<Operation>;
|
|
5419
|
-
/** Returns the details of a fleet namespace. */
|
|
5420
|
-
get(request?: {
|
|
5421
|
-
/** V1 error format. */
|
|
5422
|
-
"$.xgafv"?:
|
|
5423
|
-
string;
|
|
5424
|
-
/** OAuth access token. */
|
|
5425
|
-
access_token?:
|
|
5426
|
-
string;
|
|
5427
|
-
/** Data format for response. */
|
|
5428
|
-
alt?:
|
|
5429
|
-
string;
|
|
5430
|
-
/** JSONP */
|
|
5431
|
-
callback?:
|
|
5432
|
-
string;
|
|
5433
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
5434
|
-
fields?:
|
|
5435
|
-
string;
|
|
5436
|
-
/** 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. */
|
|
5437
|
-
key?:
|
|
5438
|
-
string;
|
|
5439
|
-
/** Required. The Namespace resource name in the format `projects/*/locations/*/scopes/*/namespaces/*`. */
|
|
5440
|
-
name:
|
|
5441
|
-
string;
|
|
5442
|
-
/** OAuth 2.0 token for the current user. */
|
|
5443
|
-
oauth_token?:
|
|
5444
|
-
string;
|
|
5445
|
-
/** Returns response with indentations and line breaks. */
|
|
5446
|
-
prettyPrint?:
|
|
5447
|
-
boolean;
|
|
5448
|
-
/** 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. */
|
|
5449
|
-
quotaUser?:
|
|
5450
|
-
string;
|
|
5451
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5452
|
-
upload_protocol?:
|
|
5453
|
-
string;
|
|
5454
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5455
|
-
uploadType?:
|
|
5456
|
-
string;
|
|
5457
|
-
}): Request<Namespace>;
|
|
5458
|
-
/** Lists fleet namespaces. */
|
|
5459
|
-
list(request?: {
|
|
5460
|
-
/** V1 error format. */
|
|
5461
|
-
"$.xgafv"?:
|
|
5462
|
-
string;
|
|
5463
|
-
/** OAuth access token. */
|
|
5464
|
-
access_token?:
|
|
5465
|
-
string;
|
|
5466
|
-
/** Data format for response. */
|
|
5467
|
-
alt?:
|
|
5468
|
-
string;
|
|
5469
|
-
/** JSONP */
|
|
5470
|
-
callback?:
|
|
5471
|
-
string;
|
|
5472
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
5473
|
-
fields?:
|
|
5474
|
-
string;
|
|
5475
|
-
/** 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. */
|
|
5476
|
-
key?:
|
|
5477
|
-
string;
|
|
5478
|
-
/** OAuth 2.0 token for the current user. */
|
|
5479
|
-
oauth_token?:
|
|
5480
|
-
string;
|
|
5481
|
-
/** 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. */
|
|
5482
|
-
pageSize?:
|
|
5483
|
-
number;
|
|
5484
|
-
/** Optional. Token returned by previous call to `ListFeatures` which specifies the position in the list from where to continue listing the resources. */
|
|
5485
|
-
pageToken?:
|
|
5486
|
-
string;
|
|
5487
|
-
/** Required. The parent (project and location) where the Features will be listed. Specified in the format `projects/*/locations/*/scopes/*`. */
|
|
5488
|
-
parent:
|
|
5489
|
-
string;
|
|
5490
|
-
/** Returns response with indentations and line breaks. */
|
|
5491
|
-
prettyPrint?:
|
|
5492
|
-
boolean;
|
|
5493
|
-
/** 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. */
|
|
5494
|
-
quotaUser?:
|
|
5495
|
-
string;
|
|
5496
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5497
|
-
upload_protocol?:
|
|
5498
|
-
string;
|
|
5499
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5500
|
-
uploadType?:
|
|
5501
|
-
string;
|
|
5502
|
-
}): Request<ListScopeNamespacesResponse>;
|
|
5503
|
-
/** Updates a fleet namespace. */
|
|
5504
|
-
patch(request: {
|
|
5505
|
-
/** V1 error format. */
|
|
5506
|
-
"$.xgafv"?:
|
|
5507
|
-
string;
|
|
5508
|
-
/** OAuth access token. */
|
|
5509
|
-
access_token?:
|
|
5510
|
-
string;
|
|
5511
|
-
/** Data format for response. */
|
|
5512
|
-
alt?:
|
|
5513
|
-
string;
|
|
5514
|
-
/** JSONP */
|
|
5515
|
-
callback?:
|
|
5516
|
-
string;
|
|
5517
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
5518
|
-
fields?:
|
|
5519
|
-
string;
|
|
5520
|
-
/** 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. */
|
|
5521
|
-
key?:
|
|
5522
|
-
string;
|
|
5523
|
-
/** The resource name for the namespace `projects/{project}/locations/{location}/namespaces/{namespace}` */
|
|
5524
|
-
name:
|
|
5525
|
-
string;
|
|
5526
|
-
/** OAuth 2.0 token for the current user. */
|
|
5527
|
-
oauth_token?:
|
|
5528
|
-
string;
|
|
5529
|
-
/** Returns response with indentations and line breaks. */
|
|
5530
|
-
prettyPrint?:
|
|
5531
|
-
boolean;
|
|
5532
|
-
/** 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. */
|
|
5533
|
-
quotaUser?:
|
|
5534
|
-
string;
|
|
5535
|
-
/** Required. The fields to be updated. */
|
|
5536
|
-
updateMask?:
|
|
5537
|
-
string;
|
|
5538
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5539
|
-
upload_protocol?:
|
|
5540
|
-
string;
|
|
5541
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5542
|
-
uploadType?:
|
|
5543
|
-
string;
|
|
5544
|
-
/** Request body */
|
|
5545
|
-
resource:
|
|
5546
|
-
Namespace;
|
|
5547
|
-
}): Request<Operation>;
|
|
5548
|
-
patch(request: {
|
|
5549
|
-
/** V1 error format. */
|
|
5550
|
-
"$.xgafv"?:
|
|
5551
|
-
string;
|
|
5552
|
-
/** OAuth access token. */
|
|
5553
|
-
access_token?:
|
|
5554
|
-
string;
|
|
5555
|
-
/** Data format for response. */
|
|
5556
|
-
alt?:
|
|
5557
|
-
string;
|
|
5558
|
-
/** JSONP */
|
|
5559
|
-
callback?:
|
|
5560
|
-
string;
|
|
5561
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
5562
|
-
fields?:
|
|
5563
|
-
string;
|
|
5564
|
-
/** 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. */
|
|
5565
|
-
key?:
|
|
5566
|
-
string;
|
|
5567
|
-
/** The resource name for the namespace `projects/{project}/locations/{location}/namespaces/{namespace}` */
|
|
5568
|
-
name:
|
|
5569
|
-
string;
|
|
5570
|
-
/** OAuth 2.0 token for the current user. */
|
|
5571
|
-
oauth_token?:
|
|
5572
|
-
string;
|
|
5573
|
-
/** Returns response with indentations and line breaks. */
|
|
5574
|
-
prettyPrint?:
|
|
5575
|
-
boolean;
|
|
5576
|
-
/** 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. */
|
|
5577
|
-
quotaUser?:
|
|
5578
|
-
string;
|
|
5579
|
-
/** Required. The fields to be updated. */
|
|
5580
|
-
updateMask?:
|
|
5581
|
-
string;
|
|
5582
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5583
|
-
upload_protocol?:
|
|
5584
|
-
string;
|
|
5585
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5586
|
-
uploadType?:
|
|
5587
|
-
string;
|
|
5588
|
-
},
|
|
5589
|
-
body: Namespace): Request<Operation>;
|
|
5590
|
-
}
|
|
5591
|
-
interface RbacrolebindingsResource {
|
|
5592
|
-
/** Creates a Scope RBACRoleBinding. */
|
|
5593
|
-
create(request: {
|
|
5594
|
-
/** V1 error format. */
|
|
5595
|
-
"$.xgafv"?:
|
|
5596
|
-
string;
|
|
5597
|
-
/** OAuth access token. */
|
|
5598
|
-
access_token?:
|
|
5599
|
-
string;
|
|
5600
|
-
/** Data format for response. */
|
|
5601
|
-
alt?:
|
|
5602
|
-
string;
|
|
5603
|
-
/** JSONP */
|
|
5604
|
-
callback?:
|
|
5605
|
-
string;
|
|
5606
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
5607
|
-
fields?:
|
|
5608
|
-
string;
|
|
5609
|
-
/** 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. */
|
|
5610
|
-
key?:
|
|
5611
|
-
string;
|
|
5612
|
-
/** OAuth 2.0 token for the current user. */
|
|
5613
|
-
oauth_token?:
|
|
5614
|
-
string;
|
|
5615
|
-
/** Required. The parent (project and location) where the RBACRoleBinding will be created. Specified in the format `projects/*/locations/*/scopes/*`. */
|
|
5616
|
-
parent:
|
|
5617
|
-
string;
|
|
5618
|
-
/** Returns response with indentations and line breaks. */
|
|
5619
|
-
prettyPrint?:
|
|
5620
|
-
boolean;
|
|
5621
|
-
/** 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. */
|
|
5622
|
-
quotaUser?:
|
|
5623
|
-
string;
|
|
5624
|
-
/**
|
|
5625
|
-
* Required. Client chosen ID for the RBACRoleBinding. `rbacrolebinding_id` must be a valid RFC 1123 compliant DNS label: 1. At most 63 characters in length 2. It must consist of
|
|
5626
|
-
* lower case 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
|
|
5627
|
-
* maximum length of 63 characters.
|
|
5628
|
-
*/
|
|
5629
|
-
rbacrolebindingId?:
|
|
5630
|
-
string;
|
|
5631
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5632
|
-
upload_protocol?:
|
|
5633
|
-
string;
|
|
5634
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5635
|
-
uploadType?:
|
|
5636
|
-
string;
|
|
5637
|
-
/** Request body */
|
|
5638
|
-
resource:
|
|
5639
|
-
RBACRoleBinding;
|
|
5640
|
-
}): Request<Operation>;
|
|
5641
|
-
create(request: {
|
|
5642
|
-
/** V1 error format. */
|
|
5643
|
-
"$.xgafv"?:
|
|
5644
|
-
string;
|
|
5645
|
-
/** OAuth access token. */
|
|
5646
|
-
access_token?:
|
|
5647
|
-
string;
|
|
5648
|
-
/** Data format for response. */
|
|
5649
|
-
alt?:
|
|
5650
|
-
string;
|
|
5651
|
-
/** JSONP */
|
|
5652
|
-
callback?:
|
|
5653
|
-
string;
|
|
5654
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
5655
|
-
fields?:
|
|
5656
|
-
string;
|
|
5657
|
-
/** 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. */
|
|
5658
|
-
key?:
|
|
5659
|
-
string;
|
|
5660
|
-
/** OAuth 2.0 token for the current user. */
|
|
5661
|
-
oauth_token?:
|
|
5662
|
-
string;
|
|
5663
|
-
/** Required. The parent (project and location) where the RBACRoleBinding will be created. Specified in the format `projects/*/locations/*/scopes/*`. */
|
|
5664
|
-
parent:
|
|
5665
|
-
string;
|
|
5666
|
-
/** Returns response with indentations and line breaks. */
|
|
5667
|
-
prettyPrint?:
|
|
5668
|
-
boolean;
|
|
5669
|
-
/** 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. */
|
|
5670
|
-
quotaUser?:
|
|
5671
|
-
string;
|
|
5672
|
-
/**
|
|
5673
|
-
* Required. Client chosen ID for the RBACRoleBinding. `rbacrolebinding_id` must be a valid RFC 1123 compliant DNS label: 1. At most 63 characters in length 2. It must consist of
|
|
5674
|
-
* lower case 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
|
|
5675
|
-
* maximum length of 63 characters.
|
|
5676
|
-
*/
|
|
5677
|
-
rbacrolebindingId?:
|
|
5040
|
+
string;
|
|
5041
|
+
/**
|
|
5042
|
+
* Required. Client chosen ID for the RBACRoleBinding. `rbacrolebinding_id` must be a valid RFC 1123 compliant DNS label: 1. At most 63 characters in length 2. It must consist of
|
|
5043
|
+
* lower case 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
|
|
5044
|
+
* maximum length of 63 characters.
|
|
5045
|
+
*/
|
|
5046
|
+
rbacrolebindingId?:
|
|
5678
5047
|
string;
|
|
5679
5048
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5680
5049
|
upload_protocol?:
|
|
@@ -5828,7 +5197,7 @@ declare namespace gapi.client {
|
|
|
5828
5197
|
key?:
|
|
5829
5198
|
string;
|
|
5830
5199
|
/**
|
|
5831
|
-
* The resource name for the rbacrolebinding `projects/{project}/locations/{location}/
|
|
5200
|
+
* The resource name for the rbacrolebinding `projects/{project}/locations/{location}/scopes/{scope}/rbacrolebindings/{rbacrolebinding}` or
|
|
5832
5201
|
* `projects/{project}/locations/{location}/memberships/{membership}/rbacrolebindings/{rbacrolebinding}`
|
|
5833
5202
|
*/
|
|
5834
5203
|
name:
|
|
@@ -5875,7 +5244,7 @@ declare namespace gapi.client {
|
|
|
5875
5244
|
key?:
|
|
5876
5245
|
string;
|
|
5877
5246
|
/**
|
|
5878
|
-
* The resource name for the rbacrolebinding `projects/{project}/locations/{location}/
|
|
5247
|
+
* The resource name for the rbacrolebinding `projects/{project}/locations/{location}/scopes/{scope}/rbacrolebindings/{rbacrolebinding}` or
|
|
5879
5248
|
* `projects/{project}/locations/{location}/memberships/{membership}/rbacrolebindings/{rbacrolebinding}`
|
|
5880
5249
|
*/
|
|
5881
5250
|
name:
|
|
@@ -6441,8 +5810,6 @@ declare namespace gapi.client {
|
|
|
6441
5810
|
FleetsResource;
|
|
6442
5811
|
memberships:
|
|
6443
5812
|
MembershipsResource;
|
|
6444
|
-
namespaces:
|
|
6445
|
-
NamespacesResource;
|
|
6446
5813
|
operations:
|
|
6447
5814
|
OperationsResource;
|
|
6448
5815
|
scopes:
|