@maxim_mazurok/gapi.client.gkehub-v1alpha 0.0.20231030 → 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 +136 -727
- package/package.json +1 -1
- package/tests.ts +47 -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`,
|
|
@@ -321,6 +329,9 @@ declare namespace gapi.client {
|
|
|
321
329
|
/** Multicluster Ingress-specific spec. */
|
|
322
330
|
multiclusteringress?:
|
|
323
331
|
MultiClusterIngressFeatureSpec;
|
|
332
|
+
/** Namespace Actuation feature spec */
|
|
333
|
+
namespaceactuation?:
|
|
334
|
+
NamespaceActuationFeatureSpec;
|
|
324
335
|
/** Workload Certificate spec. */
|
|
325
336
|
workloadcertificate?:
|
|
326
337
|
FeatureSpec;
|
|
@@ -335,6 +346,9 @@ declare namespace gapi.client {
|
|
|
335
346
|
/** FleetObservability feature state. */
|
|
336
347
|
fleetobservability?:
|
|
337
348
|
FleetObservabilityFeatureState;
|
|
349
|
+
/** Namespace Actuation feature state. */
|
|
350
|
+
namespaceactuation?:
|
|
351
|
+
any;
|
|
338
352
|
/** Service Mesh-specific state. */
|
|
339
353
|
servicemesh?:
|
|
340
354
|
ServiceMeshFeatureState;
|
|
@@ -403,12 +417,6 @@ declare namespace gapi.client {
|
|
|
403
417
|
/** Specifies whether the Config Sync Repo is in "hierarchical" or "unstructured" mode. */
|
|
404
418
|
sourceFormat?:
|
|
405
419
|
string;
|
|
406
|
-
/**
|
|
407
|
-
* 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
|
|
408
|
-
* is disabled.
|
|
409
|
-
*/
|
|
410
|
-
stopSyncing?:
|
|
411
|
-
boolean;
|
|
412
420
|
}
|
|
413
421
|
interface ConfigManagementConfigSyncDeploymentState {
|
|
414
422
|
/** Deployment state of admission-webhook */
|
|
@@ -594,9 +602,6 @@ declare namespace gapi.client {
|
|
|
594
602
|
/** Hierarchy Controller configuration for the cluster. */
|
|
595
603
|
hierarchyController?:
|
|
596
604
|
ConfigManagementHierarchyControllerConfig;
|
|
597
|
-
/** Enables automatic Feature management. */
|
|
598
|
-
management?:
|
|
599
|
-
string;
|
|
600
605
|
/** Policy Controller configuration for the cluster. */
|
|
601
606
|
policyController?:
|
|
602
607
|
ConfigManagementPolicyController;
|
|
@@ -755,6 +760,14 @@ declare namespace gapi.client {
|
|
|
755
760
|
type?:
|
|
756
761
|
TypeMeta;
|
|
757
762
|
}
|
|
763
|
+
interface DefaultClusterConfig {
|
|
764
|
+
/** Optional. Enable/Disable binary authorization features for the cluster. */
|
|
765
|
+
binaryAuthorizationConfig?:
|
|
766
|
+
BinaryAuthorizationConfig;
|
|
767
|
+
/** Enable/Disable Security Posture features for the cluster. */
|
|
768
|
+
securityPostureConfig?:
|
|
769
|
+
SecurityPostureConfig;
|
|
770
|
+
}
|
|
758
771
|
interface EdgeCluster {
|
|
759
772
|
/** 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 */
|
|
760
773
|
resourceLink?:
|
|
@@ -865,6 +878,9 @@ declare namespace gapi.client {
|
|
|
865
878
|
/** Output only. When the Fleet was created. */
|
|
866
879
|
createTime?:
|
|
867
880
|
string;
|
|
881
|
+
/** Optional. The default cluster configurations to apply across the fleet. */
|
|
882
|
+
defaultClusterConfig?:
|
|
883
|
+
DefaultClusterConfig;
|
|
868
884
|
/** Output only. When the Fleet was deleted. */
|
|
869
885
|
deleteTime?:
|
|
870
886
|
string;
|
|
@@ -1213,14 +1229,6 @@ declare namespace gapi.client {
|
|
|
1213
1229
|
unreachable?:
|
|
1214
1230
|
string[];
|
|
1215
1231
|
}
|
|
1216
|
-
interface ListNamespacesResponse {
|
|
1217
|
-
/** The list of fleet namespaces */
|
|
1218
|
-
namespaces?:
|
|
1219
|
-
Namespace[];
|
|
1220
|
-
/** 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. */
|
|
1221
|
-
nextPageToken?:
|
|
1222
|
-
string;
|
|
1223
|
-
}
|
|
1224
1232
|
interface ListOperationsResponse {
|
|
1225
1233
|
/** The standard List next-page token. */
|
|
1226
1234
|
nextPageToken?:
|
|
@@ -1229,14 +1237,6 @@ declare namespace gapi.client {
|
|
|
1229
1237
|
operations?:
|
|
1230
1238
|
Operation[];
|
|
1231
1239
|
}
|
|
1232
|
-
interface ListRBACRoleBindingsResponse {
|
|
1233
|
-
/** 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. */
|
|
1234
|
-
nextPageToken?:
|
|
1235
|
-
string;
|
|
1236
|
-
/** The list of RBACRoleBindings */
|
|
1237
|
-
rbacrolebindings?:
|
|
1238
|
-
RBACRoleBinding[];
|
|
1239
|
-
}
|
|
1240
1240
|
interface ListScopeNamespacesResponse {
|
|
1241
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. */
|
|
1242
1242
|
nextPageToken?:
|
|
@@ -1418,6 +1418,9 @@ declare namespace gapi.client {
|
|
|
1418
1418
|
/** Anthos Service Mesh-specific spec */
|
|
1419
1419
|
mesh?:
|
|
1420
1420
|
ServiceMeshMembershipSpec;
|
|
1421
|
+
/** FNS Actuation membership spec */
|
|
1422
|
+
namespaceactuation?:
|
|
1423
|
+
any;
|
|
1421
1424
|
/**
|
|
1422
1425
|
* Whether this per-Membership spec was inherited from a fleet-level default. This field can be updated by users by either overriding a Membership config (updated to USER implicitly)
|
|
1423
1426
|
* or setting to FLEET explicitly.
|
|
@@ -1450,6 +1453,9 @@ declare namespace gapi.client {
|
|
|
1450
1453
|
/** Metering-specific state. */
|
|
1451
1454
|
metering?:
|
|
1452
1455
|
MeteringMembershipState;
|
|
1456
|
+
/** FNS Actuation membership state */
|
|
1457
|
+
namespaceactuation?:
|
|
1458
|
+
any;
|
|
1453
1459
|
/** Policycontroller-specific state. */
|
|
1454
1460
|
policycontroller?:
|
|
1455
1461
|
PolicyControllerMembershipState;
|
|
@@ -1557,6 +1563,20 @@ declare namespace gapi.client {
|
|
|
1557
1563
|
updateTime?:
|
|
1558
1564
|
string;
|
|
1559
1565
|
}
|
|
1566
|
+
interface NamespaceActuationFeatureSpec {
|
|
1567
|
+
/** actuation_mode controls the behavior of the controller */
|
|
1568
|
+
actuationMode?:
|
|
1569
|
+
string;
|
|
1570
|
+
}
|
|
1571
|
+
// tslint:disable-next-line:no-empty-interface
|
|
1572
|
+
interface NamespaceActuationFeatureState {
|
|
1573
|
+
}
|
|
1574
|
+
// tslint:disable-next-line:no-empty-interface
|
|
1575
|
+
interface NamespaceActuationMembershipSpec {
|
|
1576
|
+
}
|
|
1577
|
+
// tslint:disable-next-line:no-empty-interface
|
|
1578
|
+
interface NamespaceActuationMembershipState {
|
|
1579
|
+
}
|
|
1560
1580
|
interface NamespaceLifecycleState {
|
|
1561
1581
|
/** Output only. The current state of the Namespace resource. */
|
|
1562
1582
|
code?:
|
|
@@ -1670,6 +1690,11 @@ declare namespace gapi.client {
|
|
|
1670
1690
|
version?:
|
|
1671
1691
|
number;
|
|
1672
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
|
+
}
|
|
1673
1698
|
interface PolicyControllerBundleInstallSpec {
|
|
1674
1699
|
/** The set of namespaces to be exempted from the bundle. */
|
|
1675
1700
|
exemptedNamespaces?:
|
|
@@ -1830,7 +1855,7 @@ declare namespace gapi.client {
|
|
|
1830
1855
|
labels?:
|
|
1831
1856
|
{ [P in string]: string };
|
|
1832
1857
|
/**
|
|
1833
|
-
* 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
|
|
1834
1859
|
* `projects/{project}/locations/{location}/memberships/{membership}/rbacrolebindings/{rbacrolebinding}`
|
|
1835
1860
|
*/
|
|
1836
1861
|
name?:
|
|
@@ -1945,6 +1970,14 @@ declare namespace gapi.client {
|
|
|
1945
1970
|
code?:
|
|
1946
1971
|
string;
|
|
1947
1972
|
}
|
|
1973
|
+
interface SecurityPostureConfig {
|
|
1974
|
+
/** Sets which mode to use for Security Posture features. */
|
|
1975
|
+
mode?:
|
|
1976
|
+
string;
|
|
1977
|
+
/** Sets which mode to use for vulnerability scanning. */
|
|
1978
|
+
vulnerabilityMode?:
|
|
1979
|
+
string;
|
|
1980
|
+
}
|
|
1948
1981
|
interface ServiceMeshAnalysisMessage {
|
|
1949
1982
|
/** A UI can combine these args with a template (based on message_base.type) to produce an internationalized message. */
|
|
1950
1983
|
args?:
|
|
@@ -3608,7 +3641,7 @@ declare namespace gapi.client {
|
|
|
3608
3641
|
key?:
|
|
3609
3642
|
string;
|
|
3610
3643
|
/**
|
|
3611
|
-
* 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
|
|
3612
3645
|
* `projects/{project}/locations/{location}/memberships/{membership}/rbacrolebindings/{rbacrolebinding}`
|
|
3613
3646
|
*/
|
|
3614
3647
|
name:
|
|
@@ -3655,7 +3688,7 @@ declare namespace gapi.client {
|
|
|
3655
3688
|
key?:
|
|
3656
3689
|
string;
|
|
3657
3690
|
/**
|
|
3658
|
-
* 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
|
|
3659
3692
|
* `projects/{project}/locations/{location}/memberships/{membership}/rbacrolebindings/{rbacrolebinding}`
|
|
3660
3693
|
*/
|
|
3661
3694
|
name:
|
|
@@ -4400,9 +4433,14 @@ declare namespace gapi.client {
|
|
|
4400
4433
|
rbacrolebindings:
|
|
4401
4434
|
RbacrolebindingsResource;
|
|
4402
4435
|
}
|
|
4403
|
-
interface
|
|
4404
|
-
/**
|
|
4405
|
-
|
|
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: {
|
|
4406
4444
|
/** V1 error format. */
|
|
4407
4445
|
"$.xgafv"?:
|
|
4408
4446
|
string;
|
|
@@ -4421,25 +4459,18 @@ declare namespace gapi.client {
|
|
|
4421
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. */
|
|
4422
4460
|
key?:
|
|
4423
4461
|
string;
|
|
4462
|
+
/** The name of the operation resource to be cancelled. */
|
|
4463
|
+
name:
|
|
4464
|
+
string;
|
|
4424
4465
|
/** OAuth 2.0 token for the current user. */
|
|
4425
4466
|
oauth_token?:
|
|
4426
4467
|
string;
|
|
4427
|
-
/** Required. The parent (project and location) where the RBACRoleBinding will be created. Specified in the format `projects/*/locations/*/namespaces/*`. */
|
|
4428
|
-
parent:
|
|
4429
|
-
string;
|
|
4430
4468
|
/** Returns response with indentations and line breaks. */
|
|
4431
4469
|
prettyPrint?:
|
|
4432
4470
|
boolean;
|
|
4433
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. */
|
|
4434
4472
|
quotaUser?:
|
|
4435
4473
|
string;
|
|
4436
|
-
/**
|
|
4437
|
-
* 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
|
|
4438
|
-
* 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
|
|
4439
|
-
* maximum length of 63 characters.
|
|
4440
|
-
*/
|
|
4441
|
-
rbacrolebindingId?:
|
|
4442
|
-
string;
|
|
4443
4474
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4444
4475
|
upload_protocol?:
|
|
4445
4476
|
string;
|
|
@@ -4448,9 +4479,9 @@ declare namespace gapi.client {
|
|
|
4448
4479
|
string;
|
|
4449
4480
|
/** Request body */
|
|
4450
4481
|
resource:
|
|
4451
|
-
|
|
4452
|
-
}): Request<
|
|
4453
|
-
|
|
4482
|
+
CancelOperationRequest;
|
|
4483
|
+
}): Request<{}>;
|
|
4484
|
+
cancel(request: {
|
|
4454
4485
|
/** V1 error format. */
|
|
4455
4486
|
"$.xgafv"?:
|
|
4456
4487
|
string;
|
|
@@ -4469,25 +4500,18 @@ declare namespace gapi.client {
|
|
|
4469
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. */
|
|
4470
4501
|
key?:
|
|
4471
4502
|
string;
|
|
4503
|
+
/** The name of the operation resource to be cancelled. */
|
|
4504
|
+
name:
|
|
4505
|
+
string;
|
|
4472
4506
|
/** OAuth 2.0 token for the current user. */
|
|
4473
4507
|
oauth_token?:
|
|
4474
4508
|
string;
|
|
4475
|
-
/** Required. The parent (project and location) where the RBACRoleBinding will be created. Specified in the format `projects/*/locations/*/namespaces/*`. */
|
|
4476
|
-
parent:
|
|
4477
|
-
string;
|
|
4478
4509
|
/** Returns response with indentations and line breaks. */
|
|
4479
4510
|
prettyPrint?:
|
|
4480
4511
|
boolean;
|
|
4481
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. */
|
|
4482
4513
|
quotaUser?:
|
|
4483
4514
|
string;
|
|
4484
|
-
/**
|
|
4485
|
-
* 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
|
|
4486
|
-
* 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
|
|
4487
|
-
* maximum length of 63 characters.
|
|
4488
|
-
*/
|
|
4489
|
-
rbacrolebindingId?:
|
|
4490
|
-
string;
|
|
4491
4515
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4492
4516
|
upload_protocol?:
|
|
4493
4517
|
string;
|
|
@@ -4495,8 +4519,11 @@ declare namespace gapi.client {
|
|
|
4495
4519
|
uploadType?:
|
|
4496
4520
|
string;
|
|
4497
4521
|
},
|
|
4498
|
-
body:
|
|
4499
|
-
/**
|
|
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
|
+
*/
|
|
4500
4527
|
delete(request?: {
|
|
4501
4528
|
/** V1 error format. */
|
|
4502
4529
|
"$.xgafv"?:
|
|
@@ -4516,7 +4543,7 @@ declare namespace gapi.client {
|
|
|
4516
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. */
|
|
4517
4544
|
key?:
|
|
4518
4545
|
string;
|
|
4519
|
-
/**
|
|
4546
|
+
/** The name of the operation resource to be deleted. */
|
|
4520
4547
|
name:
|
|
4521
4548
|
string;
|
|
4522
4549
|
/** OAuth 2.0 token for the current user. */
|
|
@@ -4534,8 +4561,8 @@ declare namespace gapi.client {
|
|
|
4534
4561
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4535
4562
|
uploadType?:
|
|
4536
4563
|
string;
|
|
4537
|
-
}): Request<
|
|
4538
|
-
/**
|
|
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. */
|
|
4539
4566
|
get(request?: {
|
|
4540
4567
|
/** V1 error format. */
|
|
4541
4568
|
"$.xgafv"?:
|
|
@@ -4555,7 +4582,7 @@ declare namespace gapi.client {
|
|
|
4555
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. */
|
|
4556
4583
|
key?:
|
|
4557
4584
|
string;
|
|
4558
|
-
/**
|
|
4585
|
+
/** The name of the operation resource. */
|
|
4559
4586
|
name:
|
|
4560
4587
|
string;
|
|
4561
4588
|
/** OAuth 2.0 token for the current user. */
|
|
@@ -4573,8 +4600,8 @@ declare namespace gapi.client {
|
|
|
4573
4600
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4574
4601
|
uploadType?:
|
|
4575
4602
|
string;
|
|
4576
|
-
}): Request<
|
|
4577
|
-
/** 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`. */
|
|
4578
4605
|
list(request?: {
|
|
4579
4606
|
/** V1 error format. */
|
|
4580
4607
|
"$.xgafv"?:
|
|
@@ -4591,21 +4618,24 @@ declare namespace gapi.client {
|
|
|
4591
4618
|
/** Selector specifying which fields to include in a partial response. */
|
|
4592
4619
|
fields?:
|
|
4593
4620
|
string;
|
|
4621
|
+
/** The standard list filter. */
|
|
4622
|
+
filter?:
|
|
4623
|
+
string;
|
|
4594
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. */
|
|
4595
4625
|
key?:
|
|
4596
4626
|
string;
|
|
4627
|
+
/** The name of the operation's parent resource. */
|
|
4628
|
+
name:
|
|
4629
|
+
string;
|
|
4597
4630
|
/** OAuth 2.0 token for the current user. */
|
|
4598
4631
|
oauth_token?:
|
|
4599
4632
|
string;
|
|
4600
|
-
/**
|
|
4633
|
+
/** The standard list page size. */
|
|
4601
4634
|
pageSize?:
|
|
4602
4635
|
number;
|
|
4603
|
-
/**
|
|
4636
|
+
/** The standard list page token. */
|
|
4604
4637
|
pageToken?:
|
|
4605
4638
|
string;
|
|
4606
|
-
/** Required. The parent (project and location) where the Features will be listed. Specified in the format `projects/*/locations/*/namespaces/*`. */
|
|
4607
|
-
parent:
|
|
4608
|
-
string;
|
|
4609
4639
|
/** Returns response with indentations and line breaks. */
|
|
4610
4640
|
prettyPrint?:
|
|
4611
4641
|
boolean;
|
|
@@ -4618,9 +4648,11 @@ declare namespace gapi.client {
|
|
|
4618
4648
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4619
4649
|
uploadType?:
|
|
4620
4650
|
string;
|
|
4621
|
-
}): Request<
|
|
4622
|
-
|
|
4623
|
-
|
|
4651
|
+
}): Request<ListOperationsResponse>;
|
|
4652
|
+
}
|
|
4653
|
+
interface NamespacesResource {
|
|
4654
|
+
/** Creates a fleet namespace. */
|
|
4655
|
+
create(request: {
|
|
4624
4656
|
/** V1 error format. */
|
|
4625
4657
|
"$.xgafv"?:
|
|
4626
4658
|
string;
|
|
@@ -4639,61 +4671,11 @@ declare namespace gapi.client {
|
|
|
4639
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. */
|
|
4640
4672
|
key?:
|
|
4641
4673
|
string;
|
|
4642
|
-
/**
|
|
4643
|
-
* The resource name for the rbacrolebinding `projects/{project}/locations/{location}/namespaces/{namespace}/rbacrolebindings/{rbacrolebinding}` or
|
|
4644
|
-
* `projects/{project}/locations/{location}/memberships/{membership}/rbacrolebindings/{rbacrolebinding}`
|
|
4645
|
-
*/
|
|
4646
|
-
name:
|
|
4647
|
-
string;
|
|
4648
4674
|
/** OAuth 2.0 token for the current user. */
|
|
4649
4675
|
oauth_token?:
|
|
4650
4676
|
string;
|
|
4651
|
-
/**
|
|
4652
|
-
|
|
4653
|
-
boolean;
|
|
4654
|
-
/** 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. */
|
|
4655
|
-
quotaUser?:
|
|
4656
|
-
string;
|
|
4657
|
-
/** Required. The fields to be updated. */
|
|
4658
|
-
updateMask?:
|
|
4659
|
-
string;
|
|
4660
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4661
|
-
upload_protocol?:
|
|
4662
|
-
string;
|
|
4663
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4664
|
-
uploadType?:
|
|
4665
|
-
string;
|
|
4666
|
-
/** Request body */
|
|
4667
|
-
resource:
|
|
4668
|
-
RBACRoleBinding;
|
|
4669
|
-
}): Request<Operation>;
|
|
4670
|
-
patch(request: {
|
|
4671
|
-
/** V1 error format. */
|
|
4672
|
-
"$.xgafv"?:
|
|
4673
|
-
string;
|
|
4674
|
-
/** OAuth access token. */
|
|
4675
|
-
access_token?:
|
|
4676
|
-
string;
|
|
4677
|
-
/** Data format for response. */
|
|
4678
|
-
alt?:
|
|
4679
|
-
string;
|
|
4680
|
-
/** JSONP */
|
|
4681
|
-
callback?:
|
|
4682
|
-
string;
|
|
4683
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
4684
|
-
fields?:
|
|
4685
|
-
string;
|
|
4686
|
-
/** 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. */
|
|
4687
|
-
key?:
|
|
4688
|
-
string;
|
|
4689
|
-
/**
|
|
4690
|
-
* The resource name for the rbacrolebinding `projects/{project}/locations/{location}/namespaces/{namespace}/rbacrolebindings/{rbacrolebinding}` or
|
|
4691
|
-
* `projects/{project}/locations/{location}/memberships/{membership}/rbacrolebindings/{rbacrolebinding}`
|
|
4692
|
-
*/
|
|
4693
|
-
name:
|
|
4694
|
-
string;
|
|
4695
|
-
/** OAuth 2.0 token for the current user. */
|
|
4696
|
-
oauth_token?:
|
|
4677
|
+
/** Required. The parent (project and location) where the Namespace will be created. Specified in the format `projects/*/locations/*/scopes/*`. */
|
|
4678
|
+
parent:
|
|
4697
4679
|
string;
|
|
4698
4680
|
/** Returns response with indentations and line breaks. */
|
|
4699
4681
|
prettyPrint?:
|
|
@@ -4701,57 +4683,12 @@ declare namespace gapi.client {
|
|
|
4701
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. */
|
|
4702
4684
|
quotaUser?:
|
|
4703
4685
|
string;
|
|
4704
|
-
/** Required. The fields to be updated. */
|
|
4705
|
-
updateMask?:
|
|
4706
|
-
string;
|
|
4707
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4708
|
-
upload_protocol?:
|
|
4709
|
-
string;
|
|
4710
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4711
|
-
uploadType?:
|
|
4712
|
-
string;
|
|
4713
|
-
},
|
|
4714
|
-
body: RBACRoleBinding): Request<Operation>;
|
|
4715
|
-
}
|
|
4716
|
-
interface NamespacesResource {
|
|
4717
|
-
/** Creates a fleet namespace. */
|
|
4718
|
-
create(request: {
|
|
4719
|
-
/** V1 error format. */
|
|
4720
|
-
"$.xgafv"?:
|
|
4721
|
-
string;
|
|
4722
|
-
/** OAuth access token. */
|
|
4723
|
-
access_token?:
|
|
4724
|
-
string;
|
|
4725
|
-
/** Data format for response. */
|
|
4726
|
-
alt?:
|
|
4727
|
-
string;
|
|
4728
|
-
/** JSONP */
|
|
4729
|
-
callback?:
|
|
4730
|
-
string;
|
|
4731
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
4732
|
-
fields?:
|
|
4733
|
-
string;
|
|
4734
|
-
/** 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. */
|
|
4735
|
-
key?:
|
|
4736
|
-
string;
|
|
4737
4686
|
/**
|
|
4738
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
|
|
4739
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
|
|
4740
4689
|
* length of 63 characters.
|
|
4741
4690
|
*/
|
|
4742
|
-
|
|
4743
|
-
string;
|
|
4744
|
-
/** OAuth 2.0 token for the current user. */
|
|
4745
|
-
oauth_token?:
|
|
4746
|
-
string;
|
|
4747
|
-
/** Required. The parent (project and location) where the Namespace will be created. Specified in the format `projects/*/locations/*`. */
|
|
4748
|
-
parent:
|
|
4749
|
-
string;
|
|
4750
|
-
/** Returns response with indentations and line breaks. */
|
|
4751
|
-
prettyPrint?:
|
|
4752
|
-
boolean;
|
|
4753
|
-
/** 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. */
|
|
4754
|
-
quotaUser?:
|
|
4691
|
+
scopeNamespaceId?:
|
|
4755
4692
|
string;
|
|
4756
4693
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4757
4694
|
upload_protocol?:
|
|
@@ -4782,17 +4719,10 @@ declare namespace gapi.client {
|
|
|
4782
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. */
|
|
4783
4720
|
key?:
|
|
4784
4721
|
string;
|
|
4785
|
-
/**
|
|
4786
|
-
* 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
|
|
4787
|
-
* 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
|
|
4788
|
-
* length of 63 characters.
|
|
4789
|
-
*/
|
|
4790
|
-
namespaceId?:
|
|
4791
|
-
string;
|
|
4792
4722
|
/** OAuth 2.0 token for the current user. */
|
|
4793
4723
|
oauth_token?:
|
|
4794
4724
|
string;
|
|
4795
|
-
/** 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/*`. */
|
|
4796
4726
|
parent:
|
|
4797
4727
|
string;
|
|
4798
4728
|
/** Returns response with indentations and line breaks. */
|
|
@@ -4801,6 +4731,13 @@ declare namespace gapi.client {
|
|
|
4801
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. */
|
|
4802
4732
|
quotaUser?:
|
|
4803
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;
|
|
4804
4741
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4805
4742
|
upload_protocol?:
|
|
4806
4743
|
string;
|
|
@@ -4829,7 +4766,7 @@ declare namespace gapi.client {
|
|
|
4829
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. */
|
|
4830
4767
|
key?:
|
|
4831
4768
|
string;
|
|
4832
|
-
/** Required. The Namespace resource name in the format `projects/*/locations/*/namespaces/*`. */
|
|
4769
|
+
/** Required. The Namespace resource name in the format `projects/*/locations/*/scopes/*/namespaces/*`. */
|
|
4833
4770
|
name:
|
|
4834
4771
|
string;
|
|
4835
4772
|
/** OAuth 2.0 token for the current user. */
|
|
@@ -4868,7 +4805,7 @@ declare namespace gapi.client {
|
|
|
4868
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. */
|
|
4869
4806
|
key?:
|
|
4870
4807
|
string;
|
|
4871
|
-
/** Required. The Namespace resource name in the format `projects/*/locations/*/namespaces/*`. */
|
|
4808
|
+
/** Required. The Namespace resource name in the format `projects/*/locations/*/scopes/*/namespaces/*`. */
|
|
4872
4809
|
name:
|
|
4873
4810
|
string;
|
|
4874
4811
|
/** OAuth 2.0 token for the current user. */
|
|
@@ -4916,7 +4853,7 @@ declare namespace gapi.client {
|
|
|
4916
4853
|
/** Optional. Token returned by previous call to `ListFeatures` which specifies the position in the list from where to continue listing the resources. */
|
|
4917
4854
|
pageToken?:
|
|
4918
4855
|
string;
|
|
4919
|
-
/** 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/*`. */
|
|
4920
4857
|
parent:
|
|
4921
4858
|
string;
|
|
4922
4859
|
/** Returns response with indentations and line breaks. */
|
|
@@ -4931,7 +4868,7 @@ declare namespace gapi.client {
|
|
|
4931
4868
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4932
4869
|
uploadType?:
|
|
4933
4870
|
string;
|
|
4934
|
-
}): Request<
|
|
4871
|
+
}): Request<ListScopeNamespacesResponse>;
|
|
4935
4872
|
/** Updates a fleet namespace. */
|
|
4936
4873
|
patch(request: {
|
|
4937
4874
|
/** V1 error format. */
|
|
@@ -5019,17 +4956,10 @@ declare namespace gapi.client {
|
|
|
5019
4956
|
string;
|
|
5020
4957
|
},
|
|
5021
4958
|
body: Namespace): Request<Operation>;
|
|
5022
|
-
rbacrolebindings:
|
|
5023
|
-
RbacrolebindingsResource;
|
|
5024
4959
|
}
|
|
5025
|
-
interface
|
|
5026
|
-
/**
|
|
5027
|
-
|
|
5028
|
-
* 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
|
|
5029
|
-
* operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a
|
|
5030
|
-
* google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
|
|
5031
|
-
*/
|
|
5032
|
-
cancel(request: {
|
|
4960
|
+
interface RbacrolebindingsResource {
|
|
4961
|
+
/** Creates a Scope RBACRoleBinding. */
|
|
4962
|
+
create(request: {
|
|
5033
4963
|
/** V1 error format. */
|
|
5034
4964
|
"$.xgafv"?:
|
|
5035
4965
|
string;
|
|
@@ -5048,18 +4978,25 @@ declare namespace gapi.client {
|
|
|
5048
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. */
|
|
5049
4979
|
key?:
|
|
5050
4980
|
string;
|
|
5051
|
-
/** The name of the operation resource to be cancelled. */
|
|
5052
|
-
name:
|
|
5053
|
-
string;
|
|
5054
4981
|
/** OAuth 2.0 token for the current user. */
|
|
5055
4982
|
oauth_token?:
|
|
5056
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;
|
|
5057
4987
|
/** Returns response with indentations and line breaks. */
|
|
5058
4988
|
prettyPrint?:
|
|
5059
4989
|
boolean;
|
|
5060
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. */
|
|
5061
4991
|
quotaUser?:
|
|
5062
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;
|
|
5063
5000
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5064
5001
|
upload_protocol?:
|
|
5065
5002
|
string;
|
|
@@ -5068,535 +5005,9 @@ declare namespace gapi.client {
|
|
|
5068
5005
|
string;
|
|
5069
5006
|
/** Request body */
|
|
5070
5007
|
resource:
|
|
5071
|
-
|
|
5072
|
-
}): Request<
|
|
5073
|
-
|
|
5074
|
-
/** V1 error format. */
|
|
5075
|
-
"$.xgafv"?:
|
|
5076
|
-
string;
|
|
5077
|
-
/** OAuth access token. */
|
|
5078
|
-
access_token?:
|
|
5079
|
-
string;
|
|
5080
|
-
/** Data format for response. */
|
|
5081
|
-
alt?:
|
|
5082
|
-
string;
|
|
5083
|
-
/** JSONP */
|
|
5084
|
-
callback?:
|
|
5085
|
-
string;
|
|
5086
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
5087
|
-
fields?:
|
|
5088
|
-
string;
|
|
5089
|
-
/** 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. */
|
|
5090
|
-
key?:
|
|
5091
|
-
string;
|
|
5092
|
-
/** The name of the operation resource to be cancelled. */
|
|
5093
|
-
name:
|
|
5094
|
-
string;
|
|
5095
|
-
/** OAuth 2.0 token for the current user. */
|
|
5096
|
-
oauth_token?:
|
|
5097
|
-
string;
|
|
5098
|
-
/** Returns response with indentations and line breaks. */
|
|
5099
|
-
prettyPrint?:
|
|
5100
|
-
boolean;
|
|
5101
|
-
/** 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. */
|
|
5102
|
-
quotaUser?:
|
|
5103
|
-
string;
|
|
5104
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5105
|
-
upload_protocol?:
|
|
5106
|
-
string;
|
|
5107
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5108
|
-
uploadType?:
|
|
5109
|
-
string;
|
|
5110
|
-
},
|
|
5111
|
-
body: CancelOperationRequest): Request<{}>;
|
|
5112
|
-
/**
|
|
5113
|
-
* 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
|
|
5114
|
-
* support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
|
|
5115
|
-
*/
|
|
5116
|
-
delete(request?: {
|
|
5117
|
-
/** V1 error format. */
|
|
5118
|
-
"$.xgafv"?:
|
|
5119
|
-
string;
|
|
5120
|
-
/** OAuth access token. */
|
|
5121
|
-
access_token?:
|
|
5122
|
-
string;
|
|
5123
|
-
/** Data format for response. */
|
|
5124
|
-
alt?:
|
|
5125
|
-
string;
|
|
5126
|
-
/** JSONP */
|
|
5127
|
-
callback?:
|
|
5128
|
-
string;
|
|
5129
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
5130
|
-
fields?:
|
|
5131
|
-
string;
|
|
5132
|
-
/** 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. */
|
|
5133
|
-
key?:
|
|
5134
|
-
string;
|
|
5135
|
-
/** The name of the operation resource to be deleted. */
|
|
5136
|
-
name:
|
|
5137
|
-
string;
|
|
5138
|
-
/** OAuth 2.0 token for the current user. */
|
|
5139
|
-
oauth_token?:
|
|
5140
|
-
string;
|
|
5141
|
-
/** Returns response with indentations and line breaks. */
|
|
5142
|
-
prettyPrint?:
|
|
5143
|
-
boolean;
|
|
5144
|
-
/** 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. */
|
|
5145
|
-
quotaUser?:
|
|
5146
|
-
string;
|
|
5147
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5148
|
-
upload_protocol?:
|
|
5149
|
-
string;
|
|
5150
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5151
|
-
uploadType?:
|
|
5152
|
-
string;
|
|
5153
|
-
}): Request<{}>;
|
|
5154
|
-
/** 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. */
|
|
5155
|
-
get(request?: {
|
|
5156
|
-
/** V1 error format. */
|
|
5157
|
-
"$.xgafv"?:
|
|
5158
|
-
string;
|
|
5159
|
-
/** OAuth access token. */
|
|
5160
|
-
access_token?:
|
|
5161
|
-
string;
|
|
5162
|
-
/** Data format for response. */
|
|
5163
|
-
alt?:
|
|
5164
|
-
string;
|
|
5165
|
-
/** JSONP */
|
|
5166
|
-
callback?:
|
|
5167
|
-
string;
|
|
5168
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
5169
|
-
fields?:
|
|
5170
|
-
string;
|
|
5171
|
-
/** 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. */
|
|
5172
|
-
key?:
|
|
5173
|
-
string;
|
|
5174
|
-
/** The name of the operation resource. */
|
|
5175
|
-
name:
|
|
5176
|
-
string;
|
|
5177
|
-
/** OAuth 2.0 token for the current user. */
|
|
5178
|
-
oauth_token?:
|
|
5179
|
-
string;
|
|
5180
|
-
/** Returns response with indentations and line breaks. */
|
|
5181
|
-
prettyPrint?:
|
|
5182
|
-
boolean;
|
|
5183
|
-
/** 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. */
|
|
5184
|
-
quotaUser?:
|
|
5185
|
-
string;
|
|
5186
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5187
|
-
upload_protocol?:
|
|
5188
|
-
string;
|
|
5189
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5190
|
-
uploadType?:
|
|
5191
|
-
string;
|
|
5192
|
-
}): Request<Operation>;
|
|
5193
|
-
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
5194
|
-
list(request?: {
|
|
5195
|
-
/** V1 error format. */
|
|
5196
|
-
"$.xgafv"?:
|
|
5197
|
-
string;
|
|
5198
|
-
/** OAuth access token. */
|
|
5199
|
-
access_token?:
|
|
5200
|
-
string;
|
|
5201
|
-
/** Data format for response. */
|
|
5202
|
-
alt?:
|
|
5203
|
-
string;
|
|
5204
|
-
/** JSONP */
|
|
5205
|
-
callback?:
|
|
5206
|
-
string;
|
|
5207
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
5208
|
-
fields?:
|
|
5209
|
-
string;
|
|
5210
|
-
/** The standard list filter. */
|
|
5211
|
-
filter?:
|
|
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's parent resource. */
|
|
5217
|
-
name:
|
|
5218
|
-
string;
|
|
5219
|
-
/** OAuth 2.0 token for the current user. */
|
|
5220
|
-
oauth_token?:
|
|
5221
|
-
string;
|
|
5222
|
-
/** The standard list page size. */
|
|
5223
|
-
pageSize?:
|
|
5224
|
-
number;
|
|
5225
|
-
/** The standard list page token. */
|
|
5226
|
-
pageToken?:
|
|
5227
|
-
string;
|
|
5228
|
-
/** Returns response with indentations and line breaks. */
|
|
5229
|
-
prettyPrint?:
|
|
5230
|
-
boolean;
|
|
5231
|
-
/** 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. */
|
|
5232
|
-
quotaUser?:
|
|
5233
|
-
string;
|
|
5234
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5235
|
-
upload_protocol?:
|
|
5236
|
-
string;
|
|
5237
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5238
|
-
uploadType?:
|
|
5239
|
-
string;
|
|
5240
|
-
}): Request<ListOperationsResponse>;
|
|
5241
|
-
}
|
|
5242
|
-
interface NamespacesResource {
|
|
5243
|
-
/** Creates a fleet namespace. */
|
|
5244
|
-
create(request: {
|
|
5245
|
-
/** V1 error format. */
|
|
5246
|
-
"$.xgafv"?:
|
|
5247
|
-
string;
|
|
5248
|
-
/** OAuth access token. */
|
|
5249
|
-
access_token?:
|
|
5250
|
-
string;
|
|
5251
|
-
/** Data format for response. */
|
|
5252
|
-
alt?:
|
|
5253
|
-
string;
|
|
5254
|
-
/** JSONP */
|
|
5255
|
-
callback?:
|
|
5256
|
-
string;
|
|
5257
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
5258
|
-
fields?:
|
|
5259
|
-
string;
|
|
5260
|
-
/** 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. */
|
|
5261
|
-
key?:
|
|
5262
|
-
string;
|
|
5263
|
-
/** OAuth 2.0 token for the current user. */
|
|
5264
|
-
oauth_token?:
|
|
5265
|
-
string;
|
|
5266
|
-
/** Required. The parent (project and location) where the Namespace will be created. Specified in the format `projects/*/locations/*/scopes/*`. */
|
|
5267
|
-
parent:
|
|
5268
|
-
string;
|
|
5269
|
-
/** Returns response with indentations and line breaks. */
|
|
5270
|
-
prettyPrint?:
|
|
5271
|
-
boolean;
|
|
5272
|
-
/** 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. */
|
|
5273
|
-
quotaUser?:
|
|
5274
|
-
string;
|
|
5275
|
-
/**
|
|
5276
|
-
* 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
|
|
5277
|
-
* 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
|
|
5278
|
-
* length of 63 characters.
|
|
5279
|
-
*/
|
|
5280
|
-
scopeNamespaceId?:
|
|
5281
|
-
string;
|
|
5282
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5283
|
-
upload_protocol?:
|
|
5284
|
-
string;
|
|
5285
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5286
|
-
uploadType?:
|
|
5287
|
-
string;
|
|
5288
|
-
/** Request body */
|
|
5289
|
-
resource:
|
|
5290
|
-
Namespace;
|
|
5291
|
-
}): Request<Operation>;
|
|
5292
|
-
create(request: {
|
|
5293
|
-
/** V1 error format. */
|
|
5294
|
-
"$.xgafv"?:
|
|
5295
|
-
string;
|
|
5296
|
-
/** OAuth access token. */
|
|
5297
|
-
access_token?:
|
|
5298
|
-
string;
|
|
5299
|
-
/** Data format for response. */
|
|
5300
|
-
alt?:
|
|
5301
|
-
string;
|
|
5302
|
-
/** JSONP */
|
|
5303
|
-
callback?:
|
|
5304
|
-
string;
|
|
5305
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
5306
|
-
fields?:
|
|
5307
|
-
string;
|
|
5308
|
-
/** 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. */
|
|
5309
|
-
key?:
|
|
5310
|
-
string;
|
|
5311
|
-
/** OAuth 2.0 token for the current user. */
|
|
5312
|
-
oauth_token?:
|
|
5313
|
-
string;
|
|
5314
|
-
/** Required. The parent (project and location) where the Namespace will be created. Specified in the format `projects/*/locations/*/scopes/*`. */
|
|
5315
|
-
parent:
|
|
5316
|
-
string;
|
|
5317
|
-
/** Returns response with indentations and line breaks. */
|
|
5318
|
-
prettyPrint?:
|
|
5319
|
-
boolean;
|
|
5320
|
-
/** 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. */
|
|
5321
|
-
quotaUser?:
|
|
5322
|
-
string;
|
|
5323
|
-
/**
|
|
5324
|
-
* 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
|
|
5325
|
-
* 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
|
|
5326
|
-
* length of 63 characters.
|
|
5327
|
-
*/
|
|
5328
|
-
scopeNamespaceId?:
|
|
5329
|
-
string;
|
|
5330
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5331
|
-
upload_protocol?:
|
|
5332
|
-
string;
|
|
5333
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5334
|
-
uploadType?:
|
|
5335
|
-
string;
|
|
5336
|
-
},
|
|
5337
|
-
body: Namespace): Request<Operation>;
|
|
5338
|
-
/** Deletes a fleet namespace. */
|
|
5339
|
-
delete(request?: {
|
|
5340
|
-
/** V1 error format. */
|
|
5341
|
-
"$.xgafv"?:
|
|
5342
|
-
string;
|
|
5343
|
-
/** OAuth access token. */
|
|
5344
|
-
access_token?:
|
|
5345
|
-
string;
|
|
5346
|
-
/** Data format for response. */
|
|
5347
|
-
alt?:
|
|
5348
|
-
string;
|
|
5349
|
-
/** JSONP */
|
|
5350
|
-
callback?:
|
|
5351
|
-
string;
|
|
5352
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
5353
|
-
fields?:
|
|
5354
|
-
string;
|
|
5355
|
-
/** 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. */
|
|
5356
|
-
key?:
|
|
5357
|
-
string;
|
|
5358
|
-
/** Required. The Namespace resource name in the format `projects/*/locations/*/scopes/*/namespaces/*`. */
|
|
5359
|
-
name:
|
|
5360
|
-
string;
|
|
5361
|
-
/** OAuth 2.0 token for the current user. */
|
|
5362
|
-
oauth_token?:
|
|
5363
|
-
string;
|
|
5364
|
-
/** Returns response with indentations and line breaks. */
|
|
5365
|
-
prettyPrint?:
|
|
5366
|
-
boolean;
|
|
5367
|
-
/** 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. */
|
|
5368
|
-
quotaUser?:
|
|
5369
|
-
string;
|
|
5370
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5371
|
-
upload_protocol?:
|
|
5372
|
-
string;
|
|
5373
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5374
|
-
uploadType?:
|
|
5375
|
-
string;
|
|
5376
|
-
}): Request<Operation>;
|
|
5377
|
-
/** Returns the details of a fleet namespace. */
|
|
5378
|
-
get(request?: {
|
|
5379
|
-
/** V1 error format. */
|
|
5380
|
-
"$.xgafv"?:
|
|
5381
|
-
string;
|
|
5382
|
-
/** OAuth access token. */
|
|
5383
|
-
access_token?:
|
|
5384
|
-
string;
|
|
5385
|
-
/** Data format for response. */
|
|
5386
|
-
alt?:
|
|
5387
|
-
string;
|
|
5388
|
-
/** JSONP */
|
|
5389
|
-
callback?:
|
|
5390
|
-
string;
|
|
5391
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
5392
|
-
fields?:
|
|
5393
|
-
string;
|
|
5394
|
-
/** 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. */
|
|
5395
|
-
key?:
|
|
5396
|
-
string;
|
|
5397
|
-
/** Required. The Namespace resource name in the format `projects/*/locations/*/scopes/*/namespaces/*`. */
|
|
5398
|
-
name:
|
|
5399
|
-
string;
|
|
5400
|
-
/** OAuth 2.0 token for the current user. */
|
|
5401
|
-
oauth_token?:
|
|
5402
|
-
string;
|
|
5403
|
-
/** Returns response with indentations and line breaks. */
|
|
5404
|
-
prettyPrint?:
|
|
5405
|
-
boolean;
|
|
5406
|
-
/** 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. */
|
|
5407
|
-
quotaUser?:
|
|
5408
|
-
string;
|
|
5409
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5410
|
-
upload_protocol?:
|
|
5411
|
-
string;
|
|
5412
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5413
|
-
uploadType?:
|
|
5414
|
-
string;
|
|
5415
|
-
}): Request<Namespace>;
|
|
5416
|
-
/** Lists fleet namespaces. */
|
|
5417
|
-
list(request?: {
|
|
5418
|
-
/** V1 error format. */
|
|
5419
|
-
"$.xgafv"?:
|
|
5420
|
-
string;
|
|
5421
|
-
/** OAuth access token. */
|
|
5422
|
-
access_token?:
|
|
5423
|
-
string;
|
|
5424
|
-
/** Data format for response. */
|
|
5425
|
-
alt?:
|
|
5426
|
-
string;
|
|
5427
|
-
/** JSONP */
|
|
5428
|
-
callback?:
|
|
5429
|
-
string;
|
|
5430
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
5431
|
-
fields?:
|
|
5432
|
-
string;
|
|
5433
|
-
/** 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. */
|
|
5434
|
-
key?:
|
|
5435
|
-
string;
|
|
5436
|
-
/** OAuth 2.0 token for the current user. */
|
|
5437
|
-
oauth_token?:
|
|
5438
|
-
string;
|
|
5439
|
-
/** 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. */
|
|
5440
|
-
pageSize?:
|
|
5441
|
-
number;
|
|
5442
|
-
/** Optional. Token returned by previous call to `ListFeatures` which specifies the position in the list from where to continue listing the resources. */
|
|
5443
|
-
pageToken?:
|
|
5444
|
-
string;
|
|
5445
|
-
/** Required. The parent (project and location) where the Features will be listed. Specified in the format `projects/*/locations/*/scopes/*`. */
|
|
5446
|
-
parent:
|
|
5447
|
-
string;
|
|
5448
|
-
/** Returns response with indentations and line breaks. */
|
|
5449
|
-
prettyPrint?:
|
|
5450
|
-
boolean;
|
|
5451
|
-
/** 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. */
|
|
5452
|
-
quotaUser?:
|
|
5453
|
-
string;
|
|
5454
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5455
|
-
upload_protocol?:
|
|
5456
|
-
string;
|
|
5457
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5458
|
-
uploadType?:
|
|
5459
|
-
string;
|
|
5460
|
-
}): Request<ListScopeNamespacesResponse>;
|
|
5461
|
-
/** Updates a fleet namespace. */
|
|
5462
|
-
patch(request: {
|
|
5463
|
-
/** V1 error format. */
|
|
5464
|
-
"$.xgafv"?:
|
|
5465
|
-
string;
|
|
5466
|
-
/** OAuth access token. */
|
|
5467
|
-
access_token?:
|
|
5468
|
-
string;
|
|
5469
|
-
/** Data format for response. */
|
|
5470
|
-
alt?:
|
|
5471
|
-
string;
|
|
5472
|
-
/** JSONP */
|
|
5473
|
-
callback?:
|
|
5474
|
-
string;
|
|
5475
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
5476
|
-
fields?:
|
|
5477
|
-
string;
|
|
5478
|
-
/** 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. */
|
|
5479
|
-
key?:
|
|
5480
|
-
string;
|
|
5481
|
-
/** The resource name for the namespace `projects/{project}/locations/{location}/namespaces/{namespace}` */
|
|
5482
|
-
name:
|
|
5483
|
-
string;
|
|
5484
|
-
/** OAuth 2.0 token for the current user. */
|
|
5485
|
-
oauth_token?:
|
|
5486
|
-
string;
|
|
5487
|
-
/** Returns response with indentations and line breaks. */
|
|
5488
|
-
prettyPrint?:
|
|
5489
|
-
boolean;
|
|
5490
|
-
/** 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. */
|
|
5491
|
-
quotaUser?:
|
|
5492
|
-
string;
|
|
5493
|
-
/** Required. The fields to be updated. */
|
|
5494
|
-
updateMask?:
|
|
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 body */
|
|
5503
|
-
resource:
|
|
5504
|
-
Namespace;
|
|
5505
|
-
}): Request<Operation>;
|
|
5506
|
-
patch(request: {
|
|
5507
|
-
/** V1 error format. */
|
|
5508
|
-
"$.xgafv"?:
|
|
5509
|
-
string;
|
|
5510
|
-
/** OAuth access token. */
|
|
5511
|
-
access_token?:
|
|
5512
|
-
string;
|
|
5513
|
-
/** Data format for response. */
|
|
5514
|
-
alt?:
|
|
5515
|
-
string;
|
|
5516
|
-
/** JSONP */
|
|
5517
|
-
callback?:
|
|
5518
|
-
string;
|
|
5519
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
5520
|
-
fields?:
|
|
5521
|
-
string;
|
|
5522
|
-
/** 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. */
|
|
5523
|
-
key?:
|
|
5524
|
-
string;
|
|
5525
|
-
/** The resource name for the namespace `projects/{project}/locations/{location}/namespaces/{namespace}` */
|
|
5526
|
-
name:
|
|
5527
|
-
string;
|
|
5528
|
-
/** OAuth 2.0 token for the current user. */
|
|
5529
|
-
oauth_token?:
|
|
5530
|
-
string;
|
|
5531
|
-
/** Returns response with indentations and line breaks. */
|
|
5532
|
-
prettyPrint?:
|
|
5533
|
-
boolean;
|
|
5534
|
-
/** 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. */
|
|
5535
|
-
quotaUser?:
|
|
5536
|
-
string;
|
|
5537
|
-
/** Required. The fields to be updated. */
|
|
5538
|
-
updateMask?:
|
|
5539
|
-
string;
|
|
5540
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5541
|
-
upload_protocol?:
|
|
5542
|
-
string;
|
|
5543
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5544
|
-
uploadType?:
|
|
5545
|
-
string;
|
|
5546
|
-
},
|
|
5547
|
-
body: Namespace): Request<Operation>;
|
|
5548
|
-
}
|
|
5549
|
-
interface RbacrolebindingsResource {
|
|
5550
|
-
/** Creates a Scope RBACRoleBinding. */
|
|
5551
|
-
create(request: {
|
|
5552
|
-
/** V1 error format. */
|
|
5553
|
-
"$.xgafv"?:
|
|
5554
|
-
string;
|
|
5555
|
-
/** OAuth access token. */
|
|
5556
|
-
access_token?:
|
|
5557
|
-
string;
|
|
5558
|
-
/** Data format for response. */
|
|
5559
|
-
alt?:
|
|
5560
|
-
string;
|
|
5561
|
-
/** JSONP */
|
|
5562
|
-
callback?:
|
|
5563
|
-
string;
|
|
5564
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
5565
|
-
fields?:
|
|
5566
|
-
string;
|
|
5567
|
-
/** 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. */
|
|
5568
|
-
key?:
|
|
5569
|
-
string;
|
|
5570
|
-
/** OAuth 2.0 token for the current user. */
|
|
5571
|
-
oauth_token?:
|
|
5572
|
-
string;
|
|
5573
|
-
/** Required. The parent (project and location) where the RBACRoleBinding will be created. Specified in the format `projects/*/locations/*/scopes/*`. */
|
|
5574
|
-
parent:
|
|
5575
|
-
string;
|
|
5576
|
-
/** Returns response with indentations and line breaks. */
|
|
5577
|
-
prettyPrint?:
|
|
5578
|
-
boolean;
|
|
5579
|
-
/** 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. */
|
|
5580
|
-
quotaUser?:
|
|
5581
|
-
string;
|
|
5582
|
-
/**
|
|
5583
|
-
* 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
|
|
5584
|
-
* 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
|
|
5585
|
-
* maximum length of 63 characters.
|
|
5586
|
-
*/
|
|
5587
|
-
rbacrolebindingId?:
|
|
5588
|
-
string;
|
|
5589
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5590
|
-
upload_protocol?:
|
|
5591
|
-
string;
|
|
5592
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5593
|
-
uploadType?:
|
|
5594
|
-
string;
|
|
5595
|
-
/** Request body */
|
|
5596
|
-
resource:
|
|
5597
|
-
RBACRoleBinding;
|
|
5598
|
-
}): Request<Operation>;
|
|
5599
|
-
create(request: {
|
|
5008
|
+
RBACRoleBinding;
|
|
5009
|
+
}): Request<Operation>;
|
|
5010
|
+
create(request: {
|
|
5600
5011
|
/** V1 error format. */
|
|
5601
5012
|
"$.xgafv"?:
|
|
5602
5013
|
string;
|
|
@@ -5786,7 +5197,7 @@ declare namespace gapi.client {
|
|
|
5786
5197
|
key?:
|
|
5787
5198
|
string;
|
|
5788
5199
|
/**
|
|
5789
|
-
* 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
|
|
5790
5201
|
* `projects/{project}/locations/{location}/memberships/{membership}/rbacrolebindings/{rbacrolebinding}`
|
|
5791
5202
|
*/
|
|
5792
5203
|
name:
|
|
@@ -5833,7 +5244,7 @@ declare namespace gapi.client {
|
|
|
5833
5244
|
key?:
|
|
5834
5245
|
string;
|
|
5835
5246
|
/**
|
|
5836
|
-
* 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
|
|
5837
5248
|
* `projects/{project}/locations/{location}/memberships/{membership}/rbacrolebindings/{rbacrolebinding}`
|
|
5838
5249
|
*/
|
|
5839
5250
|
name:
|
|
@@ -6399,8 +5810,6 @@ declare namespace gapi.client {
|
|
|
6399
5810
|
FleetsResource;
|
|
6400
5811
|
memberships:
|
|
6401
5812
|
MembershipsResource;
|
|
6402
|
-
namespaces:
|
|
6403
|
-
NamespacesResource;
|
|
6404
5813
|
operations:
|
|
6405
5814
|
OperationsResource;
|
|
6406
5815
|
scopes:
|