@maxim_mazurok/gapi.client.datamigration-v1 0.1.20251210 → 0.1.20260107
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 +62 -36
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://datamigration.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260107
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -55,7 +55,7 @@ declare namespace gapi.client {
|
|
|
55
55
|
connectionProfile?: string;
|
|
56
56
|
/** Optional. Only validates the apply process, but doesn't change the destination database. Only works for PostgreSQL destination connection profile. */
|
|
57
57
|
dryRun?: boolean;
|
|
58
|
-
/** Filter which entities to apply. Leaving this field empty will apply all of the entities. Supports Google AIP 160 based filtering. */
|
|
58
|
+
/** Optional. Filter which entities to apply. Leaving this field empty will apply all of the entities. Supports Google AIP 160 based filtering. */
|
|
59
59
|
filter?: string;
|
|
60
60
|
}
|
|
61
61
|
interface ApplyHash {
|
|
@@ -795,10 +795,16 @@ declare namespace gapi.client {
|
|
|
795
795
|
objectsConfig?: MigrationJobObjectsConfig;
|
|
796
796
|
/** Configuration for heterogeneous **Oracle to Cloud SQL for PostgreSQL** and **Oracle to AlloyDB for PostgreSQL** migrations. */
|
|
797
797
|
oracleToPostgresConfig?: OracleToPostgresConfig;
|
|
798
|
+
/** Optional. A failback replication pointer to the resource name (URI) of the original migration job. */
|
|
799
|
+
originalMigrationName?: string;
|
|
798
800
|
/** Optional. Data dump parallelism settings used by the migration. */
|
|
799
801
|
performanceConfig?: PerformanceConfig;
|
|
800
802
|
/** Output only. The current migration job phase. */
|
|
801
803
|
phase?: string;
|
|
804
|
+
/** Configuration for heterogeneous failback migrations from **PostgreSQL to SQL Server**. */
|
|
805
|
+
postgresToSqlserverConfig?: PostgresToSqlServerConfig;
|
|
806
|
+
/** Output only. Migration job mode. Migration jobs can be standard forward jobs or failback migration jobs. */
|
|
807
|
+
purpose?: string;
|
|
802
808
|
/** The details needed to communicate to the source over Reverse SSH tunnel connectivity. */
|
|
803
809
|
reverseSshConnectivity?: ReverseSshConnectivity;
|
|
804
810
|
/** Output only. Reserved for future use. */
|
|
@@ -1014,6 +1020,8 @@ declare namespace gapi.client {
|
|
|
1014
1020
|
cloudSqlId?: string;
|
|
1015
1021
|
/** Optional. The name of the specific database within the host. */
|
|
1016
1022
|
database?: string;
|
|
1023
|
+
/** Forward SSH tunnel connectivity. */
|
|
1024
|
+
forwardSshConnectivity?: ForwardSshTunnelConnectivity;
|
|
1017
1025
|
/** Required. The IP or hostname of the source PostgreSQL database. */
|
|
1018
1026
|
host?: string;
|
|
1019
1027
|
/** Output only. If the source is a Cloud SQL database, this field indicates the network architecture it's associated with. */
|
|
@@ -1024,6 +1032,8 @@ declare namespace gapi.client {
|
|
|
1024
1032
|
passwordSet?: boolean;
|
|
1025
1033
|
/** Required. The network port of the source PostgreSQL database. */
|
|
1026
1034
|
port?: number;
|
|
1035
|
+
/** Private connectivity. */
|
|
1036
|
+
privateConnectivity?: PrivateConnectivity;
|
|
1027
1037
|
/** Private service connect connectivity. */
|
|
1028
1038
|
privateServiceConnectConnectivity?: PrivateServiceConnectConnectivity;
|
|
1029
1039
|
/** SSL configuration for the destination to connect to the source database. */
|
|
@@ -1033,6 +1043,16 @@ declare namespace gapi.client {
|
|
|
1033
1043
|
/** Required. The username that Database Migration Service will use to connect to the database. The value is encrypted when stored in Database Migration Service. */
|
|
1034
1044
|
username?: string;
|
|
1035
1045
|
}
|
|
1046
|
+
interface PostgresSourceConfig {
|
|
1047
|
+
/** Optional. Whether to skip full dump or not. */
|
|
1048
|
+
skipFullDump?: boolean;
|
|
1049
|
+
}
|
|
1050
|
+
interface PostgresToSqlServerConfig {
|
|
1051
|
+
/** Optional. Configuration for PostgreSQL source. */
|
|
1052
|
+
postgresSourceConfig?: PostgresSourceConfig;
|
|
1053
|
+
/** Optional. Configuration for SQL Server destination. */
|
|
1054
|
+
sqlserverDestinationConfig?: SqlServerDestinationConfig;
|
|
1055
|
+
}
|
|
1036
1056
|
interface PrimaryInstanceSettings {
|
|
1037
1057
|
/** Database flags to pass to AlloyDB when DMS is creating the AlloyDB cluster and instances. See the AlloyDB documentation for how these can be used. */
|
|
1038
1058
|
databaseFlags?: {[P in string]: string};
|
|
@@ -1326,6 +1346,12 @@ declare namespace gapi.client {
|
|
|
1326
1346
|
/** Optional. Encryption settings for the database. Required if provided database backups are encrypted. Encryption settings include path to certificate, path to certificate private key, and key password. */
|
|
1327
1347
|
encryptionOptions?: SqlServerEncryptionOptions;
|
|
1328
1348
|
}
|
|
1349
|
+
interface SqlServerDestinationConfig {
|
|
1350
|
+
/** Optional. Maximum number of connections Database Migration Service will open to the destination for data migration. */
|
|
1351
|
+
maxConcurrentConnections?: number;
|
|
1352
|
+
/** Optional. Timeout for data migration transactions. */
|
|
1353
|
+
transactionTimeout?: string;
|
|
1354
|
+
}
|
|
1329
1355
|
interface SqlServerEncryptionOptions {
|
|
1330
1356
|
/** Required. Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read access to the file. */
|
|
1331
1357
|
certPath?: string;
|
|
@@ -1701,17 +1727,17 @@ declare namespace gapi.client {
|
|
|
1701
1727
|
callback?: string;
|
|
1702
1728
|
/** Selector specifying which fields to include in a partial response. */
|
|
1703
1729
|
fields?: string;
|
|
1704
|
-
/** 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 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 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;** to list all connection profiles configured to connect with a specific username. */
|
|
1730
|
+
/** Optional. 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 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 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;** to list all connection profiles configured to connect with a specific username. */
|
|
1705
1731
|
filter?: string;
|
|
1706
1732
|
/** 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. */
|
|
1707
1733
|
key?: string;
|
|
1708
1734
|
/** OAuth 2.0 token for the current user. */
|
|
1709
1735
|
oauth_token?: string;
|
|
1710
|
-
/** A comma-separated list of fields to order results according to. */
|
|
1736
|
+
/** Optional. A comma-separated list of fields to order results according to. */
|
|
1711
1737
|
orderBy?: string;
|
|
1712
1738
|
/** 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 value is 1000; values above 1000 are coerced to 1000. */
|
|
1713
1739
|
pageSize?: number;
|
|
1714
|
-
/** A page token, received from a previous `ListConnectionProfiles` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListConnectionProfiles` must match the call that provided the page token. */
|
|
1740
|
+
/** Optional. A page token, received from a previous `ListConnectionProfiles` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListConnectionProfiles` must match the call that provided the page token. */
|
|
1715
1741
|
pageToken?: string;
|
|
1716
1742
|
/** Required. The parent which owns this collection of connection profiles. */
|
|
1717
1743
|
parent: string;
|
|
@@ -1884,7 +1910,7 @@ declare namespace gapi.client {
|
|
|
1884
1910
|
prettyPrint?: boolean;
|
|
1885
1911
|
/** 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. */
|
|
1886
1912
|
quotaUser?: string;
|
|
1887
|
-
/** A unique ID used to identify the request. If the server receives two requests with the same ID, then the second request is ignored. It is recommended to always set this 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. */
|
|
1913
|
+
/** Optional. A unique ID used to identify the request. If the server receives two requests with the same ID, then the second request is ignored. It is recommended to always set this 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. */
|
|
1888
1914
|
requestId?: string;
|
|
1889
1915
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1890
1916
|
upload_protocol?: string;
|
|
@@ -1917,7 +1943,7 @@ declare namespace gapi.client {
|
|
|
1917
1943
|
prettyPrint?: boolean;
|
|
1918
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. */
|
|
1919
1945
|
quotaUser?: string;
|
|
1920
|
-
/** A unique ID used to identify the request. If the server receives two requests with the same ID, then the second request is ignored. It is recommended to always set this 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. */
|
|
1946
|
+
/** Optional. A unique ID used to identify the request. If the server receives two requests with the same ID, then the second request is ignored. It is recommended to always set this 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. */
|
|
1921
1947
|
requestId?: string;
|
|
1922
1948
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1923
1949
|
upload_protocol?: string;
|
|
@@ -2056,9 +2082,9 @@ declare namespace gapi.client {
|
|
|
2056
2082
|
key?: string;
|
|
2057
2083
|
/** OAuth 2.0 token for the current user. */
|
|
2058
2084
|
oauth_token?: string;
|
|
2059
|
-
/** The maximum number of rules to return. The service may return fewer than this value. */
|
|
2085
|
+
/** Optional. The maximum number of rules to return. The service may return fewer than this value. */
|
|
2060
2086
|
pageSize?: number;
|
|
2061
|
-
/** The nextPageToken value received in the previous call to mappingRules.list, used in the subsequent request to retrieve the next page of results. On first call this should be left blank. When paginating, all other parameters provided to mappingRules.list must match the call that provided the page token. */
|
|
2087
|
+
/** Optional. The nextPageToken value received in the previous call to mappingRules.list, used in the subsequent request to retrieve the next page of results. On first call this should be left blank. When paginating, all other parameters provided to mappingRules.list must match the call that provided the page token. */
|
|
2062
2088
|
pageToken?: string;
|
|
2063
2089
|
/** Required. Name of the conversion workspace resource whose mapping rules are listed in the form of: projects/{project}/locations/{location}/conversionWorkspaces/{conversion_workspace}. */
|
|
2064
2090
|
parent: string;
|
|
@@ -2271,7 +2297,7 @@ declare namespace gapi.client {
|
|
|
2271
2297
|
prettyPrint?: boolean;
|
|
2272
2298
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2273
2299
|
quotaUser?: string;
|
|
2274
|
-
/** A unique ID used to identify the request. If the server receives two requests with the same ID, then the second request is ignored. It is recommended to always set this 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. */
|
|
2300
|
+
/** Optional. A unique ID used to identify the request. If the server receives two requests with the same ID, then the second request is ignored. It is recommended to always set this 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. */
|
|
2275
2301
|
requestId?: string;
|
|
2276
2302
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2277
2303
|
upload_protocol?: string;
|
|
@@ -2304,7 +2330,7 @@ declare namespace gapi.client {
|
|
|
2304
2330
|
prettyPrint?: boolean;
|
|
2305
2331
|
/** 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. */
|
|
2306
2332
|
quotaUser?: string;
|
|
2307
|
-
/** A unique ID used to identify the request. If the server receives two requests with the same ID, then the second request is ignored. It is recommended to always set this 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. */
|
|
2333
|
+
/** Optional. A unique ID used to identify the request. If the server receives two requests with the same ID, then the second request is ignored. It is recommended to always set this 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. */
|
|
2308
2334
|
requestId?: string;
|
|
2309
2335
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2310
2336
|
upload_protocol?: string;
|
|
@@ -2325,7 +2351,7 @@ declare namespace gapi.client {
|
|
|
2325
2351
|
callback?: string;
|
|
2326
2352
|
/** Selector specifying which fields to include in a partial response. */
|
|
2327
2353
|
fields?: string;
|
|
2328
|
-
/** Force delete the conversion workspace, even if there's a running migration that is using the workspace. */
|
|
2354
|
+
/** Optional. Force delete the conversion workspace, even if there's a running migration that is using the workspace. */
|
|
2329
2355
|
force?: boolean;
|
|
2330
2356
|
/** 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. */
|
|
2331
2357
|
key?: string;
|
|
@@ -2337,7 +2363,7 @@ declare namespace gapi.client {
|
|
|
2337
2363
|
prettyPrint?: boolean;
|
|
2338
2364
|
/** 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. */
|
|
2339
2365
|
quotaUser?: string;
|
|
2340
|
-
/** A unique ID used to identify the request. If the server receives two requests with the same ID, then the second request is ignored. It is recommended to always set this 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. */
|
|
2366
|
+
/** Optional. A unique ID used to identify the request. If the server receives two requests with the same ID, then the second request is ignored. It is recommended to always set this 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. */
|
|
2341
2367
|
requestId?: string;
|
|
2342
2368
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2343
2369
|
upload_protocol?: string;
|
|
@@ -2482,15 +2508,15 @@ declare namespace gapi.client {
|
|
|
2482
2508
|
callback?: string;
|
|
2483
2509
|
/** Selector specifying which fields to include in a partial response. */
|
|
2484
2510
|
fields?: string;
|
|
2485
|
-
/** A filter expression that filters conversion workspaces listed in the response. The expression must specify the field name, a comparison operator, and the value that you want to use for filtering. The value must be a string, a number, or a boolean. The comparison operator must be either =, !=, >, or <. For example, list conversion workspaces created this year by specifying **createTime %gt; 2020-01-01T00:00:00.000000000Z.** You can also filter nested fields. For example, you could specify **source.version = "12.c.1"** to select all conversion workspaces with source database version equal to 12.c.1. */
|
|
2511
|
+
/** Optional. A filter expression that filters conversion workspaces listed in the response. The expression must specify the field name, a comparison operator, and the value that you want to use for filtering. The value must be a string, a number, or a boolean. The comparison operator must be either =, !=, >, or <. For example, list conversion workspaces created this year by specifying **createTime %gt; 2020-01-01T00:00:00.000000000Z.** You can also filter nested fields. For example, you could specify **source.version = "12.c.1"** to select all conversion workspaces with source database version equal to 12.c.1. */
|
|
2486
2512
|
filter?: string;
|
|
2487
2513
|
/** 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. */
|
|
2488
2514
|
key?: string;
|
|
2489
2515
|
/** OAuth 2.0 token for the current user. */
|
|
2490
2516
|
oauth_token?: string;
|
|
2491
|
-
/** The maximum number of conversion workspaces to return. The service may return fewer than this value. If unspecified, at most 50 sets are returned. */
|
|
2517
|
+
/** Optional. The maximum number of conversion workspaces to return. The service may return fewer than this value. If unspecified, at most 50 sets are returned. */
|
|
2492
2518
|
pageSize?: number;
|
|
2493
|
-
/** The nextPageToken value received in the previous call to conversionWorkspaces.list, used in the subsequent request to retrieve the next page of results. On first call this should be left blank. When paginating, all other parameters provided to conversionWorkspaces.list must match the call that provided the page token. */
|
|
2519
|
+
/** Optional. The nextPageToken value received in the previous call to conversionWorkspaces.list, used in the subsequent request to retrieve the next page of results. On first call this should be left blank. When paginating, all other parameters provided to conversionWorkspaces.list must match the call that provided the page token. */
|
|
2494
2520
|
pageToken?: string;
|
|
2495
2521
|
/** Required. The parent which owns this collection of conversion workspaces. */
|
|
2496
2522
|
parent: string;
|
|
@@ -2525,7 +2551,7 @@ declare namespace gapi.client {
|
|
|
2525
2551
|
prettyPrint?: boolean;
|
|
2526
2552
|
/** 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. */
|
|
2527
2553
|
quotaUser?: string;
|
|
2528
|
-
/** A unique ID used to identify the request. If the server receives two requests with the same ID, then the second request is ignored. It is recommended to always set this 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. */
|
|
2554
|
+
/** Optional. A unique ID used to identify the request. If the server receives two requests with the same ID, then the second request is ignored. It is recommended to always set this 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. */
|
|
2529
2555
|
requestId?: string;
|
|
2530
2556
|
/** Required. Field mask is used to specify the fields to be overwritten by the update in the conversion workspace resource. */
|
|
2531
2557
|
updateMask?: string;
|
|
@@ -2558,7 +2584,7 @@ declare namespace gapi.client {
|
|
|
2558
2584
|
prettyPrint?: boolean;
|
|
2559
2585
|
/** 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. */
|
|
2560
2586
|
quotaUser?: string;
|
|
2561
|
-
/** A unique ID used to identify the request. If the server receives two requests with the same ID, then the second request is ignored. It is recommended to always set this 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. */
|
|
2587
|
+
/** Optional. A unique ID used to identify the request. If the server receives two requests with the same ID, then the second request is ignored. It is recommended to always set this 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. */
|
|
2562
2588
|
requestId?: string;
|
|
2563
2589
|
/** Required. Field mask is used to specify the fields to be overwritten by the update in the conversion workspace resource. */
|
|
2564
2590
|
updateMask?: string;
|
|
@@ -2853,9 +2879,9 @@ declare namespace gapi.client {
|
|
|
2853
2879
|
key?: string;
|
|
2854
2880
|
/** OAuth 2.0 token for the current user. */
|
|
2855
2881
|
oauth_token?: string;
|
|
2856
|
-
/** Maximum number of objects to return. Default is 50. The maximum value is 1000; values above 1000 will be coerced to 1000. */
|
|
2882
|
+
/** Optional. Maximum number of objects to return. Default is 50. The maximum value is 1000; values above 1000 will be coerced to 1000. */
|
|
2857
2883
|
pageSize?: number;
|
|
2858
|
-
/** Page token received from a previous `ListMigrationJObObjectsRequest` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListMigrationJobObjectsRequest` must match the call that provided the page token. */
|
|
2884
|
+
/** Optional. Page token received from a previous `ListMigrationJObObjectsRequest` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListMigrationJobObjectsRequest` must match the call that provided the page token. */
|
|
2859
2885
|
pageToken?: string;
|
|
2860
2886
|
/** Required. The parent migration job that owns the collection of objects. */
|
|
2861
2887
|
parent: string;
|
|
@@ -3066,7 +3092,7 @@ declare namespace gapi.client {
|
|
|
3066
3092
|
callback?: string;
|
|
3067
3093
|
/** Selector specifying which fields to include in a partial response. */
|
|
3068
3094
|
fields?: string;
|
|
3069
|
-
/** 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. */
|
|
3095
|
+
/** Optional. 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. */
|
|
3070
3096
|
force?: boolean;
|
|
3071
3097
|
/** 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. */
|
|
3072
3098
|
key?: string;
|
|
@@ -3078,7 +3104,7 @@ declare namespace gapi.client {
|
|
|
3078
3104
|
prettyPrint?: boolean;
|
|
3079
3105
|
/** 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. */
|
|
3080
3106
|
quotaUser?: string;
|
|
3081
|
-
/** A unique ID used to identify the request. If the server receives two requests with the same ID, then the second request is ignored. It is recommended to always set this 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. */
|
|
3107
|
+
/** Optional. A unique ID used to identify the request. If the server receives two requests with the same ID, then the second request is ignored. It is recommended to always set this 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. */
|
|
3082
3108
|
requestId?: string;
|
|
3083
3109
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3084
3110
|
upload_protocol?: string;
|
|
@@ -3099,7 +3125,7 @@ declare namespace gapi.client {
|
|
|
3099
3125
|
fields?: string;
|
|
3100
3126
|
/** 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. */
|
|
3101
3127
|
key?: string;
|
|
3102
|
-
/** Name of the migration job resource to demote its destination. */
|
|
3128
|
+
/** Required. Name of the migration job resource to demote its destination. */
|
|
3103
3129
|
name: string;
|
|
3104
3130
|
/** OAuth 2.0 token for the current user. */
|
|
3105
3131
|
oauth_token?: string;
|
|
@@ -3128,7 +3154,7 @@ declare namespace gapi.client {
|
|
|
3128
3154
|
fields?: string;
|
|
3129
3155
|
/** 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. */
|
|
3130
3156
|
key?: string;
|
|
3131
|
-
/** Name of the migration job resource to demote its destination. */
|
|
3157
|
+
/** Required. Name of the migration job resource to demote its destination. */
|
|
3132
3158
|
name: string;
|
|
3133
3159
|
/** OAuth 2.0 token for the current user. */
|
|
3134
3160
|
oauth_token?: string;
|
|
@@ -3354,17 +3380,17 @@ declare namespace gapi.client {
|
|
|
3354
3380
|
callback?: string;
|
|
3355
3381
|
/** Selector specifying which fields to include in a partial response. */
|
|
3356
3382
|
fields?: string;
|
|
3357
|
-
/** 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 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 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 select all migration jobs connecting through the specific SSH tunnel bastion. */
|
|
3383
|
+
/** Optional. 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 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 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 select all migration jobs connecting through the specific SSH tunnel bastion. */
|
|
3358
3384
|
filter?: string;
|
|
3359
3385
|
/** 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. */
|
|
3360
3386
|
key?: string;
|
|
3361
3387
|
/** OAuth 2.0 token for the current user. */
|
|
3362
3388
|
oauth_token?: string;
|
|
3363
|
-
/** Sort the results based on the migration job name. Valid values are: "name", "name asc", and "name desc". */
|
|
3389
|
+
/** Optional. Sort the results based on the migration job name. Valid values are: "name", "name asc", and "name desc". */
|
|
3364
3390
|
orderBy?: string;
|
|
3365
|
-
/** 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 1000; values above 1000 are coerced to 1000. */
|
|
3391
|
+
/** Optional. 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 1000; values above 1000 are coerced to 1000. */
|
|
3366
3392
|
pageSize?: number;
|
|
3367
|
-
/** 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 left blank. When paginating, all other parameters provided to migrationJobs.list must match the call that provided the page token. */
|
|
3393
|
+
/** Optional. 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 left blank. When paginating, all other parameters provided to migrationJobs.list must match the call that provided the page token. */
|
|
3368
3394
|
pageToken?: string;
|
|
3369
3395
|
/** Required. The parent which owns this collection of migrationJobs. */
|
|
3370
3396
|
parent: string;
|
|
@@ -3399,7 +3425,7 @@ declare namespace gapi.client {
|
|
|
3399
3425
|
prettyPrint?: boolean;
|
|
3400
3426
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3401
3427
|
quotaUser?: string;
|
|
3402
|
-
/** A unique ID used to identify the request. If the server receives two requests with the same ID, then the second request is ignored. It is recommended to always set this 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. */
|
|
3428
|
+
/** Optional. A unique ID used to identify the request. If the server receives two requests with the same ID, then the second request is ignored. It is recommended to always set this 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. */
|
|
3403
3429
|
requestId?: string;
|
|
3404
3430
|
/** Required. Field mask is used to specify the fields to be overwritten by the update in the conversion workspace resource. */
|
|
3405
3431
|
updateMask?: string;
|
|
@@ -3432,7 +3458,7 @@ declare namespace gapi.client {
|
|
|
3432
3458
|
prettyPrint?: boolean;
|
|
3433
3459
|
/** 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. */
|
|
3434
3460
|
quotaUser?: string;
|
|
3435
|
-
/** A unique ID used to identify the request. If the server receives two requests with the same ID, then the second request is ignored. It is recommended to always set this 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. */
|
|
3461
|
+
/** Optional. A unique ID used to identify the request. If the server receives two requests with the same ID, then the second request is ignored. It is recommended to always set this 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. */
|
|
3436
3462
|
requestId?: string;
|
|
3437
3463
|
/** Required. Field mask is used to specify the fields to be overwritten by the update in the conversion workspace resource. */
|
|
3438
3464
|
updateMask?: string;
|
|
@@ -4174,17 +4200,17 @@ declare namespace gapi.client {
|
|
|
4174
4200
|
callback?: string;
|
|
4175
4201
|
/** Selector specifying which fields to include in a partial response. */
|
|
4176
4202
|
fields?: string;
|
|
4177
|
-
/** A filter expression that filters private connections listed in the response. The expression must specify the field name, a comparison operator, and the value that you want to use for filtering. The value must be a string, a number, or a boolean. The comparison operator must be either =, !=, >, or <. For example, list private connections created this year by specifying **createTime %gt; 2021-01-01T00:00:00.000000000Z**. */
|
|
4203
|
+
/** Optional. A filter expression that filters private connections listed in the response. The expression must specify the field name, a comparison operator, and the value that you want to use for filtering. The value must be a string, a number, or a boolean. The comparison operator must be either =, !=, >, or <. For example, list private connections created this year by specifying **createTime %gt; 2021-01-01T00:00:00.000000000Z**. */
|
|
4178
4204
|
filter?: string;
|
|
4179
4205
|
/** 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. */
|
|
4180
4206
|
key?: string;
|
|
4181
4207
|
/** OAuth 2.0 token for the current user. */
|
|
4182
4208
|
oauth_token?: string;
|
|
4183
|
-
/** Order by fields for the result. */
|
|
4209
|
+
/** Optional. Order by fields for the result. */
|
|
4184
4210
|
orderBy?: string;
|
|
4185
|
-
/** Maximum number of private connections to return. If unspecified, at most 50 private connections that are returned. The maximum value is 1000; values above 1000 are coerced to 1000. */
|
|
4211
|
+
/** Optional. Maximum number of private connections to return. If unspecified, at most 50 private connections that are returned. The maximum value is 1000; values above 1000 are coerced to 1000. */
|
|
4186
4212
|
pageSize?: number;
|
|
4187
|
-
/** Page token received from a previous `ListPrivateConnections` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListPrivateConnections` must match the call that provided the page token. */
|
|
4213
|
+
/** Optional. Page token received from a previous `ListPrivateConnections` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListPrivateConnections` must match the call that provided the page token. */
|
|
4188
4214
|
pageToken?: string;
|
|
4189
4215
|
/** Required. The parent that owns the collection of private connections. */
|
|
4190
4216
|
parent: string;
|
|
@@ -4277,9 +4303,9 @@ declare namespace gapi.client {
|
|
|
4277
4303
|
name: string;
|
|
4278
4304
|
/** OAuth 2.0 token for the current user. */
|
|
4279
4305
|
oauth_token?: string;
|
|
4280
|
-
/** Maximum number of IPs to return. */
|
|
4306
|
+
/** Optional. Maximum number of IPs to return. */
|
|
4281
4307
|
pageSize?: number;
|
|
4282
|
-
/** A page token, received from a previous `FetchStaticIps` call. */
|
|
4308
|
+
/** Optional. A page token, received from a previous `FetchStaticIps` call. */
|
|
4283
4309
|
pageToken?: string;
|
|
4284
4310
|
/** Returns response with indentations and line breaks. */
|
|
4285
4311
|
prettyPrint?: boolean;
|