@maxim_mazurok/gapi.client.datamigration-v1 0.2.20260620 → 0.3.20260620
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 +5 -17
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -89,10 +89,7 @@ declare namespace gapi.client {
|
|
|
89
89
|
exemptedMembers?: string[];
|
|
90
90
|
/** The log type that this config enables. */
|
|
91
91
|
logType?:
|
|
92
|
-
| '
|
|
93
|
-
| 'ADMIN_READ'
|
|
94
|
-
| 'DATA_WRITE'
|
|
95
|
-
| 'DATA_READ';
|
|
92
|
+
'LOG_TYPE_UNSPECIFIED' | 'ADMIN_READ' | 'DATA_WRITE' | 'DATA_READ';
|
|
96
93
|
}
|
|
97
94
|
interface AuthorizedNetwork {
|
|
98
95
|
/** Optional. CIDR range for one authorzied network of the instance. */
|
|
@@ -105,9 +102,7 @@ declare namespace gapi.client {
|
|
|
105
102
|
completionComment?: string;
|
|
106
103
|
/** Output only. Job completion state, i.e. the final state after the job completed. */
|
|
107
104
|
completionState?:
|
|
108
|
-
| '
|
|
109
|
-
| 'SUCCEEDED'
|
|
110
|
-
| 'FAILED';
|
|
105
|
+
'JOB_COMPLETION_STATE_UNSPECIFIED' | 'SUCCEEDED' | 'FAILED';
|
|
111
106
|
/** Output only. Convert job details. */
|
|
112
107
|
convertJobDetails?: ConvertJobDetails;
|
|
113
108
|
/** The timestamp when the background job was finished. */
|
|
@@ -164,16 +159,12 @@ declare namespace gapi.client {
|
|
|
164
159
|
interface CloudSqlSettings {
|
|
165
160
|
/** 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 so even in the absence of connection requests. `NEVER`: The instance is off; it is not activated, even if a connection request arrives. */
|
|
166
161
|
activationPolicy?:
|
|
167
|
-
| '
|
|
168
|
-
| 'ALWAYS'
|
|
169
|
-
| 'NEVER';
|
|
162
|
+
'SQL_ACTIVATION_POLICY_UNSPECIFIED' | 'ALWAYS' | 'NEVER';
|
|
170
163
|
/** [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 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. */
|
|
171
164
|
autoStorageIncrease?: boolean;
|
|
172
165
|
/** Optional. Availability type. Potential values: * `ZONAL`: The instance serves data from only one zone. Outages in that zone affect data availability. * `REGIONAL`: The instance can serve data from more than one zone in a region (it is highly available). */
|
|
173
166
|
availabilityType?:
|
|
174
|
-
| '
|
|
175
|
-
| 'ZONAL'
|
|
176
|
-
| 'REGIONAL';
|
|
167
|
+
'SQL_AVAILABILITY_TYPE_UNSPECIFIED' | 'ZONAL' | 'REGIONAL';
|
|
177
168
|
/** The KMS key name used for the csql instance. */
|
|
178
169
|
cmekKeyName?: string;
|
|
179
170
|
/** The Cloud SQL default instance level collation. */
|
|
@@ -1341,10 +1332,7 @@ declare namespace gapi.client {
|
|
|
1341
1332
|
interface PerformanceConfig {
|
|
1342
1333
|
/** Initial dump parallelism level. */
|
|
1343
1334
|
dumpParallelLevel?:
|
|
1344
|
-
| '
|
|
1345
|
-
| 'MIN'
|
|
1346
|
-
| 'OPTIMAL'
|
|
1347
|
-
| 'MAX';
|
|
1335
|
+
'DUMP_PARALLEL_LEVEL_UNSPECIFIED' | 'MIN' | 'OPTIMAL' | 'MAX';
|
|
1348
1336
|
}
|
|
1349
1337
|
interface Policy {
|
|
1350
1338
|
/** Specifies cloud audit logging configuration for this policy. */
|