@maxim_mazurok/gapi.client.metastore-v1 0.0.20230413 → 0.0.20230502
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 +1789 -749
- package/package.json +1 -1
- package/tests.ts +25 -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://metastore.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230502
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -22,53 +22,83 @@ declare namespace gapi.client {
|
|
|
22
22
|
function load(name: "metastore", version: "v1", callback: () => any): void;
|
|
23
23
|
|
|
24
24
|
namespace metastore {
|
|
25
|
+
interface AlterMetadataResourceLocationRequest {
|
|
26
|
+
/** Required. The new location URI for the metadata resource. */
|
|
27
|
+
locationUri?:
|
|
28
|
+
string;
|
|
29
|
+
/**
|
|
30
|
+
* Required. The relative metadata resource name in the following format.databases/{database_id} or databases/{database_id}/tables/{table_id} or
|
|
31
|
+
* databases/{database_id}/tables/{table_id}/partitions/{partition_id}
|
|
32
|
+
*/
|
|
33
|
+
resourceName?:
|
|
34
|
+
string;
|
|
35
|
+
}
|
|
36
|
+
// tslint:disable-next-line:no-empty-interface
|
|
37
|
+
interface AlterMetadataResourceLocationResponse {
|
|
38
|
+
}
|
|
25
39
|
interface AuditConfig {
|
|
26
40
|
/** The configuration for logging of each type of permission. */
|
|
27
|
-
auditLogConfigs?:
|
|
41
|
+
auditLogConfigs?:
|
|
42
|
+
AuditLogConfig[];
|
|
28
43
|
/** Specifies a service that will be enabled for audit logging. For example, storage.googleapis.com, cloudsql.googleapis.com. allServices is a special value that covers all services. */
|
|
29
|
-
service?:
|
|
44
|
+
service?:
|
|
45
|
+
string;
|
|
30
46
|
}
|
|
31
47
|
interface AuditLogConfig {
|
|
32
48
|
/** Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members. */
|
|
33
|
-
exemptedMembers?:
|
|
49
|
+
exemptedMembers?:
|
|
50
|
+
string[];
|
|
34
51
|
/** The log type that this config enables. */
|
|
35
|
-
logType?:
|
|
52
|
+
logType?:
|
|
53
|
+
string;
|
|
36
54
|
}
|
|
37
55
|
interface AuxiliaryVersionConfig {
|
|
38
56
|
/**
|
|
39
57
|
* A mapping of Hive metastore configuration key-value pairs to apply to the auxiliary Hive metastore (configured in hive-site.xml) in addition to the primary version's overrides. If
|
|
40
58
|
* keys are present in both the auxiliary version's overrides and the primary version's overrides, the value from the auxiliary version's overrides takes precedence.
|
|
41
59
|
*/
|
|
42
|
-
configOverrides?:
|
|
60
|
+
configOverrides?:
|
|
61
|
+
{ [P in string]: string };
|
|
43
62
|
/** Output only. The network configuration contains the endpoint URI(s) of the auxiliary Hive metastore service. */
|
|
44
|
-
networkConfig?:
|
|
63
|
+
networkConfig?:
|
|
64
|
+
NetworkConfig;
|
|
45
65
|
/** The Hive metastore version of the auxiliary service. It must be less than the primary Hive metastore service's version. */
|
|
46
|
-
version?:
|
|
66
|
+
version?:
|
|
67
|
+
string;
|
|
47
68
|
}
|
|
48
69
|
interface BackendMetastore {
|
|
49
70
|
/** The type of the backend metastore. */
|
|
50
|
-
metastoreType?:
|
|
71
|
+
metastoreType?:
|
|
72
|
+
string;
|
|
51
73
|
/**
|
|
52
74
|
* The relative resource name of the metastore that is being federated. The formats of the relative resource names for the currently supported metastores are listed below: BigQuery
|
|
53
75
|
* projects/{project_id} Dataproc Metastore projects/{project_id}/locations/{location}/services/{service_id}
|
|
54
76
|
*/
|
|
55
|
-
name?:
|
|
77
|
+
name?:
|
|
78
|
+
string;
|
|
56
79
|
}
|
|
57
80
|
interface Backup {
|
|
58
81
|
/** Output only. The time when the backup was started. */
|
|
59
|
-
createTime?:
|
|
82
|
+
createTime?:
|
|
83
|
+
string;
|
|
60
84
|
/** The description of the backup. */
|
|
61
|
-
description?:
|
|
85
|
+
description?:
|
|
86
|
+
string;
|
|
62
87
|
/** Output only. The time when the backup finished creating. */
|
|
63
|
-
endTime?:
|
|
88
|
+
endTime?:
|
|
89
|
+
string;
|
|
64
90
|
/** Immutable. The relative resource name of the backup, in the following form:projects/{project_number}/locations/{location_id}/services/{service_id}/backups/{backup_id} */
|
|
65
|
-
name?:
|
|
91
|
+
name?:
|
|
92
|
+
string;
|
|
66
93
|
/** Output only. Services that are restoring from the backup. */
|
|
67
|
-
restoringServices?:
|
|
94
|
+
restoringServices?:
|
|
95
|
+
string[];
|
|
68
96
|
/** Output only. The revision of the service at the time of backup. */
|
|
69
|
-
serviceRevision?:
|
|
97
|
+
serviceRevision?:
|
|
98
|
+
Service;
|
|
70
99
|
/** Output only. The current state of the backup. */
|
|
71
|
-
state?:
|
|
100
|
+
state?:
|
|
101
|
+
string;
|
|
72
102
|
}
|
|
73
103
|
interface Binding {
|
|
74
104
|
/**
|
|
@@ -76,7 +106,8 @@ declare namespace gapi.client {
|
|
|
76
106
|
* this binding does not apply to the current request. However, a different role binding might grant the same role to one or more of the principals in this binding.To learn which
|
|
77
107
|
* resources support conditions in their IAM policies, see the IAM documentation (https://cloud.google.com/iam/help/conditions/resource-policies).
|
|
78
108
|
*/
|
|
79
|
-
condition?:
|
|
109
|
+
condition?:
|
|
110
|
+
Expr;
|
|
80
111
|
/**
|
|
81
112
|
* Specifies the principals requesting access for a Google Cloud resource. members can have the following values: allUsers: A special identifier that represents anyone who is on the
|
|
82
113
|
* internet; with or without a Google account. allAuthenticatedUsers: A special identifier that represents anyone who is authenticated with a Google account or a service account. Does
|
|
@@ -93,32 +124,40 @@ declare namespace gapi.client {
|
|
|
93
124
|
* deleted. For example, admins@example.com?uid=123456789012345678901. If the group is recovered, this value reverts to group:{emailid} and the recovered group retains the role in the
|
|
94
125
|
* binding.
|
|
95
126
|
*/
|
|
96
|
-
members?:
|
|
127
|
+
members?:
|
|
128
|
+
string[];
|
|
97
129
|
/** Role that is assigned to the list of members, or principals. For example, roles/viewer, roles/editor, or roles/owner. */
|
|
98
|
-
role?:
|
|
130
|
+
role?:
|
|
131
|
+
string;
|
|
99
132
|
}
|
|
100
133
|
// tslint:disable-next-line:no-empty-interface
|
|
101
134
|
interface CancelOperationRequest {
|
|
102
135
|
}
|
|
103
136
|
interface Consumer {
|
|
104
137
|
/** Output only. The URI of the endpoint used to access the metastore service. */
|
|
105
|
-
endpointUri?:
|
|
138
|
+
endpointUri?:
|
|
139
|
+
string;
|
|
106
140
|
/**
|
|
107
141
|
* Immutable. The subnetwork of the customer project from which an IP address is reserved and used as the Dataproc Metastore service's endpoint. It is accessible to hosts in the subnet
|
|
108
142
|
* and to all hosts in a subnet in the same region and same network. There must be at least one IP address available in the subnet's primary range. The subnet is specified in the
|
|
109
143
|
* following form:projects/{project_number}/regions/{region_id}/subnetworks/{subnetwork_id}
|
|
110
144
|
*/
|
|
111
|
-
subnetwork?:
|
|
145
|
+
subnetwork?:
|
|
146
|
+
string;
|
|
112
147
|
}
|
|
113
148
|
interface DatabaseDump {
|
|
114
149
|
/** The type of the database. */
|
|
115
|
-
databaseType?:
|
|
150
|
+
databaseType?:
|
|
151
|
+
string;
|
|
116
152
|
/** A Cloud Storage object or folder URI that specifies the source from which to import metadata. It must begin with gs://. */
|
|
117
|
-
gcsUri?:
|
|
153
|
+
gcsUri?:
|
|
154
|
+
string;
|
|
118
155
|
/** The name of the source database. */
|
|
119
|
-
sourceDatabase?:
|
|
156
|
+
sourceDatabase?:
|
|
157
|
+
string;
|
|
120
158
|
/** Optional. The type of the database dump. If unspecified, defaults to MYSQL. */
|
|
121
|
-
type?:
|
|
159
|
+
type?:
|
|
160
|
+
string;
|
|
122
161
|
}
|
|
123
162
|
// tslint:disable-next-line:no-empty-interface
|
|
124
163
|
interface Empty {
|
|
@@ -128,30 +167,43 @@ declare namespace gapi.client {
|
|
|
128
167
|
* The fully qualified customer provided Cloud KMS key name to use for customer data encryption, in the following
|
|
129
168
|
* form:projects/{project_number}/locations/{location_id}/keyRings/{key_ring_id}/cryptoKeys/{crypto_key_id}.
|
|
130
169
|
*/
|
|
131
|
-
kmsKey?:
|
|
170
|
+
kmsKey?:
|
|
171
|
+
string;
|
|
172
|
+
}
|
|
173
|
+
interface ErrorDetails {
|
|
174
|
+
/** Additional structured details about this error.Keys define the failure items. Value describes the exception or details of the item. */
|
|
175
|
+
details?:
|
|
176
|
+
{ [P in string]: string };
|
|
132
177
|
}
|
|
133
178
|
interface ExportMetadataRequest {
|
|
134
179
|
/** Optional. The type of the database dump. If unspecified, defaults to MYSQL. */
|
|
135
|
-
databaseDumpType?:
|
|
180
|
+
databaseDumpType?:
|
|
181
|
+
string;
|
|
136
182
|
/** A Cloud Storage URI of a folder, in the format gs:///. A sub-folder containing exported files will be created below it. */
|
|
137
|
-
destinationGcsFolder?:
|
|
183
|
+
destinationGcsFolder?:
|
|
184
|
+
string;
|
|
138
185
|
/**
|
|
139
186
|
* Optional. A request ID. Specify a unique request ID to allow the server to ignore the request if it has completed. The server will ignore subsequent requests that provide a
|
|
140
187
|
* duplicate request ID for at least 60 minutes after the first request.For example, if an initial request times out, followed by another request with the same request ID, the server
|
|
141
188
|
* ignores the second request to prevent the creation of duplicate commitments.The request ID must be a valid UUID (https://en.wikipedia.org/wiki/Universally_unique_identifier#Format).
|
|
142
189
|
* A zero UUID (00000000-0000-0000-0000-000000000000) is not supported.
|
|
143
190
|
*/
|
|
144
|
-
requestId?:
|
|
191
|
+
requestId?:
|
|
192
|
+
string;
|
|
145
193
|
}
|
|
146
194
|
interface Expr {
|
|
147
195
|
/** Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI. */
|
|
148
|
-
description?:
|
|
196
|
+
description?:
|
|
197
|
+
string;
|
|
149
198
|
/** Textual representation of an expression in Common Expression Language syntax. */
|
|
150
|
-
expression?:
|
|
199
|
+
expression?:
|
|
200
|
+
string;
|
|
151
201
|
/** Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file. */
|
|
152
|
-
location?:
|
|
202
|
+
location?:
|
|
203
|
+
string;
|
|
153
204
|
/** Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression. */
|
|
154
|
-
title?:
|
|
205
|
+
title?:
|
|
206
|
+
string;
|
|
155
207
|
}
|
|
156
208
|
interface Federation {
|
|
157
209
|
/**
|
|
@@ -159,25 +211,35 @@ declare namespace gapi.client {
|
|
|
159
211
|
* should be evaluated to resolve database names at query time and should be greater than or equal to zero. A BackendMetastore with a lower number will be evaluated before a
|
|
160
212
|
* BackendMetastore with a higher number.
|
|
161
213
|
*/
|
|
162
|
-
backendMetastores?:
|
|
214
|
+
backendMetastores?:
|
|
215
|
+
{ [P in string]: BackendMetastore };
|
|
163
216
|
/** Output only. The time when the metastore federation was created. */
|
|
164
|
-
createTime?:
|
|
217
|
+
createTime?:
|
|
218
|
+
string;
|
|
165
219
|
/** Output only. The federation endpoint. */
|
|
166
|
-
endpointUri?:
|
|
220
|
+
endpointUri?:
|
|
221
|
+
string;
|
|
167
222
|
/** User-defined labels for the metastore federation. */
|
|
168
|
-
labels?:
|
|
223
|
+
labels?:
|
|
224
|
+
{ [P in string]: string };
|
|
169
225
|
/** Immutable. The relative resource name of the federation, of the form: projects/{project_number}/locations/{location_id}/federations/{federation_id}`. */
|
|
170
|
-
name?:
|
|
226
|
+
name?:
|
|
227
|
+
string;
|
|
171
228
|
/** Output only. The current state of the federation. */
|
|
172
|
-
state?:
|
|
229
|
+
state?:
|
|
230
|
+
string;
|
|
173
231
|
/** Output only. Additional information about the current state of the metastore federation, if available. */
|
|
174
|
-
stateMessage?:
|
|
232
|
+
stateMessage?:
|
|
233
|
+
string;
|
|
175
234
|
/** Output only. The globally unique resource identifier of the metastore federation. */
|
|
176
|
-
uid?:
|
|
235
|
+
uid?:
|
|
236
|
+
string;
|
|
177
237
|
/** Output only. The time when the metastore federation was last updated. */
|
|
178
|
-
updateTime?:
|
|
238
|
+
updateTime?:
|
|
239
|
+
string;
|
|
179
240
|
/** Immutable. The Apache Hive metastore version of the federation. All backend metastore versions must be compatible with the federation version. */
|
|
180
|
-
version?:
|
|
241
|
+
version?:
|
|
242
|
+
string;
|
|
181
243
|
}
|
|
182
244
|
interface HiveMetastoreConfig {
|
|
183
245
|
/**
|
|
@@ -185,198 +247,274 @@ declare namespace gapi.client {
|
|
|
185
247
|
* auxiliary versions must be less than the service's primary version. The key is the auxiliary service name and it must match the regular expression a-z?. This means that the first
|
|
186
248
|
* character must be a lowercase letter, and all the following characters must be hyphens, lowercase letters, or digits, except the last character, which cannot be a hyphen.
|
|
187
249
|
*/
|
|
188
|
-
auxiliaryVersions?:
|
|
250
|
+
auxiliaryVersions?:
|
|
251
|
+
{ [P in string]: AuxiliaryVersionConfig };
|
|
189
252
|
/**
|
|
190
253
|
* A mapping of Hive metastore configuration key-value pairs to apply to the Hive metastore (configured in hive-site.xml). The mappings override system defaults (some keys cannot be
|
|
191
254
|
* overridden). These overrides are also applied to auxiliary versions and can be further customized in the auxiliary version's AuxiliaryVersionConfig.
|
|
192
255
|
*/
|
|
193
|
-
configOverrides?:
|
|
256
|
+
configOverrides?:
|
|
257
|
+
{ [P in string]: string };
|
|
194
258
|
/**
|
|
195
259
|
* Information used to configure the Hive metastore service as a service principal in a Kerberos realm. To disable Kerberos, use the UpdateService method and specify this field's path
|
|
196
260
|
* (hive_metastore_config.kerberos_config) in the request's update_mask while omitting this field from the request's service.
|
|
197
261
|
*/
|
|
198
|
-
kerberosConfig?:
|
|
262
|
+
kerberosConfig?:
|
|
263
|
+
KerberosConfig;
|
|
199
264
|
/** Immutable. The Hive metastore schema version. */
|
|
200
|
-
version?:
|
|
265
|
+
version?:
|
|
266
|
+
string;
|
|
201
267
|
}
|
|
202
268
|
interface HiveMetastoreVersion {
|
|
203
269
|
/** Whether version will be chosen by the server if a metastore service is created with a HiveMetastoreConfig that omits the version. */
|
|
204
|
-
isDefault?:
|
|
270
|
+
isDefault?:
|
|
271
|
+
boolean;
|
|
205
272
|
/** The semantic version of the Hive Metastore software. */
|
|
206
|
-
version?:
|
|
273
|
+
version?:
|
|
274
|
+
string;
|
|
207
275
|
}
|
|
208
276
|
interface KerberosConfig {
|
|
209
277
|
/** A Kerberos keytab file that can be used to authenticate a service principal with a Kerberos Key Distribution Center (KDC). */
|
|
210
|
-
keytab?:
|
|
278
|
+
keytab?:
|
|
279
|
+
Secret;
|
|
211
280
|
/**
|
|
212
281
|
* A Cloud Storage URI that specifies the path to a krb5.conf file. It is of the form gs://{bucket_name}/path/to/krb5.conf, although the file does not need to be named krb5.conf
|
|
213
282
|
* explicitly.
|
|
214
283
|
*/
|
|
215
|
-
krb5ConfigGcsUri?:
|
|
284
|
+
krb5ConfigGcsUri?:
|
|
285
|
+
string;
|
|
216
286
|
/** A Kerberos principal that exists in the both the keytab the KDC to authenticate as. A typical principal is of the form primary/instance@REALM, but there is no exact format. */
|
|
217
|
-
principal?:
|
|
287
|
+
principal?:
|
|
288
|
+
string;
|
|
218
289
|
}
|
|
219
290
|
interface ListBackupsResponse {
|
|
220
291
|
/** The backups of the specified service. */
|
|
221
|
-
backups?:
|
|
292
|
+
backups?:
|
|
293
|
+
Backup[];
|
|
222
294
|
/** A token that can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
223
|
-
nextPageToken?:
|
|
295
|
+
nextPageToken?:
|
|
296
|
+
string;
|
|
224
297
|
/** Locations that could not be reached. */
|
|
225
|
-
unreachable?:
|
|
298
|
+
unreachable?:
|
|
299
|
+
string[];
|
|
226
300
|
}
|
|
227
301
|
interface ListFederationsResponse {
|
|
228
302
|
/** The services in the specified location. */
|
|
229
|
-
federations?:
|
|
303
|
+
federations?:
|
|
304
|
+
Federation[];
|
|
230
305
|
/** A token that can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
231
|
-
nextPageToken?:
|
|
306
|
+
nextPageToken?:
|
|
307
|
+
string;
|
|
232
308
|
/** Locations that could not be reached. */
|
|
233
|
-
unreachable?:
|
|
309
|
+
unreachable?:
|
|
310
|
+
string[];
|
|
234
311
|
}
|
|
235
312
|
interface ListLocationsResponse {
|
|
236
313
|
/** A list of locations that matches the specified filter in the request. */
|
|
237
|
-
locations?:
|
|
314
|
+
locations?:
|
|
315
|
+
Location[];
|
|
238
316
|
/** The standard List next-page token. */
|
|
239
|
-
nextPageToken?:
|
|
317
|
+
nextPageToken?:
|
|
318
|
+
string;
|
|
240
319
|
}
|
|
241
320
|
interface ListMetadataImportsResponse {
|
|
242
321
|
/** The imports in the specified service. */
|
|
243
|
-
metadataImports?:
|
|
322
|
+
metadataImports?:
|
|
323
|
+
MetadataImport[];
|
|
244
324
|
/** A token that can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
245
|
-
nextPageToken?:
|
|
325
|
+
nextPageToken?:
|
|
326
|
+
string;
|
|
246
327
|
/** Locations that could not be reached. */
|
|
247
|
-
unreachable?:
|
|
328
|
+
unreachable?:
|
|
329
|
+
string[];
|
|
248
330
|
}
|
|
249
331
|
interface ListOperationsResponse {
|
|
250
332
|
/** The standard List next-page token. */
|
|
251
|
-
nextPageToken?:
|
|
333
|
+
nextPageToken?:
|
|
334
|
+
string;
|
|
252
335
|
/** A list of operations that matches the specified filter in the request. */
|
|
253
|
-
operations?:
|
|
336
|
+
operations?:
|
|
337
|
+
Operation[];
|
|
254
338
|
}
|
|
255
339
|
interface ListServicesResponse {
|
|
256
340
|
/** A token that can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
257
|
-
nextPageToken?:
|
|
341
|
+
nextPageToken?:
|
|
342
|
+
string;
|
|
258
343
|
/** The services in the specified location. */
|
|
259
|
-
services?:
|
|
344
|
+
services?:
|
|
345
|
+
Service[];
|
|
260
346
|
/** Locations that could not be reached. */
|
|
261
|
-
unreachable?:
|
|
347
|
+
unreachable?:
|
|
348
|
+
string[];
|
|
262
349
|
}
|
|
263
350
|
interface Location {
|
|
264
351
|
/** The friendly name for this location, typically a nearby city name. For example, "Tokyo". */
|
|
265
|
-
displayName?:
|
|
352
|
+
displayName?:
|
|
353
|
+
string;
|
|
266
354
|
/** Cross-service attributes for the location. For example {"cloud.googleapis.com/region": "us-east1"} */
|
|
267
|
-
labels?:
|
|
355
|
+
labels?:
|
|
356
|
+
{ [P in string]: string };
|
|
268
357
|
/** The canonical id for this location. For example: "us-east1". */
|
|
269
|
-
locationId?:
|
|
358
|
+
locationId?:
|
|
359
|
+
string;
|
|
270
360
|
/** Service-specific metadata. For example the available capacity at the given location. */
|
|
271
|
-
metadata?:
|
|
361
|
+
metadata?:
|
|
362
|
+
{ [P in string]: any };
|
|
272
363
|
/** Resource name for the location, which may vary between implementations. For example: "projects/example-project/locations/us-east1" */
|
|
273
|
-
name?:
|
|
364
|
+
name?:
|
|
365
|
+
string;
|
|
274
366
|
}
|
|
275
367
|
interface LocationMetadata {
|
|
276
368
|
/**
|
|
277
369
|
* The versions of Hive Metastore that can be used when creating a new metastore service in this location. The server guarantees that exactly one HiveMetastoreVersion in the list will
|
|
278
370
|
* set is_default.
|
|
279
371
|
*/
|
|
280
|
-
supportedHiveMetastoreVersions?:
|
|
372
|
+
supportedHiveMetastoreVersions?:
|
|
373
|
+
HiveMetastoreVersion[];
|
|
281
374
|
}
|
|
282
375
|
interface MaintenanceWindow {
|
|
283
376
|
/** The day of week, when the window starts. */
|
|
284
|
-
dayOfWeek?:
|
|
377
|
+
dayOfWeek?:
|
|
378
|
+
string;
|
|
285
379
|
/** The hour of day (0-23) when the window starts. */
|
|
286
|
-
hourOfDay?:
|
|
380
|
+
hourOfDay?:
|
|
381
|
+
number;
|
|
287
382
|
}
|
|
288
383
|
interface MetadataExport {
|
|
289
384
|
/** Output only. The type of the database dump. */
|
|
290
|
-
databaseDumpType?:
|
|
385
|
+
databaseDumpType?:
|
|
386
|
+
string;
|
|
291
387
|
/** Output only. A Cloud Storage URI of a folder that metadata are exported to, in the form of gs:////, where is automatically generated. */
|
|
292
|
-
destinationGcsUri?:
|
|
388
|
+
destinationGcsUri?:
|
|
389
|
+
string;
|
|
293
390
|
/** Output only. The time when the export ended. */
|
|
294
|
-
endTime?:
|
|
391
|
+
endTime?:
|
|
392
|
+
string;
|
|
295
393
|
/** Output only. The time when the export started. */
|
|
296
|
-
startTime?:
|
|
394
|
+
startTime?:
|
|
395
|
+
string;
|
|
297
396
|
/** Output only. The current state of the export. */
|
|
298
|
-
state?:
|
|
397
|
+
state?:
|
|
398
|
+
string;
|
|
299
399
|
}
|
|
300
400
|
interface MetadataImport {
|
|
301
401
|
/** Output only. The time when the metadata import was started. */
|
|
302
|
-
createTime?:
|
|
402
|
+
createTime?:
|
|
403
|
+
string;
|
|
303
404
|
/** Immutable. A database dump from a pre-existing metastore's database. */
|
|
304
|
-
databaseDump?:
|
|
405
|
+
databaseDump?:
|
|
406
|
+
DatabaseDump;
|
|
305
407
|
/** The description of the metadata import. */
|
|
306
|
-
description?:
|
|
408
|
+
description?:
|
|
409
|
+
string;
|
|
307
410
|
/** Output only. The time when the metadata import finished. */
|
|
308
|
-
endTime?:
|
|
411
|
+
endTime?:
|
|
412
|
+
string;
|
|
309
413
|
/**
|
|
310
414
|
* Immutable. The relative resource name of the metadata import, of the
|
|
311
415
|
* form:projects/{project_number}/locations/{location_id}/services/{service_id}/metadataImports/{metadata_import_id}.
|
|
312
416
|
*/
|
|
313
|
-
name?:
|
|
417
|
+
name?:
|
|
418
|
+
string;
|
|
314
419
|
/** Output only. The current state of the metadata import. */
|
|
315
|
-
state?:
|
|
420
|
+
state?:
|
|
421
|
+
string;
|
|
316
422
|
/** Output only. The time when the metadata import was last updated. */
|
|
317
|
-
updateTime?:
|
|
423
|
+
updateTime?:
|
|
424
|
+
string;
|
|
318
425
|
}
|
|
319
426
|
interface MetadataManagementActivity {
|
|
320
427
|
/** Output only. The latest metadata exports of the metastore service. */
|
|
321
|
-
metadataExports?:
|
|
428
|
+
metadataExports?:
|
|
429
|
+
MetadataExport[];
|
|
322
430
|
/** Output only. The latest restores of the metastore service. */
|
|
323
|
-
restores?:
|
|
431
|
+
restores?:
|
|
432
|
+
Restore[];
|
|
433
|
+
}
|
|
434
|
+
interface MoveTableToDatabaseRequest {
|
|
435
|
+
/** Required. The name of the database where the table resides. */
|
|
436
|
+
dbName?:
|
|
437
|
+
string;
|
|
438
|
+
/** Required. The name of the database where the table should be moved. */
|
|
439
|
+
destinationDbName?:
|
|
440
|
+
string;
|
|
441
|
+
/** Required. The name of the table to be moved. */
|
|
442
|
+
tableName?:
|
|
443
|
+
string;
|
|
444
|
+
}
|
|
445
|
+
// tslint:disable-next-line:no-empty-interface
|
|
446
|
+
interface MoveTableToDatabaseResponse {
|
|
324
447
|
}
|
|
325
448
|
interface NetworkConfig {
|
|
326
449
|
/** Immutable. The consumer-side network configuration for the Dataproc Metastore instance. */
|
|
327
|
-
consumers?:
|
|
450
|
+
consumers?:
|
|
451
|
+
Consumer[];
|
|
328
452
|
}
|
|
329
453
|
interface Operation {
|
|
330
454
|
/** If the value is false, it means the operation is still in progress. If true, the operation is completed, and either error or response is available. */
|
|
331
|
-
done?:
|
|
455
|
+
done?:
|
|
456
|
+
boolean;
|
|
332
457
|
/** The error result of the operation in case of failure or cancellation. */
|
|
333
|
-
error?:
|
|
458
|
+
error?:
|
|
459
|
+
Status;
|
|
334
460
|
/**
|
|
335
461
|
* Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such
|
|
336
462
|
* metadata. Any method that returns a long-running operation should document the metadata type, if any.
|
|
337
463
|
*/
|
|
338
|
-
metadata?:
|
|
464
|
+
metadata?:
|
|
465
|
+
{ [P in string]: any };
|
|
339
466
|
/**
|
|
340
467
|
* The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the name should be a resource name ending
|
|
341
468
|
* with operations/{unique_id}.
|
|
342
469
|
*/
|
|
343
|
-
name?:
|
|
470
|
+
name?:
|
|
471
|
+
string;
|
|
344
472
|
/**
|
|
345
473
|
* The normal response of the operation in case of success. If the original method returns no data on success, such as Delete, the response is google.protobuf.Empty. If the original
|
|
346
474
|
* method is standard Get/Create/Update, the response should be the resource. For other methods, the response should have the type XxxResponse, where Xxx is the original method name.
|
|
347
475
|
* For example, if the original method name is TakeSnapshot(), the inferred response type is TakeSnapshotResponse.
|
|
348
476
|
*/
|
|
349
|
-
response?:
|
|
477
|
+
response?:
|
|
478
|
+
{ [P in string]: any };
|
|
350
479
|
}
|
|
351
480
|
interface OperationMetadata {
|
|
352
481
|
/** Output only. API version used to start the operation. */
|
|
353
|
-
apiVersion?:
|
|
482
|
+
apiVersion?:
|
|
483
|
+
string;
|
|
354
484
|
/** Output only. The time the operation was created. */
|
|
355
|
-
createTime?:
|
|
485
|
+
createTime?:
|
|
486
|
+
string;
|
|
356
487
|
/** Output only. The time the operation finished running. */
|
|
357
|
-
endTime?:
|
|
488
|
+
endTime?:
|
|
489
|
+
string;
|
|
358
490
|
/**
|
|
359
491
|
* Output only. Identifies whether the caller has requested cancellation of the operation. Operations that have successfully been cancelled have Operation.error value with a
|
|
360
492
|
* google.rpc.Status.code of 1, corresponding to Code.CANCELLED.
|
|
361
493
|
*/
|
|
362
|
-
requestedCancellation?:
|
|
494
|
+
requestedCancellation?:
|
|
495
|
+
boolean;
|
|
363
496
|
/** Output only. Human-readable status of the operation, if any. */
|
|
364
|
-
statusMessage?:
|
|
497
|
+
statusMessage?:
|
|
498
|
+
string;
|
|
365
499
|
/** Output only. Server-defined resource path for the target of the operation. */
|
|
366
|
-
target?:
|
|
500
|
+
target?:
|
|
501
|
+
string;
|
|
367
502
|
/** Output only. Name of the verb executed by the operation. */
|
|
368
|
-
verb?:
|
|
503
|
+
verb?:
|
|
504
|
+
string;
|
|
369
505
|
}
|
|
370
506
|
interface Policy {
|
|
371
507
|
/** Specifies cloud audit logging configuration for this policy. */
|
|
372
|
-
auditConfigs?:
|
|
508
|
+
auditConfigs?:
|
|
509
|
+
AuditConfig[];
|
|
373
510
|
/**
|
|
374
511
|
* Associates a list of members, or principals, with a role. Optionally, may specify a condition that determines how and when the bindings are applied. Each of the bindings must
|
|
375
512
|
* contain at least one principal.The bindings in a Policy can refer to up to 1,500 principals; up to 250 of these principals can be Google groups. Each occurrence of a principal
|
|
376
513
|
* counts towards these limits. For example, if the bindings grant 50 different roles to user:alice@example.com, and not to any other principal, then you can add another 1,450
|
|
377
514
|
* principals to the bindings in the Policy.
|
|
378
515
|
*/
|
|
379
|
-
bindings?:
|
|
516
|
+
bindings?:
|
|
517
|
+
Binding[];
|
|
380
518
|
/**
|
|
381
519
|
* etag is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. It is strongly suggested that systems make use
|
|
382
520
|
* of the etag in the read-modify-write cycle to perform policy updates in order to avoid race conditions: An etag is returned in the response to getIamPolicy, and systems are expected
|
|
@@ -384,7 +522,8 @@ declare namespace gapi.client {
|
|
|
384
522
|
* the etag field whenever you call setIamPolicy. If you omit this field, then IAM allows you to overwrite a version 3 policy with a version 1 policy, and all of the conditions in the
|
|
385
523
|
* version 3 policy are lost.
|
|
386
524
|
*/
|
|
387
|
-
etag?:
|
|
525
|
+
etag?:
|
|
526
|
+
string;
|
|
388
527
|
/**
|
|
389
528
|
* Specifies the format of the policy.Valid values are 0, 1, and 3. Requests that specify an invalid value are rejected.Any operation that affects conditional role bindings must
|
|
390
529
|
* specify version 3. This requirement applies to the following operations: Getting a policy that includes a conditional role binding Adding a conditional role binding to a policy
|
|
@@ -393,300 +532,416 @@ declare namespace gapi.client {
|
|
|
393
532
|
* conditions in the version 3 policy are lost.If a policy does not include any conditions, operations on that policy may specify any valid version or leave the field unset.To learn
|
|
394
533
|
* which resources support conditions in their IAM policies, see the IAM documentation (https://cloud.google.com/iam/help/conditions/resource-policies).
|
|
395
534
|
*/
|
|
396
|
-
version?:
|
|
535
|
+
version?:
|
|
536
|
+
number;
|
|
537
|
+
}
|
|
538
|
+
interface QueryMetadataRequest {
|
|
539
|
+
/** Required. A read-only SQL query to execute against the metadata database. The query cannot change or mutate the data. */
|
|
540
|
+
query?:
|
|
541
|
+
string;
|
|
542
|
+
}
|
|
543
|
+
interface QueryMetadataResponse {
|
|
544
|
+
/**
|
|
545
|
+
* The manifest URI is link to a JSON instance in Cloud Storage. This instance manifests immediately along with QueryMetadataResponse. The content of the URI is not retriable until the
|
|
546
|
+
* long-running operation query against the metadata finishes.
|
|
547
|
+
*/
|
|
548
|
+
resultManifestUri?:
|
|
549
|
+
string;
|
|
397
550
|
}
|
|
398
551
|
interface Restore {
|
|
399
552
|
/**
|
|
400
553
|
* Output only. The relative resource name of the metastore service backup to restore from, in the following
|
|
401
554
|
* form:projects/{project_id}/locations/{location_id}/services/{service_id}/backups/{backup_id}.
|
|
402
555
|
*/
|
|
403
|
-
backup?:
|
|
556
|
+
backup?:
|
|
557
|
+
string;
|
|
404
558
|
/** Output only. The restore details containing the revision of the service to be restored to, in format of JSON. */
|
|
405
|
-
details?:
|
|
559
|
+
details?:
|
|
560
|
+
string;
|
|
406
561
|
/** Output only. The time when the restore ended. */
|
|
407
|
-
endTime?:
|
|
562
|
+
endTime?:
|
|
563
|
+
string;
|
|
408
564
|
/** Output only. The time when the restore started. */
|
|
409
|
-
startTime?:
|
|
565
|
+
startTime?:
|
|
566
|
+
string;
|
|
410
567
|
/** Output only. The current state of the restore. */
|
|
411
|
-
state?:
|
|
568
|
+
state?:
|
|
569
|
+
string;
|
|
412
570
|
/** Output only. The type of restore. */
|
|
413
|
-
type?:
|
|
571
|
+
type?:
|
|
572
|
+
string;
|
|
414
573
|
}
|
|
415
574
|
interface RestoreServiceRequest {
|
|
416
575
|
/**
|
|
417
576
|
* Required. The relative resource name of the metastore service backup to restore from, in the following
|
|
418
577
|
* form:projects/{project_id}/locations/{location_id}/services/{service_id}/backups/{backup_id}.
|
|
419
578
|
*/
|
|
420
|
-
backup?:
|
|
579
|
+
backup?:
|
|
580
|
+
string;
|
|
421
581
|
/**
|
|
422
582
|
* Optional. A request ID. Specify a unique request ID to allow the server to ignore the request if it has completed. The server will ignore subsequent requests that provide a
|
|
423
583
|
* duplicate request ID for at least 60 minutes after the first request.For example, if an initial request times out, followed by another request with the same request ID, the server
|
|
424
584
|
* ignores the second request to prevent the creation of duplicate commitments.The request ID must be a valid UUID (https://en.wikipedia.org/wiki/Universally_unique_identifier#Format).
|
|
425
585
|
* A zero UUID (00000000-0000-0000-0000-000000000000) is not supported.
|
|
426
586
|
*/
|
|
427
|
-
requestId?:
|
|
587
|
+
requestId?:
|
|
588
|
+
string;
|
|
428
589
|
/** Optional. The type of restore. If unspecified, defaults to METADATA_ONLY. */
|
|
429
|
-
restoreType?:
|
|
590
|
+
restoreType?:
|
|
591
|
+
string;
|
|
430
592
|
}
|
|
431
593
|
interface ScalingConfig {
|
|
432
594
|
/** An enum of readable instance sizes, with each instance size mapping to a float value (e.g. InstanceSize.EXTRA_SMALL = scaling_factor(0.1)) */
|
|
433
|
-
instanceSize?:
|
|
595
|
+
instanceSize?:
|
|
596
|
+
string;
|
|
434
597
|
/** Scaling factor, increments of 0.1 for values less than 1.0, and increments of 1.0 for values greater than 1.0. */
|
|
435
|
-
scalingFactor?:
|
|
598
|
+
scalingFactor?:
|
|
599
|
+
number;
|
|
436
600
|
}
|
|
437
601
|
interface Secret {
|
|
438
602
|
/** The relative resource name of a Secret Manager secret version, in the following form:projects/{project_number}/secrets/{secret_id}/versions/{version_id}. */
|
|
439
|
-
cloudSecret?:
|
|
603
|
+
cloudSecret?:
|
|
604
|
+
string;
|
|
440
605
|
}
|
|
441
606
|
interface Service {
|
|
442
607
|
/** Output only. A Cloud Storage URI (starting with gs://) that specifies where artifacts related to the metastore service are stored. */
|
|
443
|
-
artifactGcsUri?:
|
|
608
|
+
artifactGcsUri?:
|
|
609
|
+
string;
|
|
444
610
|
/** Output only. The time when the metastore service was created. */
|
|
445
|
-
createTime?:
|
|
611
|
+
createTime?:
|
|
612
|
+
string;
|
|
446
613
|
/** Immutable. The database type that the Metastore service stores its data. */
|
|
447
|
-
databaseType?:
|
|
614
|
+
databaseType?:
|
|
615
|
+
string;
|
|
448
616
|
/** Immutable. Information used to configure the Dataproc Metastore service to encrypt customer data at rest. Cannot be updated. */
|
|
449
|
-
encryptionConfig?:
|
|
617
|
+
encryptionConfig?:
|
|
618
|
+
EncryptionConfig;
|
|
450
619
|
/** Output only. The URI of the endpoint used to access the metastore service. */
|
|
451
|
-
endpointUri?:
|
|
620
|
+
endpointUri?:
|
|
621
|
+
string;
|
|
452
622
|
/** Configuration information specific to running Hive metastore software as the metastore service. */
|
|
453
|
-
hiveMetastoreConfig?:
|
|
623
|
+
hiveMetastoreConfig?:
|
|
624
|
+
HiveMetastoreConfig;
|
|
454
625
|
/** User-defined labels for the metastore service. */
|
|
455
|
-
labels?:
|
|
626
|
+
labels?:
|
|
627
|
+
{ [P in string]: string };
|
|
456
628
|
/**
|
|
457
629
|
* The one hour maintenance window of the metastore service. This specifies when the service can be restarted for maintenance purposes in UTC time. Maintenance window is not needed for
|
|
458
630
|
* services with the SPANNER database type.
|
|
459
631
|
*/
|
|
460
|
-
maintenanceWindow?:
|
|
632
|
+
maintenanceWindow?:
|
|
633
|
+
MaintenanceWindow;
|
|
461
634
|
/** Output only. The metadata management activities of the metastore service. */
|
|
462
|
-
metadataManagementActivity?:
|
|
635
|
+
metadataManagementActivity?:
|
|
636
|
+
MetadataManagementActivity;
|
|
463
637
|
/** Immutable. The relative resource name of the metastore service, in the following format:projects/{project_number}/locations/{location_id}/services/{service_id}. */
|
|
464
|
-
name?:
|
|
638
|
+
name?:
|
|
639
|
+
string;
|
|
465
640
|
/**
|
|
466
641
|
* Immutable. The relative resource name of the VPC network on which the instance can be accessed. It is specified in the following
|
|
467
642
|
* form:projects/{project_number}/global/networks/{network_id}.
|
|
468
643
|
*/
|
|
469
|
-
network?:
|
|
644
|
+
network?:
|
|
645
|
+
string;
|
|
470
646
|
/** The configuration specifying the network settings for the Dataproc Metastore service. */
|
|
471
|
-
networkConfig?:
|
|
647
|
+
networkConfig?:
|
|
648
|
+
NetworkConfig;
|
|
472
649
|
/** The TCP port at which the metastore service is reached. Default: 9083. */
|
|
473
|
-
port?:
|
|
650
|
+
port?:
|
|
651
|
+
number;
|
|
474
652
|
/** Immutable. The release channel of the service. If unspecified, defaults to STABLE. */
|
|
475
|
-
releaseChannel?:
|
|
653
|
+
releaseChannel?:
|
|
654
|
+
string;
|
|
476
655
|
/** Scaling configuration of the metastore service. */
|
|
477
|
-
scalingConfig?:
|
|
656
|
+
scalingConfig?:
|
|
657
|
+
ScalingConfig;
|
|
478
658
|
/** Output only. The current state of the metastore service. */
|
|
479
|
-
state?:
|
|
659
|
+
state?:
|
|
660
|
+
string;
|
|
480
661
|
/** Output only. Additional information about the current state of the metastore service, if available. */
|
|
481
|
-
stateMessage?:
|
|
662
|
+
stateMessage?:
|
|
663
|
+
string;
|
|
482
664
|
/** The configuration specifying telemetry settings for the Dataproc Metastore service. If unspecified defaults to JSON. */
|
|
483
|
-
telemetryConfig?:
|
|
665
|
+
telemetryConfig?:
|
|
666
|
+
TelemetryConfig;
|
|
484
667
|
/** The tier of the service. */
|
|
485
|
-
tier?:
|
|
668
|
+
tier?:
|
|
669
|
+
string;
|
|
486
670
|
/** Output only. The globally unique resource identifier of the metastore service. */
|
|
487
|
-
uid?:
|
|
671
|
+
uid?:
|
|
672
|
+
string;
|
|
488
673
|
/** Output only. The time when the metastore service was last updated. */
|
|
489
|
-
updateTime?:
|
|
674
|
+
updateTime?:
|
|
675
|
+
string;
|
|
490
676
|
}
|
|
491
677
|
interface SetIamPolicyRequest {
|
|
492
678
|
/**
|
|
493
679
|
* REQUIRED: The complete policy to be applied to the resource. The size of the policy is limited to a few 10s of KB. An empty policy is a valid policy but certain Google Cloud
|
|
494
680
|
* services (such as Projects) might reject them.
|
|
495
681
|
*/
|
|
496
|
-
policy?:
|
|
682
|
+
policy?:
|
|
683
|
+
Policy;
|
|
497
684
|
/**
|
|
498
685
|
* OPTIONAL: A FieldMask specifying which fields of the policy to modify. Only the fields in the mask will be modified. If no mask is provided, the following default mask is
|
|
499
686
|
* used:paths: "bindings, etag"
|
|
500
687
|
*/
|
|
501
|
-
updateMask?:
|
|
688
|
+
updateMask?:
|
|
689
|
+
string;
|
|
502
690
|
}
|
|
503
691
|
interface Status {
|
|
504
692
|
/** The status code, which should be an enum value of google.rpc.Code. */
|
|
505
|
-
code?:
|
|
693
|
+
code?:
|
|
694
|
+
number;
|
|
506
695
|
/** A list of messages that carry the error details. There is a common set of message types for APIs to use. */
|
|
507
|
-
details?:
|
|
696
|
+
details?:
|
|
697
|
+
Array<{ [P in string]: any }>;
|
|
508
698
|
/**
|
|
509
699
|
* A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the
|
|
510
700
|
* client.
|
|
511
701
|
*/
|
|
512
|
-
message?:
|
|
702
|
+
message?:
|
|
703
|
+
string;
|
|
513
704
|
}
|
|
514
705
|
interface TelemetryConfig {
|
|
515
706
|
/** The output format of the Dataproc Metastore service's logs. */
|
|
516
|
-
logFormat?:
|
|
707
|
+
logFormat?:
|
|
708
|
+
string;
|
|
517
709
|
}
|
|
518
710
|
interface TestIamPermissionsRequest {
|
|
519
711
|
/**
|
|
520
712
|
* The set of permissions to check for the resource. Permissions with wildcards (such as * or storage.*) are not allowed. For more information see IAM Overview
|
|
521
713
|
* (https://cloud.google.com/iam/docs/overview#permissions).
|
|
522
714
|
*/
|
|
523
|
-
permissions?:
|
|
715
|
+
permissions?:
|
|
716
|
+
string[];
|
|
524
717
|
}
|
|
525
718
|
interface TestIamPermissionsResponse {
|
|
526
719
|
/** A subset of TestPermissionsRequest.permissions that the caller is allowed. */
|
|
527
|
-
permissions?:
|
|
720
|
+
permissions?:
|
|
721
|
+
string[];
|
|
528
722
|
}
|
|
529
723
|
interface FederationsResource {
|
|
530
724
|
/** Creates a metastore federation in a project and location. */
|
|
531
725
|
create(request: {
|
|
532
726
|
/** V1 error format. */
|
|
533
|
-
"$.xgafv"?:
|
|
727
|
+
"$.xgafv"?:
|
|
728
|
+
string;
|
|
534
729
|
/** OAuth access token. */
|
|
535
|
-
access_token?:
|
|
730
|
+
access_token?:
|
|
731
|
+
string;
|
|
536
732
|
/** Data format for response. */
|
|
537
|
-
alt?:
|
|
733
|
+
alt?:
|
|
734
|
+
string;
|
|
538
735
|
/** JSONP */
|
|
539
|
-
callback?:
|
|
736
|
+
callback?:
|
|
737
|
+
string;
|
|
540
738
|
/**
|
|
541
739
|
* Required. The ID of the metastore federation, which is used as the final component of the metastore federation's name.This value must be between 2 and 63 characters long
|
|
542
740
|
* inclusive, begin with a letter, end with a letter or number, and consist of alpha-numeric ASCII characters or hyphens.
|
|
543
741
|
*/
|
|
544
|
-
federationId?:
|
|
742
|
+
federationId?:
|
|
743
|
+
string;
|
|
545
744
|
/** Selector specifying which fields to include in a partial response. */
|
|
546
|
-
fields?:
|
|
745
|
+
fields?:
|
|
746
|
+
string;
|
|
547
747
|
/** 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. */
|
|
548
|
-
key?:
|
|
748
|
+
key?:
|
|
749
|
+
string;
|
|
549
750
|
/** OAuth 2.0 token for the current user. */
|
|
550
|
-
oauth_token?:
|
|
751
|
+
oauth_token?:
|
|
752
|
+
string;
|
|
551
753
|
/** Required. The relative resource name of the location in which to create a federation service, in the following form:projects/{project_number}/locations/{location_id}. */
|
|
552
|
-
parent:
|
|
754
|
+
parent:
|
|
755
|
+
string;
|
|
553
756
|
/** Returns response with indentations and line breaks. */
|
|
554
|
-
prettyPrint?:
|
|
757
|
+
prettyPrint?:
|
|
758
|
+
boolean;
|
|
555
759
|
/** 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. */
|
|
556
|
-
quotaUser?:
|
|
760
|
+
quotaUser?:
|
|
761
|
+
string;
|
|
557
762
|
/**
|
|
558
763
|
* Optional. A request ID. Specify a unique request ID to allow the server to ignore the request if it has completed. The server will ignore subsequent requests that provide a
|
|
559
764
|
* duplicate request ID for at least 60 minutes after the first request.For example, if an initial request times out, followed by another request with the same request ID, the
|
|
560
765
|
* server ignores the second request to prevent the creation of duplicate commitments.The request ID must be a valid UUID
|
|
561
766
|
* (https://en.wikipedia.org/wiki/Universally_unique_identifier#Format) A zero UUID (00000000-0000-0000-0000-000000000000) is not supported.
|
|
562
767
|
*/
|
|
563
|
-
requestId?:
|
|
768
|
+
requestId?:
|
|
769
|
+
string;
|
|
564
770
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
565
|
-
upload_protocol?:
|
|
771
|
+
upload_protocol?:
|
|
772
|
+
string;
|
|
566
773
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
567
|
-
uploadType?:
|
|
774
|
+
uploadType?:
|
|
775
|
+
string;
|
|
568
776
|
/** Request body */
|
|
569
|
-
resource:
|
|
777
|
+
resource:
|
|
778
|
+
Federation;
|
|
570
779
|
}): Request<Operation>;
|
|
571
780
|
create(request: {
|
|
572
781
|
/** V1 error format. */
|
|
573
|
-
"$.xgafv"?:
|
|
782
|
+
"$.xgafv"?:
|
|
783
|
+
string;
|
|
574
784
|
/** OAuth access token. */
|
|
575
|
-
access_token?:
|
|
785
|
+
access_token?:
|
|
786
|
+
string;
|
|
576
787
|
/** Data format for response. */
|
|
577
|
-
alt?:
|
|
788
|
+
alt?:
|
|
789
|
+
string;
|
|
578
790
|
/** JSONP */
|
|
579
|
-
callback?:
|
|
791
|
+
callback?:
|
|
792
|
+
string;
|
|
580
793
|
/**
|
|
581
794
|
* Required. The ID of the metastore federation, which is used as the final component of the metastore federation's name.This value must be between 2 and 63 characters long
|
|
582
795
|
* inclusive, begin with a letter, end with a letter or number, and consist of alpha-numeric ASCII characters or hyphens.
|
|
583
796
|
*/
|
|
584
|
-
federationId?:
|
|
797
|
+
federationId?:
|
|
798
|
+
string;
|
|
585
799
|
/** Selector specifying which fields to include in a partial response. */
|
|
586
|
-
fields?:
|
|
800
|
+
fields?:
|
|
801
|
+
string;
|
|
587
802
|
/** 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. */
|
|
588
|
-
key?:
|
|
803
|
+
key?:
|
|
804
|
+
string;
|
|
589
805
|
/** OAuth 2.0 token for the current user. */
|
|
590
|
-
oauth_token?:
|
|
806
|
+
oauth_token?:
|
|
807
|
+
string;
|
|
591
808
|
/** Required. The relative resource name of the location in which to create a federation service, in the following form:projects/{project_number}/locations/{location_id}. */
|
|
592
|
-
parent:
|
|
809
|
+
parent:
|
|
810
|
+
string;
|
|
593
811
|
/** Returns response with indentations and line breaks. */
|
|
594
|
-
prettyPrint?:
|
|
812
|
+
prettyPrint?:
|
|
813
|
+
boolean;
|
|
595
814
|
/** 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. */
|
|
596
|
-
quotaUser?:
|
|
815
|
+
quotaUser?:
|
|
816
|
+
string;
|
|
597
817
|
/**
|
|
598
818
|
* Optional. A request ID. Specify a unique request ID to allow the server to ignore the request if it has completed. The server will ignore subsequent requests that provide a
|
|
599
819
|
* duplicate request ID for at least 60 minutes after the first request.For example, if an initial request times out, followed by another request with the same request ID, the
|
|
600
820
|
* server ignores the second request to prevent the creation of duplicate commitments.The request ID must be a valid UUID
|
|
601
821
|
* (https://en.wikipedia.org/wiki/Universally_unique_identifier#Format) A zero UUID (00000000-0000-0000-0000-000000000000) is not supported.
|
|
602
822
|
*/
|
|
603
|
-
requestId?:
|
|
823
|
+
requestId?:
|
|
824
|
+
string;
|
|
604
825
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
605
|
-
upload_protocol?:
|
|
826
|
+
upload_protocol?:
|
|
827
|
+
string;
|
|
606
828
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
607
|
-
uploadType?:
|
|
829
|
+
uploadType?:
|
|
830
|
+
string;
|
|
608
831
|
},
|
|
609
832
|
body: Federation): Request<Operation>;
|
|
610
833
|
/** Deletes a single federation. */
|
|
611
834
|
delete(request?: {
|
|
612
835
|
/** V1 error format. */
|
|
613
|
-
"$.xgafv"?:
|
|
836
|
+
"$.xgafv"?:
|
|
837
|
+
string;
|
|
614
838
|
/** OAuth access token. */
|
|
615
|
-
access_token?:
|
|
839
|
+
access_token?:
|
|
840
|
+
string;
|
|
616
841
|
/** Data format for response. */
|
|
617
|
-
alt?:
|
|
842
|
+
alt?:
|
|
843
|
+
string;
|
|
618
844
|
/** JSONP */
|
|
619
|
-
callback?:
|
|
845
|
+
callback?:
|
|
846
|
+
string;
|
|
620
847
|
/** Selector specifying which fields to include in a partial response. */
|
|
621
|
-
fields?:
|
|
848
|
+
fields?:
|
|
849
|
+
string;
|
|
622
850
|
/** 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. */
|
|
623
|
-
key?:
|
|
851
|
+
key?:
|
|
852
|
+
string;
|
|
624
853
|
/** Required. The relative resource name of the metastore federation to delete, in the following form:projects/{project_number}/locations/{location_id}/federations/{federation_id}. */
|
|
625
|
-
name:
|
|
854
|
+
name:
|
|
855
|
+
string;
|
|
626
856
|
/** OAuth 2.0 token for the current user. */
|
|
627
|
-
oauth_token?:
|
|
857
|
+
oauth_token?:
|
|
858
|
+
string;
|
|
628
859
|
/** Returns response with indentations and line breaks. */
|
|
629
|
-
prettyPrint?:
|
|
860
|
+
prettyPrint?:
|
|
861
|
+
boolean;
|
|
630
862
|
/** 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. */
|
|
631
|
-
quotaUser?:
|
|
863
|
+
quotaUser?:
|
|
864
|
+
string;
|
|
632
865
|
/**
|
|
633
866
|
* Optional. A request ID. Specify a unique request ID to allow the server to ignore the request if it has completed. The server will ignore subsequent requests that provide a
|
|
634
867
|
* duplicate request ID for at least 60 minutes after the first request.For example, if an initial request times out, followed by another request with the same request ID, the
|
|
635
868
|
* server ignores the second request to prevent the creation of duplicate commitments.The request ID must be a valid UUID
|
|
636
869
|
* (https://en.wikipedia.org/wiki/Universally_unique_identifier#Format) A zero UUID (00000000-0000-0000-0000-000000000000) is not supported.
|
|
637
870
|
*/
|
|
638
|
-
requestId?:
|
|
871
|
+
requestId?:
|
|
872
|
+
string;
|
|
639
873
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
640
|
-
upload_protocol?:
|
|
874
|
+
upload_protocol?:
|
|
875
|
+
string;
|
|
641
876
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
642
|
-
uploadType?:
|
|
877
|
+
uploadType?:
|
|
878
|
+
string;
|
|
643
879
|
}): Request<Operation>;
|
|
644
880
|
/** Gets the details of a single federation. */
|
|
645
881
|
get(request?: {
|
|
646
882
|
/** V1 error format. */
|
|
647
|
-
"$.xgafv"?:
|
|
883
|
+
"$.xgafv"?:
|
|
884
|
+
string;
|
|
648
885
|
/** OAuth access token. */
|
|
649
|
-
access_token?:
|
|
886
|
+
access_token?:
|
|
887
|
+
string;
|
|
650
888
|
/** Data format for response. */
|
|
651
|
-
alt?:
|
|
889
|
+
alt?:
|
|
890
|
+
string;
|
|
652
891
|
/** JSONP */
|
|
653
|
-
callback?:
|
|
892
|
+
callback?:
|
|
893
|
+
string;
|
|
654
894
|
/** Selector specifying which fields to include in a partial response. */
|
|
655
|
-
fields?:
|
|
895
|
+
fields?:
|
|
896
|
+
string;
|
|
656
897
|
/** 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. */
|
|
657
|
-
key?:
|
|
898
|
+
key?:
|
|
899
|
+
string;
|
|
658
900
|
/**
|
|
659
901
|
* Required. The relative resource name of the metastore federation to retrieve, in the following
|
|
660
902
|
* form:projects/{project_number}/locations/{location_id}/federations/{federation_id}.
|
|
661
903
|
*/
|
|
662
|
-
name:
|
|
904
|
+
name:
|
|
905
|
+
string;
|
|
663
906
|
/** OAuth 2.0 token for the current user. */
|
|
664
|
-
oauth_token?:
|
|
907
|
+
oauth_token?:
|
|
908
|
+
string;
|
|
665
909
|
/** Returns response with indentations and line breaks. */
|
|
666
|
-
prettyPrint?:
|
|
910
|
+
prettyPrint?:
|
|
911
|
+
boolean;
|
|
667
912
|
/** 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. */
|
|
668
|
-
quotaUser?:
|
|
913
|
+
quotaUser?:
|
|
914
|
+
string;
|
|
669
915
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
670
|
-
upload_protocol?:
|
|
916
|
+
upload_protocol?:
|
|
917
|
+
string;
|
|
671
918
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
672
|
-
uploadType?:
|
|
919
|
+
uploadType?:
|
|
920
|
+
string;
|
|
673
921
|
}): Request<Federation>;
|
|
674
922
|
/** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
|
|
675
923
|
getIamPolicy(request?: {
|
|
676
924
|
/** V1 error format. */
|
|
677
|
-
"$.xgafv"?:
|
|
925
|
+
"$.xgafv"?:
|
|
926
|
+
string;
|
|
678
927
|
/** OAuth access token. */
|
|
679
|
-
access_token?:
|
|
928
|
+
access_token?:
|
|
929
|
+
string;
|
|
680
930
|
/** Data format for response. */
|
|
681
|
-
alt?:
|
|
931
|
+
alt?:
|
|
932
|
+
string;
|
|
682
933
|
/** JSONP */
|
|
683
|
-
callback?:
|
|
934
|
+
callback?:
|
|
935
|
+
string;
|
|
684
936
|
/** Selector specifying which fields to include in a partial response. */
|
|
685
|
-
fields?:
|
|
937
|
+
fields?:
|
|
938
|
+
string;
|
|
686
939
|
/** 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. */
|
|
687
|
-
key?:
|
|
940
|
+
key?:
|
|
941
|
+
string;
|
|
688
942
|
/** OAuth 2.0 token for the current user. */
|
|
689
|
-
oauth_token?:
|
|
943
|
+
oauth_token?:
|
|
944
|
+
string;
|
|
690
945
|
/**
|
|
691
946
|
* Optional. The maximum policy version that will be used to format the policy.Valid values are 0, 1, and 3. Requests specifying an invalid value will be rejected.Requests for
|
|
692
947
|
* policies with any conditional role bindings must specify version 3. Policies with no conditional role bindings may specify any valid value or leave the field unset.The policy in
|
|
@@ -694,174 +949,237 @@ declare namespace gapi.client {
|
|
|
694
949
|
* role bindings, the response uses version 1.To learn which resources support conditions in their IAM policies, see the IAM documentation
|
|
695
950
|
* (https://cloud.google.com/iam/help/conditions/resource-policies).
|
|
696
951
|
*/
|
|
697
|
-
"options.requestedPolicyVersion"?:
|
|
952
|
+
"options.requestedPolicyVersion"?:
|
|
953
|
+
number;
|
|
698
954
|
/** Returns response with indentations and line breaks. */
|
|
699
|
-
prettyPrint?:
|
|
955
|
+
prettyPrint?:
|
|
956
|
+
boolean;
|
|
700
957
|
/** 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. */
|
|
701
|
-
quotaUser?:
|
|
958
|
+
quotaUser?:
|
|
959
|
+
string;
|
|
702
960
|
/**
|
|
703
961
|
* REQUIRED: The resource for which the policy is being requested. See Resource names (https://cloud.google.com/apis/design/resource_names) for the appropriate value for this
|
|
704
962
|
* field.
|
|
705
963
|
*/
|
|
706
|
-
resource:
|
|
964
|
+
resource:
|
|
965
|
+
string;
|
|
707
966
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
708
|
-
upload_protocol?:
|
|
967
|
+
upload_protocol?:
|
|
968
|
+
string;
|
|
709
969
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
710
|
-
uploadType?:
|
|
970
|
+
uploadType?:
|
|
971
|
+
string;
|
|
711
972
|
}): Request<Policy>;
|
|
712
973
|
/** Lists federations in a project and location. */
|
|
713
974
|
list(request?: {
|
|
714
975
|
/** V1 error format. */
|
|
715
|
-
"$.xgafv"?:
|
|
976
|
+
"$.xgafv"?:
|
|
977
|
+
string;
|
|
716
978
|
/** OAuth access token. */
|
|
717
|
-
access_token?:
|
|
979
|
+
access_token?:
|
|
980
|
+
string;
|
|
718
981
|
/** Data format for response. */
|
|
719
|
-
alt?:
|
|
982
|
+
alt?:
|
|
983
|
+
string;
|
|
720
984
|
/** JSONP */
|
|
721
|
-
callback?:
|
|
985
|
+
callback?:
|
|
986
|
+
string;
|
|
722
987
|
/** Selector specifying which fields to include in a partial response. */
|
|
723
|
-
fields?:
|
|
988
|
+
fields?:
|
|
989
|
+
string;
|
|
724
990
|
/** Optional. The filter to apply to list results. */
|
|
725
|
-
filter?:
|
|
991
|
+
filter?:
|
|
992
|
+
string;
|
|
726
993
|
/** 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. */
|
|
727
|
-
key?:
|
|
994
|
+
key?:
|
|
995
|
+
string;
|
|
728
996
|
/** OAuth 2.0 token for the current user. */
|
|
729
|
-
oauth_token?:
|
|
997
|
+
oauth_token?:
|
|
998
|
+
string;
|
|
730
999
|
/**
|
|
731
1000
|
* Optional. Specify the ordering of results as described in Sorting Order (https://cloud.google.com/apis/design/design_patterns#sorting_order). If not specified, the results will
|
|
732
1001
|
* be sorted in the default order.
|
|
733
1002
|
*/
|
|
734
|
-
orderBy?:
|
|
1003
|
+
orderBy?:
|
|
1004
|
+
string;
|
|
735
1005
|
/**
|
|
736
1006
|
* Optional. The maximum number of federations to return. The response may contain less than the maximum number. If unspecified, no more than 500 services are returned. The maximum
|
|
737
1007
|
* value is 1000; values above 1000 are changed to 1000.
|
|
738
1008
|
*/
|
|
739
|
-
pageSize?:
|
|
1009
|
+
pageSize?:
|
|
1010
|
+
number;
|
|
740
1011
|
/**
|
|
741
1012
|
* Optional. A page token, received from a previous ListFederationServices call. Provide this token to retrieve the subsequent page.To retrieve the first page, supply an empty page
|
|
742
1013
|
* token.When paginating, other parameters provided to ListFederationServices must match the call that provided the page token.
|
|
743
1014
|
*/
|
|
744
|
-
pageToken?:
|
|
1015
|
+
pageToken?:
|
|
1016
|
+
string;
|
|
745
1017
|
/** Required. The relative resource name of the location of metastore federations to list, in the following form: projects/{project_number}/locations/{location_id}. */
|
|
746
|
-
parent:
|
|
1018
|
+
parent:
|
|
1019
|
+
string;
|
|
747
1020
|
/** Returns response with indentations and line breaks. */
|
|
748
|
-
prettyPrint?:
|
|
1021
|
+
prettyPrint?:
|
|
1022
|
+
boolean;
|
|
749
1023
|
/** 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. */
|
|
750
|
-
quotaUser?:
|
|
1024
|
+
quotaUser?:
|
|
1025
|
+
string;
|
|
751
1026
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
752
|
-
upload_protocol?:
|
|
1027
|
+
upload_protocol?:
|
|
1028
|
+
string;
|
|
753
1029
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
754
|
-
uploadType?:
|
|
1030
|
+
uploadType?:
|
|
1031
|
+
string;
|
|
755
1032
|
}): Request<ListFederationsResponse>;
|
|
756
1033
|
/** Updates the fields of a federation. */
|
|
757
1034
|
patch(request: {
|
|
758
1035
|
/** V1 error format. */
|
|
759
|
-
"$.xgafv"?:
|
|
1036
|
+
"$.xgafv"?:
|
|
1037
|
+
string;
|
|
760
1038
|
/** OAuth access token. */
|
|
761
|
-
access_token?:
|
|
1039
|
+
access_token?:
|
|
1040
|
+
string;
|
|
762
1041
|
/** Data format for response. */
|
|
763
|
-
alt?:
|
|
1042
|
+
alt?:
|
|
1043
|
+
string;
|
|
764
1044
|
/** JSONP */
|
|
765
|
-
callback?:
|
|
1045
|
+
callback?:
|
|
1046
|
+
string;
|
|
766
1047
|
/** Selector specifying which fields to include in a partial response. */
|
|
767
|
-
fields?:
|
|
1048
|
+
fields?:
|
|
1049
|
+
string;
|
|
768
1050
|
/** 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. */
|
|
769
|
-
key?:
|
|
1051
|
+
key?:
|
|
1052
|
+
string;
|
|
770
1053
|
/** Immutable. The relative resource name of the federation, of the form: projects/{project_number}/locations/{location_id}/federations/{federation_id}`. */
|
|
771
|
-
name:
|
|
1054
|
+
name:
|
|
1055
|
+
string;
|
|
772
1056
|
/** OAuth 2.0 token for the current user. */
|
|
773
|
-
oauth_token?:
|
|
1057
|
+
oauth_token?:
|
|
1058
|
+
string;
|
|
774
1059
|
/** Returns response with indentations and line breaks. */
|
|
775
|
-
prettyPrint?:
|
|
1060
|
+
prettyPrint?:
|
|
1061
|
+
boolean;
|
|
776
1062
|
/** 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. */
|
|
777
|
-
quotaUser?:
|
|
1063
|
+
quotaUser?:
|
|
1064
|
+
string;
|
|
778
1065
|
/**
|
|
779
1066
|
* Optional. A request ID. Specify a unique request ID to allow the server to ignore the request if it has completed. The server will ignore subsequent requests that provide a
|
|
780
1067
|
* duplicate request ID for at least 60 minutes after the first request.For example, if an initial request times out, followed by another request with the same request ID, the
|
|
781
1068
|
* server ignores the second request to prevent the creation of duplicate commitments.The request ID must be a valid UUID
|
|
782
1069
|
* (https://en.wikipedia.org/wiki/Universally_unique_identifier#Format) A zero UUID (00000000-0000-0000-0000-000000000000) is not supported.
|
|
783
1070
|
*/
|
|
784
|
-
requestId?:
|
|
1071
|
+
requestId?:
|
|
1072
|
+
string;
|
|
785
1073
|
/**
|
|
786
1074
|
* Required. A field mask used to specify the fields to be overwritten in the metastore federation resource by the update. Fields specified in the update_mask are relative to the
|
|
787
1075
|
* resource (not to the full request). A field is overwritten if it is in the mask.
|
|
788
1076
|
*/
|
|
789
|
-
updateMask?:
|
|
1077
|
+
updateMask?:
|
|
1078
|
+
string;
|
|
790
1079
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
791
|
-
upload_protocol?:
|
|
1080
|
+
upload_protocol?:
|
|
1081
|
+
string;
|
|
792
1082
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
793
|
-
uploadType?:
|
|
1083
|
+
uploadType?:
|
|
1084
|
+
string;
|
|
794
1085
|
/** Request body */
|
|
795
|
-
resource:
|
|
1086
|
+
resource:
|
|
1087
|
+
Federation;
|
|
796
1088
|
}): Request<Operation>;
|
|
797
1089
|
patch(request: {
|
|
798
1090
|
/** V1 error format. */
|
|
799
|
-
"$.xgafv"?:
|
|
1091
|
+
"$.xgafv"?:
|
|
1092
|
+
string;
|
|
800
1093
|
/** OAuth access token. */
|
|
801
|
-
access_token?:
|
|
1094
|
+
access_token?:
|
|
1095
|
+
string;
|
|
802
1096
|
/** Data format for response. */
|
|
803
|
-
alt?:
|
|
1097
|
+
alt?:
|
|
1098
|
+
string;
|
|
804
1099
|
/** JSONP */
|
|
805
|
-
callback?:
|
|
1100
|
+
callback?:
|
|
1101
|
+
string;
|
|
806
1102
|
/** Selector specifying which fields to include in a partial response. */
|
|
807
|
-
fields?:
|
|
1103
|
+
fields?:
|
|
1104
|
+
string;
|
|
808
1105
|
/** 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. */
|
|
809
|
-
key?:
|
|
1106
|
+
key?:
|
|
1107
|
+
string;
|
|
810
1108
|
/** Immutable. The relative resource name of the federation, of the form: projects/{project_number}/locations/{location_id}/federations/{federation_id}`. */
|
|
811
|
-
name:
|
|
1109
|
+
name:
|
|
1110
|
+
string;
|
|
812
1111
|
/** OAuth 2.0 token for the current user. */
|
|
813
|
-
oauth_token?:
|
|
1112
|
+
oauth_token?:
|
|
1113
|
+
string;
|
|
814
1114
|
/** Returns response with indentations and line breaks. */
|
|
815
|
-
prettyPrint?:
|
|
1115
|
+
prettyPrint?:
|
|
1116
|
+
boolean;
|
|
816
1117
|
/** 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. */
|
|
817
|
-
quotaUser?:
|
|
1118
|
+
quotaUser?:
|
|
1119
|
+
string;
|
|
818
1120
|
/**
|
|
819
1121
|
* Optional. A request ID. Specify a unique request ID to allow the server to ignore the request if it has completed. The server will ignore subsequent requests that provide a
|
|
820
1122
|
* duplicate request ID for at least 60 minutes after the first request.For example, if an initial request times out, followed by another request with the same request ID, the
|
|
821
1123
|
* server ignores the second request to prevent the creation of duplicate commitments.The request ID must be a valid UUID
|
|
822
1124
|
* (https://en.wikipedia.org/wiki/Universally_unique_identifier#Format) A zero UUID (00000000-0000-0000-0000-000000000000) is not supported.
|
|
823
1125
|
*/
|
|
824
|
-
requestId?:
|
|
1126
|
+
requestId?:
|
|
1127
|
+
string;
|
|
825
1128
|
/**
|
|
826
1129
|
* Required. A field mask used to specify the fields to be overwritten in the metastore federation resource by the update. Fields specified in the update_mask are relative to the
|
|
827
1130
|
* resource (not to the full request). A field is overwritten if it is in the mask.
|
|
828
1131
|
*/
|
|
829
|
-
updateMask?:
|
|
1132
|
+
updateMask?:
|
|
1133
|
+
string;
|
|
830
1134
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
831
|
-
upload_protocol?:
|
|
1135
|
+
upload_protocol?:
|
|
1136
|
+
string;
|
|
832
1137
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
833
|
-
uploadType?:
|
|
1138
|
+
uploadType?:
|
|
1139
|
+
string;
|
|
834
1140
|
},
|
|
835
1141
|
body: Federation): Request<Operation>;
|
|
836
1142
|
/** Sets the access control policy on the specified resource. Replaces any existing policy.Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED errors. */
|
|
837
1143
|
setIamPolicy(request: {
|
|
838
1144
|
/** V1 error format. */
|
|
839
|
-
"$.xgafv"?:
|
|
1145
|
+
"$.xgafv"?:
|
|
1146
|
+
string;
|
|
840
1147
|
/** OAuth access token. */
|
|
841
|
-
access_token?:
|
|
1148
|
+
access_token?:
|
|
1149
|
+
string;
|
|
842
1150
|
/** Data format for response. */
|
|
843
|
-
alt?:
|
|
1151
|
+
alt?:
|
|
1152
|
+
string;
|
|
844
1153
|
/** JSONP */
|
|
845
|
-
callback?:
|
|
1154
|
+
callback?:
|
|
1155
|
+
string;
|
|
846
1156
|
/** Selector specifying which fields to include in a partial response. */
|
|
847
|
-
fields?:
|
|
1157
|
+
fields?:
|
|
1158
|
+
string;
|
|
848
1159
|
/** 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. */
|
|
849
|
-
key?:
|
|
1160
|
+
key?:
|
|
1161
|
+
string;
|
|
850
1162
|
/** OAuth 2.0 token for the current user. */
|
|
851
|
-
oauth_token?:
|
|
1163
|
+
oauth_token?:
|
|
1164
|
+
string;
|
|
852
1165
|
/** Returns response with indentations and line breaks. */
|
|
853
|
-
prettyPrint?:
|
|
1166
|
+
prettyPrint?:
|
|
1167
|
+
boolean;
|
|
854
1168
|
/** 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. */
|
|
855
|
-
quotaUser?:
|
|
1169
|
+
quotaUser?:
|
|
1170
|
+
string;
|
|
856
1171
|
/**
|
|
857
1172
|
* REQUIRED: The resource for which the policy is being specified. See Resource names (https://cloud.google.com/apis/design/resource_names) for the appropriate value for this
|
|
858
1173
|
* field.
|
|
859
1174
|
*/
|
|
860
|
-
resource:
|
|
1175
|
+
resource:
|
|
1176
|
+
string;
|
|
861
1177
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
862
|
-
upload_protocol?:
|
|
1178
|
+
upload_protocol?:
|
|
1179
|
+
string;
|
|
863
1180
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
864
|
-
uploadType?:
|
|
1181
|
+
uploadType?:
|
|
1182
|
+
string;
|
|
865
1183
|
},
|
|
866
1184
|
body: SetIamPolicyRequest): Request<Policy>;
|
|
867
1185
|
/**
|
|
@@ -870,32 +1188,44 @@ declare namespace gapi.client {
|
|
|
870
1188
|
*/
|
|
871
1189
|
testIamPermissions(request: {
|
|
872
1190
|
/** V1 error format. */
|
|
873
|
-
"$.xgafv"?:
|
|
1191
|
+
"$.xgafv"?:
|
|
1192
|
+
string;
|
|
874
1193
|
/** OAuth access token. */
|
|
875
|
-
access_token?:
|
|
1194
|
+
access_token?:
|
|
1195
|
+
string;
|
|
876
1196
|
/** Data format for response. */
|
|
877
|
-
alt?:
|
|
1197
|
+
alt?:
|
|
1198
|
+
string;
|
|
878
1199
|
/** JSONP */
|
|
879
|
-
callback?:
|
|
1200
|
+
callback?:
|
|
1201
|
+
string;
|
|
880
1202
|
/** Selector specifying which fields to include in a partial response. */
|
|
881
|
-
fields?:
|
|
1203
|
+
fields?:
|
|
1204
|
+
string;
|
|
882
1205
|
/** 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. */
|
|
883
|
-
key?:
|
|
1206
|
+
key?:
|
|
1207
|
+
string;
|
|
884
1208
|
/** OAuth 2.0 token for the current user. */
|
|
885
|
-
oauth_token?:
|
|
1209
|
+
oauth_token?:
|
|
1210
|
+
string;
|
|
886
1211
|
/** Returns response with indentations and line breaks. */
|
|
887
|
-
prettyPrint?:
|
|
1212
|
+
prettyPrint?:
|
|
1213
|
+
boolean;
|
|
888
1214
|
/** 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. */
|
|
889
|
-
quotaUser?:
|
|
1215
|
+
quotaUser?:
|
|
1216
|
+
string;
|
|
890
1217
|
/**
|
|
891
1218
|
* REQUIRED: The resource for which the policy detail is being requested. See Resource names (https://cloud.google.com/apis/design/resource_names) for the appropriate value for
|
|
892
1219
|
* this field.
|
|
893
1220
|
*/
|
|
894
|
-
resource:
|
|
1221
|
+
resource:
|
|
1222
|
+
string;
|
|
895
1223
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
896
|
-
upload_protocol?:
|
|
1224
|
+
upload_protocol?:
|
|
1225
|
+
string;
|
|
897
1226
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
898
|
-
uploadType?:
|
|
1227
|
+
uploadType?:
|
|
1228
|
+
string;
|
|
899
1229
|
},
|
|
900
1230
|
body: TestIamPermissionsRequest): Request<TestIamPermissionsResponse>;
|
|
901
1231
|
}
|
|
@@ -908,57 +1238,82 @@ declare namespace gapi.client {
|
|
|
908
1238
|
*/
|
|
909
1239
|
cancel(request: {
|
|
910
1240
|
/** V1 error format. */
|
|
911
|
-
"$.xgafv"?:
|
|
1241
|
+
"$.xgafv"?:
|
|
1242
|
+
string;
|
|
912
1243
|
/** OAuth access token. */
|
|
913
|
-
access_token?:
|
|
1244
|
+
access_token?:
|
|
1245
|
+
string;
|
|
914
1246
|
/** Data format for response. */
|
|
915
|
-
alt?:
|
|
1247
|
+
alt?:
|
|
1248
|
+
string;
|
|
916
1249
|
/** JSONP */
|
|
917
|
-
callback?:
|
|
1250
|
+
callback?:
|
|
1251
|
+
string;
|
|
918
1252
|
/** Selector specifying which fields to include in a partial response. */
|
|
919
|
-
fields?:
|
|
1253
|
+
fields?:
|
|
1254
|
+
string;
|
|
920
1255
|
/** 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. */
|
|
921
|
-
key?:
|
|
1256
|
+
key?:
|
|
1257
|
+
string;
|
|
922
1258
|
/** The name of the operation resource to be cancelled. */
|
|
923
|
-
name:
|
|
1259
|
+
name:
|
|
1260
|
+
string;
|
|
924
1261
|
/** OAuth 2.0 token for the current user. */
|
|
925
|
-
oauth_token?:
|
|
1262
|
+
oauth_token?:
|
|
1263
|
+
string;
|
|
926
1264
|
/** Returns response with indentations and line breaks. */
|
|
927
|
-
prettyPrint?:
|
|
1265
|
+
prettyPrint?:
|
|
1266
|
+
boolean;
|
|
928
1267
|
/** 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. */
|
|
929
|
-
quotaUser?:
|
|
1268
|
+
quotaUser?:
|
|
1269
|
+
string;
|
|
930
1270
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
931
|
-
upload_protocol?:
|
|
1271
|
+
upload_protocol?:
|
|
1272
|
+
string;
|
|
932
1273
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
933
|
-
uploadType?:
|
|
1274
|
+
uploadType?:
|
|
1275
|
+
string;
|
|
934
1276
|
/** Request body */
|
|
935
|
-
resource:
|
|
1277
|
+
resource:
|
|
1278
|
+
CancelOperationRequest;
|
|
936
1279
|
}): Request<{}>;
|
|
937
1280
|
cancel(request: {
|
|
938
1281
|
/** V1 error format. */
|
|
939
|
-
"$.xgafv"?:
|
|
1282
|
+
"$.xgafv"?:
|
|
1283
|
+
string;
|
|
940
1284
|
/** OAuth access token. */
|
|
941
|
-
access_token?:
|
|
1285
|
+
access_token?:
|
|
1286
|
+
string;
|
|
942
1287
|
/** Data format for response. */
|
|
943
|
-
alt?:
|
|
1288
|
+
alt?:
|
|
1289
|
+
string;
|
|
944
1290
|
/** JSONP */
|
|
945
|
-
callback?:
|
|
1291
|
+
callback?:
|
|
1292
|
+
string;
|
|
946
1293
|
/** Selector specifying which fields to include in a partial response. */
|
|
947
|
-
fields?:
|
|
1294
|
+
fields?:
|
|
1295
|
+
string;
|
|
948
1296
|
/** 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. */
|
|
949
|
-
key?:
|
|
1297
|
+
key?:
|
|
1298
|
+
string;
|
|
950
1299
|
/** The name of the operation resource to be cancelled. */
|
|
951
|
-
name:
|
|
1300
|
+
name:
|
|
1301
|
+
string;
|
|
952
1302
|
/** OAuth 2.0 token for the current user. */
|
|
953
|
-
oauth_token?:
|
|
1303
|
+
oauth_token?:
|
|
1304
|
+
string;
|
|
954
1305
|
/** Returns response with indentations and line breaks. */
|
|
955
|
-
prettyPrint?:
|
|
1306
|
+
prettyPrint?:
|
|
1307
|
+
boolean;
|
|
956
1308
|
/** 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. */
|
|
957
|
-
quotaUser?:
|
|
1309
|
+
quotaUser?:
|
|
1310
|
+
string;
|
|
958
1311
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
959
|
-
upload_protocol?:
|
|
1312
|
+
upload_protocol?:
|
|
1313
|
+
string;
|
|
960
1314
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
961
|
-
uploadType?:
|
|
1315
|
+
uploadType?:
|
|
1316
|
+
string;
|
|
962
1317
|
},
|
|
963
1318
|
body: CancelOperationRequest): Request<{}>;
|
|
964
1319
|
/**
|
|
@@ -967,252 +1322,352 @@ declare namespace gapi.client {
|
|
|
967
1322
|
*/
|
|
968
1323
|
delete(request?: {
|
|
969
1324
|
/** V1 error format. */
|
|
970
|
-
"$.xgafv"?:
|
|
1325
|
+
"$.xgafv"?:
|
|
1326
|
+
string;
|
|
971
1327
|
/** OAuth access token. */
|
|
972
|
-
access_token?:
|
|
1328
|
+
access_token?:
|
|
1329
|
+
string;
|
|
973
1330
|
/** Data format for response. */
|
|
974
|
-
alt?:
|
|
1331
|
+
alt?:
|
|
1332
|
+
string;
|
|
975
1333
|
/** JSONP */
|
|
976
|
-
callback?:
|
|
1334
|
+
callback?:
|
|
1335
|
+
string;
|
|
977
1336
|
/** Selector specifying which fields to include in a partial response. */
|
|
978
|
-
fields?:
|
|
1337
|
+
fields?:
|
|
1338
|
+
string;
|
|
979
1339
|
/** 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. */
|
|
980
|
-
key?:
|
|
1340
|
+
key?:
|
|
1341
|
+
string;
|
|
981
1342
|
/** The name of the operation resource to be deleted. */
|
|
982
|
-
name:
|
|
1343
|
+
name:
|
|
1344
|
+
string;
|
|
983
1345
|
/** OAuth 2.0 token for the current user. */
|
|
984
|
-
oauth_token?:
|
|
1346
|
+
oauth_token?:
|
|
1347
|
+
string;
|
|
985
1348
|
/** Returns response with indentations and line breaks. */
|
|
986
|
-
prettyPrint?:
|
|
1349
|
+
prettyPrint?:
|
|
1350
|
+
boolean;
|
|
987
1351
|
/** 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. */
|
|
988
|
-
quotaUser?:
|
|
1352
|
+
quotaUser?:
|
|
1353
|
+
string;
|
|
989
1354
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
990
|
-
upload_protocol?:
|
|
1355
|
+
upload_protocol?:
|
|
1356
|
+
string;
|
|
991
1357
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
992
|
-
uploadType?:
|
|
1358
|
+
uploadType?:
|
|
1359
|
+
string;
|
|
993
1360
|
}): Request<{}>;
|
|
994
1361
|
/** Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service. */
|
|
995
1362
|
get(request?: {
|
|
996
1363
|
/** V1 error format. */
|
|
997
|
-
"$.xgafv"?:
|
|
1364
|
+
"$.xgafv"?:
|
|
1365
|
+
string;
|
|
998
1366
|
/** OAuth access token. */
|
|
999
|
-
access_token?:
|
|
1367
|
+
access_token?:
|
|
1368
|
+
string;
|
|
1000
1369
|
/** Data format for response. */
|
|
1001
|
-
alt?:
|
|
1370
|
+
alt?:
|
|
1371
|
+
string;
|
|
1002
1372
|
/** JSONP */
|
|
1003
|
-
callback?:
|
|
1373
|
+
callback?:
|
|
1374
|
+
string;
|
|
1004
1375
|
/** Selector specifying which fields to include in a partial response. */
|
|
1005
|
-
fields?:
|
|
1376
|
+
fields?:
|
|
1377
|
+
string;
|
|
1006
1378
|
/** 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. */
|
|
1007
|
-
key?:
|
|
1379
|
+
key?:
|
|
1380
|
+
string;
|
|
1008
1381
|
/** The name of the operation resource. */
|
|
1009
|
-
name:
|
|
1382
|
+
name:
|
|
1383
|
+
string;
|
|
1010
1384
|
/** OAuth 2.0 token for the current user. */
|
|
1011
|
-
oauth_token?:
|
|
1385
|
+
oauth_token?:
|
|
1386
|
+
string;
|
|
1012
1387
|
/** Returns response with indentations and line breaks. */
|
|
1013
|
-
prettyPrint?:
|
|
1388
|
+
prettyPrint?:
|
|
1389
|
+
boolean;
|
|
1014
1390
|
/** 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. */
|
|
1015
|
-
quotaUser?:
|
|
1391
|
+
quotaUser?:
|
|
1392
|
+
string;
|
|
1016
1393
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1017
|
-
upload_protocol?:
|
|
1394
|
+
upload_protocol?:
|
|
1395
|
+
string;
|
|
1018
1396
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1019
|
-
uploadType?:
|
|
1397
|
+
uploadType?:
|
|
1398
|
+
string;
|
|
1020
1399
|
}): Request<Operation>;
|
|
1021
1400
|
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns UNIMPLEMENTED. */
|
|
1022
1401
|
list(request?: {
|
|
1023
1402
|
/** V1 error format. */
|
|
1024
|
-
"$.xgafv"?:
|
|
1403
|
+
"$.xgafv"?:
|
|
1404
|
+
string;
|
|
1025
1405
|
/** OAuth access token. */
|
|
1026
|
-
access_token?:
|
|
1406
|
+
access_token?:
|
|
1407
|
+
string;
|
|
1027
1408
|
/** Data format for response. */
|
|
1028
|
-
alt?:
|
|
1409
|
+
alt?:
|
|
1410
|
+
string;
|
|
1029
1411
|
/** JSONP */
|
|
1030
|
-
callback?:
|
|
1412
|
+
callback?:
|
|
1413
|
+
string;
|
|
1031
1414
|
/** Selector specifying which fields to include in a partial response. */
|
|
1032
|
-
fields?:
|
|
1415
|
+
fields?:
|
|
1416
|
+
string;
|
|
1033
1417
|
/** The standard list filter. */
|
|
1034
|
-
filter?:
|
|
1418
|
+
filter?:
|
|
1419
|
+
string;
|
|
1035
1420
|
/** 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. */
|
|
1036
|
-
key?:
|
|
1421
|
+
key?:
|
|
1422
|
+
string;
|
|
1037
1423
|
/** The name of the operation's parent resource. */
|
|
1038
|
-
name:
|
|
1424
|
+
name:
|
|
1425
|
+
string;
|
|
1039
1426
|
/** OAuth 2.0 token for the current user. */
|
|
1040
|
-
oauth_token?:
|
|
1427
|
+
oauth_token?:
|
|
1428
|
+
string;
|
|
1041
1429
|
/** The standard list page size. */
|
|
1042
|
-
pageSize?:
|
|
1430
|
+
pageSize?:
|
|
1431
|
+
number;
|
|
1043
1432
|
/** The standard list page token. */
|
|
1044
|
-
pageToken?:
|
|
1433
|
+
pageToken?:
|
|
1434
|
+
string;
|
|
1045
1435
|
/** Returns response with indentations and line breaks. */
|
|
1046
|
-
prettyPrint?:
|
|
1436
|
+
prettyPrint?:
|
|
1437
|
+
boolean;
|
|
1047
1438
|
/** 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. */
|
|
1048
|
-
quotaUser?:
|
|
1439
|
+
quotaUser?:
|
|
1440
|
+
string;
|
|
1049
1441
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1050
|
-
upload_protocol?:
|
|
1442
|
+
upload_protocol?:
|
|
1443
|
+
string;
|
|
1051
1444
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1052
|
-
uploadType?:
|
|
1445
|
+
uploadType?:
|
|
1446
|
+
string;
|
|
1053
1447
|
}): Request<ListOperationsResponse>;
|
|
1054
1448
|
}
|
|
1055
1449
|
interface BackupsResource {
|
|
1056
1450
|
/** Creates a new backup in a given project and location. */
|
|
1057
1451
|
create(request: {
|
|
1058
1452
|
/** V1 error format. */
|
|
1059
|
-
"$.xgafv"?:
|
|
1453
|
+
"$.xgafv"?:
|
|
1454
|
+
string;
|
|
1060
1455
|
/** OAuth access token. */
|
|
1061
|
-
access_token?:
|
|
1456
|
+
access_token?:
|
|
1457
|
+
string;
|
|
1062
1458
|
/** Data format for response. */
|
|
1063
|
-
alt?:
|
|
1459
|
+
alt?:
|
|
1460
|
+
string;
|
|
1064
1461
|
/**
|
|
1065
1462
|
* Required. The ID of the backup, which is used as the final component of the backup's name.This value must be between 1 and 64 characters long, begin with a letter, end with a
|
|
1066
1463
|
* letter or number, and consist of alpha-numeric ASCII characters or hyphens.
|
|
1067
1464
|
*/
|
|
1068
|
-
backupId?:
|
|
1465
|
+
backupId?:
|
|
1466
|
+
string;
|
|
1069
1467
|
/** JSONP */
|
|
1070
|
-
callback?:
|
|
1468
|
+
callback?:
|
|
1469
|
+
string;
|
|
1071
1470
|
/** Selector specifying which fields to include in a partial response. */
|
|
1072
|
-
fields?:
|
|
1471
|
+
fields?:
|
|
1472
|
+
string;
|
|
1073
1473
|
/** 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. */
|
|
1074
|
-
key?:
|
|
1474
|
+
key?:
|
|
1475
|
+
string;
|
|
1075
1476
|
/** OAuth 2.0 token for the current user. */
|
|
1076
|
-
oauth_token?:
|
|
1477
|
+
oauth_token?:
|
|
1478
|
+
string;
|
|
1077
1479
|
/** Required. The relative resource name of the service in which to create a backup of the following form:projects/{project_number}/locations/{location_id}/services/{service_id}. */
|
|
1078
|
-
parent:
|
|
1480
|
+
parent:
|
|
1481
|
+
string;
|
|
1079
1482
|
/** Returns response with indentations and line breaks. */
|
|
1080
|
-
prettyPrint?:
|
|
1483
|
+
prettyPrint?:
|
|
1484
|
+
boolean;
|
|
1081
1485
|
/** 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. */
|
|
1082
|
-
quotaUser?:
|
|
1486
|
+
quotaUser?:
|
|
1487
|
+
string;
|
|
1083
1488
|
/**
|
|
1084
1489
|
* Optional. A request ID. Specify a unique request ID to allow the server to ignore the request if it has completed. The server will ignore subsequent requests that provide a
|
|
1085
1490
|
* duplicate request ID for at least 60 minutes after the first request.For example, if an initial request times out, followed by another request with the same request ID, the
|
|
1086
1491
|
* server ignores the second request to prevent the creation of duplicate commitments.The request ID must be a valid UUID
|
|
1087
1492
|
* (https://en.wikipedia.org/wiki/Universally_unique_identifier#Format) A zero UUID (00000000-0000-0000-0000-000000000000) is not supported.
|
|
1088
1493
|
*/
|
|
1089
|
-
requestId?:
|
|
1494
|
+
requestId?:
|
|
1495
|
+
string;
|
|
1090
1496
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1091
|
-
upload_protocol?:
|
|
1497
|
+
upload_protocol?:
|
|
1498
|
+
string;
|
|
1092
1499
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1093
|
-
uploadType?:
|
|
1500
|
+
uploadType?:
|
|
1501
|
+
string;
|
|
1094
1502
|
/** Request body */
|
|
1095
|
-
resource:
|
|
1503
|
+
resource:
|
|
1504
|
+
Backup;
|
|
1096
1505
|
}): Request<Operation>;
|
|
1097
1506
|
create(request: {
|
|
1098
1507
|
/** V1 error format. */
|
|
1099
|
-
"$.xgafv"?:
|
|
1508
|
+
"$.xgafv"?:
|
|
1509
|
+
string;
|
|
1100
1510
|
/** OAuth access token. */
|
|
1101
|
-
access_token?:
|
|
1511
|
+
access_token?:
|
|
1512
|
+
string;
|
|
1102
1513
|
/** Data format for response. */
|
|
1103
|
-
alt?:
|
|
1514
|
+
alt?:
|
|
1515
|
+
string;
|
|
1104
1516
|
/**
|
|
1105
1517
|
* Required. The ID of the backup, which is used as the final component of the backup's name.This value must be between 1 and 64 characters long, begin with a letter, end with a
|
|
1106
1518
|
* letter or number, and consist of alpha-numeric ASCII characters or hyphens.
|
|
1107
1519
|
*/
|
|
1108
|
-
backupId?:
|
|
1520
|
+
backupId?:
|
|
1521
|
+
string;
|
|
1109
1522
|
/** JSONP */
|
|
1110
|
-
callback?:
|
|
1523
|
+
callback?:
|
|
1524
|
+
string;
|
|
1111
1525
|
/** Selector specifying which fields to include in a partial response. */
|
|
1112
|
-
fields?:
|
|
1526
|
+
fields?:
|
|
1527
|
+
string;
|
|
1113
1528
|
/** 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?:
|
|
1529
|
+
key?:
|
|
1530
|
+
string;
|
|
1115
1531
|
/** OAuth 2.0 token for the current user. */
|
|
1116
|
-
oauth_token?:
|
|
1532
|
+
oauth_token?:
|
|
1533
|
+
string;
|
|
1117
1534
|
/** Required. The relative resource name of the service in which to create a backup of the following form:projects/{project_number}/locations/{location_id}/services/{service_id}. */
|
|
1118
|
-
parent:
|
|
1535
|
+
parent:
|
|
1536
|
+
string;
|
|
1119
1537
|
/** Returns response with indentations and line breaks. */
|
|
1120
|
-
prettyPrint?:
|
|
1538
|
+
prettyPrint?:
|
|
1539
|
+
boolean;
|
|
1121
1540
|
/** 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?:
|
|
1541
|
+
quotaUser?:
|
|
1542
|
+
string;
|
|
1123
1543
|
/**
|
|
1124
1544
|
* Optional. A request ID. Specify a unique request ID to allow the server to ignore the request if it has completed. The server will ignore subsequent requests that provide a
|
|
1125
1545
|
* duplicate request ID for at least 60 minutes after the first request.For example, if an initial request times out, followed by another request with the same request ID, the
|
|
1126
1546
|
* server ignores the second request to prevent the creation of duplicate commitments.The request ID must be a valid UUID
|
|
1127
1547
|
* (https://en.wikipedia.org/wiki/Universally_unique_identifier#Format) A zero UUID (00000000-0000-0000-0000-000000000000) is not supported.
|
|
1128
1548
|
*/
|
|
1129
|
-
requestId?:
|
|
1549
|
+
requestId?:
|
|
1550
|
+
string;
|
|
1130
1551
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1131
|
-
upload_protocol?:
|
|
1552
|
+
upload_protocol?:
|
|
1553
|
+
string;
|
|
1132
1554
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1133
|
-
uploadType?:
|
|
1555
|
+
uploadType?:
|
|
1556
|
+
string;
|
|
1134
1557
|
},
|
|
1135
1558
|
body: Backup): Request<Operation>;
|
|
1136
1559
|
/** Deletes a single backup. */
|
|
1137
1560
|
delete(request?: {
|
|
1138
1561
|
/** V1 error format. */
|
|
1139
|
-
"$.xgafv"?:
|
|
1562
|
+
"$.xgafv"?:
|
|
1563
|
+
string;
|
|
1140
1564
|
/** OAuth access token. */
|
|
1141
|
-
access_token?:
|
|
1565
|
+
access_token?:
|
|
1566
|
+
string;
|
|
1142
1567
|
/** Data format for response. */
|
|
1143
|
-
alt?:
|
|
1568
|
+
alt?:
|
|
1569
|
+
string;
|
|
1144
1570
|
/** JSONP */
|
|
1145
|
-
callback?:
|
|
1571
|
+
callback?:
|
|
1572
|
+
string;
|
|
1146
1573
|
/** Selector specifying which fields to include in a partial response. */
|
|
1147
|
-
fields?:
|
|
1574
|
+
fields?:
|
|
1575
|
+
string;
|
|
1148
1576
|
/** 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. */
|
|
1149
|
-
key?:
|
|
1577
|
+
key?:
|
|
1578
|
+
string;
|
|
1150
1579
|
/** Required. The relative resource name of the backup to delete, in the following form:projects/{project_number}/locations/{location_id}/services/{service_id}/backups/{backup_id}. */
|
|
1151
|
-
name:
|
|
1580
|
+
name:
|
|
1581
|
+
string;
|
|
1152
1582
|
/** OAuth 2.0 token for the current user. */
|
|
1153
|
-
oauth_token?:
|
|
1583
|
+
oauth_token?:
|
|
1584
|
+
string;
|
|
1154
1585
|
/** Returns response with indentations and line breaks. */
|
|
1155
|
-
prettyPrint?:
|
|
1586
|
+
prettyPrint?:
|
|
1587
|
+
boolean;
|
|
1156
1588
|
/** 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. */
|
|
1157
|
-
quotaUser?:
|
|
1589
|
+
quotaUser?:
|
|
1590
|
+
string;
|
|
1158
1591
|
/**
|
|
1159
1592
|
* Optional. A request ID. Specify a unique request ID to allow the server to ignore the request if it has completed. The server will ignore subsequent requests that provide a
|
|
1160
1593
|
* duplicate request ID for at least 60 minutes after the first request.For example, if an initial request times out, followed by another request with the same request ID, the
|
|
1161
1594
|
* server ignores the second request to prevent the creation of duplicate commitments.The request ID must be a valid UUID
|
|
1162
1595
|
* (https://en.wikipedia.org/wiki/Universally_unique_identifier#Format) A zero UUID (00000000-0000-0000-0000-000000000000) is not supported.
|
|
1163
1596
|
*/
|
|
1164
|
-
requestId?:
|
|
1597
|
+
requestId?:
|
|
1598
|
+
string;
|
|
1165
1599
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1166
|
-
upload_protocol?:
|
|
1600
|
+
upload_protocol?:
|
|
1601
|
+
string;
|
|
1167
1602
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1168
|
-
uploadType?:
|
|
1603
|
+
uploadType?:
|
|
1604
|
+
string;
|
|
1169
1605
|
}): Request<Operation>;
|
|
1170
1606
|
/** Gets details of a single backup. */
|
|
1171
1607
|
get(request?: {
|
|
1172
1608
|
/** V1 error format. */
|
|
1173
|
-
"$.xgafv"?:
|
|
1609
|
+
"$.xgafv"?:
|
|
1610
|
+
string;
|
|
1174
1611
|
/** OAuth access token. */
|
|
1175
|
-
access_token?:
|
|
1612
|
+
access_token?:
|
|
1613
|
+
string;
|
|
1176
1614
|
/** Data format for response. */
|
|
1177
|
-
alt?:
|
|
1615
|
+
alt?:
|
|
1616
|
+
string;
|
|
1178
1617
|
/** JSONP */
|
|
1179
|
-
callback?:
|
|
1618
|
+
callback?:
|
|
1619
|
+
string;
|
|
1180
1620
|
/** Selector specifying which fields to include in a partial response. */
|
|
1181
|
-
fields?:
|
|
1621
|
+
fields?:
|
|
1622
|
+
string;
|
|
1182
1623
|
/** 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. */
|
|
1183
|
-
key?:
|
|
1624
|
+
key?:
|
|
1625
|
+
string;
|
|
1184
1626
|
/**
|
|
1185
1627
|
* Required. The relative resource name of the backup to retrieve, in the following
|
|
1186
1628
|
* form:projects/{project_number}/locations/{location_id}/services/{service_id}/backups/{backup_id}.
|
|
1187
1629
|
*/
|
|
1188
|
-
name:
|
|
1630
|
+
name:
|
|
1631
|
+
string;
|
|
1189
1632
|
/** OAuth 2.0 token for the current user. */
|
|
1190
|
-
oauth_token?:
|
|
1633
|
+
oauth_token?:
|
|
1634
|
+
string;
|
|
1191
1635
|
/** Returns response with indentations and line breaks. */
|
|
1192
|
-
prettyPrint?:
|
|
1636
|
+
prettyPrint?:
|
|
1637
|
+
boolean;
|
|
1193
1638
|
/** 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. */
|
|
1194
|
-
quotaUser?:
|
|
1639
|
+
quotaUser?:
|
|
1640
|
+
string;
|
|
1195
1641
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1196
|
-
upload_protocol?:
|
|
1642
|
+
upload_protocol?:
|
|
1643
|
+
string;
|
|
1197
1644
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1198
|
-
uploadType?:
|
|
1645
|
+
uploadType?:
|
|
1646
|
+
string;
|
|
1199
1647
|
}): Request<Backup>;
|
|
1200
1648
|
/** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
|
|
1201
1649
|
getIamPolicy(request?: {
|
|
1202
1650
|
/** V1 error format. */
|
|
1203
|
-
"$.xgafv"?:
|
|
1651
|
+
"$.xgafv"?:
|
|
1652
|
+
string;
|
|
1204
1653
|
/** OAuth access token. */
|
|
1205
|
-
access_token?:
|
|
1654
|
+
access_token?:
|
|
1655
|
+
string;
|
|
1206
1656
|
/** Data format for response. */
|
|
1207
|
-
alt?:
|
|
1657
|
+
alt?:
|
|
1658
|
+
string;
|
|
1208
1659
|
/** JSONP */
|
|
1209
|
-
callback?:
|
|
1660
|
+
callback?:
|
|
1661
|
+
string;
|
|
1210
1662
|
/** Selector specifying which fields to include in a partial response. */
|
|
1211
|
-
fields?:
|
|
1663
|
+
fields?:
|
|
1664
|
+
string;
|
|
1212
1665
|
/** 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. */
|
|
1213
|
-
key?:
|
|
1666
|
+
key?:
|
|
1667
|
+
string;
|
|
1214
1668
|
/** OAuth 2.0 token for the current user. */
|
|
1215
|
-
oauth_token?:
|
|
1669
|
+
oauth_token?:
|
|
1670
|
+
string;
|
|
1216
1671
|
/**
|
|
1217
1672
|
* Optional. The maximum policy version that will be used to format the policy.Valid values are 0, 1, and 3. Requests specifying an invalid value will be rejected.Requests for
|
|
1218
1673
|
* policies with any conditional role bindings must specify version 3. Policies with no conditional role bindings may specify any valid value or leave the field unset.The policy in
|
|
@@ -1220,94 +1675,128 @@ declare namespace gapi.client {
|
|
|
1220
1675
|
* role bindings, the response uses version 1.To learn which resources support conditions in their IAM policies, see the IAM documentation
|
|
1221
1676
|
* (https://cloud.google.com/iam/help/conditions/resource-policies).
|
|
1222
1677
|
*/
|
|
1223
|
-
"options.requestedPolicyVersion"?:
|
|
1678
|
+
"options.requestedPolicyVersion"?:
|
|
1679
|
+
number;
|
|
1224
1680
|
/** Returns response with indentations and line breaks. */
|
|
1225
|
-
prettyPrint?:
|
|
1681
|
+
prettyPrint?:
|
|
1682
|
+
boolean;
|
|
1226
1683
|
/** 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. */
|
|
1227
|
-
quotaUser?:
|
|
1684
|
+
quotaUser?:
|
|
1685
|
+
string;
|
|
1228
1686
|
/**
|
|
1229
1687
|
* REQUIRED: The resource for which the policy is being requested. See Resource names (https://cloud.google.com/apis/design/resource_names) for the appropriate value for this
|
|
1230
1688
|
* field.
|
|
1231
1689
|
*/
|
|
1232
|
-
resource:
|
|
1690
|
+
resource:
|
|
1691
|
+
string;
|
|
1233
1692
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1234
|
-
upload_protocol?:
|
|
1693
|
+
upload_protocol?:
|
|
1694
|
+
string;
|
|
1235
1695
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1236
|
-
uploadType?:
|
|
1696
|
+
uploadType?:
|
|
1697
|
+
string;
|
|
1237
1698
|
}): Request<Policy>;
|
|
1238
1699
|
/** Lists backups in a service. */
|
|
1239
1700
|
list(request?: {
|
|
1240
1701
|
/** V1 error format. */
|
|
1241
|
-
"$.xgafv"?:
|
|
1702
|
+
"$.xgafv"?:
|
|
1703
|
+
string;
|
|
1242
1704
|
/** OAuth access token. */
|
|
1243
|
-
access_token?:
|
|
1705
|
+
access_token?:
|
|
1706
|
+
string;
|
|
1244
1707
|
/** Data format for response. */
|
|
1245
|
-
alt?:
|
|
1708
|
+
alt?:
|
|
1709
|
+
string;
|
|
1246
1710
|
/** JSONP */
|
|
1247
|
-
callback?:
|
|
1711
|
+
callback?:
|
|
1712
|
+
string;
|
|
1248
1713
|
/** Selector specifying which fields to include in a partial response. */
|
|
1249
|
-
fields?:
|
|
1714
|
+
fields?:
|
|
1715
|
+
string;
|
|
1250
1716
|
/** Optional. The filter to apply to list results. */
|
|
1251
|
-
filter?:
|
|
1717
|
+
filter?:
|
|
1718
|
+
string;
|
|
1252
1719
|
/** 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. */
|
|
1253
|
-
key?:
|
|
1720
|
+
key?:
|
|
1721
|
+
string;
|
|
1254
1722
|
/** OAuth 2.0 token for the current user. */
|
|
1255
|
-
oauth_token?:
|
|
1723
|
+
oauth_token?:
|
|
1724
|
+
string;
|
|
1256
1725
|
/**
|
|
1257
1726
|
* Optional. Specify the ordering of results as described in Sorting Order (https://cloud.google.com/apis/design/design_patterns#sorting_order). If not specified, the results will
|
|
1258
1727
|
* be sorted in the default order.
|
|
1259
1728
|
*/
|
|
1260
|
-
orderBy?:
|
|
1729
|
+
orderBy?:
|
|
1730
|
+
string;
|
|
1261
1731
|
/**
|
|
1262
1732
|
* Optional. The maximum number of backups to return. The response may contain less than the maximum number. If unspecified, no more than 500 backups are returned. The maximum
|
|
1263
1733
|
* value is 1000; values above 1000 are changed to 1000.
|
|
1264
1734
|
*/
|
|
1265
|
-
pageSize?:
|
|
1735
|
+
pageSize?:
|
|
1736
|
+
number;
|
|
1266
1737
|
/**
|
|
1267
1738
|
* Optional. A page token, received from a previous DataprocMetastore.ListBackups call. Provide this token to retrieve the subsequent page.To retrieve the first page, supply an
|
|
1268
1739
|
* empty page token.When paginating, other parameters provided to DataprocMetastore.ListBackups must match the call that provided the page token.
|
|
1269
1740
|
*/
|
|
1270
|
-
pageToken?:
|
|
1741
|
+
pageToken?:
|
|
1742
|
+
string;
|
|
1271
1743
|
/** Required. The relative resource name of the service whose backups to list, in the following form:projects/{project_number}/locations/{location_id}/services/{service_id}/backups. */
|
|
1272
|
-
parent:
|
|
1744
|
+
parent:
|
|
1745
|
+
string;
|
|
1273
1746
|
/** Returns response with indentations and line breaks. */
|
|
1274
|
-
prettyPrint?:
|
|
1747
|
+
prettyPrint?:
|
|
1748
|
+
boolean;
|
|
1275
1749
|
/** 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. */
|
|
1276
|
-
quotaUser?:
|
|
1750
|
+
quotaUser?:
|
|
1751
|
+
string;
|
|
1277
1752
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1278
|
-
upload_protocol?:
|
|
1753
|
+
upload_protocol?:
|
|
1754
|
+
string;
|
|
1279
1755
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1280
|
-
uploadType?:
|
|
1756
|
+
uploadType?:
|
|
1757
|
+
string;
|
|
1281
1758
|
}): Request<ListBackupsResponse>;
|
|
1282
1759
|
/** Sets the access control policy on the specified resource. Replaces any existing policy.Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED errors. */
|
|
1283
1760
|
setIamPolicy(request: {
|
|
1284
1761
|
/** V1 error format. */
|
|
1285
|
-
"$.xgafv"?:
|
|
1762
|
+
"$.xgafv"?:
|
|
1763
|
+
string;
|
|
1286
1764
|
/** OAuth access token. */
|
|
1287
|
-
access_token?:
|
|
1765
|
+
access_token?:
|
|
1766
|
+
string;
|
|
1288
1767
|
/** Data format for response. */
|
|
1289
|
-
alt?:
|
|
1768
|
+
alt?:
|
|
1769
|
+
string;
|
|
1290
1770
|
/** JSONP */
|
|
1291
|
-
callback?:
|
|
1771
|
+
callback?:
|
|
1772
|
+
string;
|
|
1292
1773
|
/** Selector specifying which fields to include in a partial response. */
|
|
1293
|
-
fields?:
|
|
1774
|
+
fields?:
|
|
1775
|
+
string;
|
|
1294
1776
|
/** 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. */
|
|
1295
|
-
key?:
|
|
1777
|
+
key?:
|
|
1778
|
+
string;
|
|
1296
1779
|
/** OAuth 2.0 token for the current user. */
|
|
1297
|
-
oauth_token?:
|
|
1780
|
+
oauth_token?:
|
|
1781
|
+
string;
|
|
1298
1782
|
/** Returns response with indentations and line breaks. */
|
|
1299
|
-
prettyPrint?:
|
|
1783
|
+
prettyPrint?:
|
|
1784
|
+
boolean;
|
|
1300
1785
|
/** 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. */
|
|
1301
|
-
quotaUser?:
|
|
1786
|
+
quotaUser?:
|
|
1787
|
+
string;
|
|
1302
1788
|
/**
|
|
1303
1789
|
* REQUIRED: The resource for which the policy is being specified. See Resource names (https://cloud.google.com/apis/design/resource_names) for the appropriate value for this
|
|
1304
1790
|
* field.
|
|
1305
1791
|
*/
|
|
1306
|
-
resource:
|
|
1792
|
+
resource:
|
|
1793
|
+
string;
|
|
1307
1794
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1308
|
-
upload_protocol?:
|
|
1795
|
+
upload_protocol?:
|
|
1796
|
+
string;
|
|
1309
1797
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1310
|
-
uploadType?:
|
|
1798
|
+
uploadType?:
|
|
1799
|
+
string;
|
|
1311
1800
|
},
|
|
1312
1801
|
body: SetIamPolicyRequest): Request<Policy>;
|
|
1313
1802
|
}
|
|
@@ -1315,467 +1804,723 @@ declare namespace gapi.client {
|
|
|
1315
1804
|
/** Creates a new MetadataImport in a given project and location. */
|
|
1316
1805
|
create(request: {
|
|
1317
1806
|
/** V1 error format. */
|
|
1318
|
-
"$.xgafv"?:
|
|
1807
|
+
"$.xgafv"?:
|
|
1808
|
+
string;
|
|
1319
1809
|
/** OAuth access token. */
|
|
1320
|
-
access_token?:
|
|
1810
|
+
access_token?:
|
|
1811
|
+
string;
|
|
1321
1812
|
/** Data format for response. */
|
|
1322
|
-
alt?:
|
|
1813
|
+
alt?:
|
|
1814
|
+
string;
|
|
1323
1815
|
/** JSONP */
|
|
1324
|
-
callback?:
|
|
1816
|
+
callback?:
|
|
1817
|
+
string;
|
|
1325
1818
|
/** Selector specifying which fields to include in a partial response. */
|
|
1326
|
-
fields?:
|
|
1819
|
+
fields?:
|
|
1820
|
+
string;
|
|
1327
1821
|
/** 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. */
|
|
1328
|
-
key?:
|
|
1822
|
+
key?:
|
|
1823
|
+
string;
|
|
1329
1824
|
/**
|
|
1330
1825
|
* Required. The ID of the metadata import, which is used as the final component of the metadata import's name.This value must be between 1 and 64 characters long, begin with a
|
|
1331
1826
|
* letter, end with a letter or number, and consist of alpha-numeric ASCII characters or hyphens.
|
|
1332
1827
|
*/
|
|
1333
|
-
metadataImportId?:
|
|
1828
|
+
metadataImportId?:
|
|
1829
|
+
string;
|
|
1334
1830
|
/** OAuth 2.0 token for the current user. */
|
|
1335
|
-
oauth_token?:
|
|
1831
|
+
oauth_token?:
|
|
1832
|
+
string;
|
|
1336
1833
|
/**
|
|
1337
1834
|
* Required. The relative resource name of the service in which to create a metastore import, in the following
|
|
1338
1835
|
* form:projects/{project_number}/locations/{location_id}/services/{service_id}.
|
|
1339
1836
|
*/
|
|
1340
|
-
parent:
|
|
1837
|
+
parent:
|
|
1838
|
+
string;
|
|
1341
1839
|
/** Returns response with indentations and line breaks. */
|
|
1342
|
-
prettyPrint?:
|
|
1840
|
+
prettyPrint?:
|
|
1841
|
+
boolean;
|
|
1343
1842
|
/** 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. */
|
|
1344
|
-
quotaUser?:
|
|
1843
|
+
quotaUser?:
|
|
1844
|
+
string;
|
|
1345
1845
|
/**
|
|
1346
1846
|
* Optional. A request ID. Specify a unique request ID to allow the server to ignore the request if it has completed. The server will ignore subsequent requests that provide a
|
|
1347
1847
|
* duplicate request ID for at least 60 minutes after the first request.For example, if an initial request times out, followed by another request with the same request ID, the
|
|
1348
1848
|
* server ignores the second request to prevent the creation of duplicate commitments.The request ID must be a valid UUID
|
|
1349
1849
|
* (https://en.wikipedia.org/wiki/Universally_unique_identifier#Format) A zero UUID (00000000-0000-0000-0000-000000000000) is not supported.
|
|
1350
1850
|
*/
|
|
1351
|
-
requestId?:
|
|
1851
|
+
requestId?:
|
|
1852
|
+
string;
|
|
1352
1853
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1353
|
-
upload_protocol?:
|
|
1854
|
+
upload_protocol?:
|
|
1855
|
+
string;
|
|
1354
1856
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1355
|
-
uploadType?:
|
|
1857
|
+
uploadType?:
|
|
1858
|
+
string;
|
|
1356
1859
|
/** Request body */
|
|
1357
|
-
resource:
|
|
1860
|
+
resource:
|
|
1861
|
+
MetadataImport;
|
|
1358
1862
|
}): Request<Operation>;
|
|
1359
1863
|
create(request: {
|
|
1360
1864
|
/** V1 error format. */
|
|
1361
|
-
"$.xgafv"?:
|
|
1865
|
+
"$.xgafv"?:
|
|
1866
|
+
string;
|
|
1362
1867
|
/** OAuth access token. */
|
|
1363
|
-
access_token?:
|
|
1868
|
+
access_token?:
|
|
1869
|
+
string;
|
|
1364
1870
|
/** Data format for response. */
|
|
1365
|
-
alt?:
|
|
1871
|
+
alt?:
|
|
1872
|
+
string;
|
|
1366
1873
|
/** JSONP */
|
|
1367
|
-
callback?:
|
|
1874
|
+
callback?:
|
|
1875
|
+
string;
|
|
1368
1876
|
/** Selector specifying which fields to include in a partial response. */
|
|
1369
|
-
fields?:
|
|
1877
|
+
fields?:
|
|
1878
|
+
string;
|
|
1370
1879
|
/** 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. */
|
|
1371
|
-
key?:
|
|
1880
|
+
key?:
|
|
1881
|
+
string;
|
|
1372
1882
|
/**
|
|
1373
1883
|
* Required. The ID of the metadata import, which is used as the final component of the metadata import's name.This value must be between 1 and 64 characters long, begin with a
|
|
1374
1884
|
* letter, end with a letter or number, and consist of alpha-numeric ASCII characters or hyphens.
|
|
1375
1885
|
*/
|
|
1376
|
-
metadataImportId?:
|
|
1886
|
+
metadataImportId?:
|
|
1887
|
+
string;
|
|
1377
1888
|
/** OAuth 2.0 token for the current user. */
|
|
1378
|
-
oauth_token?:
|
|
1889
|
+
oauth_token?:
|
|
1890
|
+
string;
|
|
1379
1891
|
/**
|
|
1380
1892
|
* Required. The relative resource name of the service in which to create a metastore import, in the following
|
|
1381
1893
|
* form:projects/{project_number}/locations/{location_id}/services/{service_id}.
|
|
1382
1894
|
*/
|
|
1383
|
-
parent:
|
|
1895
|
+
parent:
|
|
1896
|
+
string;
|
|
1384
1897
|
/** Returns response with indentations and line breaks. */
|
|
1385
|
-
prettyPrint?:
|
|
1898
|
+
prettyPrint?:
|
|
1899
|
+
boolean;
|
|
1386
1900
|
/** 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. */
|
|
1387
|
-
quotaUser?:
|
|
1901
|
+
quotaUser?:
|
|
1902
|
+
string;
|
|
1388
1903
|
/**
|
|
1389
1904
|
* Optional. A request ID. Specify a unique request ID to allow the server to ignore the request if it has completed. The server will ignore subsequent requests that provide a
|
|
1390
1905
|
* duplicate request ID for at least 60 minutes after the first request.For example, if an initial request times out, followed by another request with the same request ID, the
|
|
1391
1906
|
* server ignores the second request to prevent the creation of duplicate commitments.The request ID must be a valid UUID
|
|
1392
1907
|
* (https://en.wikipedia.org/wiki/Universally_unique_identifier#Format) A zero UUID (00000000-0000-0000-0000-000000000000) is not supported.
|
|
1393
1908
|
*/
|
|
1394
|
-
requestId?:
|
|
1909
|
+
requestId?:
|
|
1910
|
+
string;
|
|
1395
1911
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1396
|
-
upload_protocol?:
|
|
1912
|
+
upload_protocol?:
|
|
1913
|
+
string;
|
|
1397
1914
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1398
|
-
uploadType?:
|
|
1915
|
+
uploadType?:
|
|
1916
|
+
string;
|
|
1399
1917
|
},
|
|
1400
1918
|
body: MetadataImport): Request<Operation>;
|
|
1401
1919
|
/** Gets details of a single import. */
|
|
1402
1920
|
get(request?: {
|
|
1403
1921
|
/** V1 error format. */
|
|
1404
|
-
"$.xgafv"?:
|
|
1922
|
+
"$.xgafv"?:
|
|
1923
|
+
string;
|
|
1405
1924
|
/** OAuth access token. */
|
|
1406
|
-
access_token?:
|
|
1925
|
+
access_token?:
|
|
1926
|
+
string;
|
|
1407
1927
|
/** Data format for response. */
|
|
1408
|
-
alt?:
|
|
1928
|
+
alt?:
|
|
1929
|
+
string;
|
|
1409
1930
|
/** JSONP */
|
|
1410
|
-
callback?:
|
|
1931
|
+
callback?:
|
|
1932
|
+
string;
|
|
1411
1933
|
/** Selector specifying which fields to include in a partial response. */
|
|
1412
|
-
fields?:
|
|
1934
|
+
fields?:
|
|
1935
|
+
string;
|
|
1413
1936
|
/** 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. */
|
|
1414
|
-
key?:
|
|
1937
|
+
key?:
|
|
1938
|
+
string;
|
|
1415
1939
|
/**
|
|
1416
1940
|
* Required. The relative resource name of the metadata import to retrieve, in the following
|
|
1417
1941
|
* form:projects/{project_number}/locations/{location_id}/services/{service_id}/metadataImports/{import_id}.
|
|
1418
1942
|
*/
|
|
1419
|
-
name:
|
|
1943
|
+
name:
|
|
1944
|
+
string;
|
|
1420
1945
|
/** OAuth 2.0 token for the current user. */
|
|
1421
|
-
oauth_token?:
|
|
1946
|
+
oauth_token?:
|
|
1947
|
+
string;
|
|
1422
1948
|
/** Returns response with indentations and line breaks. */
|
|
1423
|
-
prettyPrint?:
|
|
1949
|
+
prettyPrint?:
|
|
1950
|
+
boolean;
|
|
1424
1951
|
/** 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. */
|
|
1425
|
-
quotaUser?:
|
|
1952
|
+
quotaUser?:
|
|
1953
|
+
string;
|
|
1426
1954
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1427
|
-
upload_protocol?:
|
|
1955
|
+
upload_protocol?:
|
|
1956
|
+
string;
|
|
1428
1957
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1429
|
-
uploadType?:
|
|
1958
|
+
uploadType?:
|
|
1959
|
+
string;
|
|
1430
1960
|
}): Request<MetadataImport>;
|
|
1431
1961
|
/** Lists imports in a service. */
|
|
1432
1962
|
list(request?: {
|
|
1433
1963
|
/** V1 error format. */
|
|
1434
|
-
"$.xgafv"?:
|
|
1964
|
+
"$.xgafv"?:
|
|
1965
|
+
string;
|
|
1435
1966
|
/** OAuth access token. */
|
|
1436
|
-
access_token?:
|
|
1967
|
+
access_token?:
|
|
1968
|
+
string;
|
|
1437
1969
|
/** Data format for response. */
|
|
1438
|
-
alt?:
|
|
1970
|
+
alt?:
|
|
1971
|
+
string;
|
|
1439
1972
|
/** JSONP */
|
|
1440
|
-
callback?:
|
|
1973
|
+
callback?:
|
|
1974
|
+
string;
|
|
1441
1975
|
/** Selector specifying which fields to include in a partial response. */
|
|
1442
|
-
fields?:
|
|
1976
|
+
fields?:
|
|
1977
|
+
string;
|
|
1443
1978
|
/** Optional. The filter to apply to list results. */
|
|
1444
|
-
filter?:
|
|
1979
|
+
filter?:
|
|
1980
|
+
string;
|
|
1445
1981
|
/** 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. */
|
|
1446
|
-
key?:
|
|
1982
|
+
key?:
|
|
1983
|
+
string;
|
|
1447
1984
|
/** OAuth 2.0 token for the current user. */
|
|
1448
|
-
oauth_token?:
|
|
1985
|
+
oauth_token?:
|
|
1986
|
+
string;
|
|
1449
1987
|
/**
|
|
1450
1988
|
* Optional. Specify the ordering of results as described in Sorting Order (https://cloud.google.com/apis/design/design_patterns#sorting_order). If not specified, the results will
|
|
1451
1989
|
* be sorted in the default order.
|
|
1452
1990
|
*/
|
|
1453
|
-
orderBy?:
|
|
1991
|
+
orderBy?:
|
|
1992
|
+
string;
|
|
1454
1993
|
/**
|
|
1455
1994
|
* Optional. The maximum number of imports to return. The response may contain less than the maximum number. If unspecified, no more than 500 imports are returned. The maximum
|
|
1456
1995
|
* value is 1000; values above 1000 are changed to 1000.
|
|
1457
1996
|
*/
|
|
1458
|
-
pageSize?:
|
|
1997
|
+
pageSize?:
|
|
1998
|
+
number;
|
|
1459
1999
|
/**
|
|
1460
2000
|
* Optional. A page token, received from a previous DataprocMetastore.ListServices call. Provide this token to retrieve the subsequent page.To retrieve the first page, supply an
|
|
1461
2001
|
* empty page token.When paginating, other parameters provided to DataprocMetastore.ListServices must match the call that provided the page token.
|
|
1462
2002
|
*/
|
|
1463
|
-
pageToken?:
|
|
2003
|
+
pageToken?:
|
|
2004
|
+
string;
|
|
1464
2005
|
/**
|
|
1465
2006
|
* Required. The relative resource name of the service whose metadata imports to list, in the following
|
|
1466
2007
|
* form:projects/{project_number}/locations/{location_id}/services/{service_id}/metadataImports.
|
|
1467
2008
|
*/
|
|
1468
|
-
parent:
|
|
2009
|
+
parent:
|
|
2010
|
+
string;
|
|
1469
2011
|
/** Returns response with indentations and line breaks. */
|
|
1470
|
-
prettyPrint?:
|
|
2012
|
+
prettyPrint?:
|
|
2013
|
+
boolean;
|
|
1471
2014
|
/** 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. */
|
|
1472
|
-
quotaUser?:
|
|
2015
|
+
quotaUser?:
|
|
2016
|
+
string;
|
|
1473
2017
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1474
|
-
upload_protocol?:
|
|
2018
|
+
upload_protocol?:
|
|
2019
|
+
string;
|
|
1475
2020
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1476
|
-
uploadType?:
|
|
2021
|
+
uploadType?:
|
|
2022
|
+
string;
|
|
1477
2023
|
}): Request<ListMetadataImportsResponse>;
|
|
1478
2024
|
/** Updates a single import. Only the description field of MetadataImport is supported to be updated. */
|
|
1479
2025
|
patch(request: {
|
|
1480
2026
|
/** V1 error format. */
|
|
1481
|
-
"$.xgafv"?:
|
|
2027
|
+
"$.xgafv"?:
|
|
2028
|
+
string;
|
|
1482
2029
|
/** OAuth access token. */
|
|
1483
|
-
access_token?:
|
|
2030
|
+
access_token?:
|
|
2031
|
+
string;
|
|
1484
2032
|
/** Data format for response. */
|
|
1485
|
-
alt?:
|
|
2033
|
+
alt?:
|
|
2034
|
+
string;
|
|
1486
2035
|
/** JSONP */
|
|
1487
|
-
callback?:
|
|
2036
|
+
callback?:
|
|
2037
|
+
string;
|
|
1488
2038
|
/** Selector specifying which fields to include in a partial response. */
|
|
1489
|
-
fields?:
|
|
2039
|
+
fields?:
|
|
2040
|
+
string;
|
|
1490
2041
|
/** 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. */
|
|
1491
|
-
key?:
|
|
2042
|
+
key?:
|
|
2043
|
+
string;
|
|
1492
2044
|
/**
|
|
1493
2045
|
* Immutable. The relative resource name of the metadata import, of the
|
|
1494
2046
|
* form:projects/{project_number}/locations/{location_id}/services/{service_id}/metadataImports/{metadata_import_id}.
|
|
1495
2047
|
*/
|
|
1496
|
-
name:
|
|
2048
|
+
name:
|
|
2049
|
+
string;
|
|
1497
2050
|
/** OAuth 2.0 token for the current user. */
|
|
1498
|
-
oauth_token?:
|
|
2051
|
+
oauth_token?:
|
|
2052
|
+
string;
|
|
1499
2053
|
/** Returns response with indentations and line breaks. */
|
|
1500
|
-
prettyPrint?:
|
|
2054
|
+
prettyPrint?:
|
|
2055
|
+
boolean;
|
|
1501
2056
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1502
|
-
quotaUser?:
|
|
2057
|
+
quotaUser?:
|
|
2058
|
+
string;
|
|
1503
2059
|
/**
|
|
1504
2060
|
* Optional. A request ID. Specify a unique request ID to allow the server to ignore the request if it has completed. The server will ignore subsequent requests that provide a
|
|
1505
2061
|
* duplicate request ID for at least 60 minutes after the first request.For example, if an initial request times out, followed by another request with the same request ID, the
|
|
1506
2062
|
* server ignores the second request to prevent the creation of duplicate commitments.The request ID must be a valid UUID
|
|
1507
2063
|
* (https://en.wikipedia.org/wiki/Universally_unique_identifier#Format) A zero UUID (00000000-0000-0000-0000-000000000000) is not supported.
|
|
1508
2064
|
*/
|
|
1509
|
-
requestId?:
|
|
2065
|
+
requestId?:
|
|
2066
|
+
string;
|
|
1510
2067
|
/**
|
|
1511
2068
|
* Required. A field mask used to specify the fields to be overwritten in the metadata import resource by the update. Fields specified in the update_mask are relative to the
|
|
1512
2069
|
* resource (not to the full request). A field is overwritten if it is in the mask.
|
|
1513
2070
|
*/
|
|
1514
|
-
updateMask?:
|
|
2071
|
+
updateMask?:
|
|
2072
|
+
string;
|
|
1515
2073
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1516
|
-
upload_protocol?:
|
|
2074
|
+
upload_protocol?:
|
|
2075
|
+
string;
|
|
1517
2076
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1518
|
-
uploadType?:
|
|
2077
|
+
uploadType?:
|
|
2078
|
+
string;
|
|
1519
2079
|
/** Request body */
|
|
1520
|
-
resource:
|
|
2080
|
+
resource:
|
|
2081
|
+
MetadataImport;
|
|
1521
2082
|
}): Request<Operation>;
|
|
1522
2083
|
patch(request: {
|
|
1523
2084
|
/** V1 error format. */
|
|
1524
|
-
"$.xgafv"?:
|
|
2085
|
+
"$.xgafv"?:
|
|
2086
|
+
string;
|
|
1525
2087
|
/** OAuth access token. */
|
|
1526
|
-
access_token?:
|
|
2088
|
+
access_token?:
|
|
2089
|
+
string;
|
|
1527
2090
|
/** Data format for response. */
|
|
1528
|
-
alt?:
|
|
2091
|
+
alt?:
|
|
2092
|
+
string;
|
|
1529
2093
|
/** JSONP */
|
|
1530
|
-
callback?:
|
|
2094
|
+
callback?:
|
|
2095
|
+
string;
|
|
1531
2096
|
/** Selector specifying which fields to include in a partial response. */
|
|
1532
|
-
fields?:
|
|
2097
|
+
fields?:
|
|
2098
|
+
string;
|
|
1533
2099
|
/** 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. */
|
|
1534
|
-
key?:
|
|
2100
|
+
key?:
|
|
2101
|
+
string;
|
|
1535
2102
|
/**
|
|
1536
2103
|
* Immutable. The relative resource name of the metadata import, of the
|
|
1537
2104
|
* form:projects/{project_number}/locations/{location_id}/services/{service_id}/metadataImports/{metadata_import_id}.
|
|
1538
2105
|
*/
|
|
1539
|
-
name:
|
|
2106
|
+
name:
|
|
2107
|
+
string;
|
|
1540
2108
|
/** OAuth 2.0 token for the current user. */
|
|
1541
|
-
oauth_token?:
|
|
2109
|
+
oauth_token?:
|
|
2110
|
+
string;
|
|
1542
2111
|
/** Returns response with indentations and line breaks. */
|
|
1543
|
-
prettyPrint?:
|
|
2112
|
+
prettyPrint?:
|
|
2113
|
+
boolean;
|
|
1544
2114
|
/** 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. */
|
|
1545
|
-
quotaUser?:
|
|
2115
|
+
quotaUser?:
|
|
2116
|
+
string;
|
|
1546
2117
|
/**
|
|
1547
2118
|
* Optional. A request ID. Specify a unique request ID to allow the server to ignore the request if it has completed. The server will ignore subsequent requests that provide a
|
|
1548
2119
|
* duplicate request ID for at least 60 minutes after the first request.For example, if an initial request times out, followed by another request with the same request ID, the
|
|
1549
2120
|
* server ignores the second request to prevent the creation of duplicate commitments.The request ID must be a valid UUID
|
|
1550
2121
|
* (https://en.wikipedia.org/wiki/Universally_unique_identifier#Format) A zero UUID (00000000-0000-0000-0000-000000000000) is not supported.
|
|
1551
2122
|
*/
|
|
1552
|
-
requestId?:
|
|
2123
|
+
requestId?:
|
|
2124
|
+
string;
|
|
1553
2125
|
/**
|
|
1554
2126
|
* Required. A field mask used to specify the fields to be overwritten in the metadata import resource by the update. Fields specified in the update_mask are relative to the
|
|
1555
2127
|
* resource (not to the full request). A field is overwritten if it is in the mask.
|
|
1556
2128
|
*/
|
|
1557
|
-
updateMask?:
|
|
2129
|
+
updateMask?:
|
|
2130
|
+
string;
|
|
1558
2131
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1559
|
-
upload_protocol?:
|
|
2132
|
+
upload_protocol?:
|
|
2133
|
+
string;
|
|
1560
2134
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1561
|
-
uploadType?:
|
|
2135
|
+
uploadType?:
|
|
2136
|
+
string;
|
|
1562
2137
|
},
|
|
1563
2138
|
body: MetadataImport): Request<Operation>;
|
|
1564
2139
|
}
|
|
1565
2140
|
interface ServicesResource {
|
|
2141
|
+
/**
|
|
2142
|
+
* Alter metadata resource location. The metadata resource can be a database, table, or partition. This functionality only updates the parent directory for the respective metadata
|
|
2143
|
+
* resource and does not transfer any existing data to the new location.
|
|
2144
|
+
*/
|
|
2145
|
+
alterLocation(request: {
|
|
2146
|
+
/** V1 error format. */
|
|
2147
|
+
"$.xgafv"?:
|
|
2148
|
+
string;
|
|
2149
|
+
/** OAuth access token. */
|
|
2150
|
+
access_token?:
|
|
2151
|
+
string;
|
|
2152
|
+
/** Data format for response. */
|
|
2153
|
+
alt?:
|
|
2154
|
+
string;
|
|
2155
|
+
/** JSONP */
|
|
2156
|
+
callback?:
|
|
2157
|
+
string;
|
|
2158
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2159
|
+
fields?:
|
|
2160
|
+
string;
|
|
2161
|
+
/** 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. */
|
|
2162
|
+
key?:
|
|
2163
|
+
string;
|
|
2164
|
+
/** OAuth 2.0 token for the current user. */
|
|
2165
|
+
oauth_token?:
|
|
2166
|
+
string;
|
|
2167
|
+
/** Returns response with indentations and line breaks. */
|
|
2168
|
+
prettyPrint?:
|
|
2169
|
+
boolean;
|
|
2170
|
+
/** 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. */
|
|
2171
|
+
quotaUser?:
|
|
2172
|
+
string;
|
|
2173
|
+
/** Required. The relative resource name of the metastore service to mutate metadata, in the following format:projects/{project_id}/locations/{location_id}/services/{service_id}. */
|
|
2174
|
+
service:
|
|
2175
|
+
string;
|
|
2176
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2177
|
+
upload_protocol?:
|
|
2178
|
+
string;
|
|
2179
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2180
|
+
uploadType?:
|
|
2181
|
+
string;
|
|
2182
|
+
/** Request body */
|
|
2183
|
+
resource:
|
|
2184
|
+
AlterMetadataResourceLocationRequest;
|
|
2185
|
+
}): Request<Operation>;
|
|
2186
|
+
alterLocation(request: {
|
|
2187
|
+
/** V1 error format. */
|
|
2188
|
+
"$.xgafv"?:
|
|
2189
|
+
string;
|
|
2190
|
+
/** OAuth access token. */
|
|
2191
|
+
access_token?:
|
|
2192
|
+
string;
|
|
2193
|
+
/** Data format for response. */
|
|
2194
|
+
alt?:
|
|
2195
|
+
string;
|
|
2196
|
+
/** JSONP */
|
|
2197
|
+
callback?:
|
|
2198
|
+
string;
|
|
2199
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2200
|
+
fields?:
|
|
2201
|
+
string;
|
|
2202
|
+
/** 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. */
|
|
2203
|
+
key?:
|
|
2204
|
+
string;
|
|
2205
|
+
/** OAuth 2.0 token for the current user. */
|
|
2206
|
+
oauth_token?:
|
|
2207
|
+
string;
|
|
2208
|
+
/** Returns response with indentations and line breaks. */
|
|
2209
|
+
prettyPrint?:
|
|
2210
|
+
boolean;
|
|
2211
|
+
/** 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. */
|
|
2212
|
+
quotaUser?:
|
|
2213
|
+
string;
|
|
2214
|
+
/** Required. The relative resource name of the metastore service to mutate metadata, in the following format:projects/{project_id}/locations/{location_id}/services/{service_id}. */
|
|
2215
|
+
service:
|
|
2216
|
+
string;
|
|
2217
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2218
|
+
upload_protocol?:
|
|
2219
|
+
string;
|
|
2220
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2221
|
+
uploadType?:
|
|
2222
|
+
string;
|
|
2223
|
+
},
|
|
2224
|
+
body: AlterMetadataResourceLocationRequest): Request<Operation>;
|
|
1566
2225
|
/** Creates a metastore service in a project and location. */
|
|
1567
2226
|
create(request: {
|
|
1568
2227
|
/** V1 error format. */
|
|
1569
|
-
"$.xgafv"?:
|
|
2228
|
+
"$.xgafv"?:
|
|
2229
|
+
string;
|
|
1570
2230
|
/** OAuth access token. */
|
|
1571
|
-
access_token?:
|
|
2231
|
+
access_token?:
|
|
2232
|
+
string;
|
|
1572
2233
|
/** Data format for response. */
|
|
1573
|
-
alt?:
|
|
2234
|
+
alt?:
|
|
2235
|
+
string;
|
|
1574
2236
|
/** JSONP */
|
|
1575
|
-
callback?:
|
|
2237
|
+
callback?:
|
|
2238
|
+
string;
|
|
1576
2239
|
/** Selector specifying which fields to include in a partial response. */
|
|
1577
|
-
fields?:
|
|
2240
|
+
fields?:
|
|
2241
|
+
string;
|
|
1578
2242
|
/** 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. */
|
|
1579
|
-
key?:
|
|
2243
|
+
key?:
|
|
2244
|
+
string;
|
|
1580
2245
|
/** OAuth 2.0 token for the current user. */
|
|
1581
|
-
oauth_token?:
|
|
2246
|
+
oauth_token?:
|
|
2247
|
+
string;
|
|
1582
2248
|
/** Required. The relative resource name of the location in which to create a metastore service, in the following form:projects/{project_number}/locations/{location_id}. */
|
|
1583
|
-
parent:
|
|
2249
|
+
parent:
|
|
2250
|
+
string;
|
|
1584
2251
|
/** Returns response with indentations and line breaks. */
|
|
1585
|
-
prettyPrint?:
|
|
2252
|
+
prettyPrint?:
|
|
2253
|
+
boolean;
|
|
1586
2254
|
/** 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. */
|
|
1587
|
-
quotaUser?:
|
|
2255
|
+
quotaUser?:
|
|
2256
|
+
string;
|
|
1588
2257
|
/**
|
|
1589
2258
|
* Optional. A request ID. Specify a unique request ID to allow the server to ignore the request if it has completed. The server will ignore subsequent requests that provide a
|
|
1590
2259
|
* duplicate request ID for at least 60 minutes after the first request.For example, if an initial request times out, followed by another request with the same request ID, the
|
|
1591
2260
|
* server ignores the second request to prevent the creation of duplicate commitments.The request ID must be a valid UUID
|
|
1592
2261
|
* (https://en.wikipedia.org/wiki/Universally_unique_identifier#Format) A zero UUID (00000000-0000-0000-0000-000000000000) is not supported.
|
|
1593
2262
|
*/
|
|
1594
|
-
requestId?:
|
|
2263
|
+
requestId?:
|
|
2264
|
+
string;
|
|
1595
2265
|
/**
|
|
1596
2266
|
* Required. The ID of the metastore service, which is used as the final component of the metastore service's name.This value must be between 2 and 63 characters long inclusive,
|
|
1597
2267
|
* begin with a letter, end with a letter or number, and consist of alpha-numeric ASCII characters or hyphens.
|
|
1598
2268
|
*/
|
|
1599
|
-
serviceId?:
|
|
2269
|
+
serviceId?:
|
|
2270
|
+
string;
|
|
1600
2271
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1601
|
-
upload_protocol?:
|
|
2272
|
+
upload_protocol?:
|
|
2273
|
+
string;
|
|
1602
2274
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1603
|
-
uploadType?:
|
|
2275
|
+
uploadType?:
|
|
2276
|
+
string;
|
|
1604
2277
|
/** Request body */
|
|
1605
|
-
resource:
|
|
2278
|
+
resource:
|
|
2279
|
+
Service;
|
|
1606
2280
|
}): Request<Operation>;
|
|
1607
2281
|
create(request: {
|
|
1608
2282
|
/** V1 error format. */
|
|
1609
|
-
"$.xgafv"?:
|
|
2283
|
+
"$.xgafv"?:
|
|
2284
|
+
string;
|
|
1610
2285
|
/** OAuth access token. */
|
|
1611
|
-
access_token?:
|
|
2286
|
+
access_token?:
|
|
2287
|
+
string;
|
|
1612
2288
|
/** Data format for response. */
|
|
1613
|
-
alt?:
|
|
2289
|
+
alt?:
|
|
2290
|
+
string;
|
|
1614
2291
|
/** JSONP */
|
|
1615
|
-
callback?:
|
|
2292
|
+
callback?:
|
|
2293
|
+
string;
|
|
1616
2294
|
/** Selector specifying which fields to include in a partial response. */
|
|
1617
|
-
fields?:
|
|
2295
|
+
fields?:
|
|
2296
|
+
string;
|
|
1618
2297
|
/** 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. */
|
|
1619
|
-
key?:
|
|
2298
|
+
key?:
|
|
2299
|
+
string;
|
|
1620
2300
|
/** OAuth 2.0 token for the current user. */
|
|
1621
|
-
oauth_token?:
|
|
2301
|
+
oauth_token?:
|
|
2302
|
+
string;
|
|
1622
2303
|
/** Required. The relative resource name of the location in which to create a metastore service, in the following form:projects/{project_number}/locations/{location_id}. */
|
|
1623
|
-
parent:
|
|
2304
|
+
parent:
|
|
2305
|
+
string;
|
|
1624
2306
|
/** Returns response with indentations and line breaks. */
|
|
1625
|
-
prettyPrint?:
|
|
2307
|
+
prettyPrint?:
|
|
2308
|
+
boolean;
|
|
1626
2309
|
/** 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. */
|
|
1627
|
-
quotaUser?:
|
|
2310
|
+
quotaUser?:
|
|
2311
|
+
string;
|
|
1628
2312
|
/**
|
|
1629
2313
|
* Optional. A request ID. Specify a unique request ID to allow the server to ignore the request if it has completed. The server will ignore subsequent requests that provide a
|
|
1630
2314
|
* duplicate request ID for at least 60 minutes after the first request.For example, if an initial request times out, followed by another request with the same request ID, the
|
|
1631
2315
|
* server ignores the second request to prevent the creation of duplicate commitments.The request ID must be a valid UUID
|
|
1632
2316
|
* (https://en.wikipedia.org/wiki/Universally_unique_identifier#Format) A zero UUID (00000000-0000-0000-0000-000000000000) is not supported.
|
|
1633
2317
|
*/
|
|
1634
|
-
requestId?:
|
|
2318
|
+
requestId?:
|
|
2319
|
+
string;
|
|
1635
2320
|
/**
|
|
1636
2321
|
* Required. The ID of the metastore service, which is used as the final component of the metastore service's name.This value must be between 2 and 63 characters long inclusive,
|
|
1637
2322
|
* begin with a letter, end with a letter or number, and consist of alpha-numeric ASCII characters or hyphens.
|
|
1638
2323
|
*/
|
|
1639
|
-
serviceId?:
|
|
2324
|
+
serviceId?:
|
|
2325
|
+
string;
|
|
1640
2326
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1641
|
-
upload_protocol?:
|
|
2327
|
+
upload_protocol?:
|
|
2328
|
+
string;
|
|
1642
2329
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1643
|
-
uploadType?:
|
|
2330
|
+
uploadType?:
|
|
2331
|
+
string;
|
|
1644
2332
|
},
|
|
1645
2333
|
body: Service): Request<Operation>;
|
|
1646
2334
|
/** Deletes a single service. */
|
|
1647
2335
|
delete(request?: {
|
|
1648
2336
|
/** V1 error format. */
|
|
1649
|
-
"$.xgafv"?:
|
|
2337
|
+
"$.xgafv"?:
|
|
2338
|
+
string;
|
|
1650
2339
|
/** OAuth access token. */
|
|
1651
|
-
access_token?:
|
|
2340
|
+
access_token?:
|
|
2341
|
+
string;
|
|
1652
2342
|
/** Data format for response. */
|
|
1653
|
-
alt?:
|
|
2343
|
+
alt?:
|
|
2344
|
+
string;
|
|
1654
2345
|
/** JSONP */
|
|
1655
|
-
callback?:
|
|
2346
|
+
callback?:
|
|
2347
|
+
string;
|
|
1656
2348
|
/** Selector specifying which fields to include in a partial response. */
|
|
1657
|
-
fields?:
|
|
2349
|
+
fields?:
|
|
2350
|
+
string;
|
|
1658
2351
|
/** 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. */
|
|
1659
|
-
key?:
|
|
2352
|
+
key?:
|
|
2353
|
+
string;
|
|
1660
2354
|
/** Required. The relative resource name of the metastore service to delete, in the following form:projects/{project_number}/locations/{location_id}/services/{service_id}. */
|
|
1661
|
-
name:
|
|
2355
|
+
name:
|
|
2356
|
+
string;
|
|
1662
2357
|
/** OAuth 2.0 token for the current user. */
|
|
1663
|
-
oauth_token?:
|
|
2358
|
+
oauth_token?:
|
|
2359
|
+
string;
|
|
1664
2360
|
/** Returns response with indentations and line breaks. */
|
|
1665
|
-
prettyPrint?:
|
|
2361
|
+
prettyPrint?:
|
|
2362
|
+
boolean;
|
|
1666
2363
|
/** 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. */
|
|
1667
|
-
quotaUser?:
|
|
2364
|
+
quotaUser?:
|
|
2365
|
+
string;
|
|
1668
2366
|
/**
|
|
1669
2367
|
* Optional. A request ID. Specify a unique request ID to allow the server to ignore the request if it has completed. The server will ignore subsequent requests that provide a
|
|
1670
2368
|
* duplicate request ID for at least 60 minutes after the first request.For example, if an initial request times out, followed by another request with the same request ID, the
|
|
1671
2369
|
* server ignores the second request to prevent the creation of duplicate commitments.The request ID must be a valid UUID
|
|
1672
2370
|
* (https://en.wikipedia.org/wiki/Universally_unique_identifier#Format) A zero UUID (00000000-0000-0000-0000-000000000000) is not supported.
|
|
1673
2371
|
*/
|
|
1674
|
-
requestId?:
|
|
2372
|
+
requestId?:
|
|
2373
|
+
string;
|
|
1675
2374
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1676
|
-
upload_protocol?:
|
|
2375
|
+
upload_protocol?:
|
|
2376
|
+
string;
|
|
1677
2377
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1678
|
-
uploadType?:
|
|
2378
|
+
uploadType?:
|
|
2379
|
+
string;
|
|
1679
2380
|
}): Request<Operation>;
|
|
1680
2381
|
/** Exports metadata from a service. */
|
|
1681
2382
|
exportMetadata(request: {
|
|
1682
2383
|
/** V1 error format. */
|
|
1683
|
-
"$.xgafv"?:
|
|
2384
|
+
"$.xgafv"?:
|
|
2385
|
+
string;
|
|
1684
2386
|
/** OAuth access token. */
|
|
1685
|
-
access_token?:
|
|
2387
|
+
access_token?:
|
|
2388
|
+
string;
|
|
1686
2389
|
/** Data format for response. */
|
|
1687
|
-
alt?:
|
|
2390
|
+
alt?:
|
|
2391
|
+
string;
|
|
1688
2392
|
/** JSONP */
|
|
1689
|
-
callback?:
|
|
2393
|
+
callback?:
|
|
2394
|
+
string;
|
|
1690
2395
|
/** Selector specifying which fields to include in a partial response. */
|
|
1691
|
-
fields?:
|
|
2396
|
+
fields?:
|
|
2397
|
+
string;
|
|
1692
2398
|
/** 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. */
|
|
1693
|
-
key?:
|
|
2399
|
+
key?:
|
|
2400
|
+
string;
|
|
1694
2401
|
/** OAuth 2.0 token for the current user. */
|
|
1695
|
-
oauth_token?:
|
|
2402
|
+
oauth_token?:
|
|
2403
|
+
string;
|
|
1696
2404
|
/** Returns response with indentations and line breaks. */
|
|
1697
|
-
prettyPrint?:
|
|
2405
|
+
prettyPrint?:
|
|
2406
|
+
boolean;
|
|
1698
2407
|
/** 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. */
|
|
1699
|
-
quotaUser?:
|
|
2408
|
+
quotaUser?:
|
|
2409
|
+
string;
|
|
1700
2410
|
/** Required. The relative resource name of the metastore service to run export, in the following form:projects/{project_id}/locations/{location_id}/services/{service_id}. */
|
|
1701
|
-
service:
|
|
2411
|
+
service:
|
|
2412
|
+
string;
|
|
1702
2413
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1703
|
-
upload_protocol?:
|
|
2414
|
+
upload_protocol?:
|
|
2415
|
+
string;
|
|
1704
2416
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1705
|
-
uploadType?:
|
|
2417
|
+
uploadType?:
|
|
2418
|
+
string;
|
|
1706
2419
|
/** Request body */
|
|
1707
|
-
resource:
|
|
2420
|
+
resource:
|
|
2421
|
+
ExportMetadataRequest;
|
|
1708
2422
|
}): Request<Operation>;
|
|
1709
2423
|
exportMetadata(request: {
|
|
1710
2424
|
/** V1 error format. */
|
|
1711
|
-
"$.xgafv"?:
|
|
2425
|
+
"$.xgafv"?:
|
|
2426
|
+
string;
|
|
1712
2427
|
/** OAuth access token. */
|
|
1713
|
-
access_token?:
|
|
2428
|
+
access_token?:
|
|
2429
|
+
string;
|
|
1714
2430
|
/** Data format for response. */
|
|
1715
|
-
alt?:
|
|
2431
|
+
alt?:
|
|
2432
|
+
string;
|
|
1716
2433
|
/** JSONP */
|
|
1717
|
-
callback?:
|
|
2434
|
+
callback?:
|
|
2435
|
+
string;
|
|
1718
2436
|
/** Selector specifying which fields to include in a partial response. */
|
|
1719
|
-
fields?:
|
|
2437
|
+
fields?:
|
|
2438
|
+
string;
|
|
1720
2439
|
/** 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. */
|
|
1721
|
-
key?:
|
|
2440
|
+
key?:
|
|
2441
|
+
string;
|
|
1722
2442
|
/** OAuth 2.0 token for the current user. */
|
|
1723
|
-
oauth_token?:
|
|
2443
|
+
oauth_token?:
|
|
2444
|
+
string;
|
|
1724
2445
|
/** Returns response with indentations and line breaks. */
|
|
1725
|
-
prettyPrint?:
|
|
2446
|
+
prettyPrint?:
|
|
2447
|
+
boolean;
|
|
1726
2448
|
/** 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. */
|
|
1727
|
-
quotaUser?:
|
|
2449
|
+
quotaUser?:
|
|
2450
|
+
string;
|
|
1728
2451
|
/** Required. The relative resource name of the metastore service to run export, in the following form:projects/{project_id}/locations/{location_id}/services/{service_id}. */
|
|
1729
|
-
service:
|
|
2452
|
+
service:
|
|
2453
|
+
string;
|
|
1730
2454
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1731
|
-
upload_protocol?:
|
|
2455
|
+
upload_protocol?:
|
|
2456
|
+
string;
|
|
1732
2457
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1733
|
-
uploadType?:
|
|
2458
|
+
uploadType?:
|
|
2459
|
+
string;
|
|
1734
2460
|
},
|
|
1735
2461
|
body: ExportMetadataRequest): Request<Operation>;
|
|
1736
2462
|
/** Gets the details of a single service. */
|
|
1737
2463
|
get(request?: {
|
|
1738
2464
|
/** V1 error format. */
|
|
1739
|
-
"$.xgafv"?:
|
|
2465
|
+
"$.xgafv"?:
|
|
2466
|
+
string;
|
|
1740
2467
|
/** OAuth access token. */
|
|
1741
|
-
access_token?:
|
|
2468
|
+
access_token?:
|
|
2469
|
+
string;
|
|
1742
2470
|
/** Data format for response. */
|
|
1743
|
-
alt?:
|
|
2471
|
+
alt?:
|
|
2472
|
+
string;
|
|
1744
2473
|
/** JSONP */
|
|
1745
|
-
callback?:
|
|
2474
|
+
callback?:
|
|
2475
|
+
string;
|
|
1746
2476
|
/** Selector specifying which fields to include in a partial response. */
|
|
1747
|
-
fields?:
|
|
2477
|
+
fields?:
|
|
2478
|
+
string;
|
|
1748
2479
|
/** 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. */
|
|
1749
|
-
key?:
|
|
2480
|
+
key?:
|
|
2481
|
+
string;
|
|
1750
2482
|
/** Required. The relative resource name of the metastore service to retrieve, in the following form:projects/{project_number}/locations/{location_id}/services/{service_id}. */
|
|
1751
|
-
name:
|
|
2483
|
+
name:
|
|
2484
|
+
string;
|
|
1752
2485
|
/** OAuth 2.0 token for the current user. */
|
|
1753
|
-
oauth_token?:
|
|
2486
|
+
oauth_token?:
|
|
2487
|
+
string;
|
|
1754
2488
|
/** Returns response with indentations and line breaks. */
|
|
1755
|
-
prettyPrint?:
|
|
2489
|
+
prettyPrint?:
|
|
2490
|
+
boolean;
|
|
1756
2491
|
/** 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. */
|
|
1757
|
-
quotaUser?:
|
|
2492
|
+
quotaUser?:
|
|
2493
|
+
string;
|
|
1758
2494
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1759
|
-
upload_protocol?:
|
|
2495
|
+
upload_protocol?:
|
|
2496
|
+
string;
|
|
1760
2497
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1761
|
-
uploadType?:
|
|
2498
|
+
uploadType?:
|
|
2499
|
+
string;
|
|
1762
2500
|
}): Request<Service>;
|
|
1763
2501
|
/** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
|
|
1764
2502
|
getIamPolicy(request?: {
|
|
1765
2503
|
/** V1 error format. */
|
|
1766
|
-
"$.xgafv"?:
|
|
2504
|
+
"$.xgafv"?:
|
|
2505
|
+
string;
|
|
1767
2506
|
/** OAuth access token. */
|
|
1768
|
-
access_token?:
|
|
2507
|
+
access_token?:
|
|
2508
|
+
string;
|
|
1769
2509
|
/** Data format for response. */
|
|
1770
|
-
alt?:
|
|
2510
|
+
alt?:
|
|
2511
|
+
string;
|
|
1771
2512
|
/** JSONP */
|
|
1772
|
-
callback?:
|
|
2513
|
+
callback?:
|
|
2514
|
+
string;
|
|
1773
2515
|
/** Selector specifying which fields to include in a partial response. */
|
|
1774
|
-
fields?:
|
|
2516
|
+
fields?:
|
|
2517
|
+
string;
|
|
1775
2518
|
/** 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. */
|
|
1776
|
-
key?:
|
|
2519
|
+
key?:
|
|
2520
|
+
string;
|
|
1777
2521
|
/** OAuth 2.0 token for the current user. */
|
|
1778
|
-
oauth_token?:
|
|
2522
|
+
oauth_token?:
|
|
2523
|
+
string;
|
|
1779
2524
|
/**
|
|
1780
2525
|
* Optional. The maximum policy version that will be used to format the policy.Valid values are 0, 1, and 3. Requests specifying an invalid value will be rejected.Requests for
|
|
1781
2526
|
* policies with any conditional role bindings must specify version 3. Policies with no conditional role bindings may specify any valid value or leave the field unset.The policy in
|
|
@@ -1783,230 +2528,480 @@ declare namespace gapi.client {
|
|
|
1783
2528
|
* role bindings, the response uses version 1.To learn which resources support conditions in their IAM policies, see the IAM documentation
|
|
1784
2529
|
* (https://cloud.google.com/iam/help/conditions/resource-policies).
|
|
1785
2530
|
*/
|
|
1786
|
-
"options.requestedPolicyVersion"?:
|
|
2531
|
+
"options.requestedPolicyVersion"?:
|
|
2532
|
+
number;
|
|
1787
2533
|
/** Returns response with indentations and line breaks. */
|
|
1788
|
-
prettyPrint?:
|
|
2534
|
+
prettyPrint?:
|
|
2535
|
+
boolean;
|
|
1789
2536
|
/** 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. */
|
|
1790
|
-
quotaUser?:
|
|
2537
|
+
quotaUser?:
|
|
2538
|
+
string;
|
|
1791
2539
|
/**
|
|
1792
2540
|
* REQUIRED: The resource for which the policy is being requested. See Resource names (https://cloud.google.com/apis/design/resource_names) for the appropriate value for this
|
|
1793
2541
|
* field.
|
|
1794
2542
|
*/
|
|
1795
|
-
resource:
|
|
2543
|
+
resource:
|
|
2544
|
+
string;
|
|
1796
2545
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1797
|
-
upload_protocol?:
|
|
2546
|
+
upload_protocol?:
|
|
2547
|
+
string;
|
|
1798
2548
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1799
|
-
uploadType?:
|
|
2549
|
+
uploadType?:
|
|
2550
|
+
string;
|
|
1800
2551
|
}): Request<Policy>;
|
|
1801
2552
|
/** Lists services in a project and location. */
|
|
1802
2553
|
list(request?: {
|
|
1803
2554
|
/** V1 error format. */
|
|
1804
|
-
"$.xgafv"?:
|
|
2555
|
+
"$.xgafv"?:
|
|
2556
|
+
string;
|
|
1805
2557
|
/** OAuth access token. */
|
|
1806
|
-
access_token?:
|
|
2558
|
+
access_token?:
|
|
2559
|
+
string;
|
|
1807
2560
|
/** Data format for response. */
|
|
1808
|
-
alt?:
|
|
2561
|
+
alt?:
|
|
2562
|
+
string;
|
|
1809
2563
|
/** JSONP */
|
|
1810
|
-
callback?:
|
|
2564
|
+
callback?:
|
|
2565
|
+
string;
|
|
1811
2566
|
/** Selector specifying which fields to include in a partial response. */
|
|
1812
|
-
fields?:
|
|
2567
|
+
fields?:
|
|
2568
|
+
string;
|
|
1813
2569
|
/** Optional. The filter to apply to list results. */
|
|
1814
|
-
filter?:
|
|
2570
|
+
filter?:
|
|
2571
|
+
string;
|
|
1815
2572
|
/** 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. */
|
|
1816
|
-
key?:
|
|
2573
|
+
key?:
|
|
2574
|
+
string;
|
|
1817
2575
|
/** OAuth 2.0 token for the current user. */
|
|
1818
|
-
oauth_token?:
|
|
2576
|
+
oauth_token?:
|
|
2577
|
+
string;
|
|
1819
2578
|
/**
|
|
1820
2579
|
* Optional. Specify the ordering of results as described in Sorting Order (https://cloud.google.com/apis/design/design_patterns#sorting_order). If not specified, the results will
|
|
1821
2580
|
* be sorted in the default order.
|
|
1822
2581
|
*/
|
|
1823
|
-
orderBy?:
|
|
2582
|
+
orderBy?:
|
|
2583
|
+
string;
|
|
1824
2584
|
/**
|
|
1825
2585
|
* Optional. The maximum number of services to return. The response may contain less than the maximum number. If unspecified, no more than 500 services are returned. The maximum
|
|
1826
2586
|
* value is 1000; values above 1000 are changed to 1000.
|
|
1827
2587
|
*/
|
|
1828
|
-
pageSize?:
|
|
2588
|
+
pageSize?:
|
|
2589
|
+
number;
|
|
1829
2590
|
/**
|
|
1830
2591
|
* Optional. A page token, received from a previous DataprocMetastore.ListServices call. Provide this token to retrieve the subsequent page.To retrieve the first page, supply an
|
|
1831
2592
|
* empty page token.When paginating, other parameters provided to DataprocMetastore.ListServices must match the call that provided the page token.
|
|
1832
2593
|
*/
|
|
1833
|
-
pageToken?:
|
|
2594
|
+
pageToken?:
|
|
2595
|
+
string;
|
|
1834
2596
|
/** Required. The relative resource name of the location of metastore services to list, in the following form:projects/{project_number}/locations/{location_id}. */
|
|
1835
|
-
parent:
|
|
2597
|
+
parent:
|
|
2598
|
+
string;
|
|
1836
2599
|
/** Returns response with indentations and line breaks. */
|
|
1837
|
-
prettyPrint?:
|
|
2600
|
+
prettyPrint?:
|
|
2601
|
+
boolean;
|
|
1838
2602
|
/** 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. */
|
|
1839
|
-
quotaUser?:
|
|
2603
|
+
quotaUser?:
|
|
2604
|
+
string;
|
|
1840
2605
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1841
|
-
upload_protocol?:
|
|
2606
|
+
upload_protocol?:
|
|
2607
|
+
string;
|
|
1842
2608
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1843
|
-
uploadType?:
|
|
2609
|
+
uploadType?:
|
|
2610
|
+
string;
|
|
1844
2611
|
}): Request<ListServicesResponse>;
|
|
2612
|
+
/** Move a table to another database. */
|
|
2613
|
+
moveTableToDatabase(request: {
|
|
2614
|
+
/** V1 error format. */
|
|
2615
|
+
"$.xgafv"?:
|
|
2616
|
+
string;
|
|
2617
|
+
/** OAuth access token. */
|
|
2618
|
+
access_token?:
|
|
2619
|
+
string;
|
|
2620
|
+
/** Data format for response. */
|
|
2621
|
+
alt?:
|
|
2622
|
+
string;
|
|
2623
|
+
/** JSONP */
|
|
2624
|
+
callback?:
|
|
2625
|
+
string;
|
|
2626
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2627
|
+
fields?:
|
|
2628
|
+
string;
|
|
2629
|
+
/** 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. */
|
|
2630
|
+
key?:
|
|
2631
|
+
string;
|
|
2632
|
+
/** OAuth 2.0 token for the current user. */
|
|
2633
|
+
oauth_token?:
|
|
2634
|
+
string;
|
|
2635
|
+
/** Returns response with indentations and line breaks. */
|
|
2636
|
+
prettyPrint?:
|
|
2637
|
+
boolean;
|
|
2638
|
+
/** 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. */
|
|
2639
|
+
quotaUser?:
|
|
2640
|
+
string;
|
|
2641
|
+
/** Required. The relative resource name of the metastore service to mutate metadata, in the following format:projects/{project_id}/locations/{location_id}/services/{service_id}. */
|
|
2642
|
+
service:
|
|
2643
|
+
string;
|
|
2644
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2645
|
+
upload_protocol?:
|
|
2646
|
+
string;
|
|
2647
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2648
|
+
uploadType?:
|
|
2649
|
+
string;
|
|
2650
|
+
/** Request body */
|
|
2651
|
+
resource:
|
|
2652
|
+
MoveTableToDatabaseRequest;
|
|
2653
|
+
}): Request<Operation>;
|
|
2654
|
+
moveTableToDatabase(request: {
|
|
2655
|
+
/** V1 error format. */
|
|
2656
|
+
"$.xgafv"?:
|
|
2657
|
+
string;
|
|
2658
|
+
/** OAuth access token. */
|
|
2659
|
+
access_token?:
|
|
2660
|
+
string;
|
|
2661
|
+
/** Data format for response. */
|
|
2662
|
+
alt?:
|
|
2663
|
+
string;
|
|
2664
|
+
/** JSONP */
|
|
2665
|
+
callback?:
|
|
2666
|
+
string;
|
|
2667
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2668
|
+
fields?:
|
|
2669
|
+
string;
|
|
2670
|
+
/** 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. */
|
|
2671
|
+
key?:
|
|
2672
|
+
string;
|
|
2673
|
+
/** OAuth 2.0 token for the current user. */
|
|
2674
|
+
oauth_token?:
|
|
2675
|
+
string;
|
|
2676
|
+
/** Returns response with indentations and line breaks. */
|
|
2677
|
+
prettyPrint?:
|
|
2678
|
+
boolean;
|
|
2679
|
+
/** 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. */
|
|
2680
|
+
quotaUser?:
|
|
2681
|
+
string;
|
|
2682
|
+
/** Required. The relative resource name of the metastore service to mutate metadata, in the following format:projects/{project_id}/locations/{location_id}/services/{service_id}. */
|
|
2683
|
+
service:
|
|
2684
|
+
string;
|
|
2685
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2686
|
+
upload_protocol?:
|
|
2687
|
+
string;
|
|
2688
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2689
|
+
uploadType?:
|
|
2690
|
+
string;
|
|
2691
|
+
},
|
|
2692
|
+
body: MoveTableToDatabaseRequest): Request<Operation>;
|
|
1845
2693
|
/** Updates the parameters of a single service. */
|
|
1846
2694
|
patch(request: {
|
|
1847
2695
|
/** V1 error format. */
|
|
1848
|
-
"$.xgafv"?:
|
|
2696
|
+
"$.xgafv"?:
|
|
2697
|
+
string;
|
|
1849
2698
|
/** OAuth access token. */
|
|
1850
|
-
access_token?:
|
|
2699
|
+
access_token?:
|
|
2700
|
+
string;
|
|
1851
2701
|
/** Data format for response. */
|
|
1852
|
-
alt?:
|
|
2702
|
+
alt?:
|
|
2703
|
+
string;
|
|
1853
2704
|
/** JSONP */
|
|
1854
|
-
callback?:
|
|
2705
|
+
callback?:
|
|
2706
|
+
string;
|
|
1855
2707
|
/** Selector specifying which fields to include in a partial response. */
|
|
1856
|
-
fields?:
|
|
2708
|
+
fields?:
|
|
2709
|
+
string;
|
|
1857
2710
|
/** 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. */
|
|
1858
|
-
key?:
|
|
2711
|
+
key?:
|
|
2712
|
+
string;
|
|
1859
2713
|
/** Immutable. The relative resource name of the metastore service, in the following format:projects/{project_number}/locations/{location_id}/services/{service_id}. */
|
|
1860
|
-
name:
|
|
2714
|
+
name:
|
|
2715
|
+
string;
|
|
1861
2716
|
/** OAuth 2.0 token for the current user. */
|
|
1862
|
-
oauth_token?:
|
|
2717
|
+
oauth_token?:
|
|
2718
|
+
string;
|
|
1863
2719
|
/** Returns response with indentations and line breaks. */
|
|
1864
|
-
prettyPrint?:
|
|
2720
|
+
prettyPrint?:
|
|
2721
|
+
boolean;
|
|
1865
2722
|
/** 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. */
|
|
1866
|
-
quotaUser?:
|
|
2723
|
+
quotaUser?:
|
|
2724
|
+
string;
|
|
1867
2725
|
/**
|
|
1868
2726
|
* Optional. A request ID. Specify a unique request ID to allow the server to ignore the request if it has completed. The server will ignore subsequent requests that provide a
|
|
1869
2727
|
* duplicate request ID for at least 60 minutes after the first request.For example, if an initial request times out, followed by another request with the same request ID, the
|
|
1870
2728
|
* server ignores the second request to prevent the creation of duplicate commitments.The request ID must be a valid UUID
|
|
1871
2729
|
* (https://en.wikipedia.org/wiki/Universally_unique_identifier#Format) A zero UUID (00000000-0000-0000-0000-000000000000) is not supported.
|
|
1872
2730
|
*/
|
|
1873
|
-
requestId?:
|
|
2731
|
+
requestId?:
|
|
2732
|
+
string;
|
|
1874
2733
|
/**
|
|
1875
2734
|
* Required. A field mask used to specify the fields to be overwritten in the metastore service resource by the update. Fields specified in the update_mask are relative to the
|
|
1876
2735
|
* resource (not to the full request). A field is overwritten if it is in the mask.
|
|
1877
2736
|
*/
|
|
1878
|
-
updateMask?:
|
|
2737
|
+
updateMask?:
|
|
2738
|
+
string;
|
|
1879
2739
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1880
|
-
upload_protocol?:
|
|
2740
|
+
upload_protocol?:
|
|
2741
|
+
string;
|
|
1881
2742
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1882
|
-
uploadType?:
|
|
2743
|
+
uploadType?:
|
|
2744
|
+
string;
|
|
1883
2745
|
/** Request body */
|
|
1884
|
-
resource:
|
|
2746
|
+
resource:
|
|
2747
|
+
Service;
|
|
1885
2748
|
}): Request<Operation>;
|
|
1886
2749
|
patch(request: {
|
|
1887
2750
|
/** V1 error format. */
|
|
1888
|
-
"$.xgafv"?:
|
|
2751
|
+
"$.xgafv"?:
|
|
2752
|
+
string;
|
|
1889
2753
|
/** OAuth access token. */
|
|
1890
|
-
access_token?:
|
|
2754
|
+
access_token?:
|
|
2755
|
+
string;
|
|
1891
2756
|
/** Data format for response. */
|
|
1892
|
-
alt?:
|
|
2757
|
+
alt?:
|
|
2758
|
+
string;
|
|
1893
2759
|
/** JSONP */
|
|
1894
|
-
callback?:
|
|
2760
|
+
callback?:
|
|
2761
|
+
string;
|
|
1895
2762
|
/** Selector specifying which fields to include in a partial response. */
|
|
1896
|
-
fields?:
|
|
2763
|
+
fields?:
|
|
2764
|
+
string;
|
|
1897
2765
|
/** 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. */
|
|
1898
|
-
key?:
|
|
2766
|
+
key?:
|
|
2767
|
+
string;
|
|
1899
2768
|
/** Immutable. The relative resource name of the metastore service, in the following format:projects/{project_number}/locations/{location_id}/services/{service_id}. */
|
|
1900
|
-
name:
|
|
2769
|
+
name:
|
|
2770
|
+
string;
|
|
1901
2771
|
/** OAuth 2.0 token for the current user. */
|
|
1902
|
-
oauth_token?:
|
|
2772
|
+
oauth_token?:
|
|
2773
|
+
string;
|
|
1903
2774
|
/** Returns response with indentations and line breaks. */
|
|
1904
|
-
prettyPrint?:
|
|
2775
|
+
prettyPrint?:
|
|
2776
|
+
boolean;
|
|
1905
2777
|
/** 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. */
|
|
1906
|
-
quotaUser?:
|
|
2778
|
+
quotaUser?:
|
|
2779
|
+
string;
|
|
1907
2780
|
/**
|
|
1908
2781
|
* Optional. A request ID. Specify a unique request ID to allow the server to ignore the request if it has completed. The server will ignore subsequent requests that provide a
|
|
1909
2782
|
* duplicate request ID for at least 60 minutes after the first request.For example, if an initial request times out, followed by another request with the same request ID, the
|
|
1910
2783
|
* server ignores the second request to prevent the creation of duplicate commitments.The request ID must be a valid UUID
|
|
1911
2784
|
* (https://en.wikipedia.org/wiki/Universally_unique_identifier#Format) A zero UUID (00000000-0000-0000-0000-000000000000) is not supported.
|
|
1912
2785
|
*/
|
|
1913
|
-
requestId?:
|
|
2786
|
+
requestId?:
|
|
2787
|
+
string;
|
|
1914
2788
|
/**
|
|
1915
2789
|
* Required. A field mask used to specify the fields to be overwritten in the metastore service resource by the update. Fields specified in the update_mask are relative to the
|
|
1916
2790
|
* resource (not to the full request). A field is overwritten if it is in the mask.
|
|
1917
2791
|
*/
|
|
1918
|
-
updateMask?:
|
|
2792
|
+
updateMask?:
|
|
2793
|
+
string;
|
|
1919
2794
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1920
|
-
upload_protocol?:
|
|
2795
|
+
upload_protocol?:
|
|
2796
|
+
string;
|
|
1921
2797
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1922
|
-
uploadType?:
|
|
2798
|
+
uploadType?:
|
|
2799
|
+
string;
|
|
1923
2800
|
},
|
|
1924
2801
|
body: Service): Request<Operation>;
|
|
2802
|
+
/** Query DPMS metadata. */
|
|
2803
|
+
queryMetadata(request: {
|
|
2804
|
+
/** V1 error format. */
|
|
2805
|
+
"$.xgafv"?:
|
|
2806
|
+
string;
|
|
2807
|
+
/** OAuth access token. */
|
|
2808
|
+
access_token?:
|
|
2809
|
+
string;
|
|
2810
|
+
/** Data format for response. */
|
|
2811
|
+
alt?:
|
|
2812
|
+
string;
|
|
2813
|
+
/** JSONP */
|
|
2814
|
+
callback?:
|
|
2815
|
+
string;
|
|
2816
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2817
|
+
fields?:
|
|
2818
|
+
string;
|
|
2819
|
+
/** 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. */
|
|
2820
|
+
key?:
|
|
2821
|
+
string;
|
|
2822
|
+
/** OAuth 2.0 token for the current user. */
|
|
2823
|
+
oauth_token?:
|
|
2824
|
+
string;
|
|
2825
|
+
/** Returns response with indentations and line breaks. */
|
|
2826
|
+
prettyPrint?:
|
|
2827
|
+
boolean;
|
|
2828
|
+
/** 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. */
|
|
2829
|
+
quotaUser?:
|
|
2830
|
+
string;
|
|
2831
|
+
/** Required. The relative resource name of the metastore service to query metadata, in the following format:projects/{project_id}/locations/{location_id}/services/{service_id}. */
|
|
2832
|
+
service:
|
|
2833
|
+
string;
|
|
2834
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2835
|
+
upload_protocol?:
|
|
2836
|
+
string;
|
|
2837
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2838
|
+
uploadType?:
|
|
2839
|
+
string;
|
|
2840
|
+
/** Request body */
|
|
2841
|
+
resource:
|
|
2842
|
+
QueryMetadataRequest;
|
|
2843
|
+
}): Request<Operation>;
|
|
2844
|
+
queryMetadata(request: {
|
|
2845
|
+
/** V1 error format. */
|
|
2846
|
+
"$.xgafv"?:
|
|
2847
|
+
string;
|
|
2848
|
+
/** OAuth access token. */
|
|
2849
|
+
access_token?:
|
|
2850
|
+
string;
|
|
2851
|
+
/** Data format for response. */
|
|
2852
|
+
alt?:
|
|
2853
|
+
string;
|
|
2854
|
+
/** JSONP */
|
|
2855
|
+
callback?:
|
|
2856
|
+
string;
|
|
2857
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2858
|
+
fields?:
|
|
2859
|
+
string;
|
|
2860
|
+
/** 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. */
|
|
2861
|
+
key?:
|
|
2862
|
+
string;
|
|
2863
|
+
/** OAuth 2.0 token for the current user. */
|
|
2864
|
+
oauth_token?:
|
|
2865
|
+
string;
|
|
2866
|
+
/** Returns response with indentations and line breaks. */
|
|
2867
|
+
prettyPrint?:
|
|
2868
|
+
boolean;
|
|
2869
|
+
/** 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. */
|
|
2870
|
+
quotaUser?:
|
|
2871
|
+
string;
|
|
2872
|
+
/** Required. The relative resource name of the metastore service to query metadata, in the following format:projects/{project_id}/locations/{location_id}/services/{service_id}. */
|
|
2873
|
+
service:
|
|
2874
|
+
string;
|
|
2875
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2876
|
+
upload_protocol?:
|
|
2877
|
+
string;
|
|
2878
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2879
|
+
uploadType?:
|
|
2880
|
+
string;
|
|
2881
|
+
},
|
|
2882
|
+
body: QueryMetadataRequest): Request<Operation>;
|
|
1925
2883
|
/** Restores a service from a backup. */
|
|
1926
2884
|
restore(request: {
|
|
1927
2885
|
/** V1 error format. */
|
|
1928
|
-
"$.xgafv"?:
|
|
2886
|
+
"$.xgafv"?:
|
|
2887
|
+
string;
|
|
1929
2888
|
/** OAuth access token. */
|
|
1930
|
-
access_token?:
|
|
2889
|
+
access_token?:
|
|
2890
|
+
string;
|
|
1931
2891
|
/** Data format for response. */
|
|
1932
|
-
alt?:
|
|
2892
|
+
alt?:
|
|
2893
|
+
string;
|
|
1933
2894
|
/** JSONP */
|
|
1934
|
-
callback?:
|
|
2895
|
+
callback?:
|
|
2896
|
+
string;
|
|
1935
2897
|
/** Selector specifying which fields to include in a partial response. */
|
|
1936
|
-
fields?:
|
|
2898
|
+
fields?:
|
|
2899
|
+
string;
|
|
1937
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. */
|
|
1938
|
-
key?:
|
|
2901
|
+
key?:
|
|
2902
|
+
string;
|
|
1939
2903
|
/** OAuth 2.0 token for the current user. */
|
|
1940
|
-
oauth_token?:
|
|
2904
|
+
oauth_token?:
|
|
2905
|
+
string;
|
|
1941
2906
|
/** Returns response with indentations and line breaks. */
|
|
1942
|
-
prettyPrint?:
|
|
2907
|
+
prettyPrint?:
|
|
2908
|
+
boolean;
|
|
1943
2909
|
/** 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. */
|
|
1944
|
-
quotaUser?:
|
|
2910
|
+
quotaUser?:
|
|
2911
|
+
string;
|
|
1945
2912
|
/** Required. The relative resource name of the metastore service to run restore, in the following form:projects/{project_id}/locations/{location_id}/services/{service_id}. */
|
|
1946
|
-
service:
|
|
2913
|
+
service:
|
|
2914
|
+
string;
|
|
1947
2915
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1948
|
-
upload_protocol?:
|
|
2916
|
+
upload_protocol?:
|
|
2917
|
+
string;
|
|
1949
2918
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1950
|
-
uploadType?:
|
|
2919
|
+
uploadType?:
|
|
2920
|
+
string;
|
|
1951
2921
|
/** Request body */
|
|
1952
|
-
resource:
|
|
2922
|
+
resource:
|
|
2923
|
+
RestoreServiceRequest;
|
|
1953
2924
|
}): Request<Operation>;
|
|
1954
2925
|
restore(request: {
|
|
1955
2926
|
/** V1 error format. */
|
|
1956
|
-
"$.xgafv"?:
|
|
2927
|
+
"$.xgafv"?:
|
|
2928
|
+
string;
|
|
1957
2929
|
/** OAuth access token. */
|
|
1958
|
-
access_token?:
|
|
2930
|
+
access_token?:
|
|
2931
|
+
string;
|
|
1959
2932
|
/** Data format for response. */
|
|
1960
|
-
alt?:
|
|
2933
|
+
alt?:
|
|
2934
|
+
string;
|
|
1961
2935
|
/** JSONP */
|
|
1962
|
-
callback?:
|
|
2936
|
+
callback?:
|
|
2937
|
+
string;
|
|
1963
2938
|
/** Selector specifying which fields to include in a partial response. */
|
|
1964
|
-
fields?:
|
|
2939
|
+
fields?:
|
|
2940
|
+
string;
|
|
1965
2941
|
/** 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. */
|
|
1966
|
-
key?:
|
|
2942
|
+
key?:
|
|
2943
|
+
string;
|
|
1967
2944
|
/** OAuth 2.0 token for the current user. */
|
|
1968
|
-
oauth_token?:
|
|
2945
|
+
oauth_token?:
|
|
2946
|
+
string;
|
|
1969
2947
|
/** Returns response with indentations and line breaks. */
|
|
1970
|
-
prettyPrint?:
|
|
2948
|
+
prettyPrint?:
|
|
2949
|
+
boolean;
|
|
1971
2950
|
/** 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. */
|
|
1972
|
-
quotaUser?:
|
|
2951
|
+
quotaUser?:
|
|
2952
|
+
string;
|
|
1973
2953
|
/** Required. The relative resource name of the metastore service to run restore, in the following form:projects/{project_id}/locations/{location_id}/services/{service_id}. */
|
|
1974
|
-
service:
|
|
2954
|
+
service:
|
|
2955
|
+
string;
|
|
1975
2956
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1976
|
-
upload_protocol?:
|
|
2957
|
+
upload_protocol?:
|
|
2958
|
+
string;
|
|
1977
2959
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1978
|
-
uploadType?:
|
|
2960
|
+
uploadType?:
|
|
2961
|
+
string;
|
|
1979
2962
|
},
|
|
1980
2963
|
body: RestoreServiceRequest): Request<Operation>;
|
|
1981
2964
|
/** Sets the access control policy on the specified resource. Replaces any existing policy.Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED errors. */
|
|
1982
2965
|
setIamPolicy(request: {
|
|
1983
2966
|
/** V1 error format. */
|
|
1984
|
-
"$.xgafv"?:
|
|
2967
|
+
"$.xgafv"?:
|
|
2968
|
+
string;
|
|
1985
2969
|
/** OAuth access token. */
|
|
1986
|
-
access_token?:
|
|
2970
|
+
access_token?:
|
|
2971
|
+
string;
|
|
1987
2972
|
/** Data format for response. */
|
|
1988
|
-
alt?:
|
|
2973
|
+
alt?:
|
|
2974
|
+
string;
|
|
1989
2975
|
/** JSONP */
|
|
1990
|
-
callback?:
|
|
2976
|
+
callback?:
|
|
2977
|
+
string;
|
|
1991
2978
|
/** Selector specifying which fields to include in a partial response. */
|
|
1992
|
-
fields?:
|
|
2979
|
+
fields?:
|
|
2980
|
+
string;
|
|
1993
2981
|
/** 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. */
|
|
1994
|
-
key?:
|
|
2982
|
+
key?:
|
|
2983
|
+
string;
|
|
1995
2984
|
/** OAuth 2.0 token for the current user. */
|
|
1996
|
-
oauth_token?:
|
|
2985
|
+
oauth_token?:
|
|
2986
|
+
string;
|
|
1997
2987
|
/** Returns response with indentations and line breaks. */
|
|
1998
|
-
prettyPrint?:
|
|
2988
|
+
prettyPrint?:
|
|
2989
|
+
boolean;
|
|
1999
2990
|
/** 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. */
|
|
2000
|
-
quotaUser?:
|
|
2991
|
+
quotaUser?:
|
|
2992
|
+
string;
|
|
2001
2993
|
/**
|
|
2002
2994
|
* REQUIRED: The resource for which the policy is being specified. See Resource names (https://cloud.google.com/apis/design/resource_names) for the appropriate value for this
|
|
2003
2995
|
* field.
|
|
2004
2996
|
*/
|
|
2005
|
-
resource:
|
|
2997
|
+
resource:
|
|
2998
|
+
string;
|
|
2006
2999
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2007
|
-
upload_protocol?:
|
|
3000
|
+
upload_protocol?:
|
|
3001
|
+
string;
|
|
2008
3002
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2009
|
-
uploadType?:
|
|
3003
|
+
uploadType?:
|
|
3004
|
+
string;
|
|
2010
3005
|
},
|
|
2011
3006
|
body: SetIamPolicyRequest): Request<Policy>;
|
|
2012
3007
|
/**
|
|
@@ -2015,107 +3010,152 @@ declare namespace gapi.client {
|
|
|
2015
3010
|
*/
|
|
2016
3011
|
testIamPermissions(request: {
|
|
2017
3012
|
/** V1 error format. */
|
|
2018
|
-
"$.xgafv"?:
|
|
3013
|
+
"$.xgafv"?:
|
|
3014
|
+
string;
|
|
2019
3015
|
/** OAuth access token. */
|
|
2020
|
-
access_token?:
|
|
3016
|
+
access_token?:
|
|
3017
|
+
string;
|
|
2021
3018
|
/** Data format for response. */
|
|
2022
|
-
alt?:
|
|
3019
|
+
alt?:
|
|
3020
|
+
string;
|
|
2023
3021
|
/** JSONP */
|
|
2024
|
-
callback?:
|
|
3022
|
+
callback?:
|
|
3023
|
+
string;
|
|
2025
3024
|
/** Selector specifying which fields to include in a partial response. */
|
|
2026
|
-
fields?:
|
|
3025
|
+
fields?:
|
|
3026
|
+
string;
|
|
2027
3027
|
/** 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. */
|
|
2028
|
-
key?:
|
|
3028
|
+
key?:
|
|
3029
|
+
string;
|
|
2029
3030
|
/** OAuth 2.0 token for the current user. */
|
|
2030
|
-
oauth_token?:
|
|
3031
|
+
oauth_token?:
|
|
3032
|
+
string;
|
|
2031
3033
|
/** Returns response with indentations and line breaks. */
|
|
2032
|
-
prettyPrint?:
|
|
3034
|
+
prettyPrint?:
|
|
3035
|
+
boolean;
|
|
2033
3036
|
/** 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. */
|
|
2034
|
-
quotaUser?:
|
|
3037
|
+
quotaUser?:
|
|
3038
|
+
string;
|
|
2035
3039
|
/**
|
|
2036
3040
|
* REQUIRED: The resource for which the policy detail is being requested. See Resource names (https://cloud.google.com/apis/design/resource_names) for the appropriate value for
|
|
2037
3041
|
* this field.
|
|
2038
3042
|
*/
|
|
2039
|
-
resource:
|
|
3043
|
+
resource:
|
|
3044
|
+
string;
|
|
2040
3045
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2041
|
-
upload_protocol?:
|
|
3046
|
+
upload_protocol?:
|
|
3047
|
+
string;
|
|
2042
3048
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2043
|
-
uploadType?:
|
|
3049
|
+
uploadType?:
|
|
3050
|
+
string;
|
|
2044
3051
|
},
|
|
2045
3052
|
body: TestIamPermissionsRequest): Request<TestIamPermissionsResponse>;
|
|
2046
|
-
backups:
|
|
2047
|
-
|
|
3053
|
+
backups:
|
|
3054
|
+
BackupsResource;
|
|
3055
|
+
metadataImports:
|
|
3056
|
+
MetadataImportsResource;
|
|
2048
3057
|
}
|
|
2049
3058
|
interface LocationsResource {
|
|
2050
3059
|
/** Gets information about a location. */
|
|
2051
3060
|
get(request?: {
|
|
2052
3061
|
/** V1 error format. */
|
|
2053
|
-
"$.xgafv"?:
|
|
3062
|
+
"$.xgafv"?:
|
|
3063
|
+
string;
|
|
2054
3064
|
/** OAuth access token. */
|
|
2055
|
-
access_token?:
|
|
3065
|
+
access_token?:
|
|
3066
|
+
string;
|
|
2056
3067
|
/** Data format for response. */
|
|
2057
|
-
alt?:
|
|
3068
|
+
alt?:
|
|
3069
|
+
string;
|
|
2058
3070
|
/** JSONP */
|
|
2059
|
-
callback?:
|
|
3071
|
+
callback?:
|
|
3072
|
+
string;
|
|
2060
3073
|
/** Selector specifying which fields to include in a partial response. */
|
|
2061
|
-
fields?:
|
|
3074
|
+
fields?:
|
|
3075
|
+
string;
|
|
2062
3076
|
/** 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. */
|
|
2063
|
-
key?:
|
|
3077
|
+
key?:
|
|
3078
|
+
string;
|
|
2064
3079
|
/** Resource name for the location. */
|
|
2065
|
-
name:
|
|
3080
|
+
name:
|
|
3081
|
+
string;
|
|
2066
3082
|
/** OAuth 2.0 token for the current user. */
|
|
2067
|
-
oauth_token?:
|
|
3083
|
+
oauth_token?:
|
|
3084
|
+
string;
|
|
2068
3085
|
/** Returns response with indentations and line breaks. */
|
|
2069
|
-
prettyPrint?:
|
|
3086
|
+
prettyPrint?:
|
|
3087
|
+
boolean;
|
|
2070
3088
|
/** 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. */
|
|
2071
|
-
quotaUser?:
|
|
3089
|
+
quotaUser?:
|
|
3090
|
+
string;
|
|
2072
3091
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2073
|
-
upload_protocol?:
|
|
3092
|
+
upload_protocol?:
|
|
3093
|
+
string;
|
|
2074
3094
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2075
|
-
uploadType?:
|
|
3095
|
+
uploadType?:
|
|
3096
|
+
string;
|
|
2076
3097
|
}): Request<Location>;
|
|
2077
3098
|
/** Lists information about the supported locations for this service. */
|
|
2078
3099
|
list(request?: {
|
|
2079
3100
|
/** V1 error format. */
|
|
2080
|
-
"$.xgafv"?:
|
|
3101
|
+
"$.xgafv"?:
|
|
3102
|
+
string;
|
|
2081
3103
|
/** OAuth access token. */
|
|
2082
|
-
access_token?:
|
|
3104
|
+
access_token?:
|
|
3105
|
+
string;
|
|
2083
3106
|
/** Data format for response. */
|
|
2084
|
-
alt?:
|
|
3107
|
+
alt?:
|
|
3108
|
+
string;
|
|
2085
3109
|
/** JSONP */
|
|
2086
|
-
callback?:
|
|
3110
|
+
callback?:
|
|
3111
|
+
string;
|
|
2087
3112
|
/** Selector specifying which fields to include in a partial response. */
|
|
2088
|
-
fields?:
|
|
3113
|
+
fields?:
|
|
3114
|
+
string;
|
|
2089
3115
|
/**
|
|
2090
3116
|
* A filter to narrow down results to a preferred subset. The filtering language accepts strings like "displayName=tokyo", and is documented in more detail in AIP-160
|
|
2091
3117
|
* (https://google.aip.dev/160).
|
|
2092
3118
|
*/
|
|
2093
|
-
filter?:
|
|
3119
|
+
filter?:
|
|
3120
|
+
string;
|
|
2094
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. */
|
|
2095
|
-
key?:
|
|
3122
|
+
key?:
|
|
3123
|
+
string;
|
|
2096
3124
|
/** The resource that owns the locations collection, if applicable. */
|
|
2097
|
-
name:
|
|
3125
|
+
name:
|
|
3126
|
+
string;
|
|
2098
3127
|
/** OAuth 2.0 token for the current user. */
|
|
2099
|
-
oauth_token?:
|
|
3128
|
+
oauth_token?:
|
|
3129
|
+
string;
|
|
2100
3130
|
/** The maximum number of results to return. If not set, the service selects a default. */
|
|
2101
|
-
pageSize?:
|
|
3131
|
+
pageSize?:
|
|
3132
|
+
number;
|
|
2102
3133
|
/** A page token received from the next_page_token field in the response. Send that page token to receive the subsequent page. */
|
|
2103
|
-
pageToken?:
|
|
3134
|
+
pageToken?:
|
|
3135
|
+
string;
|
|
2104
3136
|
/** Returns response with indentations and line breaks. */
|
|
2105
|
-
prettyPrint?:
|
|
3137
|
+
prettyPrint?:
|
|
3138
|
+
boolean;
|
|
2106
3139
|
/** 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. */
|
|
2107
|
-
quotaUser?:
|
|
3140
|
+
quotaUser?:
|
|
3141
|
+
string;
|
|
2108
3142
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2109
|
-
upload_protocol?:
|
|
3143
|
+
upload_protocol?:
|
|
3144
|
+
string;
|
|
2110
3145
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2111
|
-
uploadType?:
|
|
3146
|
+
uploadType?:
|
|
3147
|
+
string;
|
|
2112
3148
|
}): Request<ListLocationsResponse>;
|
|
2113
|
-
federations:
|
|
2114
|
-
|
|
2115
|
-
|
|
3149
|
+
federations:
|
|
3150
|
+
FederationsResource;
|
|
3151
|
+
operations:
|
|
3152
|
+
OperationsResource;
|
|
3153
|
+
services:
|
|
3154
|
+
ServicesResource;
|
|
2116
3155
|
}
|
|
2117
3156
|
interface ProjectsResource {
|
|
2118
|
-
locations:
|
|
3157
|
+
locations:
|
|
3158
|
+
LocationsResource;
|
|
2119
3159
|
}
|
|
2120
3160
|
|
|
2121
3161
|
const projects: ProjectsResource;
|