@maxim_mazurok/gapi.client.gkehub-v1alpha 0.0.20230206 → 0.0.20230219
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 +1002 -16
- package/package.json +1 -1
- package/tests.ts +202 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://gkehub.googleapis.com/$discovery/rest?version=v1alpha
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230219
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -702,6 +702,12 @@ declare namespace gapi.client {
|
|
|
702
702
|
/** The standard List next-page token. */
|
|
703
703
|
nextPageToken?: string;
|
|
704
704
|
}
|
|
705
|
+
interface ListMembershipBindingsResponse {
|
|
706
|
+
/** The list of membership_bindings */
|
|
707
|
+
membershipBindings?: MembershipBinding[];
|
|
708
|
+
/** A token to request the next page of resources from the `ListMembershipBindings` method. The value of an empty string means that there are no more resources to return. */
|
|
709
|
+
nextPageToken?: string;
|
|
710
|
+
}
|
|
705
711
|
interface ListMembershipsResponse {
|
|
706
712
|
/** A token to request the next page of resources from the `ListMemberships` method. The value of an empty string means that there are no more resources to return. */
|
|
707
713
|
nextPageToken?: string;
|
|
@@ -710,12 +716,30 @@ declare namespace gapi.client {
|
|
|
710
716
|
/** List of locations that could not be reached while fetching this list. */
|
|
711
717
|
unreachable?: string[];
|
|
712
718
|
}
|
|
719
|
+
interface ListNamespacesResponse {
|
|
720
|
+
/** The list of fleet namespaces */
|
|
721
|
+
namespaces?: Namespace[];
|
|
722
|
+
/** 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. */
|
|
723
|
+
nextPageToken?: string;
|
|
724
|
+
}
|
|
713
725
|
interface ListOperationsResponse {
|
|
714
726
|
/** The standard List next-page token. */
|
|
715
727
|
nextPageToken?: string;
|
|
716
728
|
/** A list of operations that matches the specified filter in the request. */
|
|
717
729
|
operations?: Operation[];
|
|
718
730
|
}
|
|
731
|
+
interface ListRBACRoleBindingsResponse {
|
|
732
|
+
/** 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. */
|
|
733
|
+
nextPageToken?: string;
|
|
734
|
+
/** The list of RBACRoleBindings */
|
|
735
|
+
rbacrolebindings?: RBACRoleBinding[];
|
|
736
|
+
}
|
|
737
|
+
interface ListScopesResponse {
|
|
738
|
+
/** A token to request the next page of resources from the `ListScopes` method. The value of an empty string means that there are no more resources to return. */
|
|
739
|
+
nextPageToken?: string;
|
|
740
|
+
/** The list of Scopes */
|
|
741
|
+
scopes?: Scope[];
|
|
742
|
+
}
|
|
719
743
|
interface Location {
|
|
720
744
|
/** The friendly name for this location, typically a nearby city name. For example, "Tokyo". */
|
|
721
745
|
displayName?: string;
|
|
@@ -770,6 +794,31 @@ declare namespace gapi.client {
|
|
|
770
794
|
/** Output only. When the Membership was last updated. */
|
|
771
795
|
updateTime?: string;
|
|
772
796
|
}
|
|
797
|
+
interface MembershipBinding {
|
|
798
|
+
/** Output only. When the membership binding was created. */
|
|
799
|
+
createTime?: string;
|
|
800
|
+
/** Output only. When the membership binding was deleted. */
|
|
801
|
+
deleteTime?: string;
|
|
802
|
+
/** Whether the membershipbinding is Fleet-wide; true means that this Membership should be bound to all Namespaces in this entire Fleet. */
|
|
803
|
+
fleet?: boolean;
|
|
804
|
+
/** The resource name for the membershipbinding itself `projects/{project}/locations/{location}/memberships/{membership}/bindings/{membershipbinding}` */
|
|
805
|
+
name?: string;
|
|
806
|
+
/** A Workspace resource name in the format `projects/*/locations/*/scopes/*`. */
|
|
807
|
+
scope?: string;
|
|
808
|
+
/** Output only. State of the membership binding resource. */
|
|
809
|
+
state?: MembershipBindingLifecycleState;
|
|
810
|
+
/**
|
|
811
|
+
* Output only. Google-generated UUID for this resource. This is unique across all membershipbinding resources. If a membershipbinding resource is deleted and another resource with the
|
|
812
|
+
* same name is created, it gets a different uid.
|
|
813
|
+
*/
|
|
814
|
+
uid?: string;
|
|
815
|
+
/** Output only. When the membership binding was last updated. */
|
|
816
|
+
updateTime?: string;
|
|
817
|
+
}
|
|
818
|
+
interface MembershipBindingLifecycleState {
|
|
819
|
+
/** Output only. The current state of the MembershipBinding resource. */
|
|
820
|
+
code?: string;
|
|
821
|
+
}
|
|
773
822
|
interface MembershipEndpoint {
|
|
774
823
|
/** Optional. Specific information for a GDC Edge Appliance cluster. */
|
|
775
824
|
applianceCluster?: ApplianceCluster;
|
|
@@ -860,6 +909,29 @@ declare namespace gapi.client {
|
|
|
860
909
|
/** Fully-qualified Membership name which hosts the MultiClusterIngress CRD. Example: `projects/foo-proj/locations/global/memberships/bar` */
|
|
861
910
|
configMembership?: string;
|
|
862
911
|
}
|
|
912
|
+
interface Namespace {
|
|
913
|
+
/** Output only. When the namespace was created. */
|
|
914
|
+
createTime?: string;
|
|
915
|
+
/** Output only. When the namespace was deleted. */
|
|
916
|
+
deleteTime?: string;
|
|
917
|
+
/** The resource name for the namespace `projects/{project}/locations/{location}/namespaces/{namespace}` */
|
|
918
|
+
name?: string;
|
|
919
|
+
/** Required. Scope associated with the namespace */
|
|
920
|
+
scope?: string;
|
|
921
|
+
/** Output only. State of the namespace resource. */
|
|
922
|
+
state?: NamespaceLifecycleState;
|
|
923
|
+
/**
|
|
924
|
+
* Output only. Google-generated UUID for this resource. This is unique across all namespace resources. If a namespace resource is deleted and another resource with the same name is
|
|
925
|
+
* created, it gets a different uid.
|
|
926
|
+
*/
|
|
927
|
+
uid?: string;
|
|
928
|
+
/** Output only. When the namespace was last updated. */
|
|
929
|
+
updateTime?: string;
|
|
930
|
+
}
|
|
931
|
+
interface NamespaceLifecycleState {
|
|
932
|
+
/** Output only. The current state of the Namespace resource. */
|
|
933
|
+
code?: string;
|
|
934
|
+
}
|
|
863
935
|
interface OnPremCluster {
|
|
864
936
|
/** Immutable. Whether the cluster is an admin cluster. */
|
|
865
937
|
adminCluster?: boolean;
|
|
@@ -1008,6 +1080,8 @@ declare namespace gapi.client {
|
|
|
1008
1080
|
containerResources?: PolicyControllerResourceRequirements;
|
|
1009
1081
|
/** Pod anti-affinity enablement. */
|
|
1010
1082
|
podAntiAffinity?: boolean;
|
|
1083
|
+
/** Pod tolerations of node taints. */
|
|
1084
|
+
podTolerations?: PolicyControllerToleration[];
|
|
1011
1085
|
/** Pod replica count. */
|
|
1012
1086
|
replicaCount?: string;
|
|
1013
1087
|
}
|
|
@@ -1027,6 +1101,43 @@ declare namespace gapi.client {
|
|
|
1027
1101
|
/** Whether the standard template library should be installed or not. */
|
|
1028
1102
|
included?: boolean;
|
|
1029
1103
|
}
|
|
1104
|
+
interface PolicyControllerToleration {
|
|
1105
|
+
/** Matches a taint effect. */
|
|
1106
|
+
effect?: string;
|
|
1107
|
+
/** Matches a taint key (not necessarily unique). */
|
|
1108
|
+
key?: string;
|
|
1109
|
+
/** Matches a taint operator. */
|
|
1110
|
+
operator?: string;
|
|
1111
|
+
/** Matches a taint value. */
|
|
1112
|
+
value?: string;
|
|
1113
|
+
}
|
|
1114
|
+
interface RBACRoleBinding {
|
|
1115
|
+
/** Output only. When the rbacrolebinding was created. */
|
|
1116
|
+
createTime?: string;
|
|
1117
|
+
/** Output only. When the rbacrolebinding was deleted. */
|
|
1118
|
+
deleteTime?: string;
|
|
1119
|
+
/** group is the group, as seen by the kubernetes cluster. */
|
|
1120
|
+
group?: string;
|
|
1121
|
+
/** The resource name for the rbacrolebinding `projects/{project}/locations/{location}/namespaces/{namespace}/rbacrolebindings/{rbacrolebinding}` */
|
|
1122
|
+
name?: string;
|
|
1123
|
+
/** Required. Role to bind to the principal */
|
|
1124
|
+
role?: Role;
|
|
1125
|
+
/** Output only. State of the rbacrolebinding resource. */
|
|
1126
|
+
state?: RBACRoleBindingLifecycleState;
|
|
1127
|
+
/**
|
|
1128
|
+
* Output only. Google-generated UUID for this resource. This is unique across all rbacrolebinding resources. If a rbacrolebinding resource is deleted and another resource with the
|
|
1129
|
+
* same name is created, it gets a different uid.
|
|
1130
|
+
*/
|
|
1131
|
+
uid?: string;
|
|
1132
|
+
/** Output only. When the rbacrolebinding was last updated. */
|
|
1133
|
+
updateTime?: string;
|
|
1134
|
+
/** user is the name of the user as seen by the kubernetes cluster, example "alice" or "alice@domain.tld" */
|
|
1135
|
+
user?: string;
|
|
1136
|
+
}
|
|
1137
|
+
interface RBACRoleBindingLifecycleState {
|
|
1138
|
+
/** Output only. The current state of the rbacrolebinding resource. */
|
|
1139
|
+
code?: string;
|
|
1140
|
+
}
|
|
1030
1141
|
interface ResourceManifest {
|
|
1031
1142
|
/**
|
|
1032
1143
|
* Whether the resource provided in the manifest is `cluster_scoped`. If unset, the manifest is assumed to be namespace scoped. This field is used for REST mapping when applying the
|
|
@@ -1053,6 +1164,27 @@ declare namespace gapi.client {
|
|
|
1053
1164
|
*/
|
|
1054
1165
|
v1beta1Crd?: boolean;
|
|
1055
1166
|
}
|
|
1167
|
+
interface Role {
|
|
1168
|
+
/** predefined_role is the Kubernetes default role to use */
|
|
1169
|
+
predefinedRole?: string;
|
|
1170
|
+
}
|
|
1171
|
+
interface Scope {
|
|
1172
|
+
/** Output only. When the scope was created. */
|
|
1173
|
+
createTime?: string;
|
|
1174
|
+
/** Output only. When the scope was deleted. */
|
|
1175
|
+
deleteTime?: string;
|
|
1176
|
+
/** The resource name for the scope `projects/{project}/locations/{location}/scopes/{scope}` */
|
|
1177
|
+
name?: string;
|
|
1178
|
+
/** Output only. State of the scope resource. */
|
|
1179
|
+
state?: ScopeLifecycleState;
|
|
1180
|
+
/**
|
|
1181
|
+
* Output only. Google-generated UUID for this resource. This is unique across all scope resources. If a scope resource is deleted and another resource with the same name is created,
|
|
1182
|
+
* it gets a different uid.
|
|
1183
|
+
*/
|
|
1184
|
+
uid?: string;
|
|
1185
|
+
/** Output only. When the scope was last updated. */
|
|
1186
|
+
updateTime?: string;
|
|
1187
|
+
}
|
|
1056
1188
|
// tslint:disable-next-line:no-empty-interface
|
|
1057
1189
|
interface ScopeFeatureSpec {
|
|
1058
1190
|
}
|
|
@@ -1060,6 +1192,10 @@ declare namespace gapi.client {
|
|
|
1060
1192
|
/** Output only. The "running state" of the Feature in this Scope. */
|
|
1061
1193
|
state?: FeatureState;
|
|
1062
1194
|
}
|
|
1195
|
+
interface ScopeLifecycleState {
|
|
1196
|
+
/** Output only. The current state of the scope resource. */
|
|
1197
|
+
code?: string;
|
|
1198
|
+
}
|
|
1063
1199
|
interface ServiceMeshAnalysisMessage {
|
|
1064
1200
|
/** A UI can combine these args with a template (based on message_base.type) to produce an internationalized message. */
|
|
1065
1201
|
args?: { [P in string]: any };
|
|
@@ -1806,6 +1942,213 @@ declare namespace gapi.client {
|
|
|
1806
1942
|
},
|
|
1807
1943
|
body: Fleet): Request<Operation>;
|
|
1808
1944
|
}
|
|
1945
|
+
interface BindingsResource {
|
|
1946
|
+
/** Creates a MembershipBinding. */
|
|
1947
|
+
create(request: {
|
|
1948
|
+
/** V1 error format. */
|
|
1949
|
+
"$.xgafv"?: string;
|
|
1950
|
+
/** OAuth access token. */
|
|
1951
|
+
access_token?: string;
|
|
1952
|
+
/** Data format for response. */
|
|
1953
|
+
alt?: string;
|
|
1954
|
+
/** JSONP */
|
|
1955
|
+
callback?: string;
|
|
1956
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1957
|
+
fields?: string;
|
|
1958
|
+
/** 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. */
|
|
1959
|
+
key?: string;
|
|
1960
|
+
/** Required. The ID to use for the MembershipBinding. */
|
|
1961
|
+
membershipBindingId?: string;
|
|
1962
|
+
/** OAuth 2.0 token for the current user. */
|
|
1963
|
+
oauth_token?: string;
|
|
1964
|
+
/** Required. The parent (project and location) where the MembershipBinding will be created. Specified in the format `projects/*/locations/*/memberships/*`. */
|
|
1965
|
+
parent: string;
|
|
1966
|
+
/** Returns response with indentations and line breaks. */
|
|
1967
|
+
prettyPrint?: boolean;
|
|
1968
|
+
/** 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. */
|
|
1969
|
+
quotaUser?: string;
|
|
1970
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1971
|
+
upload_protocol?: string;
|
|
1972
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1973
|
+
uploadType?: string;
|
|
1974
|
+
/** Request body */
|
|
1975
|
+
resource: MembershipBinding;
|
|
1976
|
+
}): Request<Operation>;
|
|
1977
|
+
create(request: {
|
|
1978
|
+
/** V1 error format. */
|
|
1979
|
+
"$.xgafv"?: string;
|
|
1980
|
+
/** OAuth access token. */
|
|
1981
|
+
access_token?: string;
|
|
1982
|
+
/** Data format for response. */
|
|
1983
|
+
alt?: string;
|
|
1984
|
+
/** JSONP */
|
|
1985
|
+
callback?: string;
|
|
1986
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1987
|
+
fields?: string;
|
|
1988
|
+
/** 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. */
|
|
1989
|
+
key?: string;
|
|
1990
|
+
/** Required. The ID to use for the MembershipBinding. */
|
|
1991
|
+
membershipBindingId?: string;
|
|
1992
|
+
/** OAuth 2.0 token for the current user. */
|
|
1993
|
+
oauth_token?: string;
|
|
1994
|
+
/** Required. The parent (project and location) where the MembershipBinding will be created. Specified in the format `projects/*/locations/*/memberships/*`. */
|
|
1995
|
+
parent: string;
|
|
1996
|
+
/** Returns response with indentations and line breaks. */
|
|
1997
|
+
prettyPrint?: boolean;
|
|
1998
|
+
/** 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. */
|
|
1999
|
+
quotaUser?: string;
|
|
2000
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2001
|
+
upload_protocol?: string;
|
|
2002
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2003
|
+
uploadType?: string;
|
|
2004
|
+
},
|
|
2005
|
+
body: MembershipBinding): Request<Operation>;
|
|
2006
|
+
/** Deletes a MembershipBinding. */
|
|
2007
|
+
delete(request?: {
|
|
2008
|
+
/** V1 error format. */
|
|
2009
|
+
"$.xgafv"?: string;
|
|
2010
|
+
/** OAuth access token. */
|
|
2011
|
+
access_token?: string;
|
|
2012
|
+
/** Data format for response. */
|
|
2013
|
+
alt?: string;
|
|
2014
|
+
/** JSONP */
|
|
2015
|
+
callback?: string;
|
|
2016
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2017
|
+
fields?: string;
|
|
2018
|
+
/** 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. */
|
|
2019
|
+
key?: string;
|
|
2020
|
+
/** Required. The MembershipBinding resource name in the format `projects/*/locations/*/memberships/*/bindings/*`. */
|
|
2021
|
+
name: string;
|
|
2022
|
+
/** OAuth 2.0 token for the current user. */
|
|
2023
|
+
oauth_token?: string;
|
|
2024
|
+
/** Returns response with indentations and line breaks. */
|
|
2025
|
+
prettyPrint?: boolean;
|
|
2026
|
+
/** 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. */
|
|
2027
|
+
quotaUser?: string;
|
|
2028
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2029
|
+
upload_protocol?: string;
|
|
2030
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2031
|
+
uploadType?: string;
|
|
2032
|
+
}): Request<Operation>;
|
|
2033
|
+
/** Returns the details of a MembershipBinding. */
|
|
2034
|
+
get(request?: {
|
|
2035
|
+
/** V1 error format. */
|
|
2036
|
+
"$.xgafv"?: string;
|
|
2037
|
+
/** OAuth access token. */
|
|
2038
|
+
access_token?: string;
|
|
2039
|
+
/** Data format for response. */
|
|
2040
|
+
alt?: string;
|
|
2041
|
+
/** JSONP */
|
|
2042
|
+
callback?: string;
|
|
2043
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2044
|
+
fields?: string;
|
|
2045
|
+
/** 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. */
|
|
2046
|
+
key?: string;
|
|
2047
|
+
/** Required. The MembershipBinding resource name in the format `projects/*/locations/*/memberships/*/bindings/*`. */
|
|
2048
|
+
name: string;
|
|
2049
|
+
/** OAuth 2.0 token for the current user. */
|
|
2050
|
+
oauth_token?: string;
|
|
2051
|
+
/** Returns response with indentations and line breaks. */
|
|
2052
|
+
prettyPrint?: boolean;
|
|
2053
|
+
/** 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. */
|
|
2054
|
+
quotaUser?: string;
|
|
2055
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2056
|
+
upload_protocol?: string;
|
|
2057
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2058
|
+
uploadType?: string;
|
|
2059
|
+
}): Request<MembershipBinding>;
|
|
2060
|
+
/** Lists MembershipBindings. */
|
|
2061
|
+
list(request?: {
|
|
2062
|
+
/** V1 error format. */
|
|
2063
|
+
"$.xgafv"?: string;
|
|
2064
|
+
/** OAuth access token. */
|
|
2065
|
+
access_token?: string;
|
|
2066
|
+
/** Data format for response. */
|
|
2067
|
+
alt?: string;
|
|
2068
|
+
/** JSONP */
|
|
2069
|
+
callback?: string;
|
|
2070
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2071
|
+
fields?: string;
|
|
2072
|
+
/** 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. */
|
|
2073
|
+
key?: string;
|
|
2074
|
+
/** OAuth 2.0 token for the current user. */
|
|
2075
|
+
oauth_token?: string;
|
|
2076
|
+
/** 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. */
|
|
2077
|
+
pageSize?: number;
|
|
2078
|
+
/** Optional. Token returned by previous call to `ListMembershipBindings` which specifies the position in the list from where to continue listing the resources. */
|
|
2079
|
+
pageToken?: string;
|
|
2080
|
+
/** Required. The parent Membership for which the MembershipBindings will be listed. Specified in the format `projects/*/locations/*/memberships/*`. */
|
|
2081
|
+
parent: string;
|
|
2082
|
+
/** Returns response with indentations and line breaks. */
|
|
2083
|
+
prettyPrint?: boolean;
|
|
2084
|
+
/** 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. */
|
|
2085
|
+
quotaUser?: string;
|
|
2086
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2087
|
+
upload_protocol?: string;
|
|
2088
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2089
|
+
uploadType?: string;
|
|
2090
|
+
}): Request<ListMembershipBindingsResponse>;
|
|
2091
|
+
/** Updates a MembershipBinding. */
|
|
2092
|
+
patch(request: {
|
|
2093
|
+
/** V1 error format. */
|
|
2094
|
+
"$.xgafv"?: string;
|
|
2095
|
+
/** OAuth access token. */
|
|
2096
|
+
access_token?: string;
|
|
2097
|
+
/** Data format for response. */
|
|
2098
|
+
alt?: string;
|
|
2099
|
+
/** JSONP */
|
|
2100
|
+
callback?: string;
|
|
2101
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2102
|
+
fields?: string;
|
|
2103
|
+
/** 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. */
|
|
2104
|
+
key?: string;
|
|
2105
|
+
/** The resource name for the membershipbinding itself `projects/{project}/locations/{location}/memberships/{membership}/bindings/{membershipbinding}` */
|
|
2106
|
+
name: string;
|
|
2107
|
+
/** OAuth 2.0 token for the current user. */
|
|
2108
|
+
oauth_token?: string;
|
|
2109
|
+
/** Returns response with indentations and line breaks. */
|
|
2110
|
+
prettyPrint?: boolean;
|
|
2111
|
+
/** 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. */
|
|
2112
|
+
quotaUser?: string;
|
|
2113
|
+
/** Required. The fields to be updated. */
|
|
2114
|
+
updateMask?: string;
|
|
2115
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2116
|
+
upload_protocol?: string;
|
|
2117
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2118
|
+
uploadType?: string;
|
|
2119
|
+
/** Request body */
|
|
2120
|
+
resource: MembershipBinding;
|
|
2121
|
+
}): Request<Operation>;
|
|
2122
|
+
patch(request: {
|
|
2123
|
+
/** V1 error format. */
|
|
2124
|
+
"$.xgafv"?: string;
|
|
2125
|
+
/** OAuth access token. */
|
|
2126
|
+
access_token?: string;
|
|
2127
|
+
/** Data format for response. */
|
|
2128
|
+
alt?: string;
|
|
2129
|
+
/** JSONP */
|
|
2130
|
+
callback?: string;
|
|
2131
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2132
|
+
fields?: string;
|
|
2133
|
+
/** 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. */
|
|
2134
|
+
key?: string;
|
|
2135
|
+
/** The resource name for the membershipbinding itself `projects/{project}/locations/{location}/memberships/{membership}/bindings/{membershipbinding}` */
|
|
2136
|
+
name: string;
|
|
2137
|
+
/** OAuth 2.0 token for the current user. */
|
|
2138
|
+
oauth_token?: string;
|
|
2139
|
+
/** Returns response with indentations and line breaks. */
|
|
2140
|
+
prettyPrint?: boolean;
|
|
2141
|
+
/** 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. */
|
|
2142
|
+
quotaUser?: string;
|
|
2143
|
+
/** Required. The fields to be updated. */
|
|
2144
|
+
updateMask?: string;
|
|
2145
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2146
|
+
upload_protocol?: string;
|
|
2147
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2148
|
+
uploadType?: string;
|
|
2149
|
+
},
|
|
2150
|
+
body: MembershipBinding): Request<Operation>;
|
|
2151
|
+
}
|
|
1809
2152
|
interface MembershipsResource {
|
|
1810
2153
|
/**
|
|
1811
2154
|
* Creates a new Membership. **This is currently only supported for GKE clusters on Google Cloud**. To register other clusters, follow the instructions at
|
|
@@ -1909,6 +2252,8 @@ declare namespace gapi.client {
|
|
|
1909
2252
|
callback?: string;
|
|
1910
2253
|
/** Selector specifying which fields to include in a partial response. */
|
|
1911
2254
|
fields?: string;
|
|
2255
|
+
/** Optional. If set to true, any subresource from this Membership will also be deleted. Otherwise, the request will only work if the Membership has no subresource. */
|
|
2256
|
+
force?: boolean;
|
|
1912
2257
|
/** 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. */
|
|
1913
2258
|
key?: string;
|
|
1914
2259
|
/** Required. The Membership resource name in the format `projects/*/locations/*/memberships/*`. */
|
|
@@ -2322,15 +2667,11 @@ declare namespace gapi.client {
|
|
|
2322
2667
|
uploadType?: string;
|
|
2323
2668
|
},
|
|
2324
2669
|
body: ValidateCreateMembershipRequest): Request<ValidateCreateMembershipResponse>;
|
|
2670
|
+
bindings: BindingsResource;
|
|
2325
2671
|
}
|
|
2326
|
-
interface
|
|
2327
|
-
/**
|
|
2328
|
-
|
|
2329
|
-
* 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
|
|
2330
|
-
* operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a
|
|
2331
|
-
* google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
|
|
2332
|
-
*/
|
|
2333
|
-
cancel(request: {
|
|
2672
|
+
interface RbacrolebindingsResource {
|
|
2673
|
+
/** Creates a RBACRoleBinding. */
|
|
2674
|
+
create(request: {
|
|
2334
2675
|
/** V1 error format. */
|
|
2335
2676
|
"$.xgafv"?: string;
|
|
2336
2677
|
/** OAuth access token. */
|
|
@@ -2343,22 +2684,28 @@ declare namespace gapi.client {
|
|
|
2343
2684
|
fields?: string;
|
|
2344
2685
|
/** 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. */
|
|
2345
2686
|
key?: string;
|
|
2346
|
-
/** The name of the operation resource to be cancelled. */
|
|
2347
|
-
name: string;
|
|
2348
2687
|
/** OAuth 2.0 token for the current user. */
|
|
2349
2688
|
oauth_token?: string;
|
|
2689
|
+
/** Required. The parent (project and location) where the RBACRoleBinding will be created. Specified in the format `projects/*/locations/*/namespaces/*`. */
|
|
2690
|
+
parent: string;
|
|
2350
2691
|
/** Returns response with indentations and line breaks. */
|
|
2351
2692
|
prettyPrint?: boolean;
|
|
2352
2693
|
/** 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. */
|
|
2353
2694
|
quotaUser?: string;
|
|
2695
|
+
/**
|
|
2696
|
+
* 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
|
|
2697
|
+
* 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
|
|
2698
|
+
* maximum length of 63 characters.
|
|
2699
|
+
*/
|
|
2700
|
+
rbacrolebindingId?: string;
|
|
2354
2701
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2355
2702
|
upload_protocol?: string;
|
|
2356
2703
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2357
2704
|
uploadType?: string;
|
|
2358
2705
|
/** Request body */
|
|
2359
|
-
resource:
|
|
2360
|
-
}): Request<
|
|
2361
|
-
|
|
2706
|
+
resource: RBACRoleBinding;
|
|
2707
|
+
}): Request<Operation>;
|
|
2708
|
+
create(request: {
|
|
2362
2709
|
/** V1 error format. */
|
|
2363
2710
|
"$.xgafv"?: string;
|
|
2364
2711
|
/** OAuth access token. */
|
|
@@ -2371,8 +2718,438 @@ declare namespace gapi.client {
|
|
|
2371
2718
|
fields?: string;
|
|
2372
2719
|
/** 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. */
|
|
2373
2720
|
key?: string;
|
|
2374
|
-
/**
|
|
2375
|
-
|
|
2721
|
+
/** OAuth 2.0 token for the current user. */
|
|
2722
|
+
oauth_token?: string;
|
|
2723
|
+
/** Required. The parent (project and location) where the RBACRoleBinding will be created. Specified in the format `projects/*/locations/*/namespaces/*`. */
|
|
2724
|
+
parent: string;
|
|
2725
|
+
/** Returns response with indentations and line breaks. */
|
|
2726
|
+
prettyPrint?: boolean;
|
|
2727
|
+
/** 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. */
|
|
2728
|
+
quotaUser?: string;
|
|
2729
|
+
/**
|
|
2730
|
+
* 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
|
|
2731
|
+
* 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
|
|
2732
|
+
* maximum length of 63 characters.
|
|
2733
|
+
*/
|
|
2734
|
+
rbacrolebindingId?: string;
|
|
2735
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2736
|
+
upload_protocol?: string;
|
|
2737
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2738
|
+
uploadType?: string;
|
|
2739
|
+
},
|
|
2740
|
+
body: RBACRoleBinding): Request<Operation>;
|
|
2741
|
+
/** Deletes a RBACRoleBinding. */
|
|
2742
|
+
delete(request?: {
|
|
2743
|
+
/** V1 error format. */
|
|
2744
|
+
"$.xgafv"?: string;
|
|
2745
|
+
/** OAuth access token. */
|
|
2746
|
+
access_token?: string;
|
|
2747
|
+
/** Data format for response. */
|
|
2748
|
+
alt?: string;
|
|
2749
|
+
/** JSONP */
|
|
2750
|
+
callback?: string;
|
|
2751
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2752
|
+
fields?: string;
|
|
2753
|
+
/** 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. */
|
|
2754
|
+
key?: string;
|
|
2755
|
+
/** Required. The RBACRoleBinding resource name in the format `projects/*/locations/*/namespaces/*/rbacrolebindings/*`. */
|
|
2756
|
+
name: string;
|
|
2757
|
+
/** OAuth 2.0 token for the current user. */
|
|
2758
|
+
oauth_token?: string;
|
|
2759
|
+
/** Returns response with indentations and line breaks. */
|
|
2760
|
+
prettyPrint?: boolean;
|
|
2761
|
+
/** 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. */
|
|
2762
|
+
quotaUser?: string;
|
|
2763
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2764
|
+
upload_protocol?: string;
|
|
2765
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2766
|
+
uploadType?: string;
|
|
2767
|
+
}): Request<Operation>;
|
|
2768
|
+
/** Returns the details of a RBACRoleBinding. */
|
|
2769
|
+
get(request?: {
|
|
2770
|
+
/** V1 error format. */
|
|
2771
|
+
"$.xgafv"?: string;
|
|
2772
|
+
/** OAuth access token. */
|
|
2773
|
+
access_token?: string;
|
|
2774
|
+
/** Data format for response. */
|
|
2775
|
+
alt?: string;
|
|
2776
|
+
/** JSONP */
|
|
2777
|
+
callback?: string;
|
|
2778
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2779
|
+
fields?: string;
|
|
2780
|
+
/** 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. */
|
|
2781
|
+
key?: string;
|
|
2782
|
+
/** Required. The RBACRoleBinding resource name in the format `projects/*/locations/*/namespaces/*/rbacrolebindings/*`. */
|
|
2783
|
+
name: string;
|
|
2784
|
+
/** OAuth 2.0 token for the current user. */
|
|
2785
|
+
oauth_token?: string;
|
|
2786
|
+
/** Returns response with indentations and line breaks. */
|
|
2787
|
+
prettyPrint?: boolean;
|
|
2788
|
+
/** 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. */
|
|
2789
|
+
quotaUser?: string;
|
|
2790
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2791
|
+
upload_protocol?: string;
|
|
2792
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2793
|
+
uploadType?: string;
|
|
2794
|
+
}): Request<RBACRoleBinding>;
|
|
2795
|
+
/** Lists RBACRoleBinding. */
|
|
2796
|
+
list(request?: {
|
|
2797
|
+
/** V1 error format. */
|
|
2798
|
+
"$.xgafv"?: string;
|
|
2799
|
+
/** OAuth access token. */
|
|
2800
|
+
access_token?: string;
|
|
2801
|
+
/** Data format for response. */
|
|
2802
|
+
alt?: string;
|
|
2803
|
+
/** JSONP */
|
|
2804
|
+
callback?: string;
|
|
2805
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2806
|
+
fields?: string;
|
|
2807
|
+
/** 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. */
|
|
2808
|
+
key?: string;
|
|
2809
|
+
/** OAuth 2.0 token for the current user. */
|
|
2810
|
+
oauth_token?: string;
|
|
2811
|
+
/** 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. */
|
|
2812
|
+
pageSize?: number;
|
|
2813
|
+
/** Optional. Token returned by previous call to `ListRBACRoleBindings` which specifies the position in the list from where to continue listing the resources. */
|
|
2814
|
+
pageToken?: string;
|
|
2815
|
+
/** Required. The parent (project and location) where the Features will be listed. Specified in the format `projects/*/locations/*/namespaces/*`. */
|
|
2816
|
+
parent: string;
|
|
2817
|
+
/** Returns response with indentations and line breaks. */
|
|
2818
|
+
prettyPrint?: boolean;
|
|
2819
|
+
/** 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. */
|
|
2820
|
+
quotaUser?: string;
|
|
2821
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2822
|
+
upload_protocol?: string;
|
|
2823
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2824
|
+
uploadType?: string;
|
|
2825
|
+
}): Request<ListRBACRoleBindingsResponse>;
|
|
2826
|
+
/** Updates a RBACRoleBinding. */
|
|
2827
|
+
patch(request: {
|
|
2828
|
+
/** V1 error format. */
|
|
2829
|
+
"$.xgafv"?: string;
|
|
2830
|
+
/** OAuth access token. */
|
|
2831
|
+
access_token?: string;
|
|
2832
|
+
/** Data format for response. */
|
|
2833
|
+
alt?: string;
|
|
2834
|
+
/** JSONP */
|
|
2835
|
+
callback?: string;
|
|
2836
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2837
|
+
fields?: string;
|
|
2838
|
+
/** 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. */
|
|
2839
|
+
key?: string;
|
|
2840
|
+
/** The resource name for the rbacrolebinding `projects/{project}/locations/{location}/namespaces/{namespace}/rbacrolebindings/{rbacrolebinding}` */
|
|
2841
|
+
name: string;
|
|
2842
|
+
/** OAuth 2.0 token for the current user. */
|
|
2843
|
+
oauth_token?: string;
|
|
2844
|
+
/** Returns response with indentations and line breaks. */
|
|
2845
|
+
prettyPrint?: boolean;
|
|
2846
|
+
/** 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. */
|
|
2847
|
+
quotaUser?: string;
|
|
2848
|
+
/** Required. The fields to be updated. */
|
|
2849
|
+
updateMask?: string;
|
|
2850
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2851
|
+
upload_protocol?: string;
|
|
2852
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2853
|
+
uploadType?: string;
|
|
2854
|
+
/** Request body */
|
|
2855
|
+
resource: RBACRoleBinding;
|
|
2856
|
+
}): Request<Operation>;
|
|
2857
|
+
patch(request: {
|
|
2858
|
+
/** V1 error format. */
|
|
2859
|
+
"$.xgafv"?: string;
|
|
2860
|
+
/** OAuth access token. */
|
|
2861
|
+
access_token?: string;
|
|
2862
|
+
/** Data format for response. */
|
|
2863
|
+
alt?: string;
|
|
2864
|
+
/** JSONP */
|
|
2865
|
+
callback?: string;
|
|
2866
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2867
|
+
fields?: string;
|
|
2868
|
+
/** 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. */
|
|
2869
|
+
key?: string;
|
|
2870
|
+
/** The resource name for the rbacrolebinding `projects/{project}/locations/{location}/namespaces/{namespace}/rbacrolebindings/{rbacrolebinding}` */
|
|
2871
|
+
name: string;
|
|
2872
|
+
/** OAuth 2.0 token for the current user. */
|
|
2873
|
+
oauth_token?: string;
|
|
2874
|
+
/** Returns response with indentations and line breaks. */
|
|
2875
|
+
prettyPrint?: boolean;
|
|
2876
|
+
/** 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. */
|
|
2877
|
+
quotaUser?: string;
|
|
2878
|
+
/** Required. The fields to be updated. */
|
|
2879
|
+
updateMask?: string;
|
|
2880
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2881
|
+
upload_protocol?: string;
|
|
2882
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2883
|
+
uploadType?: string;
|
|
2884
|
+
},
|
|
2885
|
+
body: RBACRoleBinding): Request<Operation>;
|
|
2886
|
+
}
|
|
2887
|
+
interface NamespacesResource {
|
|
2888
|
+
/** Creates a fleet namespace. */
|
|
2889
|
+
create(request: {
|
|
2890
|
+
/** V1 error format. */
|
|
2891
|
+
"$.xgafv"?: string;
|
|
2892
|
+
/** OAuth access token. */
|
|
2893
|
+
access_token?: string;
|
|
2894
|
+
/** Data format for response. */
|
|
2895
|
+
alt?: string;
|
|
2896
|
+
/** JSONP */
|
|
2897
|
+
callback?: string;
|
|
2898
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2899
|
+
fields?: string;
|
|
2900
|
+
/** 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. */
|
|
2901
|
+
key?: string;
|
|
2902
|
+
/**
|
|
2903
|
+
* 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
|
|
2904
|
+
* 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
|
|
2905
|
+
* length of 63 characters.
|
|
2906
|
+
*/
|
|
2907
|
+
namespaceId?: string;
|
|
2908
|
+
/** OAuth 2.0 token for the current user. */
|
|
2909
|
+
oauth_token?: string;
|
|
2910
|
+
/** Required. The parent (project and location) where the Namespace will be created. Specified in the format `projects/*/locations/*`. */
|
|
2911
|
+
parent: string;
|
|
2912
|
+
/** Returns response with indentations and line breaks. */
|
|
2913
|
+
prettyPrint?: boolean;
|
|
2914
|
+
/** 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. */
|
|
2915
|
+
quotaUser?: string;
|
|
2916
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2917
|
+
upload_protocol?: string;
|
|
2918
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2919
|
+
uploadType?: string;
|
|
2920
|
+
/** Request body */
|
|
2921
|
+
resource: Namespace;
|
|
2922
|
+
}): Request<Operation>;
|
|
2923
|
+
create(request: {
|
|
2924
|
+
/** V1 error format. */
|
|
2925
|
+
"$.xgafv"?: string;
|
|
2926
|
+
/** OAuth access token. */
|
|
2927
|
+
access_token?: string;
|
|
2928
|
+
/** Data format for response. */
|
|
2929
|
+
alt?: string;
|
|
2930
|
+
/** JSONP */
|
|
2931
|
+
callback?: string;
|
|
2932
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2933
|
+
fields?: string;
|
|
2934
|
+
/** 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. */
|
|
2935
|
+
key?: string;
|
|
2936
|
+
/**
|
|
2937
|
+
* 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
|
|
2938
|
+
* 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
|
|
2939
|
+
* length of 63 characters.
|
|
2940
|
+
*/
|
|
2941
|
+
namespaceId?: string;
|
|
2942
|
+
/** OAuth 2.0 token for the current user. */
|
|
2943
|
+
oauth_token?: string;
|
|
2944
|
+
/** Required. The parent (project and location) where the Namespace will be created. Specified in the format `projects/*/locations/*`. */
|
|
2945
|
+
parent: string;
|
|
2946
|
+
/** Returns response with indentations and line breaks. */
|
|
2947
|
+
prettyPrint?: boolean;
|
|
2948
|
+
/** 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. */
|
|
2949
|
+
quotaUser?: string;
|
|
2950
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2951
|
+
upload_protocol?: string;
|
|
2952
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2953
|
+
uploadType?: string;
|
|
2954
|
+
},
|
|
2955
|
+
body: Namespace): Request<Operation>;
|
|
2956
|
+
/** Deletes a fleet namespace. */
|
|
2957
|
+
delete(request?: {
|
|
2958
|
+
/** V1 error format. */
|
|
2959
|
+
"$.xgafv"?: string;
|
|
2960
|
+
/** OAuth access token. */
|
|
2961
|
+
access_token?: string;
|
|
2962
|
+
/** Data format for response. */
|
|
2963
|
+
alt?: string;
|
|
2964
|
+
/** JSONP */
|
|
2965
|
+
callback?: string;
|
|
2966
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2967
|
+
fields?: string;
|
|
2968
|
+
/** 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. */
|
|
2969
|
+
key?: string;
|
|
2970
|
+
/** Required. The Namespace resource name in the format `projects/*/locations/*/namespaces/*`. */
|
|
2971
|
+
name: string;
|
|
2972
|
+
/** OAuth 2.0 token for the current user. */
|
|
2973
|
+
oauth_token?: string;
|
|
2974
|
+
/** Returns response with indentations and line breaks. */
|
|
2975
|
+
prettyPrint?: boolean;
|
|
2976
|
+
/** 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. */
|
|
2977
|
+
quotaUser?: string;
|
|
2978
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2979
|
+
upload_protocol?: string;
|
|
2980
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2981
|
+
uploadType?: string;
|
|
2982
|
+
}): Request<Operation>;
|
|
2983
|
+
/** Returns the details of a fleet namespace. */
|
|
2984
|
+
get(request?: {
|
|
2985
|
+
/** V1 error format. */
|
|
2986
|
+
"$.xgafv"?: string;
|
|
2987
|
+
/** OAuth access token. */
|
|
2988
|
+
access_token?: string;
|
|
2989
|
+
/** Data format for response. */
|
|
2990
|
+
alt?: string;
|
|
2991
|
+
/** JSONP */
|
|
2992
|
+
callback?: string;
|
|
2993
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2994
|
+
fields?: string;
|
|
2995
|
+
/** 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. */
|
|
2996
|
+
key?: string;
|
|
2997
|
+
/** Required. The Namespace resource name in the format `projects/*/locations/*/namespaces/*`. */
|
|
2998
|
+
name: string;
|
|
2999
|
+
/** OAuth 2.0 token for the current user. */
|
|
3000
|
+
oauth_token?: string;
|
|
3001
|
+
/** Returns response with indentations and line breaks. */
|
|
3002
|
+
prettyPrint?: boolean;
|
|
3003
|
+
/** 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. */
|
|
3004
|
+
quotaUser?: string;
|
|
3005
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3006
|
+
upload_protocol?: string;
|
|
3007
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3008
|
+
uploadType?: string;
|
|
3009
|
+
}): Request<Namespace>;
|
|
3010
|
+
/** Lists fleet namespaces. */
|
|
3011
|
+
list(request?: {
|
|
3012
|
+
/** V1 error format. */
|
|
3013
|
+
"$.xgafv"?: string;
|
|
3014
|
+
/** OAuth access token. */
|
|
3015
|
+
access_token?: string;
|
|
3016
|
+
/** Data format for response. */
|
|
3017
|
+
alt?: string;
|
|
3018
|
+
/** JSONP */
|
|
3019
|
+
callback?: string;
|
|
3020
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3021
|
+
fields?: string;
|
|
3022
|
+
/** 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. */
|
|
3023
|
+
key?: string;
|
|
3024
|
+
/** OAuth 2.0 token for the current user. */
|
|
3025
|
+
oauth_token?: string;
|
|
3026
|
+
/** 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. */
|
|
3027
|
+
pageSize?: number;
|
|
3028
|
+
/** Optional. Token returned by previous call to `ListFeatures` which specifies the position in the list from where to continue listing the resources. */
|
|
3029
|
+
pageToken?: string;
|
|
3030
|
+
/** Required. The parent (project and location) where the Features will be listed. Specified in the format `projects/*/locations/*`. */
|
|
3031
|
+
parent: string;
|
|
3032
|
+
/** Returns response with indentations and line breaks. */
|
|
3033
|
+
prettyPrint?: boolean;
|
|
3034
|
+
/** 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. */
|
|
3035
|
+
quotaUser?: string;
|
|
3036
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3037
|
+
upload_protocol?: string;
|
|
3038
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3039
|
+
uploadType?: string;
|
|
3040
|
+
}): Request<ListNamespacesResponse>;
|
|
3041
|
+
/** Updates a fleet namespace. */
|
|
3042
|
+
patch(request: {
|
|
3043
|
+
/** V1 error format. */
|
|
3044
|
+
"$.xgafv"?: string;
|
|
3045
|
+
/** OAuth access token. */
|
|
3046
|
+
access_token?: string;
|
|
3047
|
+
/** Data format for response. */
|
|
3048
|
+
alt?: string;
|
|
3049
|
+
/** JSONP */
|
|
3050
|
+
callback?: string;
|
|
3051
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3052
|
+
fields?: string;
|
|
3053
|
+
/** 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. */
|
|
3054
|
+
key?: string;
|
|
3055
|
+
/** The resource name for the namespace `projects/{project}/locations/{location}/namespaces/{namespace}` */
|
|
3056
|
+
name: string;
|
|
3057
|
+
/** OAuth 2.0 token for the current user. */
|
|
3058
|
+
oauth_token?: string;
|
|
3059
|
+
/** Returns response with indentations and line breaks. */
|
|
3060
|
+
prettyPrint?: boolean;
|
|
3061
|
+
/** 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. */
|
|
3062
|
+
quotaUser?: string;
|
|
3063
|
+
/** Required. The fields to be updated. */
|
|
3064
|
+
updateMask?: string;
|
|
3065
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3066
|
+
upload_protocol?: string;
|
|
3067
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3068
|
+
uploadType?: string;
|
|
3069
|
+
/** Request body */
|
|
3070
|
+
resource: Namespace;
|
|
3071
|
+
}): Request<Operation>;
|
|
3072
|
+
patch(request: {
|
|
3073
|
+
/** V1 error format. */
|
|
3074
|
+
"$.xgafv"?: string;
|
|
3075
|
+
/** OAuth access token. */
|
|
3076
|
+
access_token?: string;
|
|
3077
|
+
/** Data format for response. */
|
|
3078
|
+
alt?: string;
|
|
3079
|
+
/** JSONP */
|
|
3080
|
+
callback?: string;
|
|
3081
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3082
|
+
fields?: string;
|
|
3083
|
+
/** 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. */
|
|
3084
|
+
key?: string;
|
|
3085
|
+
/** The resource name for the namespace `projects/{project}/locations/{location}/namespaces/{namespace}` */
|
|
3086
|
+
name: string;
|
|
3087
|
+
/** OAuth 2.0 token for the current user. */
|
|
3088
|
+
oauth_token?: string;
|
|
3089
|
+
/** Returns response with indentations and line breaks. */
|
|
3090
|
+
prettyPrint?: boolean;
|
|
3091
|
+
/** 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. */
|
|
3092
|
+
quotaUser?: string;
|
|
3093
|
+
/** Required. The fields to be updated. */
|
|
3094
|
+
updateMask?: string;
|
|
3095
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3096
|
+
upload_protocol?: string;
|
|
3097
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3098
|
+
uploadType?: string;
|
|
3099
|
+
},
|
|
3100
|
+
body: Namespace): Request<Operation>;
|
|
3101
|
+
rbacrolebindings: RbacrolebindingsResource;
|
|
3102
|
+
}
|
|
3103
|
+
interface OperationsResource {
|
|
3104
|
+
/**
|
|
3105
|
+
* 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
|
|
3106
|
+
* 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
|
|
3107
|
+
* operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a
|
|
3108
|
+
* google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
|
|
3109
|
+
*/
|
|
3110
|
+
cancel(request: {
|
|
3111
|
+
/** V1 error format. */
|
|
3112
|
+
"$.xgafv"?: string;
|
|
3113
|
+
/** OAuth access token. */
|
|
3114
|
+
access_token?: string;
|
|
3115
|
+
/** Data format for response. */
|
|
3116
|
+
alt?: string;
|
|
3117
|
+
/** JSONP */
|
|
3118
|
+
callback?: string;
|
|
3119
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3120
|
+
fields?: string;
|
|
3121
|
+
/** 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. */
|
|
3122
|
+
key?: string;
|
|
3123
|
+
/** The name of the operation resource to be cancelled. */
|
|
3124
|
+
name: string;
|
|
3125
|
+
/** OAuth 2.0 token for the current user. */
|
|
3126
|
+
oauth_token?: string;
|
|
3127
|
+
/** Returns response with indentations and line breaks. */
|
|
3128
|
+
prettyPrint?: boolean;
|
|
3129
|
+
/** 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. */
|
|
3130
|
+
quotaUser?: string;
|
|
3131
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3132
|
+
upload_protocol?: string;
|
|
3133
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3134
|
+
uploadType?: string;
|
|
3135
|
+
/** Request body */
|
|
3136
|
+
resource: CancelOperationRequest;
|
|
3137
|
+
}): Request<{}>;
|
|
3138
|
+
cancel(request: {
|
|
3139
|
+
/** V1 error format. */
|
|
3140
|
+
"$.xgafv"?: string;
|
|
3141
|
+
/** OAuth access token. */
|
|
3142
|
+
access_token?: string;
|
|
3143
|
+
/** Data format for response. */
|
|
3144
|
+
alt?: string;
|
|
3145
|
+
/** JSONP */
|
|
3146
|
+
callback?: string;
|
|
3147
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3148
|
+
fields?: string;
|
|
3149
|
+
/** 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. */
|
|
3150
|
+
key?: string;
|
|
3151
|
+
/** The name of the operation resource to be cancelled. */
|
|
3152
|
+
name: string;
|
|
2376
3153
|
/** OAuth 2.0 token for the current user. */
|
|
2377
3154
|
oauth_token?: string;
|
|
2378
3155
|
/** Returns response with indentations and line breaks. */
|
|
@@ -2481,6 +3258,213 @@ declare namespace gapi.client {
|
|
|
2481
3258
|
uploadType?: string;
|
|
2482
3259
|
}): Request<ListOperationsResponse>;
|
|
2483
3260
|
}
|
|
3261
|
+
interface ScopesResource {
|
|
3262
|
+
/** Creates a Scope. */
|
|
3263
|
+
create(request: {
|
|
3264
|
+
/** V1 error format. */
|
|
3265
|
+
"$.xgafv"?: string;
|
|
3266
|
+
/** OAuth access token. */
|
|
3267
|
+
access_token?: string;
|
|
3268
|
+
/** Data format for response. */
|
|
3269
|
+
alt?: string;
|
|
3270
|
+
/** JSONP */
|
|
3271
|
+
callback?: string;
|
|
3272
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3273
|
+
fields?: string;
|
|
3274
|
+
/** 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. */
|
|
3275
|
+
key?: string;
|
|
3276
|
+
/** OAuth 2.0 token for the current user. */
|
|
3277
|
+
oauth_token?: string;
|
|
3278
|
+
/** Required. The parent (project and location) where the Scope will be created. Specified in the format `projects/*/locations/*`. */
|
|
3279
|
+
parent: string;
|
|
3280
|
+
/** Returns response with indentations and line breaks. */
|
|
3281
|
+
prettyPrint?: boolean;
|
|
3282
|
+
/** 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. */
|
|
3283
|
+
quotaUser?: string;
|
|
3284
|
+
/** Required. Client chosen ID for the Scope. `scope_id` must be a ???? */
|
|
3285
|
+
scopeId?: string;
|
|
3286
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3287
|
+
upload_protocol?: string;
|
|
3288
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3289
|
+
uploadType?: string;
|
|
3290
|
+
/** Request body */
|
|
3291
|
+
resource: Scope;
|
|
3292
|
+
}): Request<Operation>;
|
|
3293
|
+
create(request: {
|
|
3294
|
+
/** V1 error format. */
|
|
3295
|
+
"$.xgafv"?: string;
|
|
3296
|
+
/** OAuth access token. */
|
|
3297
|
+
access_token?: string;
|
|
3298
|
+
/** Data format for response. */
|
|
3299
|
+
alt?: string;
|
|
3300
|
+
/** JSONP */
|
|
3301
|
+
callback?: string;
|
|
3302
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3303
|
+
fields?: string;
|
|
3304
|
+
/** 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. */
|
|
3305
|
+
key?: string;
|
|
3306
|
+
/** OAuth 2.0 token for the current user. */
|
|
3307
|
+
oauth_token?: string;
|
|
3308
|
+
/** Required. The parent (project and location) where the Scope will be created. Specified in the format `projects/*/locations/*`. */
|
|
3309
|
+
parent: string;
|
|
3310
|
+
/** Returns response with indentations and line breaks. */
|
|
3311
|
+
prettyPrint?: boolean;
|
|
3312
|
+
/** 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. */
|
|
3313
|
+
quotaUser?: string;
|
|
3314
|
+
/** Required. Client chosen ID for the Scope. `scope_id` must be a ???? */
|
|
3315
|
+
scopeId?: string;
|
|
3316
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3317
|
+
upload_protocol?: string;
|
|
3318
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3319
|
+
uploadType?: string;
|
|
3320
|
+
},
|
|
3321
|
+
body: Scope): Request<Operation>;
|
|
3322
|
+
/** Deletes a Scope. */
|
|
3323
|
+
delete(request?: {
|
|
3324
|
+
/** V1 error format. */
|
|
3325
|
+
"$.xgafv"?: string;
|
|
3326
|
+
/** OAuth access token. */
|
|
3327
|
+
access_token?: string;
|
|
3328
|
+
/** Data format for response. */
|
|
3329
|
+
alt?: string;
|
|
3330
|
+
/** JSONP */
|
|
3331
|
+
callback?: string;
|
|
3332
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3333
|
+
fields?: string;
|
|
3334
|
+
/** 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. */
|
|
3335
|
+
key?: string;
|
|
3336
|
+
/** Required. The Scope resource name in the format `projects/*/locations/*/scopes/*`. */
|
|
3337
|
+
name: string;
|
|
3338
|
+
/** OAuth 2.0 token for the current user. */
|
|
3339
|
+
oauth_token?: string;
|
|
3340
|
+
/** Returns response with indentations and line breaks. */
|
|
3341
|
+
prettyPrint?: boolean;
|
|
3342
|
+
/** 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. */
|
|
3343
|
+
quotaUser?: string;
|
|
3344
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3345
|
+
upload_protocol?: string;
|
|
3346
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3347
|
+
uploadType?: string;
|
|
3348
|
+
}): Request<Operation>;
|
|
3349
|
+
/** Returns the details of a Scope. */
|
|
3350
|
+
get(request?: {
|
|
3351
|
+
/** V1 error format. */
|
|
3352
|
+
"$.xgafv"?: string;
|
|
3353
|
+
/** OAuth access token. */
|
|
3354
|
+
access_token?: string;
|
|
3355
|
+
/** Data format for response. */
|
|
3356
|
+
alt?: string;
|
|
3357
|
+
/** JSONP */
|
|
3358
|
+
callback?: string;
|
|
3359
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3360
|
+
fields?: string;
|
|
3361
|
+
/** 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. */
|
|
3362
|
+
key?: string;
|
|
3363
|
+
/** Required. The Scope resource name in the format `projects/*/locations/*/scopes/*`. */
|
|
3364
|
+
name: string;
|
|
3365
|
+
/** OAuth 2.0 token for the current user. */
|
|
3366
|
+
oauth_token?: string;
|
|
3367
|
+
/** Returns response with indentations and line breaks. */
|
|
3368
|
+
prettyPrint?: boolean;
|
|
3369
|
+
/** 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. */
|
|
3370
|
+
quotaUser?: string;
|
|
3371
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3372
|
+
upload_protocol?: string;
|
|
3373
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3374
|
+
uploadType?: string;
|
|
3375
|
+
}): Request<Scope>;
|
|
3376
|
+
/** Lists Scopes. */
|
|
3377
|
+
list(request?: {
|
|
3378
|
+
/** V1 error format. */
|
|
3379
|
+
"$.xgafv"?: string;
|
|
3380
|
+
/** OAuth access token. */
|
|
3381
|
+
access_token?: string;
|
|
3382
|
+
/** Data format for response. */
|
|
3383
|
+
alt?: string;
|
|
3384
|
+
/** JSONP */
|
|
3385
|
+
callback?: string;
|
|
3386
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3387
|
+
fields?: string;
|
|
3388
|
+
/** 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. */
|
|
3389
|
+
key?: string;
|
|
3390
|
+
/** OAuth 2.0 token for the current user. */
|
|
3391
|
+
oauth_token?: string;
|
|
3392
|
+
/** 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. */
|
|
3393
|
+
pageSize?: number;
|
|
3394
|
+
/** Optional. Token returned by previous call to `ListScopes` which specifies the position in the list from where to continue listing the resources. */
|
|
3395
|
+
pageToken?: string;
|
|
3396
|
+
/** Required. The parent (project and location) where the Scope will be listed. Specified in the format `projects/*/locations/*`. */
|
|
3397
|
+
parent: string;
|
|
3398
|
+
/** Returns response with indentations and line breaks. */
|
|
3399
|
+
prettyPrint?: boolean;
|
|
3400
|
+
/** 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. */
|
|
3401
|
+
quotaUser?: string;
|
|
3402
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3403
|
+
upload_protocol?: string;
|
|
3404
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3405
|
+
uploadType?: string;
|
|
3406
|
+
}): Request<ListScopesResponse>;
|
|
3407
|
+
/** Updates a scopes. */
|
|
3408
|
+
patch(request: {
|
|
3409
|
+
/** V1 error format. */
|
|
3410
|
+
"$.xgafv"?: string;
|
|
3411
|
+
/** OAuth access token. */
|
|
3412
|
+
access_token?: string;
|
|
3413
|
+
/** Data format for response. */
|
|
3414
|
+
alt?: string;
|
|
3415
|
+
/** JSONP */
|
|
3416
|
+
callback?: string;
|
|
3417
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3418
|
+
fields?: string;
|
|
3419
|
+
/** 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. */
|
|
3420
|
+
key?: string;
|
|
3421
|
+
/** The resource name for the scope `projects/{project}/locations/{location}/scopes/{scope}` */
|
|
3422
|
+
name: string;
|
|
3423
|
+
/** OAuth 2.0 token for the current user. */
|
|
3424
|
+
oauth_token?: string;
|
|
3425
|
+
/** Returns response with indentations and line breaks. */
|
|
3426
|
+
prettyPrint?: boolean;
|
|
3427
|
+
/** 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. */
|
|
3428
|
+
quotaUser?: string;
|
|
3429
|
+
/** Required. The fields to be updated. */
|
|
3430
|
+
updateMask?: string;
|
|
3431
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3432
|
+
upload_protocol?: string;
|
|
3433
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3434
|
+
uploadType?: string;
|
|
3435
|
+
/** Request body */
|
|
3436
|
+
resource: Scope;
|
|
3437
|
+
}): Request<Operation>;
|
|
3438
|
+
patch(request: {
|
|
3439
|
+
/** V1 error format. */
|
|
3440
|
+
"$.xgafv"?: string;
|
|
3441
|
+
/** OAuth access token. */
|
|
3442
|
+
access_token?: string;
|
|
3443
|
+
/** Data format for response. */
|
|
3444
|
+
alt?: string;
|
|
3445
|
+
/** JSONP */
|
|
3446
|
+
callback?: string;
|
|
3447
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3448
|
+
fields?: string;
|
|
3449
|
+
/** 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. */
|
|
3450
|
+
key?: string;
|
|
3451
|
+
/** The resource name for the scope `projects/{project}/locations/{location}/scopes/{scope}` */
|
|
3452
|
+
name: string;
|
|
3453
|
+
/** OAuth 2.0 token for the current user. */
|
|
3454
|
+
oauth_token?: string;
|
|
3455
|
+
/** Returns response with indentations and line breaks. */
|
|
3456
|
+
prettyPrint?: boolean;
|
|
3457
|
+
/** 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. */
|
|
3458
|
+
quotaUser?: string;
|
|
3459
|
+
/** Required. The fields to be updated. */
|
|
3460
|
+
updateMask?: string;
|
|
3461
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3462
|
+
upload_protocol?: string;
|
|
3463
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3464
|
+
uploadType?: string;
|
|
3465
|
+
},
|
|
3466
|
+
body: Scope): Request<Operation>;
|
|
3467
|
+
}
|
|
2484
3468
|
interface LocationsResource {
|
|
2485
3469
|
/** Gets information about a location. */
|
|
2486
3470
|
get(request?: {
|
|
@@ -2548,7 +3532,9 @@ declare namespace gapi.client {
|
|
|
2548
3532
|
features: FeaturesResource;
|
|
2549
3533
|
fleets: FleetsResource;
|
|
2550
3534
|
memberships: MembershipsResource;
|
|
3535
|
+
namespaces: NamespacesResource;
|
|
2551
3536
|
operations: OperationsResource;
|
|
3537
|
+
scopes: ScopesResource;
|
|
2552
3538
|
}
|
|
2553
3539
|
interface ProjectsResource {
|
|
2554
3540
|
locations: LocationsResource;
|