@maxim_mazurok/gapi.client.vmwareengine-v1 0.1.20250912 → 0.1.20251113
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 +445 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://vmwareengine.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20251113
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -103,6 +103,8 @@ declare namespace gapi.client {
|
|
|
103
103
|
autoscalingSettings?: AutoscalingSettings;
|
|
104
104
|
/** Output only. Creation time of this resource. */
|
|
105
105
|
createTime?: string;
|
|
106
|
+
/** Output only. Configuration of a mounted datastore. */
|
|
107
|
+
datastoreMountConfig?: DatastoreMountConfig[];
|
|
106
108
|
/** Output only. True if the cluster is a management cluster; false otherwise. There can only be one management cluster in a private cloud and it has to be the first one. */
|
|
107
109
|
management?: boolean;
|
|
108
110
|
/** Output only. Identifier. The resource name of this cluster. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: `projects/my-project/locations/us-central1-a/privateClouds/my-cloud/clusters/my-cluster` */
|
|
@@ -134,6 +136,52 @@ declare namespace gapi.client {
|
|
|
134
136
|
/** Initial username. */
|
|
135
137
|
username?: string;
|
|
136
138
|
}
|
|
139
|
+
interface Datastore {
|
|
140
|
+
/** Output only. Clusters to which the datastore is attached. */
|
|
141
|
+
clusters?: string[];
|
|
142
|
+
/** Output only. Creation time of this resource. */
|
|
143
|
+
createTime?: string;
|
|
144
|
+
/** Optional. User-provided description for this datastore */
|
|
145
|
+
description?: string;
|
|
146
|
+
/** Optional. Checksum that may be sent on update and delete requests to ensure that the user-provided value is up to date before the server processes a request. The server computes checksums based on the value of other fields in the request. */
|
|
147
|
+
etag?: string;
|
|
148
|
+
/** Output only. Identifier. The resource name of this datastore. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: `projects/my-project/locations/us-central1/datastores/datastore` */
|
|
149
|
+
name?: string;
|
|
150
|
+
/** Required. Settings for the NFS datastore. */
|
|
151
|
+
nfsDatastore?: NfsDatastore;
|
|
152
|
+
/** Output only. The state of the Datastore. */
|
|
153
|
+
state?: string;
|
|
154
|
+
/** Output only. System-generated unique identifier for the resource. */
|
|
155
|
+
uid?: string;
|
|
156
|
+
/** Output only. Last update time of this resource. */
|
|
157
|
+
updateTime?: string;
|
|
158
|
+
}
|
|
159
|
+
interface DatastoreMountConfig {
|
|
160
|
+
/** Optional. NFS is accessed by hosts in read mode Optional. Default value used will be READ_WRITE */
|
|
161
|
+
accessMode?: string;
|
|
162
|
+
/** Required. The resource name of the datastore to unmount. The datastore requested to be mounted should be in same region/zone as the cluster. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: `projects/my-project/locations/us-central1/datastores/my-datastore` */
|
|
163
|
+
datastore?: string;
|
|
164
|
+
/** Required. The network configuration for the datastore. */
|
|
165
|
+
datastoreNetwork?: DatastoreNetwork;
|
|
166
|
+
/** Output only. File share name. */
|
|
167
|
+
fileShare?: string;
|
|
168
|
+
/** Optional. The NFS protocol supported by the NFS volume. Default value used will be NFS_V3 */
|
|
169
|
+
nfsVersion?: string;
|
|
170
|
+
/** Optional. ONLY required when NFS 4.1 version is used */
|
|
171
|
+
securityType?: string;
|
|
172
|
+
/** Output only. Server IP addresses of the NFS volume. For NFS 3, you can only provide a single server IP address or DNS names. */
|
|
173
|
+
servers?: string[];
|
|
174
|
+
}
|
|
175
|
+
interface DatastoreNetwork {
|
|
176
|
+
/** Optional. The number of connections of the NFS volume. Spported from vsphere 8.0u1 */
|
|
177
|
+
connectionCount?: number;
|
|
178
|
+
/** Optional. The Maximal Transmission Unit (MTU) of the datastore. System sets default MTU size. It prefers the VPC peering MTU, falling back to the VEN MTU if no peering MTU is found. when detected, and falling back to the VEN MTU otherwise. */
|
|
179
|
+
mtu?: number;
|
|
180
|
+
/** Output only. The resource name of the network peering, used to access the file share by clients on private cloud. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. e.g. projects/my-project/locations/us-central1/networkPeerings/my-network-peering */
|
|
181
|
+
networkPeering?: string;
|
|
182
|
+
/** Required. The resource name of the subnet Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. e.g. projects/my-project/locations/us-central1/subnets/my-subnet */
|
|
183
|
+
subnet?: string;
|
|
184
|
+
}
|
|
137
185
|
interface DnsBindPermission {
|
|
138
186
|
/** Required. Output only. The name of the resource which stores the users/service accounts having the permission to bind to the corresponding intranet VPC of the consumer project. DnsBindPermission is a global resource and location can only be global. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: `projects/my-project/locations/global/dnsBindPermission` */
|
|
139
187
|
name?: string;
|
|
@@ -219,6 +267,13 @@ declare namespace gapi.client {
|
|
|
219
267
|
/** Required. List of DNS servers to use for domain resolution */
|
|
220
268
|
nameServers?: string[];
|
|
221
269
|
}
|
|
270
|
+
interface GoogleFileService {
|
|
271
|
+
/** Google filestore instance resource name e.g. projects/my-project/locations/me-west1-b/instances/my-instance */
|
|
272
|
+
filestoreInstance?: string;
|
|
273
|
+
/** Google netapp volume resource name e.g. projects/my-project/locations/me-west1-b/volumes/my-volume */
|
|
274
|
+
netappVolume?: string;
|
|
275
|
+
}
|
|
276
|
+
interface GoogleVmwareFileService {}
|
|
222
277
|
interface GrantDnsBindPermissionRequest {
|
|
223
278
|
/** Required. The consumer provided user/service account which needs to be granted permission to bind with the intranet VPC corresponding to the consumer project. */
|
|
224
279
|
principal?: Principal;
|
|
@@ -277,6 +332,14 @@ declare namespace gapi.client {
|
|
|
277
332
|
/** Locations that could not be reached when making an aggregated query using wildcards. */
|
|
278
333
|
unreachable?: string[];
|
|
279
334
|
}
|
|
335
|
+
interface ListDatastoresResponse {
|
|
336
|
+
/** A list of Datastores. */
|
|
337
|
+
datastores?: Datastore[];
|
|
338
|
+
/** A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
339
|
+
nextPageToken?: string;
|
|
340
|
+
/** Unreachable resources. */
|
|
341
|
+
unreachable?: string[];
|
|
342
|
+
}
|
|
280
343
|
interface ListExternalAccessRulesResponse {
|
|
281
344
|
/** A list of external access firewall rules. */
|
|
282
345
|
externalAccessRules?: ExternalAccessRule[];
|
|
@@ -358,6 +421,8 @@ declare namespace gapi.client {
|
|
|
358
421
|
nextPageToken?: string;
|
|
359
422
|
/** A list of operations that matches the specified filter in the request. */
|
|
360
423
|
operations?: Operation[];
|
|
424
|
+
/** Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections. For example, when attempting to list all resources across all supported locations. */
|
|
425
|
+
unreachable?: string[];
|
|
361
426
|
}
|
|
362
427
|
interface ListPeeringRoutesResponse {
|
|
363
428
|
/** A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
@@ -471,6 +536,14 @@ declare namespace gapi.client {
|
|
|
471
536
|
/** Network to bind is a standard consumer VPC. Specify the name in the following form for consumer VPC network: `projects/{project}/global/networks/{network_id}`. `{project}` can either be a project number or a project ID. */
|
|
472
537
|
vpcNetwork?: string;
|
|
473
538
|
}
|
|
539
|
+
interface MountDatastoreRequest {
|
|
540
|
+
/** Required. The datastore mount configuration. */
|
|
541
|
+
datastoreMountConfig?: DatastoreMountConfig;
|
|
542
|
+
/** Optional. If set to true, the colocation requirement will be ignored. If set to false, the colocation requirement will be enforced. If not set, the colocation requirement will be enforced. Colocation requirement is the requirement that the cluster must be in the same region/zone of datastore(regional/zonal datastore). */
|
|
543
|
+
ignoreColocation?: boolean;
|
|
544
|
+
/** Optional. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
545
|
+
requestId?: string;
|
|
546
|
+
}
|
|
474
547
|
interface NetworkConfig {
|
|
475
548
|
/** Output only. DNS Server IP of the Private Cloud. All DNS queries can be forwarded to this address for name resolution of Private Cloud's management entities like vCenter, NSX-T Manager and ESXi hosts. */
|
|
476
549
|
dnsServerIp?: string;
|
|
@@ -545,6 +618,14 @@ declare namespace gapi.client {
|
|
|
545
618
|
/** Output only. State of the service. New values may be added to this enum when appropriate. */
|
|
546
619
|
state?: string;
|
|
547
620
|
}
|
|
621
|
+
interface NfsDatastore {
|
|
622
|
+
/** Google service file service configuration */
|
|
623
|
+
googleFileService?: GoogleFileService;
|
|
624
|
+
/** GCVE file service configuration */
|
|
625
|
+
googleVmwareFileService?: any;
|
|
626
|
+
/** Third party file service configuration */
|
|
627
|
+
thirdPartyFileService?: ThirdPartyFileService;
|
|
628
|
+
}
|
|
548
629
|
interface Node {
|
|
549
630
|
/** Output only. Customized number of cores */
|
|
550
631
|
customCoreCount?: string;
|
|
@@ -791,6 +872,14 @@ declare namespace gapi.client {
|
|
|
791
872
|
/** A subset of `TestPermissionsRequest.permissions` that the caller is allowed. */
|
|
792
873
|
permissions?: string[];
|
|
793
874
|
}
|
|
875
|
+
interface ThirdPartyFileService {
|
|
876
|
+
/** Required. Required Mount Folder name */
|
|
877
|
+
fileShare?: string;
|
|
878
|
+
/** Required. Required to identify vpc peering used for NFS access network name of NFS's vpc e.g. projects/project-id/global/networks/my-network_id */
|
|
879
|
+
network?: string;
|
|
880
|
+
/** Required. Server IP addresses of the NFS file service. NFS v3, provide a single IP address or DNS name. Multiple servers can be supported in future when NFS 4.1 protocol support is enabled. */
|
|
881
|
+
servers?: string[];
|
|
882
|
+
}
|
|
794
883
|
interface Thresholds {
|
|
795
884
|
/** Required. The utilization triggering the scale-in operation in percent. */
|
|
796
885
|
scaleIn?: number;
|
|
@@ -819,6 +908,12 @@ declare namespace gapi.client {
|
|
|
819
908
|
/** Optional. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
820
909
|
requestId?: string;
|
|
821
910
|
}
|
|
911
|
+
interface UnmountDatastoreRequest {
|
|
912
|
+
/** Required. The resource name of the datastore to unmount. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: `projects/my-project/locations/us-central1/datastores/my-datastore` */
|
|
913
|
+
datastore?: string;
|
|
914
|
+
/** Optional. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
915
|
+
requestId?: string;
|
|
916
|
+
}
|
|
822
917
|
interface Upgrade {
|
|
823
918
|
/** Output only. Output Only. The list of component upgrades. */
|
|
824
919
|
componentUpgrades?: VmwareUpgradeComponent[];
|
|
@@ -967,6 +1062,235 @@ declare namespace gapi.client {
|
|
|
967
1062
|
uploadType?: string;
|
|
968
1063
|
}): Request<ListAnnouncementsResponse>;
|
|
969
1064
|
}
|
|
1065
|
+
interface DatastoresResource {
|
|
1066
|
+
/** Creates a new `Datastore` resource in a given project and location. Datastores are regional resources */
|
|
1067
|
+
create(request: {
|
|
1068
|
+
/** V1 error format. */
|
|
1069
|
+
'$.xgafv'?: string;
|
|
1070
|
+
/** OAuth access token. */
|
|
1071
|
+
access_token?: string;
|
|
1072
|
+
/** Data format for response. */
|
|
1073
|
+
alt?: string;
|
|
1074
|
+
/** JSONP */
|
|
1075
|
+
callback?: string;
|
|
1076
|
+
/** Required. The user-provided identifier of the datastore to be created. This identifier must be unique among each `Datastore` within the parent and becomes the final token in the name URI. The identifier must meet the following requirements: * Only contains 1-63 alphanumeric characters and hyphens * Begins with an alphabetical character * Ends with a non-hyphen character * Not formatted as a UUID * Complies with [RFC 1034](https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5) */
|
|
1077
|
+
datastoreId?: string;
|
|
1078
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1079
|
+
fields?: string;
|
|
1080
|
+
/** 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. */
|
|
1081
|
+
key?: string;
|
|
1082
|
+
/** OAuth 2.0 token for the current user. */
|
|
1083
|
+
oauth_token?: string;
|
|
1084
|
+
/** Required. The resource name of the location to create the new datastore in. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: `projects/my-project/locations/us-central1` */
|
|
1085
|
+
parent: string;
|
|
1086
|
+
/** Returns response with indentations and line breaks. */
|
|
1087
|
+
prettyPrint?: boolean;
|
|
1088
|
+
/** 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. */
|
|
1089
|
+
quotaUser?: string;
|
|
1090
|
+
/** Optional. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
1091
|
+
requestId?: string;
|
|
1092
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1093
|
+
upload_protocol?: string;
|
|
1094
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1095
|
+
uploadType?: string;
|
|
1096
|
+
/** Request body */
|
|
1097
|
+
resource: Datastore;
|
|
1098
|
+
}): Request<Operation>;
|
|
1099
|
+
create(
|
|
1100
|
+
request: {
|
|
1101
|
+
/** V1 error format. */
|
|
1102
|
+
'$.xgafv'?: string;
|
|
1103
|
+
/** OAuth access token. */
|
|
1104
|
+
access_token?: string;
|
|
1105
|
+
/** Data format for response. */
|
|
1106
|
+
alt?: string;
|
|
1107
|
+
/** JSONP */
|
|
1108
|
+
callback?: string;
|
|
1109
|
+
/** Required. The user-provided identifier of the datastore to be created. This identifier must be unique among each `Datastore` within the parent and becomes the final token in the name URI. The identifier must meet the following requirements: * Only contains 1-63 alphanumeric characters and hyphens * Begins with an alphabetical character * Ends with a non-hyphen character * Not formatted as a UUID * Complies with [RFC 1034](https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5) */
|
|
1110
|
+
datastoreId?: string;
|
|
1111
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1112
|
+
fields?: string;
|
|
1113
|
+
/** 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. */
|
|
1114
|
+
key?: string;
|
|
1115
|
+
/** OAuth 2.0 token for the current user. */
|
|
1116
|
+
oauth_token?: string;
|
|
1117
|
+
/** Required. The resource name of the location to create the new datastore in. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: `projects/my-project/locations/us-central1` */
|
|
1118
|
+
parent: string;
|
|
1119
|
+
/** Returns response with indentations and line breaks. */
|
|
1120
|
+
prettyPrint?: boolean;
|
|
1121
|
+
/** 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. */
|
|
1122
|
+
quotaUser?: string;
|
|
1123
|
+
/** Optional. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
1124
|
+
requestId?: string;
|
|
1125
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1126
|
+
upload_protocol?: string;
|
|
1127
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1128
|
+
uploadType?: string;
|
|
1129
|
+
},
|
|
1130
|
+
body: Datastore,
|
|
1131
|
+
): Request<Operation>;
|
|
1132
|
+
/** Deletes a `Datastore` resource. You can only delete a Datastore after all resources that refer to it are deleted. For example, multiple clusters of the same private cloud or different private clouds can refer to the same datastore. */
|
|
1133
|
+
delete(request?: {
|
|
1134
|
+
/** V1 error format. */
|
|
1135
|
+
'$.xgafv'?: string;
|
|
1136
|
+
/** OAuth access token. */
|
|
1137
|
+
access_token?: string;
|
|
1138
|
+
/** Data format for response. */
|
|
1139
|
+
alt?: string;
|
|
1140
|
+
/** JSONP */
|
|
1141
|
+
callback?: string;
|
|
1142
|
+
/** Optional. Checksum used to ensure that the user-provided value is up to date before the server processes the request. The server compares provided checksum with the current checksum of the resource. If the user-provided value is out of date, this request returns an `ABORTED` error. */
|
|
1143
|
+
etag?: string;
|
|
1144
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1145
|
+
fields?: string;
|
|
1146
|
+
/** 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. */
|
|
1147
|
+
key?: string;
|
|
1148
|
+
/** Required. The resource name of the Datastore to be deleted. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: `projects/my-project/locations/us-central1/datastore/my-datastore` */
|
|
1149
|
+
name: string;
|
|
1150
|
+
/** OAuth 2.0 token for the current user. */
|
|
1151
|
+
oauth_token?: string;
|
|
1152
|
+
/** Returns response with indentations and line breaks. */
|
|
1153
|
+
prettyPrint?: boolean;
|
|
1154
|
+
/** 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. */
|
|
1155
|
+
quotaUser?: string;
|
|
1156
|
+
/** Optional. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
1157
|
+
requestId?: string;
|
|
1158
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1159
|
+
upload_protocol?: string;
|
|
1160
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1161
|
+
uploadType?: string;
|
|
1162
|
+
}): Request<Operation>;
|
|
1163
|
+
/** Retrieves a `Datastore` resource by its resource name. The resource contains details of the Datastore, such as its description, subnets, type, and more. */
|
|
1164
|
+
get(request?: {
|
|
1165
|
+
/** V1 error format. */
|
|
1166
|
+
'$.xgafv'?: string;
|
|
1167
|
+
/** OAuth access token. */
|
|
1168
|
+
access_token?: string;
|
|
1169
|
+
/** Data format for response. */
|
|
1170
|
+
alt?: string;
|
|
1171
|
+
/** JSONP */
|
|
1172
|
+
callback?: string;
|
|
1173
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1174
|
+
fields?: string;
|
|
1175
|
+
/** 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. */
|
|
1176
|
+
key?: string;
|
|
1177
|
+
/** Required. The resource name of the Datastore to retrieve. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: `projects/my-project/locations/us-central1/datastores/my-datastore` */
|
|
1178
|
+
name: string;
|
|
1179
|
+
/** OAuth 2.0 token for the current user. */
|
|
1180
|
+
oauth_token?: string;
|
|
1181
|
+
/** Returns response with indentations and line breaks. */
|
|
1182
|
+
prettyPrint?: boolean;
|
|
1183
|
+
/** 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. */
|
|
1184
|
+
quotaUser?: string;
|
|
1185
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1186
|
+
upload_protocol?: string;
|
|
1187
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1188
|
+
uploadType?: string;
|
|
1189
|
+
}): Request<Datastore>;
|
|
1190
|
+
/** Lists `Datastore` resources in a given project and location. */
|
|
1191
|
+
list(request?: {
|
|
1192
|
+
/** V1 error format. */
|
|
1193
|
+
'$.xgafv'?: string;
|
|
1194
|
+
/** OAuth access token. */
|
|
1195
|
+
access_token?: string;
|
|
1196
|
+
/** Data format for response. */
|
|
1197
|
+
alt?: string;
|
|
1198
|
+
/** JSONP */
|
|
1199
|
+
callback?: string;
|
|
1200
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1201
|
+
fields?: string;
|
|
1202
|
+
/** Optional. A filter expression that matches resources returned in the response. The expression must specify the field name, a comparison operator, and the value that you want to use for filtering. The value must be a string, a number, or a boolean. The comparison operator must be `=`, `!=`, `>`, or `<`. For example, if you are filtering a list of datastores, you can exclude the ones named `example-datastore` by specifying `name != "example-datastore"`. To filter on multiple expressions, provide each separate expression within parentheses. For example: ``` (name = "example-datastore") (createTime > "2021-04-12T08:15:10.40Z") ``` By default, each expression is an `AND` expression. However, you can include `AND` and `OR` expressions explicitly. For example: ``` (name = "example-datastore-1") AND (createTime > "2021-04-12T08:15:10.40Z") OR (name = "example-datastore-2") ``` */
|
|
1203
|
+
filter?: string;
|
|
1204
|
+
/** 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. */
|
|
1205
|
+
key?: string;
|
|
1206
|
+
/** OAuth 2.0 token for the current user. */
|
|
1207
|
+
oauth_token?: string;
|
|
1208
|
+
/** Optional. Sorts list results by a certain order. By default, returned results are ordered by `name` in ascending order. You can also sort results in descending order based on the `name` value using `orderBy="name desc"`. Currently, only ordering by `name` is supported. */
|
|
1209
|
+
orderBy?: string;
|
|
1210
|
+
/** Optional. The maximum number of results to return in one page. The maximum value is coerced to 1000. The default value of this field is 500. */
|
|
1211
|
+
pageSize?: number;
|
|
1212
|
+
/** Optional. A page token, received from a previous `ListDatastores` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListDatastores` must match the call that provided the page token. */
|
|
1213
|
+
pageToken?: string;
|
|
1214
|
+
/** Required. The resource name of the location to query for Datastores. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: `projects/my-project/locations/us-central1` */
|
|
1215
|
+
parent: string;
|
|
1216
|
+
/** Returns response with indentations and line breaks. */
|
|
1217
|
+
prettyPrint?: boolean;
|
|
1218
|
+
/** 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. */
|
|
1219
|
+
quotaUser?: string;
|
|
1220
|
+
/** Optional. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
1221
|
+
requestId?: string;
|
|
1222
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1223
|
+
upload_protocol?: string;
|
|
1224
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1225
|
+
uploadType?: string;
|
|
1226
|
+
}): Request<ListDatastoresResponse>;
|
|
1227
|
+
/** Modifies a Datastore resource. Only the following fields can be updated: `description`. Only fields specified in `updateMask` are applied. */
|
|
1228
|
+
patch(request: {
|
|
1229
|
+
/** V1 error format. */
|
|
1230
|
+
'$.xgafv'?: string;
|
|
1231
|
+
/** OAuth access token. */
|
|
1232
|
+
access_token?: string;
|
|
1233
|
+
/** Data format for response. */
|
|
1234
|
+
alt?: string;
|
|
1235
|
+
/** JSONP */
|
|
1236
|
+
callback?: string;
|
|
1237
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1238
|
+
fields?: string;
|
|
1239
|
+
/** 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. */
|
|
1240
|
+
key?: string;
|
|
1241
|
+
/** Output only. Identifier. The resource name of this datastore. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: `projects/my-project/locations/us-central1/datastores/datastore` */
|
|
1242
|
+
name: string;
|
|
1243
|
+
/** OAuth 2.0 token for the current user. */
|
|
1244
|
+
oauth_token?: string;
|
|
1245
|
+
/** Returns response with indentations and line breaks. */
|
|
1246
|
+
prettyPrint?: boolean;
|
|
1247
|
+
/** 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. */
|
|
1248
|
+
quotaUser?: string;
|
|
1249
|
+
/** Optional. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
1250
|
+
requestId?: string;
|
|
1251
|
+
/** Optional. Field mask is used to specify the fields to be overwritten in the Datastore resource by the update. The fields specified in the `update_mask` are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields will be overwritten. Only the following fields can be updated: `description`. */
|
|
1252
|
+
updateMask?: string;
|
|
1253
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1254
|
+
upload_protocol?: string;
|
|
1255
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1256
|
+
uploadType?: string;
|
|
1257
|
+
/** Request body */
|
|
1258
|
+
resource: Datastore;
|
|
1259
|
+
}): Request<Operation>;
|
|
1260
|
+
patch(
|
|
1261
|
+
request: {
|
|
1262
|
+
/** V1 error format. */
|
|
1263
|
+
'$.xgafv'?: string;
|
|
1264
|
+
/** OAuth access token. */
|
|
1265
|
+
access_token?: string;
|
|
1266
|
+
/** Data format for response. */
|
|
1267
|
+
alt?: string;
|
|
1268
|
+
/** JSONP */
|
|
1269
|
+
callback?: string;
|
|
1270
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1271
|
+
fields?: string;
|
|
1272
|
+
/** 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. */
|
|
1273
|
+
key?: string;
|
|
1274
|
+
/** Output only. Identifier. The resource name of this datastore. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: `projects/my-project/locations/us-central1/datastores/datastore` */
|
|
1275
|
+
name: string;
|
|
1276
|
+
/** OAuth 2.0 token for the current user. */
|
|
1277
|
+
oauth_token?: string;
|
|
1278
|
+
/** Returns response with indentations and line breaks. */
|
|
1279
|
+
prettyPrint?: boolean;
|
|
1280
|
+
/** 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. */
|
|
1281
|
+
quotaUser?: string;
|
|
1282
|
+
/** Optional. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
1283
|
+
requestId?: string;
|
|
1284
|
+
/** Optional. Field mask is used to specify the fields to be overwritten in the Datastore resource by the update. The fields specified in the `update_mask` are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields will be overwritten. Only the following fields can be updated: `description`. */
|
|
1285
|
+
updateMask?: string;
|
|
1286
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1287
|
+
upload_protocol?: string;
|
|
1288
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1289
|
+
uploadType?: string;
|
|
1290
|
+
},
|
|
1291
|
+
body: Datastore,
|
|
1292
|
+
): Request<Operation>;
|
|
1293
|
+
}
|
|
970
1294
|
interface DnsBindPermissionResource {
|
|
971
1295
|
/** Grants the bind permission to the customer provided principal(user / service account) to bind their DNS zone with the intranet VPC associated with the project. DnsBindPermission is a global resource and location can only be global. */
|
|
972
1296
|
grant(request: {
|
|
@@ -1973,6 +2297,8 @@ declare namespace gapi.client {
|
|
|
1973
2297
|
prettyPrint?: boolean;
|
|
1974
2298
|
/** 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. */
|
|
1975
2299
|
quotaUser?: string;
|
|
2300
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
2301
|
+
returnPartialSuccess?: boolean;
|
|
1976
2302
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1977
2303
|
upload_protocol?: string;
|
|
1978
2304
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -2230,6 +2556,64 @@ declare namespace gapi.client {
|
|
|
2230
2556
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2231
2557
|
uploadType?: string;
|
|
2232
2558
|
}): Request<ListClustersResponse>;
|
|
2559
|
+
/** Mounts a `Datastore` on a cluster resource Datastores are zonal resources */
|
|
2560
|
+
mountDatastore(request: {
|
|
2561
|
+
/** V1 error format. */
|
|
2562
|
+
'$.xgafv'?: string;
|
|
2563
|
+
/** OAuth access token. */
|
|
2564
|
+
access_token?: string;
|
|
2565
|
+
/** Data format for response. */
|
|
2566
|
+
alt?: string;
|
|
2567
|
+
/** JSONP */
|
|
2568
|
+
callback?: string;
|
|
2569
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2570
|
+
fields?: string;
|
|
2571
|
+
/** 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. */
|
|
2572
|
+
key?: string;
|
|
2573
|
+
/** Required. The resource name of the cluster to mount the datastore. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: `projects/my-project/locations/us-central1-a/privateClouds/my-cloud/clusters/my-cluster` */
|
|
2574
|
+
name: string;
|
|
2575
|
+
/** OAuth 2.0 token for the current user. */
|
|
2576
|
+
oauth_token?: string;
|
|
2577
|
+
/** Returns response with indentations and line breaks. */
|
|
2578
|
+
prettyPrint?: boolean;
|
|
2579
|
+
/** 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. */
|
|
2580
|
+
quotaUser?: string;
|
|
2581
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2582
|
+
upload_protocol?: string;
|
|
2583
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2584
|
+
uploadType?: string;
|
|
2585
|
+
/** Request body */
|
|
2586
|
+
resource: MountDatastoreRequest;
|
|
2587
|
+
}): Request<Operation>;
|
|
2588
|
+
mountDatastore(
|
|
2589
|
+
request: {
|
|
2590
|
+
/** V1 error format. */
|
|
2591
|
+
'$.xgafv'?: string;
|
|
2592
|
+
/** OAuth access token. */
|
|
2593
|
+
access_token?: string;
|
|
2594
|
+
/** Data format for response. */
|
|
2595
|
+
alt?: string;
|
|
2596
|
+
/** JSONP */
|
|
2597
|
+
callback?: string;
|
|
2598
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2599
|
+
fields?: string;
|
|
2600
|
+
/** 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. */
|
|
2601
|
+
key?: string;
|
|
2602
|
+
/** Required. The resource name of the cluster to mount the datastore. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: `projects/my-project/locations/us-central1-a/privateClouds/my-cloud/clusters/my-cluster` */
|
|
2603
|
+
name: string;
|
|
2604
|
+
/** OAuth 2.0 token for the current user. */
|
|
2605
|
+
oauth_token?: string;
|
|
2606
|
+
/** Returns response with indentations and line breaks. */
|
|
2607
|
+
prettyPrint?: boolean;
|
|
2608
|
+
/** 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. */
|
|
2609
|
+
quotaUser?: string;
|
|
2610
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2611
|
+
upload_protocol?: string;
|
|
2612
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2613
|
+
uploadType?: string;
|
|
2614
|
+
},
|
|
2615
|
+
body: MountDatastoreRequest,
|
|
2616
|
+
): Request<Operation>;
|
|
2233
2617
|
/** Modifies a `Cluster` resource. Only fields specified in `updateMask` are applied. During operation processing, the resource is temporarily in the `ACTIVE` state before the operation fully completes. For that period of time, you can't update the resource. Use the operation status to determine when the processing fully completes. */
|
|
2234
2618
|
patch(request: {
|
|
2235
2619
|
/** V1 error format. */
|
|
@@ -2360,6 +2744,64 @@ declare namespace gapi.client {
|
|
|
2360
2744
|
},
|
|
2361
2745
|
body: TestIamPermissionsRequest,
|
|
2362
2746
|
): Request<TestIamPermissionsResponse>;
|
|
2747
|
+
/** Mounts a `Datastore` on a cluster resource Datastores are zonal resources */
|
|
2748
|
+
unmountDatastore(request: {
|
|
2749
|
+
/** V1 error format. */
|
|
2750
|
+
'$.xgafv'?: string;
|
|
2751
|
+
/** OAuth access token. */
|
|
2752
|
+
access_token?: string;
|
|
2753
|
+
/** Data format for response. */
|
|
2754
|
+
alt?: string;
|
|
2755
|
+
/** JSONP */
|
|
2756
|
+
callback?: string;
|
|
2757
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2758
|
+
fields?: string;
|
|
2759
|
+
/** 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. */
|
|
2760
|
+
key?: string;
|
|
2761
|
+
/** Required. The resource name of the cluster to unmount the datastore. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: `projects/my-project/locations/us-central1-a/privateClouds/my-cloud/clusters/my-cluster` */
|
|
2762
|
+
name: string;
|
|
2763
|
+
/** OAuth 2.0 token for the current user. */
|
|
2764
|
+
oauth_token?: string;
|
|
2765
|
+
/** Returns response with indentations and line breaks. */
|
|
2766
|
+
prettyPrint?: boolean;
|
|
2767
|
+
/** 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. */
|
|
2768
|
+
quotaUser?: string;
|
|
2769
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2770
|
+
upload_protocol?: string;
|
|
2771
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2772
|
+
uploadType?: string;
|
|
2773
|
+
/** Request body */
|
|
2774
|
+
resource: UnmountDatastoreRequest;
|
|
2775
|
+
}): Request<Operation>;
|
|
2776
|
+
unmountDatastore(
|
|
2777
|
+
request: {
|
|
2778
|
+
/** V1 error format. */
|
|
2779
|
+
'$.xgafv'?: string;
|
|
2780
|
+
/** OAuth access token. */
|
|
2781
|
+
access_token?: string;
|
|
2782
|
+
/** Data format for response. */
|
|
2783
|
+
alt?: string;
|
|
2784
|
+
/** JSONP */
|
|
2785
|
+
callback?: string;
|
|
2786
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2787
|
+
fields?: string;
|
|
2788
|
+
/** 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. */
|
|
2789
|
+
key?: string;
|
|
2790
|
+
/** Required. The resource name of the cluster to unmount the datastore. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: `projects/my-project/locations/us-central1-a/privateClouds/my-cloud/clusters/my-cluster` */
|
|
2791
|
+
name: string;
|
|
2792
|
+
/** OAuth 2.0 token for the current user. */
|
|
2793
|
+
oauth_token?: string;
|
|
2794
|
+
/** Returns response with indentations and line breaks. */
|
|
2795
|
+
prettyPrint?: boolean;
|
|
2796
|
+
/** 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. */
|
|
2797
|
+
quotaUser?: string;
|
|
2798
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2799
|
+
upload_protocol?: string;
|
|
2800
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2801
|
+
uploadType?: string;
|
|
2802
|
+
},
|
|
2803
|
+
body: UnmountDatastoreRequest,
|
|
2804
|
+
): Request<Operation>;
|
|
2363
2805
|
nodes: NodesResource;
|
|
2364
2806
|
}
|
|
2365
2807
|
interface ExternalAddressesResource {
|
|
@@ -4823,7 +5265,7 @@ declare namespace gapi.client {
|
|
|
4823
5265
|
alt?: string;
|
|
4824
5266
|
/** JSONP */
|
|
4825
5267
|
callback?: string;
|
|
4826
|
-
/** Optional.
|
|
5268
|
+
/** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented otherwise. This is primarily for internal usage. */
|
|
4827
5269
|
extraLocationTypes?: string | string[];
|
|
4828
5270
|
/** Selector specifying which fields to include in a partial response. */
|
|
4829
5271
|
fields?: string;
|
|
@@ -4849,6 +5291,7 @@ declare namespace gapi.client {
|
|
|
4849
5291
|
uploadType?: string;
|
|
4850
5292
|
}): Request<ListLocationsResponse>;
|
|
4851
5293
|
announcements: AnnouncementsResource;
|
|
5294
|
+
datastores: DatastoresResource;
|
|
4852
5295
|
dnsBindPermission: DnsBindPermissionResource;
|
|
4853
5296
|
networkPeerings: NetworkPeeringsResource;
|
|
4854
5297
|
networkPolicies: NetworkPoliciesResource;
|