@maxim_mazurok/gapi.client.datamigration-v1beta1 0.0.20230420 → 0.0.20230503
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 +1357 -679
- package/package.json +1 -1
- package/tests.ts +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://datamigration.googleapis.com/$discovery/rest?version=v1beta1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230503
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -24,18 +24,22 @@ declare namespace gapi.client {
|
|
|
24
24
|
namespace datamigration {
|
|
25
25
|
interface AuditConfig {
|
|
26
26
|
/** The configuration for logging of each type of permission. */
|
|
27
|
-
auditLogConfigs?:
|
|
27
|
+
auditLogConfigs?:
|
|
28
|
+
AuditLogConfig[];
|
|
28
29
|
/**
|
|
29
30
|
* 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
|
|
30
31
|
* services.
|
|
31
32
|
*/
|
|
32
|
-
service?:
|
|
33
|
+
service?:
|
|
34
|
+
string;
|
|
33
35
|
}
|
|
34
36
|
interface AuditLogConfig {
|
|
35
37
|
/** Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members. */
|
|
36
|
-
exemptedMembers?:
|
|
38
|
+
exemptedMembers?:
|
|
39
|
+
string[];
|
|
37
40
|
/** The log type that this config enables. */
|
|
38
|
-
logType?:
|
|
41
|
+
logType?:
|
|
42
|
+
string;
|
|
39
43
|
}
|
|
40
44
|
interface Binding {
|
|
41
45
|
/**
|
|
@@ -43,7 +47,8 @@ declare namespace gapi.client {
|
|
|
43
47
|
* then 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
|
|
44
48
|
* resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
|
|
45
49
|
*/
|
|
46
|
-
condition?:
|
|
50
|
+
condition?:
|
|
51
|
+
Expr;
|
|
47
52
|
/**
|
|
48
53
|
* 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
|
|
49
54
|
* the internet; with or without a Google account. * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service
|
|
@@ -60,283 +65,381 @@ declare namespace gapi.client {
|
|
|
60
65
|
* has been recently deleted. For example, `admins@example.com?uid=123456789012345678901`. If the group is recovered, this value reverts to `group:{emailid}` and the recovered group
|
|
61
66
|
* retains the role in the binding.
|
|
62
67
|
*/
|
|
63
|
-
members?:
|
|
68
|
+
members?:
|
|
69
|
+
string[];
|
|
64
70
|
/** Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`. */
|
|
65
|
-
role?:
|
|
71
|
+
role?:
|
|
72
|
+
string;
|
|
66
73
|
}
|
|
67
74
|
// tslint:disable-next-line:no-empty-interface
|
|
68
75
|
interface CancelOperationRequest {
|
|
69
76
|
}
|
|
70
77
|
interface CloudSqlConnectionProfile {
|
|
71
78
|
/** Output only. The Cloud SQL instance ID that this connection profile is associated with. */
|
|
72
|
-
cloudSqlId?:
|
|
79
|
+
cloudSqlId?:
|
|
80
|
+
string;
|
|
73
81
|
/** Output only. The Cloud SQL database instance's private IP. */
|
|
74
|
-
privateIp?:
|
|
82
|
+
privateIp?:
|
|
83
|
+
string;
|
|
75
84
|
/** Output only. The Cloud SQL database instance's public IP. */
|
|
76
|
-
publicIp?:
|
|
85
|
+
publicIp?:
|
|
86
|
+
string;
|
|
77
87
|
/** Immutable. Metadata used to create the destination Cloud SQL database. */
|
|
78
|
-
settings?:
|
|
88
|
+
settings?:
|
|
89
|
+
CloudSqlSettings;
|
|
79
90
|
}
|
|
80
91
|
interface CloudSqlSettings {
|
|
81
92
|
/**
|
|
82
93
|
* The activation policy specifies when the instance is activated; it is applicable only when the instance state is 'RUNNABLE'. Valid values: 'ALWAYS': The instance is on, and remains
|
|
83
94
|
* so even in the absence of connection requests. `NEVER`: The instance is off; it is not activated, even if a connection request arrives.
|
|
84
95
|
*/
|
|
85
|
-
activationPolicy?:
|
|
96
|
+
activationPolicy?:
|
|
97
|
+
string;
|
|
86
98
|
/**
|
|
87
99
|
* [default: ON] If you enable this setting, Cloud SQL checks your available storage every 30 seconds. If the available storage falls below a threshold size, Cloud SQL automatically
|
|
88
100
|
* adds additional storage capacity. If the available storage repeatedly falls below the threshold size, Cloud SQL continues to add storage until it reaches the maximum of 30 TB.
|
|
89
101
|
*/
|
|
90
|
-
autoStorageIncrease?:
|
|
102
|
+
autoStorageIncrease?:
|
|
103
|
+
boolean;
|
|
91
104
|
/** The database flags passed to the Cloud SQL instance at startup. An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }. */
|
|
92
|
-
databaseFlags?:
|
|
105
|
+
databaseFlags?:
|
|
106
|
+
{ [P in string]: string };
|
|
93
107
|
/** The database engine type and version. */
|
|
94
|
-
databaseVersion?:
|
|
108
|
+
databaseVersion?:
|
|
109
|
+
string;
|
|
95
110
|
/** The storage capacity available to the database, in GB. The minimum (and default) size is 10GB. */
|
|
96
|
-
dataDiskSizeGb?:
|
|
111
|
+
dataDiskSizeGb?:
|
|
112
|
+
string;
|
|
97
113
|
/** The type of storage: `PD_SSD` (default) or `PD_HDD`. */
|
|
98
|
-
dataDiskType?:
|
|
114
|
+
dataDiskType?:
|
|
115
|
+
string;
|
|
99
116
|
/** The settings for IP Management. This allows to enable or disable the instance IP and manage which external networks can connect to the instance. The IPv4 address cannot be disabled. */
|
|
100
|
-
ipConfig?:
|
|
117
|
+
ipConfig?:
|
|
118
|
+
SqlIpConfig;
|
|
101
119
|
/** Input only. Initial root password. */
|
|
102
|
-
rootPassword?:
|
|
120
|
+
rootPassword?:
|
|
121
|
+
string;
|
|
103
122
|
/** Output only. Indicates If this connection profile root password is stored. */
|
|
104
|
-
rootPasswordSet?:
|
|
123
|
+
rootPasswordSet?:
|
|
124
|
+
boolean;
|
|
105
125
|
/** The Database Migration Service source connection profile ID, in the format: `projects/my_project_name/locations/us-central1/connectionProfiles/connection_profile_ID` */
|
|
106
|
-
sourceId?:
|
|
126
|
+
sourceId?:
|
|
127
|
+
string;
|
|
107
128
|
/** The maximum size to which storage capacity can be automatically increased. The default value is 0, which specifies that there is no limit. */
|
|
108
|
-
storageAutoResizeLimit?:
|
|
129
|
+
storageAutoResizeLimit?:
|
|
130
|
+
string;
|
|
109
131
|
/**
|
|
110
132
|
* The tier (or machine type) for this instance, for example: `db-n1-standard-1` (MySQL instances). For more information, see [Cloud SQL Instance
|
|
111
133
|
* Settings](https://cloud.google.com/sql/docs/mysql/instance-settings).
|
|
112
134
|
*/
|
|
113
|
-
tier?:
|
|
135
|
+
tier?:
|
|
136
|
+
string;
|
|
114
137
|
/**
|
|
115
138
|
* The resource labels for a Cloud SQL instance to use to annotate any related underlying resources such as Compute Engine VMs. An object containing a list of "key": "value" pairs.
|
|
116
139
|
* Example: `{ "name": "wrench", "mass": "18kg", "count": "3" }`.
|
|
117
140
|
*/
|
|
118
|
-
userLabels?:
|
|
141
|
+
userLabels?:
|
|
142
|
+
{ [P in string]: string };
|
|
119
143
|
/** The Google Cloud Platform zone where your Cloud SQL database instance is located. */
|
|
120
|
-
zone?:
|
|
144
|
+
zone?:
|
|
145
|
+
string;
|
|
121
146
|
}
|
|
122
147
|
interface ConnectionProfile {
|
|
123
148
|
/** A CloudSQL database connection profile. */
|
|
124
|
-
cloudsql?:
|
|
149
|
+
cloudsql?:
|
|
150
|
+
CloudSqlConnectionProfile;
|
|
125
151
|
/** Output only. The timestamp when the resource was created. A timestamp in RFC3339 UTC "Zulu" format, accurate to nanoseconds. Example: "2014-10-02T15:01:23.045123456Z". */
|
|
126
|
-
createTime?:
|
|
152
|
+
createTime?:
|
|
153
|
+
string;
|
|
127
154
|
/** The connection profile display name. */
|
|
128
|
-
displayName?:
|
|
155
|
+
displayName?:
|
|
156
|
+
string;
|
|
129
157
|
/** Output only. The error details in case of state FAILED. */
|
|
130
|
-
error?:
|
|
158
|
+
error?:
|
|
159
|
+
Status;
|
|
131
160
|
/**
|
|
132
161
|
* The resource labels for connection profile to use to annotate any related underlying resources such as Compute Engine VMs. An object containing a list of "key": "value" pairs.
|
|
133
162
|
* Example: `{ "name": "wrench", "mass": "1.3kg", "count": "3" }`.
|
|
134
163
|
*/
|
|
135
|
-
labels?:
|
|
164
|
+
labels?:
|
|
165
|
+
{ [P in string]: string };
|
|
136
166
|
/** A MySQL database connection profile. */
|
|
137
|
-
mysql?:
|
|
167
|
+
mysql?:
|
|
168
|
+
MySqlConnectionProfile;
|
|
138
169
|
/** The name of this connection profile resource in the form of projects/{project}/locations/{location}/connectionProfiles/{connectionProfile}. */
|
|
139
|
-
name?:
|
|
170
|
+
name?:
|
|
171
|
+
string;
|
|
140
172
|
/** The database provider. */
|
|
141
|
-
provider?:
|
|
173
|
+
provider?:
|
|
174
|
+
string;
|
|
142
175
|
/** The current connection profile state (e.g. DRAFT, READY, or FAILED). */
|
|
143
|
-
state?:
|
|
176
|
+
state?:
|
|
177
|
+
string;
|
|
144
178
|
/** Output only. The timestamp when the resource was last updated. A timestamp in RFC3339 UTC "Zulu" format, accurate to nanoseconds. Example: "2014-10-02T15:01:23.045123456Z". */
|
|
145
|
-
updateTime?:
|
|
179
|
+
updateTime?:
|
|
180
|
+
string;
|
|
146
181
|
}
|
|
147
182
|
interface DatabaseType {
|
|
148
183
|
/** The database engine. */
|
|
149
|
-
engine?:
|
|
184
|
+
engine?:
|
|
185
|
+
string;
|
|
150
186
|
/** The database provider. */
|
|
151
|
-
provider?:
|
|
187
|
+
provider?:
|
|
188
|
+
string;
|
|
152
189
|
}
|
|
153
190
|
// tslint:disable-next-line:no-empty-interface
|
|
154
191
|
interface Empty {
|
|
155
192
|
}
|
|
156
193
|
interface Expr {
|
|
157
194
|
/** Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI. */
|
|
158
|
-
description?:
|
|
195
|
+
description?:
|
|
196
|
+
string;
|
|
159
197
|
/** Textual representation of an expression in Common Expression Language syntax. */
|
|
160
|
-
expression?:
|
|
198
|
+
expression?:
|
|
199
|
+
string;
|
|
161
200
|
/** Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file. */
|
|
162
|
-
location?:
|
|
201
|
+
location?:
|
|
202
|
+
string;
|
|
163
203
|
/** 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. */
|
|
164
|
-
title?:
|
|
204
|
+
title?:
|
|
205
|
+
string;
|
|
165
206
|
}
|
|
166
207
|
interface GenerateSshScriptRequest {
|
|
167
208
|
/** Required. Bastion VM Instance name to use or to create. */
|
|
168
|
-
vm?:
|
|
209
|
+
vm?:
|
|
210
|
+
string;
|
|
169
211
|
/** The VM creation configuration */
|
|
170
|
-
vmCreationConfig?:
|
|
212
|
+
vmCreationConfig?:
|
|
213
|
+
VmCreationConfig;
|
|
171
214
|
/** The port that will be open on the bastion host */
|
|
172
|
-
vmPort?:
|
|
215
|
+
vmPort?:
|
|
216
|
+
number;
|
|
173
217
|
/** The VM selection configuration */
|
|
174
|
-
vmSelectionConfig?:
|
|
218
|
+
vmSelectionConfig?:
|
|
219
|
+
VmSelectionConfig;
|
|
175
220
|
}
|
|
176
221
|
interface GoogleCloudClouddmsV1beta1OperationMetadata {
|
|
177
222
|
/** Output only. API version used to start the operation. */
|
|
178
|
-
apiVersion?:
|
|
223
|
+
apiVersion?:
|
|
224
|
+
string;
|
|
179
225
|
/** Output only. The time the operation was created. */
|
|
180
|
-
createTime?:
|
|
226
|
+
createTime?:
|
|
227
|
+
string;
|
|
181
228
|
/** Output only. The time the operation finished running. */
|
|
182
|
-
endTime?:
|
|
229
|
+
endTime?:
|
|
230
|
+
string;
|
|
183
231
|
/**
|
|
184
232
|
* Output only. Identifies whether the user has requested cancellation of the operation. Operations that have successfully been cancelled have Operation.error value with a
|
|
185
233
|
* google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
|
|
186
234
|
*/
|
|
187
|
-
requestedCancellation?:
|
|
235
|
+
requestedCancellation?:
|
|
236
|
+
boolean;
|
|
188
237
|
/** Output only. Human-readable status of the operation, if any. */
|
|
189
|
-
statusMessage?:
|
|
238
|
+
statusMessage?:
|
|
239
|
+
string;
|
|
190
240
|
/** Output only. Server-defined resource path for the target of the operation. */
|
|
191
|
-
target?:
|
|
241
|
+
target?:
|
|
242
|
+
string;
|
|
192
243
|
/** Output only. Name of the verb executed by the operation. */
|
|
193
|
-
verb?:
|
|
244
|
+
verb?:
|
|
245
|
+
string;
|
|
194
246
|
}
|
|
195
247
|
interface ListConnectionProfilesResponse {
|
|
196
248
|
/** The response list of connection profiles. */
|
|
197
|
-
connectionProfiles?:
|
|
249
|
+
connectionProfiles?:
|
|
250
|
+
ConnectionProfile[];
|
|
198
251
|
/** A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
199
|
-
nextPageToken?:
|
|
252
|
+
nextPageToken?:
|
|
253
|
+
string;
|
|
200
254
|
/** Locations that could not be reached. */
|
|
201
|
-
unreachable?:
|
|
255
|
+
unreachable?:
|
|
256
|
+
string[];
|
|
202
257
|
}
|
|
203
258
|
interface ListLocationsResponse {
|
|
204
259
|
/** A list of locations that matches the specified filter in the request. */
|
|
205
|
-
locations?:
|
|
260
|
+
locations?:
|
|
261
|
+
Location[];
|
|
206
262
|
/** The standard List next-page token. */
|
|
207
|
-
nextPageToken?:
|
|
263
|
+
nextPageToken?:
|
|
264
|
+
string;
|
|
208
265
|
}
|
|
209
266
|
interface ListMigrationJobsResponse {
|
|
210
267
|
/** The list of migration jobs objects. */
|
|
211
|
-
migrationJobs?:
|
|
268
|
+
migrationJobs?:
|
|
269
|
+
MigrationJob[];
|
|
212
270
|
/** A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
213
|
-
nextPageToken?:
|
|
271
|
+
nextPageToken?:
|
|
272
|
+
string;
|
|
214
273
|
/** Locations that could not be reached. */
|
|
215
|
-
unreachable?:
|
|
274
|
+
unreachable?:
|
|
275
|
+
string[];
|
|
216
276
|
}
|
|
217
277
|
interface ListOperationsResponse {
|
|
218
278
|
/** The standard List next-page token. */
|
|
219
|
-
nextPageToken?:
|
|
279
|
+
nextPageToken?:
|
|
280
|
+
string;
|
|
220
281
|
/** A list of operations that matches the specified filter in the request. */
|
|
221
|
-
operations?:
|
|
282
|
+
operations?:
|
|
283
|
+
Operation[];
|
|
222
284
|
}
|
|
223
285
|
interface Location {
|
|
224
286
|
/** The friendly name for this location, typically a nearby city name. For example, "Tokyo". */
|
|
225
|
-
displayName?:
|
|
287
|
+
displayName?:
|
|
288
|
+
string;
|
|
226
289
|
/** Cross-service attributes for the location. For example {"cloud.googleapis.com/region": "us-east1"} */
|
|
227
|
-
labels?:
|
|
290
|
+
labels?:
|
|
291
|
+
{ [P in string]: string };
|
|
228
292
|
/** The canonical id for this location. For example: `"us-east1"`. */
|
|
229
|
-
locationId?:
|
|
293
|
+
locationId?:
|
|
294
|
+
string;
|
|
230
295
|
/** Service-specific metadata. For example the available capacity at the given location. */
|
|
231
|
-
metadata?:
|
|
296
|
+
metadata?:
|
|
297
|
+
{ [P in string]: any };
|
|
232
298
|
/** Resource name for the location, which may vary between implementations. For example: `"projects/example-project/locations/us-east1"` */
|
|
233
|
-
name?:
|
|
299
|
+
name?:
|
|
300
|
+
string;
|
|
234
301
|
}
|
|
235
302
|
interface MigrationJob {
|
|
236
303
|
/** Output only. The timestamp when the migration job resource was created. A timestamp in RFC3339 UTC "Zulu" format, accurate to nanoseconds. Example: "2014-10-02T15:01:23.045123456Z". */
|
|
237
|
-
createTime?:
|
|
304
|
+
createTime?:
|
|
305
|
+
string;
|
|
238
306
|
/** Required. The resource name (URI) of the destination connection profile. */
|
|
239
|
-
destination?:
|
|
307
|
+
destination?:
|
|
308
|
+
string;
|
|
240
309
|
/** The database engine type and provider of the destination. */
|
|
241
|
-
destinationDatabase?:
|
|
310
|
+
destinationDatabase?:
|
|
311
|
+
DatabaseType;
|
|
242
312
|
/** The migration job display name. */
|
|
243
|
-
displayName?:
|
|
313
|
+
displayName?:
|
|
314
|
+
string;
|
|
244
315
|
/** The path to the dump file in Google Cloud Storage, in the format: (gs://[BUCKET_NAME]/[OBJECT_NAME]). */
|
|
245
|
-
dumpPath?:
|
|
316
|
+
dumpPath?:
|
|
317
|
+
string;
|
|
246
318
|
/** Output only. The duration of the migration job (in seconds). A duration in seconds with up to nine fractional digits, terminated by 's'. Example: "3.5s". */
|
|
247
|
-
duration?:
|
|
319
|
+
duration?:
|
|
320
|
+
string;
|
|
248
321
|
/** Output only. If the migration job is completed, the time when it was completed. */
|
|
249
|
-
endTime?:
|
|
322
|
+
endTime?:
|
|
323
|
+
string;
|
|
250
324
|
/** Output only. The error details in case of state FAILED. */
|
|
251
|
-
error?:
|
|
325
|
+
error?:
|
|
326
|
+
Status;
|
|
252
327
|
/**
|
|
253
328
|
* The resource labels for migration job to use to annotate any related underlying resources such as Compute Engine VMs. An object containing a list of "key": "value" pairs. Example:
|
|
254
329
|
* `{ "name": "wrench", "mass": "1.3kg", "count": "3" }`.
|
|
255
330
|
*/
|
|
256
|
-
labels?:
|
|
331
|
+
labels?:
|
|
332
|
+
{ [P in string]: string };
|
|
257
333
|
/** The name (URI) of this migration job resource, in the form of: projects/{project}/locations/{location}/migrationJobs/{migrationJob}. */
|
|
258
|
-
name?:
|
|
334
|
+
name?:
|
|
335
|
+
string;
|
|
259
336
|
/** Output only. The current migration job phase. */
|
|
260
|
-
phase?:
|
|
337
|
+
phase?:
|
|
338
|
+
string;
|
|
261
339
|
/** The details needed to communicate to the source over Reverse SSH tunnel connectivity. */
|
|
262
|
-
reverseSshConnectivity?:
|
|
340
|
+
reverseSshConnectivity?:
|
|
341
|
+
ReverseSshConnectivity;
|
|
263
342
|
/** Required. The resource name (URI) of the source connection profile. */
|
|
264
|
-
source?:
|
|
343
|
+
source?:
|
|
344
|
+
string;
|
|
265
345
|
/** The database engine type and provider of the source. */
|
|
266
|
-
sourceDatabase?:
|
|
346
|
+
sourceDatabase?:
|
|
347
|
+
DatabaseType;
|
|
267
348
|
/** The current migration job state. */
|
|
268
|
-
state?:
|
|
349
|
+
state?:
|
|
350
|
+
string;
|
|
269
351
|
/** static ip connectivity data (default, no additional details needed). */
|
|
270
|
-
staticIpConnectivity?:
|
|
352
|
+
staticIpConnectivity?:
|
|
353
|
+
any;
|
|
271
354
|
/** Required. The migration job type. */
|
|
272
|
-
type?:
|
|
355
|
+
type?:
|
|
356
|
+
string;
|
|
273
357
|
/**
|
|
274
358
|
* Output only. The timestamp when the migration job resource was last updated. A timestamp in RFC3339 UTC "Zulu" format, accurate to nanoseconds. Example:
|
|
275
359
|
* "2014-10-02T15:01:23.045123456Z".
|
|
276
360
|
*/
|
|
277
|
-
updateTime?:
|
|
361
|
+
updateTime?:
|
|
362
|
+
string;
|
|
278
363
|
/** The details of the VPC network that the source database is located in. */
|
|
279
|
-
vpcPeeringConnectivity?:
|
|
364
|
+
vpcPeeringConnectivity?:
|
|
365
|
+
VpcPeeringConnectivity;
|
|
280
366
|
}
|
|
281
367
|
interface MigrationJobVerificationError {
|
|
282
368
|
/** Output only. An instance of ErrorCode specifying the error that occurred. */
|
|
283
|
-
errorCode?:
|
|
369
|
+
errorCode?:
|
|
370
|
+
string;
|
|
284
371
|
/** Output only. A specific detailed error message, if supplied by the engine. */
|
|
285
|
-
errorDetailMessage?:
|
|
372
|
+
errorDetailMessage?:
|
|
373
|
+
string;
|
|
286
374
|
/** Output only. A formatted message with further details about the error and a CTA. */
|
|
287
|
-
errorMessage?:
|
|
375
|
+
errorMessage?:
|
|
376
|
+
string;
|
|
288
377
|
}
|
|
289
378
|
interface MySqlConnectionProfile {
|
|
290
379
|
/** If the source is a Cloud SQL database, use this field to provide the Cloud SQL instance ID of the source. */
|
|
291
|
-
cloudSqlId?:
|
|
380
|
+
cloudSqlId?:
|
|
381
|
+
string;
|
|
292
382
|
/** Required. The IP or hostname of the source MySQL database. */
|
|
293
|
-
host?:
|
|
383
|
+
host?:
|
|
384
|
+
string;
|
|
294
385
|
/**
|
|
295
386
|
* Required. Input only. The password for the user that Database Migration Service will be using to connect to the database. This field is not returned on request, and the value is
|
|
296
387
|
* encrypted when stored in Database Migration Service.
|
|
297
388
|
*/
|
|
298
|
-
password?:
|
|
389
|
+
password?:
|
|
390
|
+
string;
|
|
299
391
|
/** Output only. Indicates If this connection profile password is stored. */
|
|
300
|
-
passwordSet?:
|
|
392
|
+
passwordSet?:
|
|
393
|
+
boolean;
|
|
301
394
|
/** Required. The network port of the source MySQL database. */
|
|
302
|
-
port?:
|
|
395
|
+
port?:
|
|
396
|
+
number;
|
|
303
397
|
/** SSL configuration for the destination to connect to the source database. */
|
|
304
|
-
ssl?:
|
|
398
|
+
ssl?:
|
|
399
|
+
SslConfig;
|
|
305
400
|
/** Required. The username that Database Migration Service will use to connect to the database. The value is encrypted when stored in Database Migration Service. */
|
|
306
|
-
username?:
|
|
401
|
+
username?:
|
|
402
|
+
string;
|
|
307
403
|
}
|
|
308
404
|
interface Operation {
|
|
309
405
|
/** 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. */
|
|
310
|
-
done?:
|
|
406
|
+
done?:
|
|
407
|
+
boolean;
|
|
311
408
|
/** The error result of the operation in case of failure or cancellation. */
|
|
312
|
-
error?:
|
|
409
|
+
error?:
|
|
410
|
+
Status;
|
|
313
411
|
/**
|
|
314
412
|
* 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
|
|
315
413
|
* metadata. Any method that returns a long-running operation should document the metadata type, if any.
|
|
316
414
|
*/
|
|
317
|
-
metadata?:
|
|
415
|
+
metadata?:
|
|
416
|
+
{ [P in string]: any };
|
|
318
417
|
/**
|
|
319
418
|
* 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
|
|
320
419
|
* with `operations/{unique_id}`.
|
|
321
420
|
*/
|
|
322
|
-
name?:
|
|
421
|
+
name?:
|
|
422
|
+
string;
|
|
323
423
|
/**
|
|
324
424
|
* 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
|
|
325
425
|
* original 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
|
|
326
426
|
* original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
|
|
327
427
|
*/
|
|
328
|
-
response?:
|
|
428
|
+
response?:
|
|
429
|
+
{ [P in string]: any };
|
|
329
430
|
}
|
|
330
431
|
interface Policy {
|
|
331
432
|
/** Specifies cloud audit logging configuration for this policy. */
|
|
332
|
-
auditConfigs?:
|
|
433
|
+
auditConfigs?:
|
|
434
|
+
AuditConfig[];
|
|
333
435
|
/**
|
|
334
436
|
* 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`
|
|
335
437
|
* must 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
|
|
336
438
|
* principal 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
|
|
337
439
|
* 1,450 principals to the `bindings` in the `Policy`.
|
|
338
440
|
*/
|
|
339
|
-
bindings?:
|
|
441
|
+
bindings?:
|
|
442
|
+
Binding[];
|
|
340
443
|
/**
|
|
341
444
|
* `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
|
|
342
445
|
* use 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
|
|
@@ -344,7 +447,8 @@ declare namespace gapi.client {
|
|
|
344
447
|
* Conditions, you must include 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`
|
|
345
448
|
* policy, and all of the conditions in the version `3` policy are lost.
|
|
346
449
|
*/
|
|
347
|
-
etag?:
|
|
450
|
+
etag?:
|
|
451
|
+
string;
|
|
348
452
|
/**
|
|
349
453
|
* 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
|
|
350
454
|
* must 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
|
|
@@ -353,7 +457,8 @@ declare namespace gapi.client {
|
|
|
353
457
|
* policy, and all of the 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
|
|
354
458
|
* the field unset. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
|
|
355
459
|
*/
|
|
356
|
-
version?:
|
|
460
|
+
version?:
|
|
461
|
+
number;
|
|
357
462
|
}
|
|
358
463
|
// tslint:disable-next-line:no-empty-interface
|
|
359
464
|
interface PromoteMigrationJobRequest {
|
|
@@ -366,71 +471,90 @@ declare namespace gapi.client {
|
|
|
366
471
|
}
|
|
367
472
|
interface ReverseSshConnectivity {
|
|
368
473
|
/** The name of the virtual machine (Compute Engine) used as the bastion server for the SSH tunnel. */
|
|
369
|
-
vm?:
|
|
474
|
+
vm?:
|
|
475
|
+
string;
|
|
370
476
|
/** Required. The IP of the virtual machine (Compute Engine) used as the bastion server for the SSH tunnel. */
|
|
371
|
-
vmIp?:
|
|
477
|
+
vmIp?:
|
|
478
|
+
string;
|
|
372
479
|
/** Required. The forwarding port of the virtual machine (Compute Engine) used as the bastion server for the SSH tunnel. */
|
|
373
|
-
vmPort?:
|
|
480
|
+
vmPort?:
|
|
481
|
+
number;
|
|
374
482
|
/** The name of the VPC to peer with the Cloud SQL private network. */
|
|
375
|
-
vpc?:
|
|
483
|
+
vpc?:
|
|
484
|
+
string;
|
|
376
485
|
}
|
|
377
486
|
interface SetIamPolicyRequest {
|
|
378
487
|
/**
|
|
379
488
|
* 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
|
|
380
489
|
* services (such as Projects) might reject them.
|
|
381
490
|
*/
|
|
382
|
-
policy?:
|
|
491
|
+
policy?:
|
|
492
|
+
Policy;
|
|
383
493
|
/**
|
|
384
494
|
* 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 used:
|
|
385
495
|
* `paths: "bindings, etag"`
|
|
386
496
|
*/
|
|
387
|
-
updateMask?:
|
|
497
|
+
updateMask?:
|
|
498
|
+
string;
|
|
388
499
|
}
|
|
389
500
|
interface SqlAclEntry {
|
|
390
501
|
/** The time when this access control entry expires in [RFC 3339](https://tools.ietf.org/html/rfc3339) format, for example: `2012-11-15T16:19:00.094Z`. */
|
|
391
|
-
expireTime?:
|
|
502
|
+
expireTime?:
|
|
503
|
+
string;
|
|
392
504
|
/** A label to identify this entry. */
|
|
393
|
-
label?:
|
|
505
|
+
label?:
|
|
506
|
+
string;
|
|
394
507
|
/** Input only. The time-to-leave of this access control entry. */
|
|
395
|
-
ttl?:
|
|
508
|
+
ttl?:
|
|
509
|
+
string;
|
|
396
510
|
/** The allowlisted value for the access control list. */
|
|
397
|
-
value?:
|
|
511
|
+
value?:
|
|
512
|
+
string;
|
|
398
513
|
}
|
|
399
514
|
interface SqlIpConfig {
|
|
400
515
|
/**
|
|
401
516
|
* The list of external networks that are allowed to connect to the instance using the IP. See https://en.wikipedia.org/wiki/CIDR_notation#CIDR_notation, also known as 'slash' notation
|
|
402
517
|
* (e.g. `192.168.100.0/24`).
|
|
403
518
|
*/
|
|
404
|
-
authorizedNetworks?:
|
|
519
|
+
authorizedNetworks?:
|
|
520
|
+
SqlAclEntry[];
|
|
405
521
|
/** Whether the instance is assigned a public IP address or not. */
|
|
406
|
-
enableIpv4?:
|
|
522
|
+
enableIpv4?:
|
|
523
|
+
boolean;
|
|
407
524
|
/**
|
|
408
525
|
* The resource link for the VPC network from which the Cloud SQL instance is accessible for private IP. For example, `/projects/myProject/global/networks/default`. This setting can be
|
|
409
526
|
* updated, but it cannot be removed after it is set.
|
|
410
527
|
*/
|
|
411
|
-
privateNetwork?:
|
|
528
|
+
privateNetwork?:
|
|
529
|
+
string;
|
|
412
530
|
/** Whether SSL connections over IP should be enforced or not. */
|
|
413
|
-
requireSsl?:
|
|
531
|
+
requireSsl?:
|
|
532
|
+
boolean;
|
|
414
533
|
}
|
|
415
534
|
interface SshScript {
|
|
416
535
|
/** The ssh configuration script. */
|
|
417
|
-
script?:
|
|
536
|
+
script?:
|
|
537
|
+
string;
|
|
418
538
|
}
|
|
419
539
|
interface SslConfig {
|
|
420
540
|
/**
|
|
421
541
|
* Required. Input only. The x509 PEM-encoded certificate of the CA that signed the source database server's certificate. The replica will use this certificate to verify it's
|
|
422
542
|
* connecting to the right host.
|
|
423
543
|
*/
|
|
424
|
-
caCertificate?:
|
|
544
|
+
caCertificate?:
|
|
545
|
+
string;
|
|
425
546
|
/**
|
|
426
547
|
* Input only. The x509 PEM-encoded certificate that will be used by the replica to authenticate against the source database server.If this field is used then the 'client_key' field is
|
|
427
548
|
* mandatory.
|
|
428
549
|
*/
|
|
429
|
-
clientCertificate?:
|
|
550
|
+
clientCertificate?:
|
|
551
|
+
string;
|
|
430
552
|
/** Input only. The unencrypted PKCS#1 or PKCS#8 PEM-encoded private key associated with the Client Certificate. If this field is used then the 'client_certificate' field is mandatory. */
|
|
431
|
-
clientKey?:
|
|
553
|
+
clientKey?:
|
|
554
|
+
string;
|
|
432
555
|
/** Output only. The ssl config type according to 'client_key', 'client_certificate' and 'ca_certificate'. */
|
|
433
|
-
type?:
|
|
556
|
+
type?:
|
|
557
|
+
string;
|
|
434
558
|
}
|
|
435
559
|
// tslint:disable-next-line:no-empty-interface
|
|
436
560
|
interface StartMigrationJobRequest {
|
|
@@ -440,14 +564,17 @@ declare namespace gapi.client {
|
|
|
440
564
|
}
|
|
441
565
|
interface Status {
|
|
442
566
|
/** The status code, which should be an enum value of google.rpc.Code. */
|
|
443
|
-
code?:
|
|
567
|
+
code?:
|
|
568
|
+
number;
|
|
444
569
|
/** A list of messages that carry the error details. There is a common set of message types for APIs to use. */
|
|
445
|
-
details?:
|
|
570
|
+
details?:
|
|
571
|
+
Array<{ [P in string]: any }>;
|
|
446
572
|
/**
|
|
447
573
|
* 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
|
|
448
574
|
* client.
|
|
449
575
|
*/
|
|
450
|
-
message?:
|
|
576
|
+
message?:
|
|
577
|
+
string;
|
|
451
578
|
}
|
|
452
579
|
// tslint:disable-next-line:no-empty-interface
|
|
453
580
|
interface StopMigrationJobRequest {
|
|
@@ -457,179 +584,248 @@ declare namespace gapi.client {
|
|
|
457
584
|
* The set of permissions to check for the `resource`. Permissions with wildcards (such as `*` or `storage.*`) are not allowed. For more information see [IAM
|
|
458
585
|
* Overview](https://cloud.google.com/iam/docs/overview#permissions).
|
|
459
586
|
*/
|
|
460
|
-
permissions?:
|
|
587
|
+
permissions?:
|
|
588
|
+
string[];
|
|
461
589
|
}
|
|
462
590
|
interface TestIamPermissionsResponse {
|
|
463
591
|
/** A subset of `TestPermissionsRequest.permissions` that the caller is allowed. */
|
|
464
|
-
permissions?:
|
|
592
|
+
permissions?:
|
|
593
|
+
string[];
|
|
465
594
|
}
|
|
466
595
|
// tslint:disable-next-line:no-empty-interface
|
|
467
596
|
interface VerifyMigrationJobRequest {
|
|
468
597
|
}
|
|
469
598
|
interface VmCreationConfig {
|
|
470
599
|
/** The subnet name the vm needs to be created in. */
|
|
471
|
-
subnet?:
|
|
600
|
+
subnet?:
|
|
601
|
+
string;
|
|
472
602
|
/** Required. VM instance machine type to create. */
|
|
473
|
-
vmMachineType?:
|
|
603
|
+
vmMachineType?:
|
|
604
|
+
string;
|
|
474
605
|
/** The Google Cloud Platform zone to create the VM in. */
|
|
475
|
-
vmZone?:
|
|
606
|
+
vmZone?:
|
|
607
|
+
string;
|
|
476
608
|
}
|
|
477
609
|
interface VmSelectionConfig {
|
|
478
610
|
/** Required. The Google Cloud Platform zone the VM is located. */
|
|
479
|
-
vmZone?:
|
|
611
|
+
vmZone?:
|
|
612
|
+
string;
|
|
480
613
|
}
|
|
481
614
|
interface VpcPeeringConnectivity {
|
|
482
615
|
/** The name of the VPC network to peer with the Cloud SQL private network. */
|
|
483
|
-
vpc?:
|
|
616
|
+
vpc?:
|
|
617
|
+
string;
|
|
484
618
|
}
|
|
485
619
|
interface ConnectionProfilesResource {
|
|
486
620
|
/** Creates a new connection profile in a given project and location. */
|
|
487
621
|
create(request: {
|
|
488
622
|
/** V1 error format. */
|
|
489
|
-
"$.xgafv"?:
|
|
623
|
+
"$.xgafv"?:
|
|
624
|
+
string;
|
|
490
625
|
/** OAuth access token. */
|
|
491
|
-
access_token?:
|
|
626
|
+
access_token?:
|
|
627
|
+
string;
|
|
492
628
|
/** Data format for response. */
|
|
493
|
-
alt?:
|
|
629
|
+
alt?:
|
|
630
|
+
string;
|
|
494
631
|
/** JSONP */
|
|
495
|
-
callback?:
|
|
632
|
+
callback?:
|
|
633
|
+
string;
|
|
496
634
|
/** Required. The connection profile identifier. */
|
|
497
|
-
connectionProfileId?:
|
|
635
|
+
connectionProfileId?:
|
|
636
|
+
string;
|
|
498
637
|
/** Selector specifying which fields to include in a partial response. */
|
|
499
|
-
fields?:
|
|
638
|
+
fields?:
|
|
639
|
+
string;
|
|
500
640
|
/** 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. */
|
|
501
|
-
key?:
|
|
641
|
+
key?:
|
|
642
|
+
string;
|
|
502
643
|
/** OAuth 2.0 token for the current user. */
|
|
503
|
-
oauth_token?:
|
|
644
|
+
oauth_token?:
|
|
645
|
+
string;
|
|
504
646
|
/** Required. The parent, which owns this collection of connection profiles. */
|
|
505
|
-
parent:
|
|
647
|
+
parent:
|
|
648
|
+
string;
|
|
506
649
|
/** Returns response with indentations and line breaks. */
|
|
507
|
-
prettyPrint?:
|
|
650
|
+
prettyPrint?:
|
|
651
|
+
boolean;
|
|
508
652
|
/** 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. */
|
|
509
|
-
quotaUser?:
|
|
653
|
+
quotaUser?:
|
|
654
|
+
string;
|
|
510
655
|
/**
|
|
511
656
|
* A unique id used to identify the request. If the server receives two requests with the same id, then the second request will be ignored. It is recommended to always set this
|
|
512
657
|
* value to a UUID. The id must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40 characters.
|
|
513
658
|
*/
|
|
514
|
-
requestId?:
|
|
659
|
+
requestId?:
|
|
660
|
+
string;
|
|
515
661
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
516
|
-
upload_protocol?:
|
|
662
|
+
upload_protocol?:
|
|
663
|
+
string;
|
|
517
664
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
518
|
-
uploadType?:
|
|
665
|
+
uploadType?:
|
|
666
|
+
string;
|
|
519
667
|
/** Request body */
|
|
520
|
-
resource:
|
|
668
|
+
resource:
|
|
669
|
+
ConnectionProfile;
|
|
521
670
|
}): Request<Operation>;
|
|
522
671
|
create(request: {
|
|
523
672
|
/** V1 error format. */
|
|
524
|
-
"$.xgafv"?:
|
|
673
|
+
"$.xgafv"?:
|
|
674
|
+
string;
|
|
525
675
|
/** OAuth access token. */
|
|
526
|
-
access_token?:
|
|
676
|
+
access_token?:
|
|
677
|
+
string;
|
|
527
678
|
/** Data format for response. */
|
|
528
|
-
alt?:
|
|
679
|
+
alt?:
|
|
680
|
+
string;
|
|
529
681
|
/** JSONP */
|
|
530
|
-
callback?:
|
|
682
|
+
callback?:
|
|
683
|
+
string;
|
|
531
684
|
/** Required. The connection profile identifier. */
|
|
532
|
-
connectionProfileId?:
|
|
685
|
+
connectionProfileId?:
|
|
686
|
+
string;
|
|
533
687
|
/** Selector specifying which fields to include in a partial response. */
|
|
534
|
-
fields?:
|
|
688
|
+
fields?:
|
|
689
|
+
string;
|
|
535
690
|
/** 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. */
|
|
536
|
-
key?:
|
|
691
|
+
key?:
|
|
692
|
+
string;
|
|
537
693
|
/** OAuth 2.0 token for the current user. */
|
|
538
|
-
oauth_token?:
|
|
694
|
+
oauth_token?:
|
|
695
|
+
string;
|
|
539
696
|
/** Required. The parent, which owns this collection of connection profiles. */
|
|
540
|
-
parent:
|
|
697
|
+
parent:
|
|
698
|
+
string;
|
|
541
699
|
/** Returns response with indentations and line breaks. */
|
|
542
|
-
prettyPrint?:
|
|
700
|
+
prettyPrint?:
|
|
701
|
+
boolean;
|
|
543
702
|
/** 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. */
|
|
544
|
-
quotaUser?:
|
|
703
|
+
quotaUser?:
|
|
704
|
+
string;
|
|
545
705
|
/**
|
|
546
706
|
* A unique id used to identify the request. If the server receives two requests with the same id, then the second request will be ignored. It is recommended to always set this
|
|
547
707
|
* value to a UUID. The id must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40 characters.
|
|
548
708
|
*/
|
|
549
|
-
requestId?:
|
|
709
|
+
requestId?:
|
|
710
|
+
string;
|
|
550
711
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
551
|
-
upload_protocol?:
|
|
712
|
+
upload_protocol?:
|
|
713
|
+
string;
|
|
552
714
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
553
|
-
uploadType?:
|
|
715
|
+
uploadType?:
|
|
716
|
+
string;
|
|
554
717
|
},
|
|
555
718
|
body: ConnectionProfile): Request<Operation>;
|
|
556
719
|
/** Deletes a single Database Migration Service connection profile. A connection profile can only be deleted if it is not in use by any active migration jobs. */
|
|
557
720
|
delete(request?: {
|
|
558
721
|
/** V1 error format. */
|
|
559
|
-
"$.xgafv"?:
|
|
722
|
+
"$.xgafv"?:
|
|
723
|
+
string;
|
|
560
724
|
/** OAuth access token. */
|
|
561
|
-
access_token?:
|
|
725
|
+
access_token?:
|
|
726
|
+
string;
|
|
562
727
|
/** Data format for response. */
|
|
563
|
-
alt?:
|
|
728
|
+
alt?:
|
|
729
|
+
string;
|
|
564
730
|
/** JSONP */
|
|
565
|
-
callback?:
|
|
731
|
+
callback?:
|
|
732
|
+
string;
|
|
566
733
|
/** Selector specifying which fields to include in a partial response. */
|
|
567
|
-
fields?:
|
|
734
|
+
fields?:
|
|
735
|
+
string;
|
|
568
736
|
/** In case of force delete, the CloudSQL replica database is also deleted (only for CloudSQL connection profile). */
|
|
569
|
-
force?:
|
|
737
|
+
force?:
|
|
738
|
+
boolean;
|
|
570
739
|
/** 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. */
|
|
571
|
-
key?:
|
|
740
|
+
key?:
|
|
741
|
+
string;
|
|
572
742
|
/** Required. Name of the connection profile resource to delete. */
|
|
573
|
-
name:
|
|
743
|
+
name:
|
|
744
|
+
string;
|
|
574
745
|
/** OAuth 2.0 token for the current user. */
|
|
575
|
-
oauth_token?:
|
|
746
|
+
oauth_token?:
|
|
747
|
+
string;
|
|
576
748
|
/** Returns response with indentations and line breaks. */
|
|
577
|
-
prettyPrint?:
|
|
749
|
+
prettyPrint?:
|
|
750
|
+
boolean;
|
|
578
751
|
/** 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. */
|
|
579
|
-
quotaUser?:
|
|
752
|
+
quotaUser?:
|
|
753
|
+
string;
|
|
580
754
|
/**
|
|
581
755
|
* A unique id used to identify the request. If the server receives two requests with the same id, then the second request will be ignored. It is recommended to always set this
|
|
582
756
|
* value to a UUID. The id must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40 characters.
|
|
583
757
|
*/
|
|
584
|
-
requestId?:
|
|
758
|
+
requestId?:
|
|
759
|
+
string;
|
|
585
760
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
586
|
-
upload_protocol?:
|
|
761
|
+
upload_protocol?:
|
|
762
|
+
string;
|
|
587
763
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
588
|
-
uploadType?:
|
|
764
|
+
uploadType?:
|
|
765
|
+
string;
|
|
589
766
|
}): Request<Operation>;
|
|
590
767
|
/** Gets details of a single connection profile. */
|
|
591
768
|
get(request?: {
|
|
592
769
|
/** V1 error format. */
|
|
593
|
-
"$.xgafv"?:
|
|
770
|
+
"$.xgafv"?:
|
|
771
|
+
string;
|
|
594
772
|
/** OAuth access token. */
|
|
595
|
-
access_token?:
|
|
773
|
+
access_token?:
|
|
774
|
+
string;
|
|
596
775
|
/** Data format for response. */
|
|
597
|
-
alt?:
|
|
776
|
+
alt?:
|
|
777
|
+
string;
|
|
598
778
|
/** JSONP */
|
|
599
|
-
callback?:
|
|
779
|
+
callback?:
|
|
780
|
+
string;
|
|
600
781
|
/** Selector specifying which fields to include in a partial response. */
|
|
601
|
-
fields?:
|
|
782
|
+
fields?:
|
|
783
|
+
string;
|
|
602
784
|
/** 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. */
|
|
603
|
-
key?:
|
|
785
|
+
key?:
|
|
786
|
+
string;
|
|
604
787
|
/** Required. Name of the connection profile resource to get. */
|
|
605
|
-
name:
|
|
788
|
+
name:
|
|
789
|
+
string;
|
|
606
790
|
/** OAuth 2.0 token for the current user. */
|
|
607
|
-
oauth_token?:
|
|
791
|
+
oauth_token?:
|
|
792
|
+
string;
|
|
608
793
|
/** Returns response with indentations and line breaks. */
|
|
609
|
-
prettyPrint?:
|
|
794
|
+
prettyPrint?:
|
|
795
|
+
boolean;
|
|
610
796
|
/** 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. */
|
|
611
|
-
quotaUser?:
|
|
797
|
+
quotaUser?:
|
|
798
|
+
string;
|
|
612
799
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
613
|
-
upload_protocol?:
|
|
800
|
+
upload_protocol?:
|
|
801
|
+
string;
|
|
614
802
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
615
|
-
uploadType?:
|
|
803
|
+
uploadType?:
|
|
804
|
+
string;
|
|
616
805
|
}): Request<ConnectionProfile>;
|
|
617
806
|
/** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
|
|
618
807
|
getIamPolicy(request?: {
|
|
619
808
|
/** V1 error format. */
|
|
620
|
-
"$.xgafv"?:
|
|
809
|
+
"$.xgafv"?:
|
|
810
|
+
string;
|
|
621
811
|
/** OAuth access token. */
|
|
622
|
-
access_token?:
|
|
812
|
+
access_token?:
|
|
813
|
+
string;
|
|
623
814
|
/** Data format for response. */
|
|
624
|
-
alt?:
|
|
815
|
+
alt?:
|
|
816
|
+
string;
|
|
625
817
|
/** JSONP */
|
|
626
|
-
callback?:
|
|
818
|
+
callback?:
|
|
819
|
+
string;
|
|
627
820
|
/** Selector specifying which fields to include in a partial response. */
|
|
628
|
-
fields?:
|
|
821
|
+
fields?:
|
|
822
|
+
string;
|
|
629
823
|
/** 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. */
|
|
630
|
-
key?:
|
|
824
|
+
key?:
|
|
825
|
+
string;
|
|
631
826
|
/** OAuth 2.0 token for the current user. */
|
|
632
|
-
oauth_token?:
|
|
827
|
+
oauth_token?:
|
|
828
|
+
string;
|
|
633
829
|
/**
|
|
634
830
|
* 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
|
|
635
831
|
* 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
|
|
@@ -637,166 +833,229 @@ declare namespace gapi.client {
|
|
|
637
833
|
* role bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM
|
|
638
834
|
* documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
|
|
639
835
|
*/
|
|
640
|
-
"options.requestedPolicyVersion"?:
|
|
836
|
+
"options.requestedPolicyVersion"?:
|
|
837
|
+
number;
|
|
641
838
|
/** Returns response with indentations and line breaks. */
|
|
642
|
-
prettyPrint?:
|
|
839
|
+
prettyPrint?:
|
|
840
|
+
boolean;
|
|
643
841
|
/** 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. */
|
|
644
|
-
quotaUser?:
|
|
842
|
+
quotaUser?:
|
|
843
|
+
string;
|
|
645
844
|
/**
|
|
646
845
|
* 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
|
|
647
846
|
* field.
|
|
648
847
|
*/
|
|
649
|
-
resource:
|
|
848
|
+
resource:
|
|
849
|
+
string;
|
|
650
850
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
651
|
-
upload_protocol?:
|
|
851
|
+
upload_protocol?:
|
|
852
|
+
string;
|
|
652
853
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
653
|
-
uploadType?:
|
|
854
|
+
uploadType?:
|
|
855
|
+
string;
|
|
654
856
|
}): Request<Policy>;
|
|
655
857
|
/** Retrieve a list of all connection profiles in a given project and location. */
|
|
656
858
|
list(request?: {
|
|
657
859
|
/** V1 error format. */
|
|
658
|
-
"$.xgafv"?:
|
|
860
|
+
"$.xgafv"?:
|
|
861
|
+
string;
|
|
659
862
|
/** OAuth access token. */
|
|
660
|
-
access_token?:
|
|
863
|
+
access_token?:
|
|
864
|
+
string;
|
|
661
865
|
/** Data format for response. */
|
|
662
|
-
alt?:
|
|
866
|
+
alt?:
|
|
867
|
+
string;
|
|
663
868
|
/** JSONP */
|
|
664
|
-
callback?:
|
|
869
|
+
callback?:
|
|
870
|
+
string;
|
|
665
871
|
/** Selector specifying which fields to include in a partial response. */
|
|
666
|
-
fields?:
|
|
872
|
+
fields?:
|
|
873
|
+
string;
|
|
667
874
|
/**
|
|
668
875
|
* A filter expression that filters connection profiles listed in the response. The expression must specify the field name, a comparison operator, and the value that you want to
|
|
669
876
|
* use for filtering. The value must be a string, a number, or a boolean. The comparison operator must be either =, !=, >, or <. For example, list connection profiles created this
|
|
670
877
|
* year by specifying **createTime %gt; 2020-01-01T00:00:00.000000000Z**. You can also filter nested fields. For example, you could specify **mySql.username = %lt;my_username%gt;**
|
|
671
878
|
* to list all connection profiles configured to connect with a specific username.
|
|
672
879
|
*/
|
|
673
|
-
filter?:
|
|
880
|
+
filter?:
|
|
881
|
+
string;
|
|
674
882
|
/** 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. */
|
|
675
|
-
key?:
|
|
883
|
+
key?:
|
|
884
|
+
string;
|
|
676
885
|
/** OAuth 2.0 token for the current user. */
|
|
677
|
-
oauth_token?:
|
|
886
|
+
oauth_token?:
|
|
887
|
+
string;
|
|
678
888
|
/** the order by fields for the result. */
|
|
679
|
-
orderBy?:
|
|
889
|
+
orderBy?:
|
|
890
|
+
string;
|
|
680
891
|
/**
|
|
681
892
|
* The maximum number of connection profiles to return. The service may return fewer than this value. If unspecified, at most 50 connection profiles will be returned. The maximum
|
|
682
893
|
* value is 1000; values above 1000 will be coerced to 1000.
|
|
683
894
|
*/
|
|
684
|
-
pageSize?:
|
|
895
|
+
pageSize?:
|
|
896
|
+
number;
|
|
685
897
|
/**
|
|
686
898
|
* A page token, received from a previous `ListConnectionProfiles` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to
|
|
687
899
|
* `ListConnectionProfiles` must match the call that provided the page token.
|
|
688
900
|
*/
|
|
689
|
-
pageToken?:
|
|
901
|
+
pageToken?:
|
|
902
|
+
string;
|
|
690
903
|
/** Required. The parent, which owns this collection of connection profiles. */
|
|
691
|
-
parent:
|
|
904
|
+
parent:
|
|
905
|
+
string;
|
|
692
906
|
/** Returns response with indentations and line breaks. */
|
|
693
|
-
prettyPrint?:
|
|
907
|
+
prettyPrint?:
|
|
908
|
+
boolean;
|
|
694
909
|
/** 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. */
|
|
695
|
-
quotaUser?:
|
|
910
|
+
quotaUser?:
|
|
911
|
+
string;
|
|
696
912
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
697
|
-
upload_protocol?:
|
|
913
|
+
upload_protocol?:
|
|
914
|
+
string;
|
|
698
915
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
699
|
-
uploadType?:
|
|
916
|
+
uploadType?:
|
|
917
|
+
string;
|
|
700
918
|
}): Request<ListConnectionProfilesResponse>;
|
|
701
919
|
/** Update the configuration of a single connection profile. */
|
|
702
920
|
patch(request: {
|
|
703
921
|
/** V1 error format. */
|
|
704
|
-
"$.xgafv"?:
|
|
922
|
+
"$.xgafv"?:
|
|
923
|
+
string;
|
|
705
924
|
/** OAuth access token. */
|
|
706
|
-
access_token?:
|
|
925
|
+
access_token?:
|
|
926
|
+
string;
|
|
707
927
|
/** Data format for response. */
|
|
708
|
-
alt?:
|
|
928
|
+
alt?:
|
|
929
|
+
string;
|
|
709
930
|
/** JSONP */
|
|
710
|
-
callback?:
|
|
931
|
+
callback?:
|
|
932
|
+
string;
|
|
711
933
|
/** Selector specifying which fields to include in a partial response. */
|
|
712
|
-
fields?:
|
|
934
|
+
fields?:
|
|
935
|
+
string;
|
|
713
936
|
/** 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. */
|
|
714
|
-
key?:
|
|
937
|
+
key?:
|
|
938
|
+
string;
|
|
715
939
|
/** The name of this connection profile resource in the form of projects/{project}/locations/{location}/connectionProfiles/{connectionProfile}. */
|
|
716
|
-
name:
|
|
940
|
+
name:
|
|
941
|
+
string;
|
|
717
942
|
/** OAuth 2.0 token for the current user. */
|
|
718
|
-
oauth_token?:
|
|
943
|
+
oauth_token?:
|
|
944
|
+
string;
|
|
719
945
|
/** Returns response with indentations and line breaks. */
|
|
720
|
-
prettyPrint?:
|
|
946
|
+
prettyPrint?:
|
|
947
|
+
boolean;
|
|
721
948
|
/** 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. */
|
|
722
|
-
quotaUser?:
|
|
949
|
+
quotaUser?:
|
|
950
|
+
string;
|
|
723
951
|
/**
|
|
724
952
|
* A unique id used to identify the request. If the server receives two requests with the same id, then the second request will be ignored. It is recommended to always set this
|
|
725
953
|
* value to a UUID. The id must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40 characters.
|
|
726
954
|
*/
|
|
727
|
-
requestId?:
|
|
955
|
+
requestId?:
|
|
956
|
+
string;
|
|
728
957
|
/** Required. Field mask is used to specify the fields to be overwritten in the connection profile resource by the update. */
|
|
729
|
-
updateMask?:
|
|
958
|
+
updateMask?:
|
|
959
|
+
string;
|
|
730
960
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
731
|
-
upload_protocol?:
|
|
961
|
+
upload_protocol?:
|
|
962
|
+
string;
|
|
732
963
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
733
|
-
uploadType?:
|
|
964
|
+
uploadType?:
|
|
965
|
+
string;
|
|
734
966
|
/** Request body */
|
|
735
|
-
resource:
|
|
967
|
+
resource:
|
|
968
|
+
ConnectionProfile;
|
|
736
969
|
}): Request<Operation>;
|
|
737
970
|
patch(request: {
|
|
738
971
|
/** V1 error format. */
|
|
739
|
-
"$.xgafv"?:
|
|
972
|
+
"$.xgafv"?:
|
|
973
|
+
string;
|
|
740
974
|
/** OAuth access token. */
|
|
741
|
-
access_token?:
|
|
975
|
+
access_token?:
|
|
976
|
+
string;
|
|
742
977
|
/** Data format for response. */
|
|
743
|
-
alt?:
|
|
978
|
+
alt?:
|
|
979
|
+
string;
|
|
744
980
|
/** JSONP */
|
|
745
|
-
callback?:
|
|
981
|
+
callback?:
|
|
982
|
+
string;
|
|
746
983
|
/** Selector specifying which fields to include in a partial response. */
|
|
747
|
-
fields?:
|
|
984
|
+
fields?:
|
|
985
|
+
string;
|
|
748
986
|
/** 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. */
|
|
749
|
-
key?:
|
|
987
|
+
key?:
|
|
988
|
+
string;
|
|
750
989
|
/** The name of this connection profile resource in the form of projects/{project}/locations/{location}/connectionProfiles/{connectionProfile}. */
|
|
751
|
-
name:
|
|
990
|
+
name:
|
|
991
|
+
string;
|
|
752
992
|
/** OAuth 2.0 token for the current user. */
|
|
753
|
-
oauth_token?:
|
|
993
|
+
oauth_token?:
|
|
994
|
+
string;
|
|
754
995
|
/** Returns response with indentations and line breaks. */
|
|
755
|
-
prettyPrint?:
|
|
996
|
+
prettyPrint?:
|
|
997
|
+
boolean;
|
|
756
998
|
/** 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. */
|
|
757
|
-
quotaUser?:
|
|
999
|
+
quotaUser?:
|
|
1000
|
+
string;
|
|
758
1001
|
/**
|
|
759
1002
|
* A unique id used to identify the request. If the server receives two requests with the same id, then the second request will be ignored. It is recommended to always set this
|
|
760
1003
|
* value to a UUID. The id must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40 characters.
|
|
761
1004
|
*/
|
|
762
|
-
requestId?:
|
|
1005
|
+
requestId?:
|
|
1006
|
+
string;
|
|
763
1007
|
/** Required. Field mask is used to specify the fields to be overwritten in the connection profile resource by the update. */
|
|
764
|
-
updateMask?:
|
|
1008
|
+
updateMask?:
|
|
1009
|
+
string;
|
|
765
1010
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
766
|
-
upload_protocol?:
|
|
1011
|
+
upload_protocol?:
|
|
1012
|
+
string;
|
|
767
1013
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
768
|
-
uploadType?:
|
|
1014
|
+
uploadType?:
|
|
1015
|
+
string;
|
|
769
1016
|
},
|
|
770
1017
|
body: ConnectionProfile): Request<Operation>;
|
|
771
1018
|
/** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
|
|
772
1019
|
setIamPolicy(request: {
|
|
773
1020
|
/** V1 error format. */
|
|
774
|
-
"$.xgafv"?:
|
|
1021
|
+
"$.xgafv"?:
|
|
1022
|
+
string;
|
|
775
1023
|
/** OAuth access token. */
|
|
776
|
-
access_token?:
|
|
1024
|
+
access_token?:
|
|
1025
|
+
string;
|
|
777
1026
|
/** Data format for response. */
|
|
778
|
-
alt?:
|
|
1027
|
+
alt?:
|
|
1028
|
+
string;
|
|
779
1029
|
/** JSONP */
|
|
780
|
-
callback?:
|
|
1030
|
+
callback?:
|
|
1031
|
+
string;
|
|
781
1032
|
/** Selector specifying which fields to include in a partial response. */
|
|
782
|
-
fields?:
|
|
1033
|
+
fields?:
|
|
1034
|
+
string;
|
|
783
1035
|
/** 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. */
|
|
784
|
-
key?:
|
|
1036
|
+
key?:
|
|
1037
|
+
string;
|
|
785
1038
|
/** OAuth 2.0 token for the current user. */
|
|
786
|
-
oauth_token?:
|
|
1039
|
+
oauth_token?:
|
|
1040
|
+
string;
|
|
787
1041
|
/** Returns response with indentations and line breaks. */
|
|
788
|
-
prettyPrint?:
|
|
1042
|
+
prettyPrint?:
|
|
1043
|
+
boolean;
|
|
789
1044
|
/** 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. */
|
|
790
|
-
quotaUser?:
|
|
1045
|
+
quotaUser?:
|
|
1046
|
+
string;
|
|
791
1047
|
/**
|
|
792
1048
|
* 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
|
|
793
1049
|
* field.
|
|
794
1050
|
*/
|
|
795
|
-
resource:
|
|
1051
|
+
resource:
|
|
1052
|
+
string;
|
|
796
1053
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
797
|
-
upload_protocol?:
|
|
1054
|
+
upload_protocol?:
|
|
1055
|
+
string;
|
|
798
1056
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
799
|
-
uploadType?:
|
|
1057
|
+
uploadType?:
|
|
1058
|
+
string;
|
|
800
1059
|
},
|
|
801
1060
|
body: SetIamPolicyRequest): Request<Policy>;
|
|
802
1061
|
/**
|
|
@@ -805,32 +1064,44 @@ declare namespace gapi.client {
|
|
|
805
1064
|
*/
|
|
806
1065
|
testIamPermissions(request: {
|
|
807
1066
|
/** V1 error format. */
|
|
808
|
-
"$.xgafv"?:
|
|
1067
|
+
"$.xgafv"?:
|
|
1068
|
+
string;
|
|
809
1069
|
/** OAuth access token. */
|
|
810
|
-
access_token?:
|
|
1070
|
+
access_token?:
|
|
1071
|
+
string;
|
|
811
1072
|
/** Data format for response. */
|
|
812
|
-
alt?:
|
|
1073
|
+
alt?:
|
|
1074
|
+
string;
|
|
813
1075
|
/** JSONP */
|
|
814
|
-
callback?:
|
|
1076
|
+
callback?:
|
|
1077
|
+
string;
|
|
815
1078
|
/** Selector specifying which fields to include in a partial response. */
|
|
816
|
-
fields?:
|
|
1079
|
+
fields?:
|
|
1080
|
+
string;
|
|
817
1081
|
/** 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. */
|
|
818
|
-
key?:
|
|
1082
|
+
key?:
|
|
1083
|
+
string;
|
|
819
1084
|
/** OAuth 2.0 token for the current user. */
|
|
820
|
-
oauth_token?:
|
|
1085
|
+
oauth_token?:
|
|
1086
|
+
string;
|
|
821
1087
|
/** Returns response with indentations and line breaks. */
|
|
822
|
-
prettyPrint?:
|
|
1088
|
+
prettyPrint?:
|
|
1089
|
+
boolean;
|
|
823
1090
|
/** 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. */
|
|
824
|
-
quotaUser?:
|
|
1091
|
+
quotaUser?:
|
|
1092
|
+
string;
|
|
825
1093
|
/**
|
|
826
1094
|
* 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
|
|
827
1095
|
* this field.
|
|
828
1096
|
*/
|
|
829
|
-
resource:
|
|
1097
|
+
resource:
|
|
1098
|
+
string;
|
|
830
1099
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
831
|
-
upload_protocol?:
|
|
1100
|
+
upload_protocol?:
|
|
1101
|
+
string;
|
|
832
1102
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
833
|
-
uploadType?:
|
|
1103
|
+
uploadType?:
|
|
1104
|
+
string;
|
|
834
1105
|
},
|
|
835
1106
|
body: TestIamPermissionsRequest): Request<TestIamPermissionsResponse>;
|
|
836
1107
|
}
|
|
@@ -838,206 +1109,293 @@ declare namespace gapi.client {
|
|
|
838
1109
|
/** Creates a new migration job in a given project and location. */
|
|
839
1110
|
create(request: {
|
|
840
1111
|
/** V1 error format. */
|
|
841
|
-
"$.xgafv"?:
|
|
1112
|
+
"$.xgafv"?:
|
|
1113
|
+
string;
|
|
842
1114
|
/** OAuth access token. */
|
|
843
|
-
access_token?:
|
|
1115
|
+
access_token?:
|
|
1116
|
+
string;
|
|
844
1117
|
/** Data format for response. */
|
|
845
|
-
alt?:
|
|
1118
|
+
alt?:
|
|
1119
|
+
string;
|
|
846
1120
|
/** JSONP */
|
|
847
|
-
callback?:
|
|
1121
|
+
callback?:
|
|
1122
|
+
string;
|
|
848
1123
|
/** Selector specifying which fields to include in a partial response. */
|
|
849
|
-
fields?:
|
|
1124
|
+
fields?:
|
|
1125
|
+
string;
|
|
850
1126
|
/** 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. */
|
|
851
|
-
key?:
|
|
1127
|
+
key?:
|
|
1128
|
+
string;
|
|
852
1129
|
/** Required. The ID of the instance to create. */
|
|
853
|
-
migrationJobId?:
|
|
1130
|
+
migrationJobId?:
|
|
1131
|
+
string;
|
|
854
1132
|
/** OAuth 2.0 token for the current user. */
|
|
855
|
-
oauth_token?:
|
|
1133
|
+
oauth_token?:
|
|
1134
|
+
string;
|
|
856
1135
|
/** Required. The parent, which owns this collection of migration jobs. */
|
|
857
|
-
parent:
|
|
1136
|
+
parent:
|
|
1137
|
+
string;
|
|
858
1138
|
/** Returns response with indentations and line breaks. */
|
|
859
|
-
prettyPrint?:
|
|
1139
|
+
prettyPrint?:
|
|
1140
|
+
boolean;
|
|
860
1141
|
/** 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. */
|
|
861
|
-
quotaUser?:
|
|
1142
|
+
quotaUser?:
|
|
1143
|
+
string;
|
|
862
1144
|
/**
|
|
863
1145
|
* A unique id used to identify the request. If the server receives two requests with the same id, then the second request will be ignored. It is recommended to always set this
|
|
864
1146
|
* value to a UUID. The id must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40 characters.
|
|
865
1147
|
*/
|
|
866
|
-
requestId?:
|
|
1148
|
+
requestId?:
|
|
1149
|
+
string;
|
|
867
1150
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
868
|
-
upload_protocol?:
|
|
1151
|
+
upload_protocol?:
|
|
1152
|
+
string;
|
|
869
1153
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
870
|
-
uploadType?:
|
|
1154
|
+
uploadType?:
|
|
1155
|
+
string;
|
|
871
1156
|
/** Request body */
|
|
872
|
-
resource:
|
|
1157
|
+
resource:
|
|
1158
|
+
MigrationJob;
|
|
873
1159
|
}): Request<Operation>;
|
|
874
1160
|
create(request: {
|
|
875
1161
|
/** V1 error format. */
|
|
876
|
-
"$.xgafv"?:
|
|
1162
|
+
"$.xgafv"?:
|
|
1163
|
+
string;
|
|
877
1164
|
/** OAuth access token. */
|
|
878
|
-
access_token?:
|
|
1165
|
+
access_token?:
|
|
1166
|
+
string;
|
|
879
1167
|
/** Data format for response. */
|
|
880
|
-
alt?:
|
|
1168
|
+
alt?:
|
|
1169
|
+
string;
|
|
881
1170
|
/** JSONP */
|
|
882
|
-
callback?:
|
|
1171
|
+
callback?:
|
|
1172
|
+
string;
|
|
883
1173
|
/** Selector specifying which fields to include in a partial response. */
|
|
884
|
-
fields?:
|
|
1174
|
+
fields?:
|
|
1175
|
+
string;
|
|
885
1176
|
/** 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. */
|
|
886
|
-
key?:
|
|
1177
|
+
key?:
|
|
1178
|
+
string;
|
|
887
1179
|
/** Required. The ID of the instance to create. */
|
|
888
|
-
migrationJobId?:
|
|
1180
|
+
migrationJobId?:
|
|
1181
|
+
string;
|
|
889
1182
|
/** OAuth 2.0 token for the current user. */
|
|
890
|
-
oauth_token?:
|
|
1183
|
+
oauth_token?:
|
|
1184
|
+
string;
|
|
891
1185
|
/** Required. The parent, which owns this collection of migration jobs. */
|
|
892
|
-
parent:
|
|
1186
|
+
parent:
|
|
1187
|
+
string;
|
|
893
1188
|
/** Returns response with indentations and line breaks. */
|
|
894
|
-
prettyPrint?:
|
|
1189
|
+
prettyPrint?:
|
|
1190
|
+
boolean;
|
|
895
1191
|
/** 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. */
|
|
896
|
-
quotaUser?:
|
|
1192
|
+
quotaUser?:
|
|
1193
|
+
string;
|
|
897
1194
|
/**
|
|
898
1195
|
* A unique id used to identify the request. If the server receives two requests with the same id, then the second request will be ignored. It is recommended to always set this
|
|
899
1196
|
* value to a UUID. The id must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40 characters.
|
|
900
1197
|
*/
|
|
901
|
-
requestId?:
|
|
1198
|
+
requestId?:
|
|
1199
|
+
string;
|
|
902
1200
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
903
|
-
upload_protocol?:
|
|
1201
|
+
upload_protocol?:
|
|
1202
|
+
string;
|
|
904
1203
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
905
|
-
uploadType?:
|
|
1204
|
+
uploadType?:
|
|
1205
|
+
string;
|
|
906
1206
|
},
|
|
907
1207
|
body: MigrationJob): Request<Operation>;
|
|
908
1208
|
/** Deletes a single migration job. */
|
|
909
1209
|
delete(request?: {
|
|
910
1210
|
/** V1 error format. */
|
|
911
|
-
"$.xgafv"?:
|
|
1211
|
+
"$.xgafv"?:
|
|
1212
|
+
string;
|
|
912
1213
|
/** OAuth access token. */
|
|
913
|
-
access_token?:
|
|
1214
|
+
access_token?:
|
|
1215
|
+
string;
|
|
914
1216
|
/** Data format for response. */
|
|
915
|
-
alt?:
|
|
1217
|
+
alt?:
|
|
1218
|
+
string;
|
|
916
1219
|
/** JSONP */
|
|
917
|
-
callback?:
|
|
1220
|
+
callback?:
|
|
1221
|
+
string;
|
|
918
1222
|
/** Selector specifying which fields to include in a partial response. */
|
|
919
|
-
fields?:
|
|
1223
|
+
fields?:
|
|
1224
|
+
string;
|
|
920
1225
|
/** The destination CloudSQL connection profile is always deleted with the migration job. In case of force delete, the destination CloudSQL replica database is also deleted. */
|
|
921
|
-
force?:
|
|
1226
|
+
force?:
|
|
1227
|
+
boolean;
|
|
922
1228
|
/** 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. */
|
|
923
|
-
key?:
|
|
1229
|
+
key?:
|
|
1230
|
+
string;
|
|
924
1231
|
/** Required. Name of the migration job resource to delete. */
|
|
925
|
-
name:
|
|
1232
|
+
name:
|
|
1233
|
+
string;
|
|
926
1234
|
/** OAuth 2.0 token for the current user. */
|
|
927
|
-
oauth_token?:
|
|
1235
|
+
oauth_token?:
|
|
1236
|
+
string;
|
|
928
1237
|
/** Returns response with indentations and line breaks. */
|
|
929
|
-
prettyPrint?:
|
|
1238
|
+
prettyPrint?:
|
|
1239
|
+
boolean;
|
|
930
1240
|
/** 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. */
|
|
931
|
-
quotaUser?:
|
|
1241
|
+
quotaUser?:
|
|
1242
|
+
string;
|
|
932
1243
|
/**
|
|
933
1244
|
* A unique id used to identify the request. If the server receives two requests with the same id, then the second request will be ignored. It is recommended to always set this
|
|
934
1245
|
* value to a UUID. The id must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40 characters.
|
|
935
1246
|
*/
|
|
936
|
-
requestId?:
|
|
1247
|
+
requestId?:
|
|
1248
|
+
string;
|
|
937
1249
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
938
|
-
upload_protocol?:
|
|
1250
|
+
upload_protocol?:
|
|
1251
|
+
string;
|
|
939
1252
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
940
|
-
uploadType?:
|
|
1253
|
+
uploadType?:
|
|
1254
|
+
string;
|
|
941
1255
|
}): Request<Operation>;
|
|
942
1256
|
/** Generate a SSH configuration script to configure the reverse SSH connectivity. */
|
|
943
1257
|
generateSshScript(request: {
|
|
944
1258
|
/** V1 error format. */
|
|
945
|
-
"$.xgafv"?:
|
|
1259
|
+
"$.xgafv"?:
|
|
1260
|
+
string;
|
|
946
1261
|
/** OAuth access token. */
|
|
947
|
-
access_token?:
|
|
1262
|
+
access_token?:
|
|
1263
|
+
string;
|
|
948
1264
|
/** Data format for response. */
|
|
949
|
-
alt?:
|
|
1265
|
+
alt?:
|
|
1266
|
+
string;
|
|
950
1267
|
/** JSONP */
|
|
951
|
-
callback?:
|
|
1268
|
+
callback?:
|
|
1269
|
+
string;
|
|
952
1270
|
/** Selector specifying which fields to include in a partial response. */
|
|
953
|
-
fields?:
|
|
1271
|
+
fields?:
|
|
1272
|
+
string;
|
|
954
1273
|
/** 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. */
|
|
955
|
-
key?:
|
|
1274
|
+
key?:
|
|
1275
|
+
string;
|
|
956
1276
|
/** Name of the migration job resource to generate the SSH script. */
|
|
957
|
-
migrationJob:
|
|
1277
|
+
migrationJob:
|
|
1278
|
+
string;
|
|
958
1279
|
/** OAuth 2.0 token for the current user. */
|
|
959
|
-
oauth_token?:
|
|
1280
|
+
oauth_token?:
|
|
1281
|
+
string;
|
|
960
1282
|
/** Returns response with indentations and line breaks. */
|
|
961
|
-
prettyPrint?:
|
|
1283
|
+
prettyPrint?:
|
|
1284
|
+
boolean;
|
|
962
1285
|
/** 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. */
|
|
963
|
-
quotaUser?:
|
|
1286
|
+
quotaUser?:
|
|
1287
|
+
string;
|
|
964
1288
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
965
|
-
upload_protocol?:
|
|
1289
|
+
upload_protocol?:
|
|
1290
|
+
string;
|
|
966
1291
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
967
|
-
uploadType?:
|
|
1292
|
+
uploadType?:
|
|
1293
|
+
string;
|
|
968
1294
|
/** Request body */
|
|
969
|
-
resource:
|
|
1295
|
+
resource:
|
|
1296
|
+
GenerateSshScriptRequest;
|
|
970
1297
|
}): Request<SshScript>;
|
|
971
1298
|
generateSshScript(request: {
|
|
972
1299
|
/** V1 error format. */
|
|
973
|
-
"$.xgafv"?:
|
|
1300
|
+
"$.xgafv"?:
|
|
1301
|
+
string;
|
|
974
1302
|
/** OAuth access token. */
|
|
975
|
-
access_token?:
|
|
1303
|
+
access_token?:
|
|
1304
|
+
string;
|
|
976
1305
|
/** Data format for response. */
|
|
977
|
-
alt?:
|
|
1306
|
+
alt?:
|
|
1307
|
+
string;
|
|
978
1308
|
/** JSONP */
|
|
979
|
-
callback?:
|
|
1309
|
+
callback?:
|
|
1310
|
+
string;
|
|
980
1311
|
/** Selector specifying which fields to include in a partial response. */
|
|
981
|
-
fields?:
|
|
1312
|
+
fields?:
|
|
1313
|
+
string;
|
|
982
1314
|
/** 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. */
|
|
983
|
-
key?:
|
|
1315
|
+
key?:
|
|
1316
|
+
string;
|
|
984
1317
|
/** Name of the migration job resource to generate the SSH script. */
|
|
985
|
-
migrationJob:
|
|
1318
|
+
migrationJob:
|
|
1319
|
+
string;
|
|
986
1320
|
/** OAuth 2.0 token for the current user. */
|
|
987
|
-
oauth_token?:
|
|
1321
|
+
oauth_token?:
|
|
1322
|
+
string;
|
|
988
1323
|
/** Returns response with indentations and line breaks. */
|
|
989
|
-
prettyPrint?:
|
|
1324
|
+
prettyPrint?:
|
|
1325
|
+
boolean;
|
|
990
1326
|
/** 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. */
|
|
991
|
-
quotaUser?:
|
|
1327
|
+
quotaUser?:
|
|
1328
|
+
string;
|
|
992
1329
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
993
|
-
upload_protocol?:
|
|
1330
|
+
upload_protocol?:
|
|
1331
|
+
string;
|
|
994
1332
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
995
|
-
uploadType?:
|
|
1333
|
+
uploadType?:
|
|
1334
|
+
string;
|
|
996
1335
|
},
|
|
997
1336
|
body: GenerateSshScriptRequest): Request<SshScript>;
|
|
998
1337
|
/** Gets details of a single migration job. */
|
|
999
1338
|
get(request?: {
|
|
1000
1339
|
/** V1 error format. */
|
|
1001
|
-
"$.xgafv"?:
|
|
1340
|
+
"$.xgafv"?:
|
|
1341
|
+
string;
|
|
1002
1342
|
/** OAuth access token. */
|
|
1003
|
-
access_token?:
|
|
1343
|
+
access_token?:
|
|
1344
|
+
string;
|
|
1004
1345
|
/** Data format for response. */
|
|
1005
|
-
alt?:
|
|
1346
|
+
alt?:
|
|
1347
|
+
string;
|
|
1006
1348
|
/** JSONP */
|
|
1007
|
-
callback?:
|
|
1349
|
+
callback?:
|
|
1350
|
+
string;
|
|
1008
1351
|
/** Selector specifying which fields to include in a partial response. */
|
|
1009
|
-
fields?:
|
|
1352
|
+
fields?:
|
|
1353
|
+
string;
|
|
1010
1354
|
/** 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. */
|
|
1011
|
-
key?:
|
|
1355
|
+
key?:
|
|
1356
|
+
string;
|
|
1012
1357
|
/** Required. Name of the migration job resource to get. */
|
|
1013
|
-
name:
|
|
1358
|
+
name:
|
|
1359
|
+
string;
|
|
1014
1360
|
/** OAuth 2.0 token for the current user. */
|
|
1015
|
-
oauth_token?:
|
|
1361
|
+
oauth_token?:
|
|
1362
|
+
string;
|
|
1016
1363
|
/** Returns response with indentations and line breaks. */
|
|
1017
|
-
prettyPrint?:
|
|
1364
|
+
prettyPrint?:
|
|
1365
|
+
boolean;
|
|
1018
1366
|
/** 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. */
|
|
1019
|
-
quotaUser?:
|
|
1367
|
+
quotaUser?:
|
|
1368
|
+
string;
|
|
1020
1369
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1021
|
-
upload_protocol?:
|
|
1370
|
+
upload_protocol?:
|
|
1371
|
+
string;
|
|
1022
1372
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1023
|
-
uploadType?:
|
|
1373
|
+
uploadType?:
|
|
1374
|
+
string;
|
|
1024
1375
|
}): Request<MigrationJob>;
|
|
1025
1376
|
/** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
|
|
1026
1377
|
getIamPolicy(request?: {
|
|
1027
1378
|
/** V1 error format. */
|
|
1028
|
-
"$.xgafv"?:
|
|
1379
|
+
"$.xgafv"?:
|
|
1380
|
+
string;
|
|
1029
1381
|
/** OAuth access token. */
|
|
1030
|
-
access_token?:
|
|
1382
|
+
access_token?:
|
|
1383
|
+
string;
|
|
1031
1384
|
/** Data format for response. */
|
|
1032
|
-
alt?:
|
|
1385
|
+
alt?:
|
|
1386
|
+
string;
|
|
1033
1387
|
/** JSONP */
|
|
1034
|
-
callback?:
|
|
1388
|
+
callback?:
|
|
1389
|
+
string;
|
|
1035
1390
|
/** Selector specifying which fields to include in a partial response. */
|
|
1036
|
-
fields?:
|
|
1391
|
+
fields?:
|
|
1392
|
+
string;
|
|
1037
1393
|
/** 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. */
|
|
1038
|
-
key?:
|
|
1394
|
+
key?:
|
|
1395
|
+
string;
|
|
1039
1396
|
/** OAuth 2.0 token for the current user. */
|
|
1040
|
-
oauth_token?:
|
|
1397
|
+
oauth_token?:
|
|
1398
|
+
string;
|
|
1041
1399
|
/**
|
|
1042
1400
|
* 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
|
|
1043
1401
|
* 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
|
|
@@ -1045,446 +1403,634 @@ declare namespace gapi.client {
|
|
|
1045
1403
|
* role bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM
|
|
1046
1404
|
* documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
|
|
1047
1405
|
*/
|
|
1048
|
-
"options.requestedPolicyVersion"?:
|
|
1406
|
+
"options.requestedPolicyVersion"?:
|
|
1407
|
+
number;
|
|
1049
1408
|
/** Returns response with indentations and line breaks. */
|
|
1050
|
-
prettyPrint?:
|
|
1409
|
+
prettyPrint?:
|
|
1410
|
+
boolean;
|
|
1051
1411
|
/** 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. */
|
|
1052
|
-
quotaUser?:
|
|
1412
|
+
quotaUser?:
|
|
1413
|
+
string;
|
|
1053
1414
|
/**
|
|
1054
1415
|
* 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
|
|
1055
1416
|
* field.
|
|
1056
1417
|
*/
|
|
1057
|
-
resource:
|
|
1418
|
+
resource:
|
|
1419
|
+
string;
|
|
1058
1420
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1059
|
-
upload_protocol?:
|
|
1421
|
+
upload_protocol?:
|
|
1422
|
+
string;
|
|
1060
1423
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1061
|
-
uploadType?:
|
|
1424
|
+
uploadType?:
|
|
1425
|
+
string;
|
|
1062
1426
|
}): Request<Policy>;
|
|
1063
1427
|
/** Lists migration jobs in a given project and location. */
|
|
1064
1428
|
list(request?: {
|
|
1065
1429
|
/** V1 error format. */
|
|
1066
|
-
"$.xgafv"?:
|
|
1430
|
+
"$.xgafv"?:
|
|
1431
|
+
string;
|
|
1067
1432
|
/** OAuth access token. */
|
|
1068
|
-
access_token?:
|
|
1433
|
+
access_token?:
|
|
1434
|
+
string;
|
|
1069
1435
|
/** Data format for response. */
|
|
1070
|
-
alt?:
|
|
1436
|
+
alt?:
|
|
1437
|
+
string;
|
|
1071
1438
|
/** JSONP */
|
|
1072
|
-
callback?:
|
|
1439
|
+
callback?:
|
|
1440
|
+
string;
|
|
1073
1441
|
/** Selector specifying which fields to include in a partial response. */
|
|
1074
|
-
fields?:
|
|
1442
|
+
fields?:
|
|
1443
|
+
string;
|
|
1075
1444
|
/**
|
|
1076
1445
|
* A filter expression that filters migration jobs listed in the response. The expression must specify the field name, a comparison operator, and the value that you want to use for
|
|
1077
1446
|
* filtering. The value must be a string, a number, or a boolean. The comparison operator must be either =, !=, >, or <. For example, list migration jobs created this year by
|
|
1078
1447
|
* specifying **createTime %gt; 2020-01-01T00:00:00.000000000Z.** You can also filter nested fields. For example, you could specify **reverseSshConnectivity.vmIp = "1.2.3.4"** to
|
|
1079
1448
|
* select all migration jobs connecting through the specific SSH tunnel bastion.
|
|
1080
1449
|
*/
|
|
1081
|
-
filter?:
|
|
1450
|
+
filter?:
|
|
1451
|
+
string;
|
|
1082
1452
|
/** 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. */
|
|
1083
|
-
key?:
|
|
1453
|
+
key?:
|
|
1454
|
+
string;
|
|
1084
1455
|
/** OAuth 2.0 token for the current user. */
|
|
1085
|
-
oauth_token?:
|
|
1456
|
+
oauth_token?:
|
|
1457
|
+
string;
|
|
1086
1458
|
/** Sort the results based on the migration job name. Valid values are: "name", "name asc", and "name desc". */
|
|
1087
|
-
orderBy?:
|
|
1459
|
+
orderBy?:
|
|
1460
|
+
string;
|
|
1088
1461
|
/**
|
|
1089
1462
|
* The maximum number of migration jobs to return. The service may return fewer than this value. If unspecified, at most 50 migration jobs will be returned. The maximum value is
|
|
1090
1463
|
* 1000; values above 1000 will be coerced to 1000.
|
|
1091
1464
|
*/
|
|
1092
|
-
pageSize?:
|
|
1465
|
+
pageSize?:
|
|
1466
|
+
number;
|
|
1093
1467
|
/**
|
|
1094
1468
|
* The nextPageToken value received in the previous call to migrationJobs.list, used in the subsequent request to retrieve the next page of results. On first call this should be
|
|
1095
1469
|
* left blank. When paginating, all other parameters provided to migrationJobs.list must match the call that provided the page token.
|
|
1096
1470
|
*/
|
|
1097
|
-
pageToken?:
|
|
1471
|
+
pageToken?:
|
|
1472
|
+
string;
|
|
1098
1473
|
/** Required. The parent, which owns this collection of migrationJobs. */
|
|
1099
|
-
parent:
|
|
1474
|
+
parent:
|
|
1475
|
+
string;
|
|
1100
1476
|
/** Returns response with indentations and line breaks. */
|
|
1101
|
-
prettyPrint?:
|
|
1477
|
+
prettyPrint?:
|
|
1478
|
+
boolean;
|
|
1102
1479
|
/** 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. */
|
|
1103
|
-
quotaUser?:
|
|
1480
|
+
quotaUser?:
|
|
1481
|
+
string;
|
|
1104
1482
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1105
|
-
upload_protocol?:
|
|
1483
|
+
upload_protocol?:
|
|
1484
|
+
string;
|
|
1106
1485
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1107
|
-
uploadType?:
|
|
1486
|
+
uploadType?:
|
|
1487
|
+
string;
|
|
1108
1488
|
}): Request<ListMigrationJobsResponse>;
|
|
1109
1489
|
/** Updates the parameters of a single migration job. */
|
|
1110
1490
|
patch(request: {
|
|
1111
1491
|
/** V1 error format. */
|
|
1112
|
-
"$.xgafv"?:
|
|
1492
|
+
"$.xgafv"?:
|
|
1493
|
+
string;
|
|
1113
1494
|
/** OAuth access token. */
|
|
1114
|
-
access_token?:
|
|
1495
|
+
access_token?:
|
|
1496
|
+
string;
|
|
1115
1497
|
/** Data format for response. */
|
|
1116
|
-
alt?:
|
|
1498
|
+
alt?:
|
|
1499
|
+
string;
|
|
1117
1500
|
/** JSONP */
|
|
1118
|
-
callback?:
|
|
1501
|
+
callback?:
|
|
1502
|
+
string;
|
|
1119
1503
|
/** Selector specifying which fields to include in a partial response. */
|
|
1120
|
-
fields?:
|
|
1504
|
+
fields?:
|
|
1505
|
+
string;
|
|
1121
1506
|
/** 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. */
|
|
1122
|
-
key?:
|
|
1507
|
+
key?:
|
|
1508
|
+
string;
|
|
1123
1509
|
/** The name (URI) of this migration job resource, in the form of: projects/{project}/locations/{location}/migrationJobs/{migrationJob}. */
|
|
1124
|
-
name:
|
|
1510
|
+
name:
|
|
1511
|
+
string;
|
|
1125
1512
|
/** OAuth 2.0 token for the current user. */
|
|
1126
|
-
oauth_token?:
|
|
1513
|
+
oauth_token?:
|
|
1514
|
+
string;
|
|
1127
1515
|
/** Returns response with indentations and line breaks. */
|
|
1128
|
-
prettyPrint?:
|
|
1516
|
+
prettyPrint?:
|
|
1517
|
+
boolean;
|
|
1129
1518
|
/** 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. */
|
|
1130
|
-
quotaUser?:
|
|
1519
|
+
quotaUser?:
|
|
1520
|
+
string;
|
|
1131
1521
|
/**
|
|
1132
1522
|
* A unique id used to identify the request. If the server receives two requests with the same id, then the second request will be ignored. It is recommended to always set this
|
|
1133
1523
|
* value to a UUID. The id must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40 characters.
|
|
1134
1524
|
*/
|
|
1135
|
-
requestId?:
|
|
1525
|
+
requestId?:
|
|
1526
|
+
string;
|
|
1136
1527
|
/** Required. Field mask is used to specify the fields to be overwritten in the migration job resource by the update. */
|
|
1137
|
-
updateMask?:
|
|
1528
|
+
updateMask?:
|
|
1529
|
+
string;
|
|
1138
1530
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1139
|
-
upload_protocol?:
|
|
1531
|
+
upload_protocol?:
|
|
1532
|
+
string;
|
|
1140
1533
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1141
|
-
uploadType?:
|
|
1534
|
+
uploadType?:
|
|
1535
|
+
string;
|
|
1142
1536
|
/** Request body */
|
|
1143
|
-
resource:
|
|
1537
|
+
resource:
|
|
1538
|
+
MigrationJob;
|
|
1144
1539
|
}): Request<Operation>;
|
|
1145
1540
|
patch(request: {
|
|
1146
1541
|
/** V1 error format. */
|
|
1147
|
-
"$.xgafv"?:
|
|
1542
|
+
"$.xgafv"?:
|
|
1543
|
+
string;
|
|
1148
1544
|
/** OAuth access token. */
|
|
1149
|
-
access_token?:
|
|
1545
|
+
access_token?:
|
|
1546
|
+
string;
|
|
1150
1547
|
/** Data format for response. */
|
|
1151
|
-
alt?:
|
|
1548
|
+
alt?:
|
|
1549
|
+
string;
|
|
1152
1550
|
/** JSONP */
|
|
1153
|
-
callback?:
|
|
1551
|
+
callback?:
|
|
1552
|
+
string;
|
|
1154
1553
|
/** Selector specifying which fields to include in a partial response. */
|
|
1155
|
-
fields?:
|
|
1554
|
+
fields?:
|
|
1555
|
+
string;
|
|
1156
1556
|
/** 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. */
|
|
1157
|
-
key?:
|
|
1557
|
+
key?:
|
|
1558
|
+
string;
|
|
1158
1559
|
/** The name (URI) of this migration job resource, in the form of: projects/{project}/locations/{location}/migrationJobs/{migrationJob}. */
|
|
1159
|
-
name:
|
|
1560
|
+
name:
|
|
1561
|
+
string;
|
|
1160
1562
|
/** OAuth 2.0 token for the current user. */
|
|
1161
|
-
oauth_token?:
|
|
1563
|
+
oauth_token?:
|
|
1564
|
+
string;
|
|
1162
1565
|
/** Returns response with indentations and line breaks. */
|
|
1163
|
-
prettyPrint?:
|
|
1566
|
+
prettyPrint?:
|
|
1567
|
+
boolean;
|
|
1164
1568
|
/** 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. */
|
|
1165
|
-
quotaUser?:
|
|
1569
|
+
quotaUser?:
|
|
1570
|
+
string;
|
|
1166
1571
|
/**
|
|
1167
1572
|
* A unique id used to identify the request. If the server receives two requests with the same id, then the second request will be ignored. It is recommended to always set this
|
|
1168
1573
|
* value to a UUID. The id must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40 characters.
|
|
1169
1574
|
*/
|
|
1170
|
-
requestId?:
|
|
1575
|
+
requestId?:
|
|
1576
|
+
string;
|
|
1171
1577
|
/** Required. Field mask is used to specify the fields to be overwritten in the migration job resource by the update. */
|
|
1172
|
-
updateMask?:
|
|
1578
|
+
updateMask?:
|
|
1579
|
+
string;
|
|
1173
1580
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1174
|
-
upload_protocol?:
|
|
1581
|
+
upload_protocol?:
|
|
1582
|
+
string;
|
|
1175
1583
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1176
|
-
uploadType?:
|
|
1584
|
+
uploadType?:
|
|
1585
|
+
string;
|
|
1177
1586
|
},
|
|
1178
1587
|
body: MigrationJob): Request<Operation>;
|
|
1179
1588
|
/** Promote a migration job, stopping replication to the destination and promoting the destination to be a standalone database. */
|
|
1180
1589
|
promote(request: {
|
|
1181
1590
|
/** V1 error format. */
|
|
1182
|
-
"$.xgafv"?:
|
|
1591
|
+
"$.xgafv"?:
|
|
1592
|
+
string;
|
|
1183
1593
|
/** OAuth access token. */
|
|
1184
|
-
access_token?:
|
|
1594
|
+
access_token?:
|
|
1595
|
+
string;
|
|
1185
1596
|
/** Data format for response. */
|
|
1186
|
-
alt?:
|
|
1597
|
+
alt?:
|
|
1598
|
+
string;
|
|
1187
1599
|
/** JSONP */
|
|
1188
|
-
callback?:
|
|
1600
|
+
callback?:
|
|
1601
|
+
string;
|
|
1189
1602
|
/** Selector specifying which fields to include in a partial response. */
|
|
1190
|
-
fields?:
|
|
1603
|
+
fields?:
|
|
1604
|
+
string;
|
|
1191
1605
|
/** 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. */
|
|
1192
|
-
key?:
|
|
1606
|
+
key?:
|
|
1607
|
+
string;
|
|
1193
1608
|
/** Name of the migration job resource to promote. */
|
|
1194
|
-
name:
|
|
1609
|
+
name:
|
|
1610
|
+
string;
|
|
1195
1611
|
/** OAuth 2.0 token for the current user. */
|
|
1196
|
-
oauth_token?:
|
|
1612
|
+
oauth_token?:
|
|
1613
|
+
string;
|
|
1197
1614
|
/** Returns response with indentations and line breaks. */
|
|
1198
|
-
prettyPrint?:
|
|
1615
|
+
prettyPrint?:
|
|
1616
|
+
boolean;
|
|
1199
1617
|
/** 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. */
|
|
1200
|
-
quotaUser?:
|
|
1618
|
+
quotaUser?:
|
|
1619
|
+
string;
|
|
1201
1620
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1202
|
-
upload_protocol?:
|
|
1621
|
+
upload_protocol?:
|
|
1622
|
+
string;
|
|
1203
1623
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1204
|
-
uploadType?:
|
|
1624
|
+
uploadType?:
|
|
1625
|
+
string;
|
|
1205
1626
|
/** Request body */
|
|
1206
|
-
resource:
|
|
1627
|
+
resource:
|
|
1628
|
+
PromoteMigrationJobRequest;
|
|
1207
1629
|
}): Request<Operation>;
|
|
1208
1630
|
promote(request: {
|
|
1209
1631
|
/** V1 error format. */
|
|
1210
|
-
"$.xgafv"?:
|
|
1632
|
+
"$.xgafv"?:
|
|
1633
|
+
string;
|
|
1211
1634
|
/** OAuth access token. */
|
|
1212
|
-
access_token?:
|
|
1635
|
+
access_token?:
|
|
1636
|
+
string;
|
|
1213
1637
|
/** Data format for response. */
|
|
1214
|
-
alt?:
|
|
1638
|
+
alt?:
|
|
1639
|
+
string;
|
|
1215
1640
|
/** JSONP */
|
|
1216
|
-
callback?:
|
|
1641
|
+
callback?:
|
|
1642
|
+
string;
|
|
1217
1643
|
/** Selector specifying which fields to include in a partial response. */
|
|
1218
|
-
fields?:
|
|
1644
|
+
fields?:
|
|
1645
|
+
string;
|
|
1219
1646
|
/** 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. */
|
|
1220
|
-
key?:
|
|
1647
|
+
key?:
|
|
1648
|
+
string;
|
|
1221
1649
|
/** Name of the migration job resource to promote. */
|
|
1222
|
-
name:
|
|
1650
|
+
name:
|
|
1651
|
+
string;
|
|
1223
1652
|
/** OAuth 2.0 token for the current user. */
|
|
1224
|
-
oauth_token?:
|
|
1653
|
+
oauth_token?:
|
|
1654
|
+
string;
|
|
1225
1655
|
/** Returns response with indentations and line breaks. */
|
|
1226
|
-
prettyPrint?:
|
|
1656
|
+
prettyPrint?:
|
|
1657
|
+
boolean;
|
|
1227
1658
|
/** 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. */
|
|
1228
|
-
quotaUser?:
|
|
1659
|
+
quotaUser?:
|
|
1660
|
+
string;
|
|
1229
1661
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1230
|
-
upload_protocol?:
|
|
1662
|
+
upload_protocol?:
|
|
1663
|
+
string;
|
|
1231
1664
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1232
|
-
uploadType?:
|
|
1665
|
+
uploadType?:
|
|
1666
|
+
string;
|
|
1233
1667
|
},
|
|
1234
1668
|
body: PromoteMigrationJobRequest): Request<Operation>;
|
|
1235
1669
|
/** Restart a stopped or failed migration job, resetting the destination instance to its original state and starting the migration process from scratch. */
|
|
1236
1670
|
restart(request: {
|
|
1237
1671
|
/** V1 error format. */
|
|
1238
|
-
"$.xgafv"?:
|
|
1672
|
+
"$.xgafv"?:
|
|
1673
|
+
string;
|
|
1239
1674
|
/** OAuth access token. */
|
|
1240
|
-
access_token?:
|
|
1675
|
+
access_token?:
|
|
1676
|
+
string;
|
|
1241
1677
|
/** Data format for response. */
|
|
1242
|
-
alt?:
|
|
1678
|
+
alt?:
|
|
1679
|
+
string;
|
|
1243
1680
|
/** JSONP */
|
|
1244
|
-
callback?:
|
|
1681
|
+
callback?:
|
|
1682
|
+
string;
|
|
1245
1683
|
/** Selector specifying which fields to include in a partial response. */
|
|
1246
|
-
fields?:
|
|
1684
|
+
fields?:
|
|
1685
|
+
string;
|
|
1247
1686
|
/** 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. */
|
|
1248
|
-
key?:
|
|
1687
|
+
key?:
|
|
1688
|
+
string;
|
|
1249
1689
|
/** Name of the migration job resource to restart. */
|
|
1250
|
-
name:
|
|
1690
|
+
name:
|
|
1691
|
+
string;
|
|
1251
1692
|
/** OAuth 2.0 token for the current user. */
|
|
1252
|
-
oauth_token?:
|
|
1693
|
+
oauth_token?:
|
|
1694
|
+
string;
|
|
1253
1695
|
/** Returns response with indentations and line breaks. */
|
|
1254
|
-
prettyPrint?:
|
|
1696
|
+
prettyPrint?:
|
|
1697
|
+
boolean;
|
|
1255
1698
|
/** 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. */
|
|
1256
|
-
quotaUser?:
|
|
1699
|
+
quotaUser?:
|
|
1700
|
+
string;
|
|
1257
1701
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1258
|
-
upload_protocol?:
|
|
1702
|
+
upload_protocol?:
|
|
1703
|
+
string;
|
|
1259
1704
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1260
|
-
uploadType?:
|
|
1705
|
+
uploadType?:
|
|
1706
|
+
string;
|
|
1261
1707
|
/** Request body */
|
|
1262
|
-
resource:
|
|
1708
|
+
resource:
|
|
1709
|
+
RestartMigrationJobRequest;
|
|
1263
1710
|
}): Request<Operation>;
|
|
1264
1711
|
restart(request: {
|
|
1265
1712
|
/** V1 error format. */
|
|
1266
|
-
"$.xgafv"?:
|
|
1713
|
+
"$.xgafv"?:
|
|
1714
|
+
string;
|
|
1267
1715
|
/** OAuth access token. */
|
|
1268
|
-
access_token?:
|
|
1716
|
+
access_token?:
|
|
1717
|
+
string;
|
|
1269
1718
|
/** Data format for response. */
|
|
1270
|
-
alt?:
|
|
1719
|
+
alt?:
|
|
1720
|
+
string;
|
|
1271
1721
|
/** JSONP */
|
|
1272
|
-
callback?:
|
|
1722
|
+
callback?:
|
|
1723
|
+
string;
|
|
1273
1724
|
/** Selector specifying which fields to include in a partial response. */
|
|
1274
|
-
fields?:
|
|
1725
|
+
fields?:
|
|
1726
|
+
string;
|
|
1275
1727
|
/** 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. */
|
|
1276
|
-
key?:
|
|
1728
|
+
key?:
|
|
1729
|
+
string;
|
|
1277
1730
|
/** Name of the migration job resource to restart. */
|
|
1278
|
-
name:
|
|
1731
|
+
name:
|
|
1732
|
+
string;
|
|
1279
1733
|
/** OAuth 2.0 token for the current user. */
|
|
1280
|
-
oauth_token?:
|
|
1734
|
+
oauth_token?:
|
|
1735
|
+
string;
|
|
1281
1736
|
/** Returns response with indentations and line breaks. */
|
|
1282
|
-
prettyPrint?:
|
|
1737
|
+
prettyPrint?:
|
|
1738
|
+
boolean;
|
|
1283
1739
|
/** 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. */
|
|
1284
|
-
quotaUser?:
|
|
1740
|
+
quotaUser?:
|
|
1741
|
+
string;
|
|
1285
1742
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1286
|
-
upload_protocol?:
|
|
1743
|
+
upload_protocol?:
|
|
1744
|
+
string;
|
|
1287
1745
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1288
|
-
uploadType?:
|
|
1746
|
+
uploadType?:
|
|
1747
|
+
string;
|
|
1289
1748
|
},
|
|
1290
1749
|
body: RestartMigrationJobRequest): Request<Operation>;
|
|
1291
1750
|
/** Resume a migration job that is currently stopped and is resumable (was stopped during CDC phase). */
|
|
1292
1751
|
resume(request: {
|
|
1293
1752
|
/** V1 error format. */
|
|
1294
|
-
"$.xgafv"?:
|
|
1753
|
+
"$.xgafv"?:
|
|
1754
|
+
string;
|
|
1295
1755
|
/** OAuth access token. */
|
|
1296
|
-
access_token?:
|
|
1756
|
+
access_token?:
|
|
1757
|
+
string;
|
|
1297
1758
|
/** Data format for response. */
|
|
1298
|
-
alt?:
|
|
1759
|
+
alt?:
|
|
1760
|
+
string;
|
|
1299
1761
|
/** JSONP */
|
|
1300
|
-
callback?:
|
|
1762
|
+
callback?:
|
|
1763
|
+
string;
|
|
1301
1764
|
/** Selector specifying which fields to include in a partial response. */
|
|
1302
|
-
fields?:
|
|
1765
|
+
fields?:
|
|
1766
|
+
string;
|
|
1303
1767
|
/** 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. */
|
|
1304
|
-
key?:
|
|
1768
|
+
key?:
|
|
1769
|
+
string;
|
|
1305
1770
|
/** Name of the migration job resource to resume. */
|
|
1306
|
-
name:
|
|
1771
|
+
name:
|
|
1772
|
+
string;
|
|
1307
1773
|
/** OAuth 2.0 token for the current user. */
|
|
1308
|
-
oauth_token?:
|
|
1774
|
+
oauth_token?:
|
|
1775
|
+
string;
|
|
1309
1776
|
/** Returns response with indentations and line breaks. */
|
|
1310
|
-
prettyPrint?:
|
|
1777
|
+
prettyPrint?:
|
|
1778
|
+
boolean;
|
|
1311
1779
|
/** 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. */
|
|
1312
|
-
quotaUser?:
|
|
1780
|
+
quotaUser?:
|
|
1781
|
+
string;
|
|
1313
1782
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1314
|
-
upload_protocol?:
|
|
1783
|
+
upload_protocol?:
|
|
1784
|
+
string;
|
|
1315
1785
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1316
|
-
uploadType?:
|
|
1786
|
+
uploadType?:
|
|
1787
|
+
string;
|
|
1317
1788
|
/** Request body */
|
|
1318
|
-
resource:
|
|
1789
|
+
resource:
|
|
1790
|
+
ResumeMigrationJobRequest;
|
|
1319
1791
|
}): Request<Operation>;
|
|
1320
1792
|
resume(request: {
|
|
1321
1793
|
/** V1 error format. */
|
|
1322
|
-
"$.xgafv"?:
|
|
1794
|
+
"$.xgafv"?:
|
|
1795
|
+
string;
|
|
1323
1796
|
/** OAuth access token. */
|
|
1324
|
-
access_token?:
|
|
1797
|
+
access_token?:
|
|
1798
|
+
string;
|
|
1325
1799
|
/** Data format for response. */
|
|
1326
|
-
alt?:
|
|
1800
|
+
alt?:
|
|
1801
|
+
string;
|
|
1327
1802
|
/** JSONP */
|
|
1328
|
-
callback?:
|
|
1803
|
+
callback?:
|
|
1804
|
+
string;
|
|
1329
1805
|
/** Selector specifying which fields to include in a partial response. */
|
|
1330
|
-
fields?:
|
|
1806
|
+
fields?:
|
|
1807
|
+
string;
|
|
1331
1808
|
/** 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. */
|
|
1332
|
-
key?:
|
|
1809
|
+
key?:
|
|
1810
|
+
string;
|
|
1333
1811
|
/** Name of the migration job resource to resume. */
|
|
1334
|
-
name:
|
|
1812
|
+
name:
|
|
1813
|
+
string;
|
|
1335
1814
|
/** OAuth 2.0 token for the current user. */
|
|
1336
|
-
oauth_token?:
|
|
1815
|
+
oauth_token?:
|
|
1816
|
+
string;
|
|
1337
1817
|
/** Returns response with indentations and line breaks. */
|
|
1338
|
-
prettyPrint?:
|
|
1818
|
+
prettyPrint?:
|
|
1819
|
+
boolean;
|
|
1339
1820
|
/** 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. */
|
|
1340
|
-
quotaUser?:
|
|
1821
|
+
quotaUser?:
|
|
1822
|
+
string;
|
|
1341
1823
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1342
|
-
upload_protocol?:
|
|
1824
|
+
upload_protocol?:
|
|
1825
|
+
string;
|
|
1343
1826
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1344
|
-
uploadType?:
|
|
1827
|
+
uploadType?:
|
|
1828
|
+
string;
|
|
1345
1829
|
},
|
|
1346
1830
|
body: ResumeMigrationJobRequest): Request<Operation>;
|
|
1347
1831
|
/** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
|
|
1348
1832
|
setIamPolicy(request: {
|
|
1349
1833
|
/** V1 error format. */
|
|
1350
|
-
"$.xgafv"?:
|
|
1834
|
+
"$.xgafv"?:
|
|
1835
|
+
string;
|
|
1351
1836
|
/** OAuth access token. */
|
|
1352
|
-
access_token?:
|
|
1837
|
+
access_token?:
|
|
1838
|
+
string;
|
|
1353
1839
|
/** Data format for response. */
|
|
1354
|
-
alt?:
|
|
1840
|
+
alt?:
|
|
1841
|
+
string;
|
|
1355
1842
|
/** JSONP */
|
|
1356
|
-
callback?:
|
|
1843
|
+
callback?:
|
|
1844
|
+
string;
|
|
1357
1845
|
/** Selector specifying which fields to include in a partial response. */
|
|
1358
|
-
fields?:
|
|
1846
|
+
fields?:
|
|
1847
|
+
string;
|
|
1359
1848
|
/** 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. */
|
|
1360
|
-
key?:
|
|
1849
|
+
key?:
|
|
1850
|
+
string;
|
|
1361
1851
|
/** OAuth 2.0 token for the current user. */
|
|
1362
|
-
oauth_token?:
|
|
1852
|
+
oauth_token?:
|
|
1853
|
+
string;
|
|
1363
1854
|
/** Returns response with indentations and line breaks. */
|
|
1364
|
-
prettyPrint?:
|
|
1855
|
+
prettyPrint?:
|
|
1856
|
+
boolean;
|
|
1365
1857
|
/** 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. */
|
|
1366
|
-
quotaUser?:
|
|
1858
|
+
quotaUser?:
|
|
1859
|
+
string;
|
|
1367
1860
|
/**
|
|
1368
1861
|
* 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
|
|
1369
1862
|
* field.
|
|
1370
1863
|
*/
|
|
1371
|
-
resource:
|
|
1864
|
+
resource:
|
|
1865
|
+
string;
|
|
1372
1866
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1373
|
-
upload_protocol?:
|
|
1867
|
+
upload_protocol?:
|
|
1868
|
+
string;
|
|
1374
1869
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1375
|
-
uploadType?:
|
|
1870
|
+
uploadType?:
|
|
1871
|
+
string;
|
|
1376
1872
|
},
|
|
1377
1873
|
body: SetIamPolicyRequest): Request<Policy>;
|
|
1378
1874
|
/** Start an already created migration job. */
|
|
1379
1875
|
start(request: {
|
|
1380
1876
|
/** V1 error format. */
|
|
1381
|
-
"$.xgafv"?:
|
|
1877
|
+
"$.xgafv"?:
|
|
1878
|
+
string;
|
|
1382
1879
|
/** OAuth access token. */
|
|
1383
|
-
access_token?:
|
|
1880
|
+
access_token?:
|
|
1881
|
+
string;
|
|
1384
1882
|
/** Data format for response. */
|
|
1385
|
-
alt?:
|
|
1883
|
+
alt?:
|
|
1884
|
+
string;
|
|
1386
1885
|
/** JSONP */
|
|
1387
|
-
callback?:
|
|
1886
|
+
callback?:
|
|
1887
|
+
string;
|
|
1388
1888
|
/** Selector specifying which fields to include in a partial response. */
|
|
1389
|
-
fields?:
|
|
1889
|
+
fields?:
|
|
1890
|
+
string;
|
|
1390
1891
|
/** 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. */
|
|
1391
|
-
key?:
|
|
1892
|
+
key?:
|
|
1893
|
+
string;
|
|
1392
1894
|
/** Name of the migration job resource to start. */
|
|
1393
|
-
name:
|
|
1895
|
+
name:
|
|
1896
|
+
string;
|
|
1394
1897
|
/** OAuth 2.0 token for the current user. */
|
|
1395
|
-
oauth_token?:
|
|
1898
|
+
oauth_token?:
|
|
1899
|
+
string;
|
|
1396
1900
|
/** Returns response with indentations and line breaks. */
|
|
1397
|
-
prettyPrint?:
|
|
1901
|
+
prettyPrint?:
|
|
1902
|
+
boolean;
|
|
1398
1903
|
/** 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. */
|
|
1399
|
-
quotaUser?:
|
|
1904
|
+
quotaUser?:
|
|
1905
|
+
string;
|
|
1400
1906
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1401
|
-
upload_protocol?:
|
|
1907
|
+
upload_protocol?:
|
|
1908
|
+
string;
|
|
1402
1909
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1403
|
-
uploadType?:
|
|
1910
|
+
uploadType?:
|
|
1911
|
+
string;
|
|
1404
1912
|
/** Request body */
|
|
1405
|
-
resource:
|
|
1913
|
+
resource:
|
|
1914
|
+
StartMigrationJobRequest;
|
|
1406
1915
|
}): Request<Operation>;
|
|
1407
1916
|
start(request: {
|
|
1408
1917
|
/** V1 error format. */
|
|
1409
|
-
"$.xgafv"?:
|
|
1918
|
+
"$.xgafv"?:
|
|
1919
|
+
string;
|
|
1410
1920
|
/** OAuth access token. */
|
|
1411
|
-
access_token?:
|
|
1921
|
+
access_token?:
|
|
1922
|
+
string;
|
|
1412
1923
|
/** Data format for response. */
|
|
1413
|
-
alt?:
|
|
1924
|
+
alt?:
|
|
1925
|
+
string;
|
|
1414
1926
|
/** JSONP */
|
|
1415
|
-
callback?:
|
|
1927
|
+
callback?:
|
|
1928
|
+
string;
|
|
1416
1929
|
/** Selector specifying which fields to include in a partial response. */
|
|
1417
|
-
fields?:
|
|
1930
|
+
fields?:
|
|
1931
|
+
string;
|
|
1418
1932
|
/** 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. */
|
|
1419
|
-
key?:
|
|
1933
|
+
key?:
|
|
1934
|
+
string;
|
|
1420
1935
|
/** Name of the migration job resource to start. */
|
|
1421
|
-
name:
|
|
1936
|
+
name:
|
|
1937
|
+
string;
|
|
1422
1938
|
/** OAuth 2.0 token for the current user. */
|
|
1423
|
-
oauth_token?:
|
|
1939
|
+
oauth_token?:
|
|
1940
|
+
string;
|
|
1424
1941
|
/** Returns response with indentations and line breaks. */
|
|
1425
|
-
prettyPrint?:
|
|
1942
|
+
prettyPrint?:
|
|
1943
|
+
boolean;
|
|
1426
1944
|
/** 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. */
|
|
1427
|
-
quotaUser?:
|
|
1945
|
+
quotaUser?:
|
|
1946
|
+
string;
|
|
1428
1947
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1429
|
-
upload_protocol?:
|
|
1948
|
+
upload_protocol?:
|
|
1949
|
+
string;
|
|
1430
1950
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1431
|
-
uploadType?:
|
|
1951
|
+
uploadType?:
|
|
1952
|
+
string;
|
|
1432
1953
|
},
|
|
1433
1954
|
body: StartMigrationJobRequest): Request<Operation>;
|
|
1434
1955
|
/** Stops a running migration job. */
|
|
1435
1956
|
stop(request: {
|
|
1436
1957
|
/** V1 error format. */
|
|
1437
|
-
"$.xgafv"?:
|
|
1958
|
+
"$.xgafv"?:
|
|
1959
|
+
string;
|
|
1438
1960
|
/** OAuth access token. */
|
|
1439
|
-
access_token?:
|
|
1961
|
+
access_token?:
|
|
1962
|
+
string;
|
|
1440
1963
|
/** Data format for response. */
|
|
1441
|
-
alt?:
|
|
1964
|
+
alt?:
|
|
1965
|
+
string;
|
|
1442
1966
|
/** JSONP */
|
|
1443
|
-
callback?:
|
|
1967
|
+
callback?:
|
|
1968
|
+
string;
|
|
1444
1969
|
/** Selector specifying which fields to include in a partial response. */
|
|
1445
|
-
fields?:
|
|
1970
|
+
fields?:
|
|
1971
|
+
string;
|
|
1446
1972
|
/** 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. */
|
|
1447
|
-
key?:
|
|
1973
|
+
key?:
|
|
1974
|
+
string;
|
|
1448
1975
|
/** Name of the migration job resource to stop. */
|
|
1449
|
-
name:
|
|
1976
|
+
name:
|
|
1977
|
+
string;
|
|
1450
1978
|
/** OAuth 2.0 token for the current user. */
|
|
1451
|
-
oauth_token?:
|
|
1979
|
+
oauth_token?:
|
|
1980
|
+
string;
|
|
1452
1981
|
/** Returns response with indentations and line breaks. */
|
|
1453
|
-
prettyPrint?:
|
|
1982
|
+
prettyPrint?:
|
|
1983
|
+
boolean;
|
|
1454
1984
|
/** 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. */
|
|
1455
|
-
quotaUser?:
|
|
1985
|
+
quotaUser?:
|
|
1986
|
+
string;
|
|
1456
1987
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1457
|
-
upload_protocol?:
|
|
1988
|
+
upload_protocol?:
|
|
1989
|
+
string;
|
|
1458
1990
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1459
|
-
uploadType?:
|
|
1991
|
+
uploadType?:
|
|
1992
|
+
string;
|
|
1460
1993
|
/** Request body */
|
|
1461
|
-
resource:
|
|
1994
|
+
resource:
|
|
1995
|
+
StopMigrationJobRequest;
|
|
1462
1996
|
}): Request<Operation>;
|
|
1463
1997
|
stop(request: {
|
|
1464
1998
|
/** V1 error format. */
|
|
1465
|
-
"$.xgafv"?:
|
|
1999
|
+
"$.xgafv"?:
|
|
2000
|
+
string;
|
|
1466
2001
|
/** OAuth access token. */
|
|
1467
|
-
access_token?:
|
|
2002
|
+
access_token?:
|
|
2003
|
+
string;
|
|
1468
2004
|
/** Data format for response. */
|
|
1469
|
-
alt?:
|
|
2005
|
+
alt?:
|
|
2006
|
+
string;
|
|
1470
2007
|
/** JSONP */
|
|
1471
|
-
callback?:
|
|
2008
|
+
callback?:
|
|
2009
|
+
string;
|
|
1472
2010
|
/** Selector specifying which fields to include in a partial response. */
|
|
1473
|
-
fields?:
|
|
2011
|
+
fields?:
|
|
2012
|
+
string;
|
|
1474
2013
|
/** 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. */
|
|
1475
|
-
key?:
|
|
2014
|
+
key?:
|
|
2015
|
+
string;
|
|
1476
2016
|
/** Name of the migration job resource to stop. */
|
|
1477
|
-
name:
|
|
2017
|
+
name:
|
|
2018
|
+
string;
|
|
1478
2019
|
/** OAuth 2.0 token for the current user. */
|
|
1479
|
-
oauth_token?:
|
|
2020
|
+
oauth_token?:
|
|
2021
|
+
string;
|
|
1480
2022
|
/** Returns response with indentations and line breaks. */
|
|
1481
|
-
prettyPrint?:
|
|
2023
|
+
prettyPrint?:
|
|
2024
|
+
boolean;
|
|
1482
2025
|
/** 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. */
|
|
1483
|
-
quotaUser?:
|
|
2026
|
+
quotaUser?:
|
|
2027
|
+
string;
|
|
1484
2028
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1485
|
-
upload_protocol?:
|
|
2029
|
+
upload_protocol?:
|
|
2030
|
+
string;
|
|
1486
2031
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1487
|
-
uploadType?:
|
|
2032
|
+
uploadType?:
|
|
2033
|
+
string;
|
|
1488
2034
|
},
|
|
1489
2035
|
body: StopMigrationJobRequest): Request<Operation>;
|
|
1490
2036
|
/**
|
|
@@ -1493,88 +2039,125 @@ declare namespace gapi.client {
|
|
|
1493
2039
|
*/
|
|
1494
2040
|
testIamPermissions(request: {
|
|
1495
2041
|
/** V1 error format. */
|
|
1496
|
-
"$.xgafv"?:
|
|
2042
|
+
"$.xgafv"?:
|
|
2043
|
+
string;
|
|
1497
2044
|
/** OAuth access token. */
|
|
1498
|
-
access_token?:
|
|
2045
|
+
access_token?:
|
|
2046
|
+
string;
|
|
1499
2047
|
/** Data format for response. */
|
|
1500
|
-
alt?:
|
|
2048
|
+
alt?:
|
|
2049
|
+
string;
|
|
1501
2050
|
/** JSONP */
|
|
1502
|
-
callback?:
|
|
2051
|
+
callback?:
|
|
2052
|
+
string;
|
|
1503
2053
|
/** Selector specifying which fields to include in a partial response. */
|
|
1504
|
-
fields?:
|
|
2054
|
+
fields?:
|
|
2055
|
+
string;
|
|
1505
2056
|
/** 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. */
|
|
1506
|
-
key?:
|
|
2057
|
+
key?:
|
|
2058
|
+
string;
|
|
1507
2059
|
/** OAuth 2.0 token for the current user. */
|
|
1508
|
-
oauth_token?:
|
|
2060
|
+
oauth_token?:
|
|
2061
|
+
string;
|
|
1509
2062
|
/** Returns response with indentations and line breaks. */
|
|
1510
|
-
prettyPrint?:
|
|
2063
|
+
prettyPrint?:
|
|
2064
|
+
boolean;
|
|
1511
2065
|
/** 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. */
|
|
1512
|
-
quotaUser?:
|
|
2066
|
+
quotaUser?:
|
|
2067
|
+
string;
|
|
1513
2068
|
/**
|
|
1514
2069
|
* 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
|
|
1515
2070
|
* this field.
|
|
1516
2071
|
*/
|
|
1517
|
-
resource:
|
|
2072
|
+
resource:
|
|
2073
|
+
string;
|
|
1518
2074
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1519
|
-
upload_protocol?:
|
|
2075
|
+
upload_protocol?:
|
|
2076
|
+
string;
|
|
1520
2077
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1521
|
-
uploadType?:
|
|
2078
|
+
uploadType?:
|
|
2079
|
+
string;
|
|
1522
2080
|
},
|
|
1523
2081
|
body: TestIamPermissionsRequest): Request<TestIamPermissionsResponse>;
|
|
1524
2082
|
/** Verify a migration job, making sure the destination can reach the source and that all configuration and prerequisites are met. */
|
|
1525
2083
|
verify(request: {
|
|
1526
2084
|
/** V1 error format. */
|
|
1527
|
-
"$.xgafv"?:
|
|
2085
|
+
"$.xgafv"?:
|
|
2086
|
+
string;
|
|
1528
2087
|
/** OAuth access token. */
|
|
1529
|
-
access_token?:
|
|
2088
|
+
access_token?:
|
|
2089
|
+
string;
|
|
1530
2090
|
/** Data format for response. */
|
|
1531
|
-
alt?:
|
|
2091
|
+
alt?:
|
|
2092
|
+
string;
|
|
1532
2093
|
/** JSONP */
|
|
1533
|
-
callback?:
|
|
2094
|
+
callback?:
|
|
2095
|
+
string;
|
|
1534
2096
|
/** Selector specifying which fields to include in a partial response. */
|
|
1535
|
-
fields?:
|
|
2097
|
+
fields?:
|
|
2098
|
+
string;
|
|
1536
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. */
|
|
1537
|
-
key?:
|
|
2100
|
+
key?:
|
|
2101
|
+
string;
|
|
1538
2102
|
/** Name of the migration job resource to verify. */
|
|
1539
|
-
name:
|
|
2103
|
+
name:
|
|
2104
|
+
string;
|
|
1540
2105
|
/** OAuth 2.0 token for the current user. */
|
|
1541
|
-
oauth_token?:
|
|
2106
|
+
oauth_token?:
|
|
2107
|
+
string;
|
|
1542
2108
|
/** Returns response with indentations and line breaks. */
|
|
1543
|
-
prettyPrint?:
|
|
2109
|
+
prettyPrint?:
|
|
2110
|
+
boolean;
|
|
1544
2111
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1545
|
-
quotaUser?:
|
|
2112
|
+
quotaUser?:
|
|
2113
|
+
string;
|
|
1546
2114
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1547
|
-
upload_protocol?:
|
|
2115
|
+
upload_protocol?:
|
|
2116
|
+
string;
|
|
1548
2117
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1549
|
-
uploadType?:
|
|
2118
|
+
uploadType?:
|
|
2119
|
+
string;
|
|
1550
2120
|
/** Request body */
|
|
1551
|
-
resource:
|
|
2121
|
+
resource:
|
|
2122
|
+
VerifyMigrationJobRequest;
|
|
1552
2123
|
}): Request<Operation>;
|
|
1553
2124
|
verify(request: {
|
|
1554
2125
|
/** V1 error format. */
|
|
1555
|
-
"$.xgafv"?:
|
|
2126
|
+
"$.xgafv"?:
|
|
2127
|
+
string;
|
|
1556
2128
|
/** OAuth access token. */
|
|
1557
|
-
access_token?:
|
|
2129
|
+
access_token?:
|
|
2130
|
+
string;
|
|
1558
2131
|
/** Data format for response. */
|
|
1559
|
-
alt?:
|
|
2132
|
+
alt?:
|
|
2133
|
+
string;
|
|
1560
2134
|
/** JSONP */
|
|
1561
|
-
callback?:
|
|
2135
|
+
callback?:
|
|
2136
|
+
string;
|
|
1562
2137
|
/** Selector specifying which fields to include in a partial response. */
|
|
1563
|
-
fields?:
|
|
2138
|
+
fields?:
|
|
2139
|
+
string;
|
|
1564
2140
|
/** 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. */
|
|
1565
|
-
key?:
|
|
2141
|
+
key?:
|
|
2142
|
+
string;
|
|
1566
2143
|
/** Name of the migration job resource to verify. */
|
|
1567
|
-
name:
|
|
2144
|
+
name:
|
|
2145
|
+
string;
|
|
1568
2146
|
/** OAuth 2.0 token for the current user. */
|
|
1569
|
-
oauth_token?:
|
|
2147
|
+
oauth_token?:
|
|
2148
|
+
string;
|
|
1570
2149
|
/** Returns response with indentations and line breaks. */
|
|
1571
|
-
prettyPrint?:
|
|
2150
|
+
prettyPrint?:
|
|
2151
|
+
boolean;
|
|
1572
2152
|
/** 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. */
|
|
1573
|
-
quotaUser?:
|
|
2153
|
+
quotaUser?:
|
|
2154
|
+
string;
|
|
1574
2155
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1575
|
-
upload_protocol?:
|
|
2156
|
+
upload_protocol?:
|
|
2157
|
+
string;
|
|
1576
2158
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1577
|
-
uploadType?:
|
|
2159
|
+
uploadType?:
|
|
2160
|
+
string;
|
|
1578
2161
|
},
|
|
1579
2162
|
body: VerifyMigrationJobRequest): Request<Operation>;
|
|
1580
2163
|
}
|
|
@@ -1587,57 +2170,82 @@ declare namespace gapi.client {
|
|
|
1587
2170
|
*/
|
|
1588
2171
|
cancel(request: {
|
|
1589
2172
|
/** V1 error format. */
|
|
1590
|
-
"$.xgafv"?:
|
|
2173
|
+
"$.xgafv"?:
|
|
2174
|
+
string;
|
|
1591
2175
|
/** OAuth access token. */
|
|
1592
|
-
access_token?:
|
|
2176
|
+
access_token?:
|
|
2177
|
+
string;
|
|
1593
2178
|
/** Data format for response. */
|
|
1594
|
-
alt?:
|
|
2179
|
+
alt?:
|
|
2180
|
+
string;
|
|
1595
2181
|
/** JSONP */
|
|
1596
|
-
callback?:
|
|
2182
|
+
callback?:
|
|
2183
|
+
string;
|
|
1597
2184
|
/** Selector specifying which fields to include in a partial response. */
|
|
1598
|
-
fields?:
|
|
2185
|
+
fields?:
|
|
2186
|
+
string;
|
|
1599
2187
|
/** 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. */
|
|
1600
|
-
key?:
|
|
2188
|
+
key?:
|
|
2189
|
+
string;
|
|
1601
2190
|
/** The name of the operation resource to be cancelled. */
|
|
1602
|
-
name:
|
|
2191
|
+
name:
|
|
2192
|
+
string;
|
|
1603
2193
|
/** OAuth 2.0 token for the current user. */
|
|
1604
|
-
oauth_token?:
|
|
2194
|
+
oauth_token?:
|
|
2195
|
+
string;
|
|
1605
2196
|
/** Returns response with indentations and line breaks. */
|
|
1606
|
-
prettyPrint?:
|
|
2197
|
+
prettyPrint?:
|
|
2198
|
+
boolean;
|
|
1607
2199
|
/** 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. */
|
|
1608
|
-
quotaUser?:
|
|
2200
|
+
quotaUser?:
|
|
2201
|
+
string;
|
|
1609
2202
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1610
|
-
upload_protocol?:
|
|
2203
|
+
upload_protocol?:
|
|
2204
|
+
string;
|
|
1611
2205
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1612
|
-
uploadType?:
|
|
2206
|
+
uploadType?:
|
|
2207
|
+
string;
|
|
1613
2208
|
/** Request body */
|
|
1614
|
-
resource:
|
|
2209
|
+
resource:
|
|
2210
|
+
CancelOperationRequest;
|
|
1615
2211
|
}): Request<{}>;
|
|
1616
2212
|
cancel(request: {
|
|
1617
2213
|
/** V1 error format. */
|
|
1618
|
-
"$.xgafv"?:
|
|
2214
|
+
"$.xgafv"?:
|
|
2215
|
+
string;
|
|
1619
2216
|
/** OAuth access token. */
|
|
1620
|
-
access_token?:
|
|
2217
|
+
access_token?:
|
|
2218
|
+
string;
|
|
1621
2219
|
/** Data format for response. */
|
|
1622
|
-
alt?:
|
|
2220
|
+
alt?:
|
|
2221
|
+
string;
|
|
1623
2222
|
/** JSONP */
|
|
1624
|
-
callback?:
|
|
2223
|
+
callback?:
|
|
2224
|
+
string;
|
|
1625
2225
|
/** Selector specifying which fields to include in a partial response. */
|
|
1626
|
-
fields?:
|
|
2226
|
+
fields?:
|
|
2227
|
+
string;
|
|
1627
2228
|
/** 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. */
|
|
1628
|
-
key?:
|
|
2229
|
+
key?:
|
|
2230
|
+
string;
|
|
1629
2231
|
/** The name of the operation resource to be cancelled. */
|
|
1630
|
-
name:
|
|
2232
|
+
name:
|
|
2233
|
+
string;
|
|
1631
2234
|
/** OAuth 2.0 token for the current user. */
|
|
1632
|
-
oauth_token?:
|
|
2235
|
+
oauth_token?:
|
|
2236
|
+
string;
|
|
1633
2237
|
/** Returns response with indentations and line breaks. */
|
|
1634
|
-
prettyPrint?:
|
|
2238
|
+
prettyPrint?:
|
|
2239
|
+
boolean;
|
|
1635
2240
|
/** 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. */
|
|
1636
|
-
quotaUser?:
|
|
2241
|
+
quotaUser?:
|
|
2242
|
+
string;
|
|
1637
2243
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1638
|
-
upload_protocol?:
|
|
2244
|
+
upload_protocol?:
|
|
2245
|
+
string;
|
|
1639
2246
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1640
|
-
uploadType?:
|
|
2247
|
+
uploadType?:
|
|
2248
|
+
string;
|
|
1641
2249
|
},
|
|
1642
2250
|
body: CancelOperationRequest): Request<{}>;
|
|
1643
2251
|
/**
|
|
@@ -1646,161 +2254,231 @@ declare namespace gapi.client {
|
|
|
1646
2254
|
*/
|
|
1647
2255
|
delete(request?: {
|
|
1648
2256
|
/** V1 error format. */
|
|
1649
|
-
"$.xgafv"?:
|
|
2257
|
+
"$.xgafv"?:
|
|
2258
|
+
string;
|
|
1650
2259
|
/** OAuth access token. */
|
|
1651
|
-
access_token?:
|
|
2260
|
+
access_token?:
|
|
2261
|
+
string;
|
|
1652
2262
|
/** Data format for response. */
|
|
1653
|
-
alt?:
|
|
2263
|
+
alt?:
|
|
2264
|
+
string;
|
|
1654
2265
|
/** JSONP */
|
|
1655
|
-
callback?:
|
|
2266
|
+
callback?:
|
|
2267
|
+
string;
|
|
1656
2268
|
/** Selector specifying which fields to include in a partial response. */
|
|
1657
|
-
fields?:
|
|
2269
|
+
fields?:
|
|
2270
|
+
string;
|
|
1658
2271
|
/** 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?:
|
|
2272
|
+
key?:
|
|
2273
|
+
string;
|
|
1660
2274
|
/** The name of the operation resource to be deleted. */
|
|
1661
|
-
name:
|
|
2275
|
+
name:
|
|
2276
|
+
string;
|
|
1662
2277
|
/** OAuth 2.0 token for the current user. */
|
|
1663
|
-
oauth_token?:
|
|
2278
|
+
oauth_token?:
|
|
2279
|
+
string;
|
|
1664
2280
|
/** Returns response with indentations and line breaks. */
|
|
1665
|
-
prettyPrint?:
|
|
2281
|
+
prettyPrint?:
|
|
2282
|
+
boolean;
|
|
1666
2283
|
/** 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?:
|
|
2284
|
+
quotaUser?:
|
|
2285
|
+
string;
|
|
1668
2286
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1669
|
-
upload_protocol?:
|
|
2287
|
+
upload_protocol?:
|
|
2288
|
+
string;
|
|
1670
2289
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1671
|
-
uploadType?:
|
|
2290
|
+
uploadType?:
|
|
2291
|
+
string;
|
|
1672
2292
|
}): Request<{}>;
|
|
1673
2293
|
/** 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. */
|
|
1674
2294
|
get(request?: {
|
|
1675
2295
|
/** V1 error format. */
|
|
1676
|
-
"$.xgafv"?:
|
|
2296
|
+
"$.xgafv"?:
|
|
2297
|
+
string;
|
|
1677
2298
|
/** OAuth access token. */
|
|
1678
|
-
access_token?:
|
|
2299
|
+
access_token?:
|
|
2300
|
+
string;
|
|
1679
2301
|
/** Data format for response. */
|
|
1680
|
-
alt?:
|
|
2302
|
+
alt?:
|
|
2303
|
+
string;
|
|
1681
2304
|
/** JSONP */
|
|
1682
|
-
callback?:
|
|
2305
|
+
callback?:
|
|
2306
|
+
string;
|
|
1683
2307
|
/** Selector specifying which fields to include in a partial response. */
|
|
1684
|
-
fields?:
|
|
2308
|
+
fields?:
|
|
2309
|
+
string;
|
|
1685
2310
|
/** 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. */
|
|
1686
|
-
key?:
|
|
2311
|
+
key?:
|
|
2312
|
+
string;
|
|
1687
2313
|
/** The name of the operation resource. */
|
|
1688
|
-
name:
|
|
2314
|
+
name:
|
|
2315
|
+
string;
|
|
1689
2316
|
/** OAuth 2.0 token for the current user. */
|
|
1690
|
-
oauth_token?:
|
|
2317
|
+
oauth_token?:
|
|
2318
|
+
string;
|
|
1691
2319
|
/** Returns response with indentations and line breaks. */
|
|
1692
|
-
prettyPrint?:
|
|
2320
|
+
prettyPrint?:
|
|
2321
|
+
boolean;
|
|
1693
2322
|
/** 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. */
|
|
1694
|
-
quotaUser?:
|
|
2323
|
+
quotaUser?:
|
|
2324
|
+
string;
|
|
1695
2325
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1696
|
-
upload_protocol?:
|
|
2326
|
+
upload_protocol?:
|
|
2327
|
+
string;
|
|
1697
2328
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1698
|
-
uploadType?:
|
|
2329
|
+
uploadType?:
|
|
2330
|
+
string;
|
|
1699
2331
|
}): Request<Operation>;
|
|
1700
2332
|
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
1701
2333
|
list(request?: {
|
|
1702
2334
|
/** V1 error format. */
|
|
1703
|
-
"$.xgafv"?:
|
|
2335
|
+
"$.xgafv"?:
|
|
2336
|
+
string;
|
|
1704
2337
|
/** OAuth access token. */
|
|
1705
|
-
access_token?:
|
|
2338
|
+
access_token?:
|
|
2339
|
+
string;
|
|
1706
2340
|
/** Data format for response. */
|
|
1707
|
-
alt?:
|
|
2341
|
+
alt?:
|
|
2342
|
+
string;
|
|
1708
2343
|
/** JSONP */
|
|
1709
|
-
callback?:
|
|
2344
|
+
callback?:
|
|
2345
|
+
string;
|
|
1710
2346
|
/** Selector specifying which fields to include in a partial response. */
|
|
1711
|
-
fields?:
|
|
2347
|
+
fields?:
|
|
2348
|
+
string;
|
|
1712
2349
|
/** The standard list filter. */
|
|
1713
|
-
filter?:
|
|
2350
|
+
filter?:
|
|
2351
|
+
string;
|
|
1714
2352
|
/** 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. */
|
|
1715
|
-
key?:
|
|
2353
|
+
key?:
|
|
2354
|
+
string;
|
|
1716
2355
|
/** The name of the operation's parent resource. */
|
|
1717
|
-
name:
|
|
2356
|
+
name:
|
|
2357
|
+
string;
|
|
1718
2358
|
/** OAuth 2.0 token for the current user. */
|
|
1719
|
-
oauth_token?:
|
|
2359
|
+
oauth_token?:
|
|
2360
|
+
string;
|
|
1720
2361
|
/** The standard list page size. */
|
|
1721
|
-
pageSize?:
|
|
2362
|
+
pageSize?:
|
|
2363
|
+
number;
|
|
1722
2364
|
/** The standard list page token. */
|
|
1723
|
-
pageToken?:
|
|
2365
|
+
pageToken?:
|
|
2366
|
+
string;
|
|
1724
2367
|
/** Returns response with indentations and line breaks. */
|
|
1725
|
-
prettyPrint?:
|
|
2368
|
+
prettyPrint?:
|
|
2369
|
+
boolean;
|
|
1726
2370
|
/** 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?:
|
|
2371
|
+
quotaUser?:
|
|
2372
|
+
string;
|
|
1728
2373
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1729
|
-
upload_protocol?:
|
|
2374
|
+
upload_protocol?:
|
|
2375
|
+
string;
|
|
1730
2376
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1731
|
-
uploadType?:
|
|
2377
|
+
uploadType?:
|
|
2378
|
+
string;
|
|
1732
2379
|
}): Request<ListOperationsResponse>;
|
|
1733
2380
|
}
|
|
1734
2381
|
interface LocationsResource {
|
|
1735
2382
|
/** Gets information about a location. */
|
|
1736
2383
|
get(request?: {
|
|
1737
2384
|
/** V1 error format. */
|
|
1738
|
-
"$.xgafv"?:
|
|
2385
|
+
"$.xgafv"?:
|
|
2386
|
+
string;
|
|
1739
2387
|
/** OAuth access token. */
|
|
1740
|
-
access_token?:
|
|
2388
|
+
access_token?:
|
|
2389
|
+
string;
|
|
1741
2390
|
/** Data format for response. */
|
|
1742
|
-
alt?:
|
|
2391
|
+
alt?:
|
|
2392
|
+
string;
|
|
1743
2393
|
/** JSONP */
|
|
1744
|
-
callback?:
|
|
2394
|
+
callback?:
|
|
2395
|
+
string;
|
|
1745
2396
|
/** Selector specifying which fields to include in a partial response. */
|
|
1746
|
-
fields?:
|
|
2397
|
+
fields?:
|
|
2398
|
+
string;
|
|
1747
2399
|
/** 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. */
|
|
1748
|
-
key?:
|
|
2400
|
+
key?:
|
|
2401
|
+
string;
|
|
1749
2402
|
/** Resource name for the location. */
|
|
1750
|
-
name:
|
|
2403
|
+
name:
|
|
2404
|
+
string;
|
|
1751
2405
|
/** OAuth 2.0 token for the current user. */
|
|
1752
|
-
oauth_token?:
|
|
2406
|
+
oauth_token?:
|
|
2407
|
+
string;
|
|
1753
2408
|
/** Returns response with indentations and line breaks. */
|
|
1754
|
-
prettyPrint?:
|
|
2409
|
+
prettyPrint?:
|
|
2410
|
+
boolean;
|
|
1755
2411
|
/** 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. */
|
|
1756
|
-
quotaUser?:
|
|
2412
|
+
quotaUser?:
|
|
2413
|
+
string;
|
|
1757
2414
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1758
|
-
upload_protocol?:
|
|
2415
|
+
upload_protocol?:
|
|
2416
|
+
string;
|
|
1759
2417
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1760
|
-
uploadType?:
|
|
2418
|
+
uploadType?:
|
|
2419
|
+
string;
|
|
1761
2420
|
}): Request<Location>;
|
|
1762
2421
|
/** Lists information about the supported locations for this service. */
|
|
1763
2422
|
list(request?: {
|
|
1764
2423
|
/** V1 error format. */
|
|
1765
|
-
"$.xgafv"?:
|
|
2424
|
+
"$.xgafv"?:
|
|
2425
|
+
string;
|
|
1766
2426
|
/** OAuth access token. */
|
|
1767
|
-
access_token?:
|
|
2427
|
+
access_token?:
|
|
2428
|
+
string;
|
|
1768
2429
|
/** Data format for response. */
|
|
1769
|
-
alt?:
|
|
2430
|
+
alt?:
|
|
2431
|
+
string;
|
|
1770
2432
|
/** JSONP */
|
|
1771
|
-
callback?:
|
|
2433
|
+
callback?:
|
|
2434
|
+
string;
|
|
1772
2435
|
/** Selector specifying which fields to include in a partial response. */
|
|
1773
|
-
fields?:
|
|
2436
|
+
fields?:
|
|
2437
|
+
string;
|
|
1774
2438
|
/**
|
|
1775
2439
|
* 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
|
|
1776
2440
|
* [AIP-160](https://google.aip.dev/160).
|
|
1777
2441
|
*/
|
|
1778
|
-
filter?:
|
|
2442
|
+
filter?:
|
|
2443
|
+
string;
|
|
1779
2444
|
/** 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. */
|
|
1780
|
-
key?:
|
|
2445
|
+
key?:
|
|
2446
|
+
string;
|
|
1781
2447
|
/** The resource that owns the locations collection, if applicable. */
|
|
1782
|
-
name:
|
|
2448
|
+
name:
|
|
2449
|
+
string;
|
|
1783
2450
|
/** OAuth 2.0 token for the current user. */
|
|
1784
|
-
oauth_token?:
|
|
2451
|
+
oauth_token?:
|
|
2452
|
+
string;
|
|
1785
2453
|
/** The maximum number of results to return. If not set, the service selects a default. */
|
|
1786
|
-
pageSize?:
|
|
2454
|
+
pageSize?:
|
|
2455
|
+
number;
|
|
1787
2456
|
/** A page token received from the `next_page_token` field in the response. Send that page token to receive the subsequent page. */
|
|
1788
|
-
pageToken?:
|
|
2457
|
+
pageToken?:
|
|
2458
|
+
string;
|
|
1789
2459
|
/** Returns response with indentations and line breaks. */
|
|
1790
|
-
prettyPrint?:
|
|
2460
|
+
prettyPrint?:
|
|
2461
|
+
boolean;
|
|
1791
2462
|
/** 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. */
|
|
1792
|
-
quotaUser?:
|
|
2463
|
+
quotaUser?:
|
|
2464
|
+
string;
|
|
1793
2465
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1794
|
-
upload_protocol?:
|
|
2466
|
+
upload_protocol?:
|
|
2467
|
+
string;
|
|
1795
2468
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1796
|
-
uploadType?:
|
|
2469
|
+
uploadType?:
|
|
2470
|
+
string;
|
|
1797
2471
|
}): Request<ListLocationsResponse>;
|
|
1798
|
-
connectionProfiles:
|
|
1799
|
-
|
|
1800
|
-
|
|
2472
|
+
connectionProfiles:
|
|
2473
|
+
ConnectionProfilesResource;
|
|
2474
|
+
migrationJobs:
|
|
2475
|
+
MigrationJobsResource;
|
|
2476
|
+
operations:
|
|
2477
|
+
OperationsResource;
|
|
1801
2478
|
}
|
|
1802
2479
|
interface ProjectsResource {
|
|
1803
|
-
locations:
|
|
2480
|
+
locations:
|
|
2481
|
+
LocationsResource;
|
|
1804
2482
|
}
|
|
1805
2483
|
|
|
1806
2484
|
const projects: ProjectsResource;
|