@maxim_mazurok/gapi.client.managedidentities-v1alpha1 0.0.20230323 → 0.0.20230413
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 +2083 -1042
- 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://managedidentities.googleapis.com/$discovery/rest?version=v1alpha1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230413
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -24,25 +24,34 @@ declare namespace gapi.client {
|
|
|
24
24
|
namespace managedidentities {
|
|
25
25
|
interface AttachTrustRequest {
|
|
26
26
|
/** The domain trust resource. */
|
|
27
|
-
trust?:
|
|
27
|
+
trust?:
|
|
28
|
+
Trust;
|
|
28
29
|
}
|
|
29
30
|
interface Backup {
|
|
30
31
|
/** Output only. The time the backups was created. */
|
|
31
|
-
createTime?:
|
|
32
|
+
createTime?:
|
|
33
|
+
string;
|
|
32
34
|
/** Optional. A short description of the backup. */
|
|
33
|
-
description?:
|
|
35
|
+
description?:
|
|
36
|
+
string;
|
|
34
37
|
/** Optional. Resource labels to represent user provided metadata. */
|
|
35
|
-
labels?:
|
|
38
|
+
labels?:
|
|
39
|
+
{ [P in string]: string };
|
|
36
40
|
/** Output only. The unique name of the Backup in the form of projects/{project_id}/locations/global/domains/{domain_name}/backups/{name} */
|
|
37
|
-
name?:
|
|
41
|
+
name?:
|
|
42
|
+
string;
|
|
38
43
|
/** Output only. The current state of the backup. */
|
|
39
|
-
state?:
|
|
44
|
+
state?:
|
|
45
|
+
string;
|
|
40
46
|
/** Output only. Additional information about the current status of this backup, if available. */
|
|
41
|
-
statusMessage?:
|
|
47
|
+
statusMessage?:
|
|
48
|
+
string;
|
|
42
49
|
/** Output only. Indicates whether it’s an on-demand backup or scheduled. */
|
|
43
|
-
type?:
|
|
50
|
+
type?:
|
|
51
|
+
string;
|
|
44
52
|
/** Output only. Last update time. */
|
|
45
|
-
updateTime?:
|
|
53
|
+
updateTime?:
|
|
54
|
+
string;
|
|
46
55
|
}
|
|
47
56
|
interface Binding {
|
|
48
57
|
/**
|
|
@@ -50,7 +59,8 @@ declare namespace gapi.client {
|
|
|
50
59
|
* 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
|
|
51
60
|
* resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
|
|
52
61
|
*/
|
|
53
|
-
condition?:
|
|
62
|
+
condition?:
|
|
63
|
+
Expr;
|
|
54
64
|
/**
|
|
55
65
|
* 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
|
|
56
66
|
* 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
|
|
@@ -67,197 +77,258 @@ declare namespace gapi.client {
|
|
|
67
77
|
* 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
|
|
68
78
|
* retains the role in the binding.
|
|
69
79
|
*/
|
|
70
|
-
members?:
|
|
80
|
+
members?:
|
|
81
|
+
string[];
|
|
71
82
|
/** Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`. */
|
|
72
|
-
role?:
|
|
83
|
+
role?:
|
|
84
|
+
string;
|
|
73
85
|
}
|
|
74
86
|
// tslint:disable-next-line:no-empty-interface
|
|
75
87
|
interface CancelOperationRequest {
|
|
76
88
|
}
|
|
77
89
|
interface Certificate {
|
|
78
90
|
/** The certificate expire time. */
|
|
79
|
-
expireTime?:
|
|
91
|
+
expireTime?:
|
|
92
|
+
string;
|
|
80
93
|
/** The issuer of this certificate. */
|
|
81
|
-
issuingCertificate?:
|
|
94
|
+
issuingCertificate?:
|
|
95
|
+
Certificate;
|
|
82
96
|
/** The certificate subject. */
|
|
83
|
-
subject?:
|
|
97
|
+
subject?:
|
|
98
|
+
string;
|
|
84
99
|
/** The additional hostnames for the domain. */
|
|
85
|
-
subjectAlternativeName?:
|
|
100
|
+
subjectAlternativeName?:
|
|
101
|
+
string[];
|
|
86
102
|
/** The certificate thumbprint which uniquely identifies the certificate. */
|
|
87
|
-
thumbprint?:
|
|
103
|
+
thumbprint?:
|
|
104
|
+
string;
|
|
88
105
|
}
|
|
89
106
|
// tslint:disable-next-line:no-empty-interface
|
|
90
107
|
interface CheckMigrationPermissionRequest {
|
|
91
108
|
}
|
|
92
109
|
interface CheckMigrationPermissionResponse {
|
|
93
110
|
/** The state of SID filtering of all the domains which has trust established. */
|
|
94
|
-
onpremDomains?:
|
|
111
|
+
onpremDomains?:
|
|
112
|
+
OnPremDomainSIDDetails[];
|
|
95
113
|
/** The state of DomainMigration. */
|
|
96
|
-
state?:
|
|
114
|
+
state?:
|
|
115
|
+
string;
|
|
97
116
|
}
|
|
98
117
|
interface DailyCycle {
|
|
99
118
|
/** Output only. Duration of the time window, set by service producer. */
|
|
100
|
-
duration?:
|
|
119
|
+
duration?:
|
|
120
|
+
string;
|
|
101
121
|
/** Time within the day to start the operations. */
|
|
102
|
-
startTime?:
|
|
122
|
+
startTime?:
|
|
123
|
+
TimeOfDay;
|
|
103
124
|
}
|
|
104
125
|
interface Date {
|
|
105
126
|
/** Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant. */
|
|
106
|
-
day?:
|
|
127
|
+
day?:
|
|
128
|
+
number;
|
|
107
129
|
/** Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day. */
|
|
108
|
-
month?:
|
|
130
|
+
month?:
|
|
131
|
+
number;
|
|
109
132
|
/** Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year. */
|
|
110
|
-
year?:
|
|
133
|
+
year?:
|
|
134
|
+
number;
|
|
111
135
|
}
|
|
112
136
|
interface DenyMaintenancePeriod {
|
|
113
137
|
/**
|
|
114
138
|
* Deny period end date. This can be: * A full date, with non-zero year, month and day values. * A month and day value, with a zero year. Allows recurring deny periods each year. Date
|
|
115
139
|
* matching this period will have to be before the end.
|
|
116
140
|
*/
|
|
117
|
-
endDate?:
|
|
141
|
+
endDate?:
|
|
142
|
+
Date;
|
|
118
143
|
/**
|
|
119
144
|
* Deny period start date. This can be: * A full date, with non-zero year, month and day values. * A month and day value, with a zero year. Allows recurring deny periods each year.
|
|
120
145
|
* Date matching this period will have to be the same or after the start.
|
|
121
146
|
*/
|
|
122
|
-
startDate?:
|
|
147
|
+
startDate?:
|
|
148
|
+
Date;
|
|
123
149
|
/** Time in UTC when the Blackout period starts on start_date and ends on end_date. This can be: * Full time. * All zeros for 00:00:00 UTC */
|
|
124
|
-
time?:
|
|
150
|
+
time?:
|
|
151
|
+
TimeOfDay;
|
|
125
152
|
}
|
|
126
153
|
interface DetachTrustRequest {
|
|
127
154
|
/** The domain trust resource to removed. */
|
|
128
|
-
trust?:
|
|
155
|
+
trust?:
|
|
156
|
+
Trust;
|
|
129
157
|
}
|
|
130
158
|
// tslint:disable-next-line:no-empty-interface
|
|
131
159
|
interface DisableMigrationRequest {
|
|
132
160
|
}
|
|
133
161
|
interface Domain {
|
|
134
162
|
/** Optional. Configuration for audit logs. True if audit logs are enabled, else false. Default is audit logs disabled. */
|
|
135
|
-
auditLogsEnabled?:
|
|
163
|
+
auditLogsEnabled?:
|
|
164
|
+
boolean;
|
|
136
165
|
/**
|
|
137
166
|
* Optional. The full names of the Google Compute Engine [networks](/compute/docs/networks-and-firewalls#networks) to which the instance is connected. Network can be added using
|
|
138
167
|
* UpdateDomain later. Domain is only available on network part of authorized_networks. Caller needs to make sure that CIDR subnets do not overlap between networks, else domain
|
|
139
168
|
* creation will fail.
|
|
140
169
|
*/
|
|
141
|
-
authorizedNetworks?:
|
|
170
|
+
authorizedNetworks?:
|
|
171
|
+
string[];
|
|
142
172
|
/** Output only. The time the instance was created. Synthetic field is populated automatically by CCFE. go/ccfe-synthetic-field-user-guide */
|
|
143
|
-
createTime?:
|
|
173
|
+
createTime?:
|
|
174
|
+
string;
|
|
144
175
|
/**
|
|
145
176
|
* Output only. Fully-qualified domain name of the exposed domain used by clients to connect to the service. Similar to what would be chosen for an Active Directory that is set up on
|
|
146
177
|
* an internal network.
|
|
147
178
|
*/
|
|
148
|
-
fqdn?:
|
|
179
|
+
fqdn?:
|
|
180
|
+
string;
|
|
149
181
|
/** Optional. Resource labels to represent user provided metadata */
|
|
150
|
-
labels?:
|
|
182
|
+
labels?:
|
|
183
|
+
{ [P in string]: string };
|
|
151
184
|
/** Required. Locations where domain needs to be provisioned. regions e.g. us-west1 or us-east4 Service supports up to 4 locations at once. Each location will use a /26 block. */
|
|
152
|
-
locations?:
|
|
185
|
+
locations?:
|
|
186
|
+
string[];
|
|
153
187
|
/** Optional. Name of customer-visible admin used to perform Active Directory operations. If not specified `setupadmin` would be used. */
|
|
154
|
-
managedIdentitiesAdminName?:
|
|
188
|
+
managedIdentitiesAdminName?:
|
|
189
|
+
string;
|
|
155
190
|
/** Output only. Unique name of the domain in this scope including projects and location using the form: `projects/{project_id}/locations/global/domains/{domain_name}`. */
|
|
156
|
-
name?:
|
|
191
|
+
name?:
|
|
192
|
+
string;
|
|
157
193
|
/**
|
|
158
194
|
* Required. The CIDR range of internal addresses that are reserved for this domain. Reserved networks must be /24 or larger. Ranges must be unique and non-overlapping with existing
|
|
159
195
|
* subnets in [Domain].[authorized_networks].
|
|
160
196
|
*/
|
|
161
|
-
reservedIpRange?:
|
|
197
|
+
reservedIpRange?:
|
|
198
|
+
string;
|
|
162
199
|
/** Output only. The current state of this domain. */
|
|
163
|
-
state?:
|
|
200
|
+
state?:
|
|
201
|
+
string;
|
|
164
202
|
/** Output only. Additional information about the current status of this domain, if available. */
|
|
165
|
-
statusMessage?:
|
|
203
|
+
statusMessage?:
|
|
204
|
+
string;
|
|
166
205
|
/** Output only. The current trusts associated with the domain. */
|
|
167
|
-
trusts?:
|
|
206
|
+
trusts?:
|
|
207
|
+
Trust[];
|
|
168
208
|
/** Output only. Last update time. Synthetic field is populated automatically by CCFE. */
|
|
169
|
-
updateTime?:
|
|
209
|
+
updateTime?:
|
|
210
|
+
string;
|
|
170
211
|
}
|
|
171
212
|
interface DomainJoinMachineRequest {
|
|
172
213
|
/** Optional. force if True, forces domain join even if the computer account already exists. */
|
|
173
|
-
force?:
|
|
214
|
+
force?:
|
|
215
|
+
boolean;
|
|
174
216
|
/** Optional. OU name where the VM needs to be domain joined */
|
|
175
|
-
ouName?:
|
|
217
|
+
ouName?:
|
|
218
|
+
string;
|
|
176
219
|
/**
|
|
177
220
|
* Required. Full instance id token of compute engine VM to verify instance identity. More about this:
|
|
178
221
|
* https://cloud.google.com/compute/docs/instances/verifying-instance-identity#request_signature
|
|
179
222
|
*/
|
|
180
|
-
vmIdToken?:
|
|
223
|
+
vmIdToken?:
|
|
224
|
+
string;
|
|
181
225
|
}
|
|
182
226
|
interface DomainJoinMachineResponse {
|
|
183
227
|
/** Offline domain join blob as the response */
|
|
184
|
-
domainJoinBlob?:
|
|
228
|
+
domainJoinBlob?:
|
|
229
|
+
string;
|
|
185
230
|
}
|
|
186
231
|
// tslint:disable-next-line:no-empty-interface
|
|
187
232
|
interface Empty {
|
|
188
233
|
}
|
|
189
234
|
interface EnableMigrationRequest {
|
|
190
235
|
/** Required. List of the on-prem domains to be migrated. */
|
|
191
|
-
migratingDomains?:
|
|
236
|
+
migratingDomains?:
|
|
237
|
+
OnPremDomainDetails[];
|
|
192
238
|
}
|
|
193
239
|
interface Expr {
|
|
194
240
|
/** Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI. */
|
|
195
|
-
description?:
|
|
241
|
+
description?:
|
|
242
|
+
string;
|
|
196
243
|
/** Textual representation of an expression in Common Expression Language syntax. */
|
|
197
|
-
expression?:
|
|
244
|
+
expression?:
|
|
245
|
+
string;
|
|
198
246
|
/** Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file. */
|
|
199
|
-
location?:
|
|
247
|
+
location?:
|
|
248
|
+
string;
|
|
200
249
|
/** 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. */
|
|
201
|
-
title?:
|
|
250
|
+
title?:
|
|
251
|
+
string;
|
|
202
252
|
}
|
|
203
253
|
interface ExtendSchemaRequest {
|
|
204
254
|
/** Required. Description for Schema Change. */
|
|
205
|
-
description?:
|
|
255
|
+
description?:
|
|
256
|
+
string;
|
|
206
257
|
/** File uploaded as a byte stream input. */
|
|
207
|
-
fileContents?:
|
|
258
|
+
fileContents?:
|
|
259
|
+
string;
|
|
208
260
|
/** File stored in Cloud Storage bucket and represented in the form projects/{project_id}/buckets/{bucket_name}/objects/{object_name} File should be in the same project as the domain. */
|
|
209
|
-
gcsPath?:
|
|
261
|
+
gcsPath?:
|
|
262
|
+
string;
|
|
210
263
|
}
|
|
211
264
|
interface GoogleCloudManagedidentitiesV1alpha1OpMetadata {
|
|
212
265
|
/** Output only. API version used to start the operation. */
|
|
213
|
-
apiVersion?:
|
|
266
|
+
apiVersion?:
|
|
267
|
+
string;
|
|
214
268
|
/** Output only. The time the operation was created. */
|
|
215
|
-
createTime?:
|
|
269
|
+
createTime?:
|
|
270
|
+
string;
|
|
216
271
|
/** Output only. The time the operation finished running. */
|
|
217
|
-
endTime?:
|
|
272
|
+
endTime?:
|
|
273
|
+
string;
|
|
218
274
|
/**
|
|
219
275
|
* Output only. Identifies whether the user has requested cancellation of the operation. Operations that have successfully been cancelled have Operation.error value with a
|
|
220
276
|
* google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
|
|
221
277
|
*/
|
|
222
|
-
requestedCancellation?:
|
|
278
|
+
requestedCancellation?:
|
|
279
|
+
boolean;
|
|
223
280
|
/** Output only. Server-defined resource path for the target of the operation. */
|
|
224
|
-
target?:
|
|
281
|
+
target?:
|
|
282
|
+
string;
|
|
225
283
|
/** Output only. Name of the verb executed by the operation. */
|
|
226
|
-
verb?:
|
|
284
|
+
verb?:
|
|
285
|
+
string;
|
|
227
286
|
}
|
|
228
287
|
interface GoogleCloudManagedidentitiesV1beta1OpMetadata {
|
|
229
288
|
/** Output only. API version used to start the operation. */
|
|
230
|
-
apiVersion?:
|
|
289
|
+
apiVersion?:
|
|
290
|
+
string;
|
|
231
291
|
/** Output only. The time the operation was created. */
|
|
232
|
-
createTime?:
|
|
292
|
+
createTime?:
|
|
293
|
+
string;
|
|
233
294
|
/** Output only. The time the operation finished running. */
|
|
234
|
-
endTime?:
|
|
295
|
+
endTime?:
|
|
296
|
+
string;
|
|
235
297
|
/**
|
|
236
298
|
* Output only. Identifies whether the user has requested cancellation of the operation. Operations that have successfully been cancelled have Operation.error value with a
|
|
237
299
|
* google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
|
|
238
300
|
*/
|
|
239
|
-
requestedCancellation?:
|
|
301
|
+
requestedCancellation?:
|
|
302
|
+
boolean;
|
|
240
303
|
/** Output only. Server-defined resource path for the target of the operation. */
|
|
241
|
-
target?:
|
|
304
|
+
target?:
|
|
305
|
+
string;
|
|
242
306
|
/** Output only. Name of the verb executed by the operation. */
|
|
243
|
-
verb?:
|
|
307
|
+
verb?:
|
|
308
|
+
string;
|
|
244
309
|
}
|
|
245
310
|
interface GoogleCloudManagedidentitiesV1OpMetadata {
|
|
246
311
|
/** Output only. API version used to start the operation. */
|
|
247
|
-
apiVersion?:
|
|
312
|
+
apiVersion?:
|
|
313
|
+
string;
|
|
248
314
|
/** Output only. The time the operation was created. */
|
|
249
|
-
createTime?:
|
|
315
|
+
createTime?:
|
|
316
|
+
string;
|
|
250
317
|
/** Output only. The time the operation finished running. */
|
|
251
|
-
endTime?:
|
|
318
|
+
endTime?:
|
|
319
|
+
string;
|
|
252
320
|
/**
|
|
253
321
|
* Output only. Identifies whether the user has requested cancellation of the operation. Operations that have successfully been cancelled have Operation.error value with a
|
|
254
322
|
* google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
|
|
255
323
|
*/
|
|
256
|
-
requestedCancellation?:
|
|
324
|
+
requestedCancellation?:
|
|
325
|
+
boolean;
|
|
257
326
|
/** Output only. Server-defined resource path for the target of the operation. */
|
|
258
|
-
target?:
|
|
327
|
+
target?:
|
|
328
|
+
string;
|
|
259
329
|
/** Output only. Name of the verb executed by the operation. */
|
|
260
|
-
verb?:
|
|
330
|
+
verb?:
|
|
331
|
+
string;
|
|
261
332
|
}
|
|
262
333
|
interface GoogleCloudSaasacceleratorManagementProvidersV1Instance {
|
|
263
334
|
/**
|
|
@@ -265,101 +336,130 @@ declare namespace gapi.client {
|
|
|
265
336
|
* instance which the service consumers do not recognize. This is a required field for tenants onboarding to Maintenance Window notifications
|
|
266
337
|
* (go/slm-rollout-maintenance-policies#prerequisites).
|
|
267
338
|
*/
|
|
268
|
-
consumerDefinedName?:
|
|
339
|
+
consumerDefinedName?:
|
|
340
|
+
string;
|
|
269
341
|
/** Output only. Timestamp when the resource was created. */
|
|
270
|
-
createTime?:
|
|
342
|
+
createTime?:
|
|
343
|
+
string;
|
|
271
344
|
/**
|
|
272
345
|
* Optional. The instance_type of this instance of format: projects/{project_number}/locations/{location_id}/instanceTypes/{instance_type_id}. Instance Type represents a high-level
|
|
273
346
|
* tier or SKU of the service that this instance belong to. When enabled(eg: Maintenance Rollout), Rollout uses 'instance_type' along with 'software_versions' to determine whether
|
|
274
347
|
* instance needs an update or not.
|
|
275
348
|
*/
|
|
276
|
-
instanceType?:
|
|
349
|
+
instanceType?:
|
|
350
|
+
string;
|
|
277
351
|
/** Optional. Resource labels to represent user provided metadata. Each label is a key-value pair, where both the key and the value are arbitrary strings provided by the user. */
|
|
278
|
-
labels?:
|
|
352
|
+
labels?:
|
|
353
|
+
{ [P in string]: string };
|
|
279
354
|
/**
|
|
280
355
|
* Optional. The MaintenancePolicies that have been attached to the instance. The key must be of the type name of the oneof policy name defined in MaintenancePolicy, and the referenced
|
|
281
356
|
* policy must define the same policy type. For details, please refer to go/cloud-saas-mw-ug. Should not be set if maintenance_settings.maintenance_policies is set.
|
|
282
357
|
*/
|
|
283
|
-
maintenancePolicyNames?:
|
|
358
|
+
maintenancePolicyNames?:
|
|
359
|
+
{ [P in string]: string };
|
|
284
360
|
/** The MaintenanceSchedule contains the scheduling information of published maintenance schedule with same key as software_versions. */
|
|
285
|
-
maintenanceSchedules?:
|
|
361
|
+
maintenanceSchedules?:
|
|
362
|
+
{ [P in string]: GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSchedule };
|
|
286
363
|
/** Optional. The MaintenanceSettings associated with instance. */
|
|
287
|
-
maintenanceSettings?:
|
|
364
|
+
maintenanceSettings?:
|
|
365
|
+
GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSettings;
|
|
288
366
|
/**
|
|
289
367
|
* Unique name of the resource. It uses the form: `projects/{project_number}/locations/{location_id}/instances/{instance_id}` Note: This name is passed, stored and logged across the
|
|
290
368
|
* rollout system. So use of consumer project_id or any other consumer PII in the name is strongly discouraged for wipeout (go/wipeout) compliance. See
|
|
291
369
|
* go/elysium/project_ids#storage-guidance for more details.
|
|
292
370
|
*/
|
|
293
|
-
name?:
|
|
371
|
+
name?:
|
|
372
|
+
string;
|
|
294
373
|
/**
|
|
295
374
|
* Optional. notification_parameter are information that service producers may like to include that is not relevant to Rollout. This parameter will only be passed to Gamma and Cloud
|
|
296
375
|
* Logging for notification/logging purpose.
|
|
297
376
|
*/
|
|
298
|
-
notificationParameters?:
|
|
377
|
+
notificationParameters?:
|
|
378
|
+
{ [P in string]: GoogleCloudSaasacceleratorManagementProvidersV1NotificationParameter };
|
|
299
379
|
/** Output only. Custom string attributes used primarily to expose producer-specific information in monitoring dashboards. See go/get-instance-metadata. */
|
|
300
|
-
producerMetadata?:
|
|
380
|
+
producerMetadata?:
|
|
381
|
+
{ [P in string]: string };
|
|
301
382
|
/** Output only. The list of data plane resources provisioned for this instance, e.g. compute VMs. See go/get-instance-metadata. */
|
|
302
|
-
provisionedResources?:
|
|
383
|
+
provisionedResources?:
|
|
384
|
+
GoogleCloudSaasacceleratorManagementProvidersV1ProvisionedResource[];
|
|
303
385
|
/**
|
|
304
386
|
* Link to the SLM instance template. Only populated when updating SLM instances via SSA's Actuation service adaptor. Service producers with custom control plane (e.g. Cloud SQL)
|
|
305
387
|
* doesn't need to populate this field. Instead they should use software_versions.
|
|
306
388
|
*/
|
|
307
|
-
slmInstanceTemplate?:
|
|
389
|
+
slmInstanceTemplate?:
|
|
390
|
+
string;
|
|
308
391
|
/** Output only. SLO metadata for instance classification in the Standardized dataplane SLO platform. See go/cloud-ssa-standard-slo for feature description. */
|
|
309
|
-
sloMetadata?:
|
|
392
|
+
sloMetadata?:
|
|
393
|
+
GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata;
|
|
310
394
|
/** Software versions that are used to deploy this instance. This can be mutated by rollout services. */
|
|
311
|
-
softwareVersions?:
|
|
395
|
+
softwareVersions?:
|
|
396
|
+
{ [P in string]: string };
|
|
312
397
|
/** Output only. Current lifecycle state of the resource (e.g. if it's being created or ready to use). */
|
|
313
|
-
state?:
|
|
398
|
+
state?:
|
|
399
|
+
string;
|
|
314
400
|
/** Output only. ID of the associated GCP tenant project. See go/get-instance-metadata. */
|
|
315
|
-
tenantProjectId?:
|
|
401
|
+
tenantProjectId?:
|
|
402
|
+
string;
|
|
316
403
|
/** Output only. Timestamp when the resource was last modified. */
|
|
317
|
-
updateTime?:
|
|
404
|
+
updateTime?:
|
|
405
|
+
string;
|
|
318
406
|
}
|
|
319
407
|
interface GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSchedule {
|
|
320
408
|
/**
|
|
321
409
|
* This field is deprecated, and will be always set to true since reschedule can happen multiple times now. This field should not be removed until all service producers remove this for
|
|
322
410
|
* their customers.
|
|
323
411
|
*/
|
|
324
|
-
canReschedule?:
|
|
412
|
+
canReschedule?:
|
|
413
|
+
boolean;
|
|
325
414
|
/** The scheduled end time for the maintenance. */
|
|
326
|
-
endTime?:
|
|
415
|
+
endTime?:
|
|
416
|
+
string;
|
|
327
417
|
/** The rollout management policy this maintenance schedule is associated with. When doing reschedule update request, the reschedule should be against this given policy. */
|
|
328
|
-
rolloutManagementPolicy?:
|
|
418
|
+
rolloutManagementPolicy?:
|
|
419
|
+
string;
|
|
329
420
|
/**
|
|
330
421
|
* schedule_deadline_time is the time deadline any schedule start time cannot go beyond, including reschedule. It's normally the initial schedule start time plus maintenance window
|
|
331
422
|
* length (1 day or 1 week). Maintenance cannot be scheduled to start beyond this deadline.
|
|
332
423
|
*/
|
|
333
|
-
scheduleDeadlineTime?:
|
|
424
|
+
scheduleDeadlineTime?:
|
|
425
|
+
string;
|
|
334
426
|
/** The scheduled start time for the maintenance. */
|
|
335
|
-
startTime?:
|
|
427
|
+
startTime?:
|
|
428
|
+
string;
|
|
336
429
|
}
|
|
337
430
|
interface GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSettings {
|
|
338
431
|
/**
|
|
339
432
|
* Optional. Exclude instance from maintenance. When true, rollout service will not attempt maintenance on the instance. Rollout service will include the instance in reported rollout
|
|
340
433
|
* progress as not attempted.
|
|
341
434
|
*/
|
|
342
|
-
exclude?:
|
|
435
|
+
exclude?:
|
|
436
|
+
boolean;
|
|
343
437
|
/** Optional. If the update call is triggered from rollback, set the value as true. */
|
|
344
|
-
isRollback?:
|
|
438
|
+
isRollback?:
|
|
439
|
+
boolean;
|
|
345
440
|
/**
|
|
346
441
|
* Optional. The MaintenancePolicies that have been attached to the instance. The key must be of the type name of the oneof policy name defined in MaintenancePolicy, and the embedded
|
|
347
442
|
* policy must define the same policy type. For details, please refer to go/cloud-saas-mw-ug. Should not be set if maintenance_policy_names is set. If only the name is needed, then
|
|
348
443
|
* only populate MaintenancePolicy.name.
|
|
349
444
|
*/
|
|
350
|
-
maintenancePolicies?:
|
|
445
|
+
maintenancePolicies?:
|
|
446
|
+
{ [P in string]: MaintenancePolicy };
|
|
351
447
|
}
|
|
352
448
|
interface GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata {
|
|
353
449
|
/** The location of the node, if different from instance location. */
|
|
354
|
-
location?:
|
|
450
|
+
location?:
|
|
451
|
+
string;
|
|
355
452
|
/** The id of the node. This should be equal to SaasInstanceNode.node_id. */
|
|
356
|
-
nodeId?:
|
|
453
|
+
nodeId?:
|
|
454
|
+
string;
|
|
357
455
|
/** If present, this will override eligibility for the node coming from instance or exclusions for specified SLIs. */
|
|
358
|
-
perSliEligibility?:
|
|
456
|
+
perSliEligibility?:
|
|
457
|
+
GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility;
|
|
359
458
|
}
|
|
360
459
|
interface GoogleCloudSaasacceleratorManagementProvidersV1NotificationParameter {
|
|
361
460
|
/** Optional. Array of string values. e.g. instance's replica information. */
|
|
362
|
-
values?:
|
|
461
|
+
values?:
|
|
462
|
+
string[];
|
|
363
463
|
}
|
|
364
464
|
interface GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility {
|
|
365
465
|
/**
|
|
@@ -369,7 +469,8 @@ declare namespace gapi.client {
|
|
|
369
469
|
* data produced by different versions of the Eligibility Exporters. If eligibilities map contains a key for an SLI which has not been declared in the binary flags, there will be an
|
|
370
470
|
* error message emitted in the Eligibility Exporter log and the metric for the SLI in question will not be emitted.
|
|
371
471
|
*/
|
|
372
|
-
eligibilities?:
|
|
472
|
+
eligibilities?:
|
|
473
|
+
{ [P in string]: GoogleCloudSaasacceleratorManagementProvidersV1SloEligibility };
|
|
373
474
|
}
|
|
374
475
|
interface GoogleCloudSaasacceleratorManagementProvidersV1ProvisionedResource {
|
|
375
476
|
/**
|
|
@@ -377,32 +478,41 @@ declare namespace gapi.client {
|
|
|
377
478
|
* compute API documentation (https://cloud.google.com/compute/docs/reference/rest/v1/), prefixed with 'compute-', for example: 'compute-instance', 'compute-disk',
|
|
378
479
|
* 'compute-autoscaler'.
|
|
379
480
|
*/
|
|
380
|
-
resourceType?:
|
|
481
|
+
resourceType?:
|
|
482
|
+
string;
|
|
381
483
|
/** URL identifying the resource, e.g. "https://www.googleapis.com/compute/v1/projects/...)". */
|
|
382
|
-
resourceUrl?:
|
|
484
|
+
resourceUrl?:
|
|
485
|
+
string;
|
|
383
486
|
}
|
|
384
487
|
interface GoogleCloudSaasacceleratorManagementProvidersV1SloEligibility {
|
|
385
488
|
/** Whether an instance is eligible or ineligible. */
|
|
386
|
-
eligible?:
|
|
489
|
+
eligible?:
|
|
490
|
+
boolean;
|
|
387
491
|
/** User-defined reason for the current value of instance eligibility. Usually, this can be directly mapped to the internal state. An empty reason is allowed. */
|
|
388
|
-
reason?:
|
|
492
|
+
reason?:
|
|
493
|
+
string;
|
|
389
494
|
}
|
|
390
495
|
interface GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata {
|
|
391
496
|
/**
|
|
392
497
|
* Optional. List of nodes. Some producers need to use per-node metadata to calculate SLO. This field allows such producers to publish per-node SLO meta data, which will be consumed by
|
|
393
498
|
* SSA Eligibility Exporter and published in the form of per node metric to Monarch.
|
|
394
499
|
*/
|
|
395
|
-
nodes?:
|
|
500
|
+
nodes?:
|
|
501
|
+
GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata[];
|
|
396
502
|
/** Optional. Multiple per-instance SLI eligibilities which apply for individual SLIs. */
|
|
397
|
-
perSliEligibility?:
|
|
503
|
+
perSliEligibility?:
|
|
504
|
+
GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility;
|
|
398
505
|
/** Name of the SLO tier the Instance belongs to. This name will be expected to match the tiers specified in the service SLO configuration. Field is mandatory and must not be empty. */
|
|
399
|
-
tier?:
|
|
506
|
+
tier?:
|
|
507
|
+
string;
|
|
400
508
|
}
|
|
401
509
|
interface LDAPSSettings {
|
|
402
510
|
/** Output only. The certificate used to configure LDAPS. Certificates can be chained with a maximum length of 15. */
|
|
403
|
-
certificate?:
|
|
511
|
+
certificate?:
|
|
512
|
+
Certificate;
|
|
404
513
|
/** Input only. The password used to encrypt the uploaded pfx certificate. */
|
|
405
|
-
certificatePassword?:
|
|
514
|
+
certificatePassword?:
|
|
515
|
+
string;
|
|
406
516
|
/**
|
|
407
517
|
* Input only. The uploaded PKCS12-formatted certificate to configure LDAPS with. It will enable the domain controllers in this domain to accept LDAPS connections (either LDAP over
|
|
408
518
|
* SSL/TLS or the StartTLS operation). A valid certificate chain must form a valid x.509 certificate chain (or be comprised of a single self-signed certificate. It must be encrypted
|
|
@@ -412,172 +522,230 @@ declare namespace gapi.client {
|
|
|
412
522
|
* (OID=1.3.6.1.5.5.7.3.1) - Private key must be in one of the following formats: RSA, ECDSA, ED25519. - Private key must have appropriate key length: 2048 for RSA, 256 for ECDSA -
|
|
413
523
|
* Signature algorithm of the leaf certificate cannot be MD2, MD5 or SHA1.
|
|
414
524
|
*/
|
|
415
|
-
certificatePfx?:
|
|
525
|
+
certificatePfx?:
|
|
526
|
+
string;
|
|
416
527
|
/** The resource name of the LDAPS settings. Uses the form: `projects/{project}/locations/{location}/domains/{domain}`. */
|
|
417
|
-
name?:
|
|
528
|
+
name?:
|
|
529
|
+
string;
|
|
418
530
|
/** Output only. The current state of this LDAPS settings. */
|
|
419
|
-
state?:
|
|
531
|
+
state?:
|
|
532
|
+
string;
|
|
420
533
|
/** Output only. Last update time. */
|
|
421
|
-
updateTime?:
|
|
534
|
+
updateTime?:
|
|
535
|
+
string;
|
|
422
536
|
}
|
|
423
537
|
interface ListBackupsResponse {
|
|
424
538
|
/** A list of Cloud AD backups in the domain. */
|
|
425
|
-
backups?:
|
|
539
|
+
backups?:
|
|
540
|
+
Backup[];
|
|
426
541
|
/** Token to retrieve the next page of results, or empty if there are no more results in the list. */
|
|
427
|
-
nextPageToken?:
|
|
542
|
+
nextPageToken?:
|
|
543
|
+
string;
|
|
428
544
|
/** Locations that could not be reached. */
|
|
429
|
-
unreachable?:
|
|
545
|
+
unreachable?:
|
|
546
|
+
string[];
|
|
430
547
|
}
|
|
431
548
|
interface ListDomainsResponse {
|
|
432
549
|
/** A list of Managed Identities Service domains in the project. */
|
|
433
|
-
domains?:
|
|
550
|
+
domains?:
|
|
551
|
+
Domain[];
|
|
434
552
|
/** Token to retrieve the next page of results, or empty if there are no more results in the list. */
|
|
435
|
-
nextPageToken?:
|
|
553
|
+
nextPageToken?:
|
|
554
|
+
string;
|
|
436
555
|
/** Locations that could not be reached. */
|
|
437
|
-
unreachable?:
|
|
556
|
+
unreachable?:
|
|
557
|
+
string[];
|
|
438
558
|
}
|
|
439
559
|
interface ListLocationsResponse {
|
|
440
560
|
/** A list of locations that matches the specified filter in the request. */
|
|
441
|
-
locations?:
|
|
561
|
+
locations?:
|
|
562
|
+
Location[];
|
|
442
563
|
/** The standard List next-page token. */
|
|
443
|
-
nextPageToken?:
|
|
564
|
+
nextPageToken?:
|
|
565
|
+
string;
|
|
444
566
|
}
|
|
445
567
|
interface ListOperationsResponse {
|
|
446
568
|
/** The standard List next-page token. */
|
|
447
|
-
nextPageToken?:
|
|
569
|
+
nextPageToken?:
|
|
570
|
+
string;
|
|
448
571
|
/** A list of operations that matches the specified filter in the request. */
|
|
449
|
-
operations?:
|
|
572
|
+
operations?:
|
|
573
|
+
Operation[];
|
|
450
574
|
}
|
|
451
575
|
interface ListPeeringsResponse {
|
|
452
576
|
/** Token to retrieve the next page of results, or empty if there are no more results in the list. */
|
|
453
|
-
nextPageToken?:
|
|
577
|
+
nextPageToken?:
|
|
578
|
+
string;
|
|
454
579
|
/** A list of Managed Identities Service Peerings in the project. */
|
|
455
|
-
peerings?:
|
|
580
|
+
peerings?:
|
|
581
|
+
Peering[];
|
|
456
582
|
/** Locations that could not be reached. */
|
|
457
|
-
unreachable?:
|
|
583
|
+
unreachable?:
|
|
584
|
+
string[];
|
|
458
585
|
}
|
|
459
586
|
interface ListSQLIntegrationsResponse {
|
|
460
587
|
/** Token to retrieve the next page of results, or empty if there are no more results in the list. */
|
|
461
|
-
nextPageToken?:
|
|
588
|
+
nextPageToken?:
|
|
589
|
+
string;
|
|
462
590
|
/** A list of SQLIntegrations of a domain. */
|
|
463
|
-
sqlIntegrations?:
|
|
591
|
+
sqlIntegrations?:
|
|
592
|
+
SQLIntegration[];
|
|
464
593
|
/** A list of locations that could not be reached. */
|
|
465
|
-
unreachable?:
|
|
594
|
+
unreachable?:
|
|
595
|
+
string[];
|
|
466
596
|
}
|
|
467
597
|
interface Location {
|
|
468
598
|
/** The friendly name for this location, typically a nearby city name. For example, "Tokyo". */
|
|
469
|
-
displayName?:
|
|
599
|
+
displayName?:
|
|
600
|
+
string;
|
|
470
601
|
/** Cross-service attributes for the location. For example {"cloud.googleapis.com/region": "us-east1"} */
|
|
471
|
-
labels?:
|
|
602
|
+
labels?:
|
|
603
|
+
{ [P in string]: string };
|
|
472
604
|
/** The canonical id for this location. For example: `"us-east1"`. */
|
|
473
|
-
locationId?:
|
|
605
|
+
locationId?:
|
|
606
|
+
string;
|
|
474
607
|
/** Service-specific metadata. For example the available capacity at the given location. */
|
|
475
|
-
metadata?:
|
|
608
|
+
metadata?:
|
|
609
|
+
{ [P in string]: any };
|
|
476
610
|
/** Resource name for the location, which may vary between implementations. For example: `"projects/example-project/locations/us-east1"` */
|
|
477
|
-
name?:
|
|
611
|
+
name?:
|
|
612
|
+
string;
|
|
478
613
|
}
|
|
479
614
|
interface MaintenancePolicy {
|
|
480
615
|
/** Output only. The time when the resource was created. */
|
|
481
|
-
createTime?:
|
|
616
|
+
createTime?:
|
|
617
|
+
string;
|
|
482
618
|
/** Optional. Description of what this policy is for. Create/Update methods return INVALID_ARGUMENT if the length is greater than 512. */
|
|
483
|
-
description?:
|
|
619
|
+
description?:
|
|
620
|
+
string;
|
|
484
621
|
/** Optional. Resource labels to represent user provided metadata. Each label is a key-value pair, where both the key and the value are arbitrary strings provided by the user. */
|
|
485
|
-
labels?:
|
|
622
|
+
labels?:
|
|
623
|
+
{ [P in string]: string };
|
|
486
624
|
/**
|
|
487
625
|
* Required. MaintenancePolicy name using the form: `projects/{project_id}/locations/{location_id}/maintenancePolicies/{maintenance_policy_id}` where {project_id} refers to a GCP
|
|
488
626
|
* consumer project ID, {location_id} refers to a GCP region/zone, {maintenance_policy_id} must be 1-63 characters long and match the regular expression
|
|
489
627
|
* `[a-z0-9]([-a-z0-9]*[a-z0-9])?`.
|
|
490
628
|
*/
|
|
491
|
-
name?:
|
|
629
|
+
name?:
|
|
630
|
+
string;
|
|
492
631
|
/** Optional. The state of the policy. */
|
|
493
|
-
state?:
|
|
632
|
+
state?:
|
|
633
|
+
string;
|
|
494
634
|
/** Maintenance policy applicable to instance update. */
|
|
495
|
-
updatePolicy?:
|
|
635
|
+
updatePolicy?:
|
|
636
|
+
UpdatePolicy;
|
|
496
637
|
/** Output only. The time when the resource was updated. */
|
|
497
|
-
updateTime?:
|
|
638
|
+
updateTime?:
|
|
639
|
+
string;
|
|
498
640
|
}
|
|
499
641
|
interface MaintenanceWindow {
|
|
500
642
|
/** Daily cycle. */
|
|
501
|
-
dailyCycle?:
|
|
643
|
+
dailyCycle?:
|
|
644
|
+
DailyCycle;
|
|
502
645
|
/** Weekly cycle. */
|
|
503
|
-
weeklyCycle?:
|
|
646
|
+
weeklyCycle?:
|
|
647
|
+
WeeklyCycle;
|
|
504
648
|
}
|
|
505
649
|
interface OnPremDomainDetails {
|
|
506
650
|
/** Optional. Option to disable SID filtering. */
|
|
507
|
-
disableSidFiltering?:
|
|
651
|
+
disableSidFiltering?:
|
|
652
|
+
boolean;
|
|
508
653
|
/** Required. FQDN of the on-prem domain being migrated. */
|
|
509
|
-
domainName?:
|
|
654
|
+
domainName?:
|
|
655
|
+
string;
|
|
510
656
|
}
|
|
511
657
|
interface OnPremDomainSIDDetails {
|
|
512
658
|
/** FQDN of the on-prem domain being migrated. */
|
|
513
|
-
name?:
|
|
659
|
+
name?:
|
|
660
|
+
string;
|
|
514
661
|
/** Current SID filtering state. */
|
|
515
|
-
sidFilteringState?:
|
|
662
|
+
sidFilteringState?:
|
|
663
|
+
string;
|
|
516
664
|
}
|
|
517
665
|
interface Operation {
|
|
518
666
|
/** 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. */
|
|
519
|
-
done?:
|
|
667
|
+
done?:
|
|
668
|
+
boolean;
|
|
520
669
|
/** The error result of the operation in case of failure or cancellation. */
|
|
521
|
-
error?:
|
|
670
|
+
error?:
|
|
671
|
+
Status;
|
|
522
672
|
/**
|
|
523
673
|
* 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
|
|
524
674
|
* metadata. Any method that returns a long-running operation should document the metadata type, if any.
|
|
525
675
|
*/
|
|
526
|
-
metadata?:
|
|
676
|
+
metadata?:
|
|
677
|
+
{ [P in string]: any };
|
|
527
678
|
/**
|
|
528
679
|
* 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
|
|
529
680
|
* with `operations/{unique_id}`.
|
|
530
681
|
*/
|
|
531
|
-
name?:
|
|
682
|
+
name?:
|
|
683
|
+
string;
|
|
532
684
|
/**
|
|
533
685
|
* 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
|
|
534
686
|
* 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
|
|
535
687
|
* original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
|
|
536
688
|
*/
|
|
537
|
-
response?:
|
|
689
|
+
response?:
|
|
690
|
+
{ [P in string]: any };
|
|
538
691
|
}
|
|
539
692
|
interface OperationMetadata {
|
|
540
693
|
/** Output only. API version used to start the operation. */
|
|
541
|
-
apiVersion?:
|
|
694
|
+
apiVersion?:
|
|
695
|
+
string;
|
|
542
696
|
/**
|
|
543
697
|
* Output only. Identifies whether the user has requested cancellation of the operation. Operations that have been cancelled successfully have Operation.error value with a
|
|
544
698
|
* google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
|
|
545
699
|
*/
|
|
546
|
-
cancelRequested?:
|
|
700
|
+
cancelRequested?:
|
|
701
|
+
boolean;
|
|
547
702
|
/** Output only. The time the operation was created. */
|
|
548
|
-
createTime?:
|
|
703
|
+
createTime?:
|
|
704
|
+
string;
|
|
549
705
|
/** Output only. The time the operation finished running. */
|
|
550
|
-
endTime?:
|
|
706
|
+
endTime?:
|
|
707
|
+
string;
|
|
551
708
|
/** Output only. Human-readable status of the operation, if any. */
|
|
552
|
-
statusDetail?:
|
|
709
|
+
statusDetail?:
|
|
710
|
+
string;
|
|
553
711
|
/** Output only. Server-defined resource path for the target of the operation. */
|
|
554
|
-
target?:
|
|
712
|
+
target?:
|
|
713
|
+
string;
|
|
555
714
|
/** Output only. Name of the verb executed by the operation. */
|
|
556
|
-
verb?:
|
|
715
|
+
verb?:
|
|
716
|
+
string;
|
|
557
717
|
}
|
|
558
718
|
interface Peering {
|
|
559
719
|
/**
|
|
560
720
|
* Required. The full names of the Google Compute Engine [networks](/compute/docs/networks-and-firewalls#networks) to which the instance is connected. Caller needs to make sure that
|
|
561
721
|
* CIDR subnets do not overlap between networks, else peering creation will fail.
|
|
562
722
|
*/
|
|
563
|
-
authorizedNetwork?:
|
|
723
|
+
authorizedNetwork?:
|
|
724
|
+
string;
|
|
564
725
|
/** Output only. The time the instance was created. */
|
|
565
|
-
createTime?:
|
|
726
|
+
createTime?:
|
|
727
|
+
string;
|
|
566
728
|
/**
|
|
567
729
|
* Required. Full domain resource path for the Managed AD Domain involved in peering. The resource path should be in the form:
|
|
568
730
|
* `projects/{project_id}/locations/global/domains/{domain_name}`
|
|
569
731
|
*/
|
|
570
|
-
domainResource?:
|
|
732
|
+
domainResource?:
|
|
733
|
+
string;
|
|
571
734
|
/** Optional. Resource labels to represent user provided metadata. */
|
|
572
|
-
labels?:
|
|
735
|
+
labels?:
|
|
736
|
+
{ [P in string]: string };
|
|
573
737
|
/** Output only. Unique name of the peering in this scope including projects and location using the form: `projects/{project_id}/locations/global/peerings/{peering_id}`. */
|
|
574
|
-
name?:
|
|
738
|
+
name?:
|
|
739
|
+
string;
|
|
575
740
|
/** Output only. The current state of this Peering. */
|
|
576
|
-
state?:
|
|
741
|
+
state?:
|
|
742
|
+
string;
|
|
577
743
|
/** Output only. Additional information about the current status of this peering, if available. */
|
|
578
|
-
statusMessage?:
|
|
744
|
+
statusMessage?:
|
|
745
|
+
string;
|
|
579
746
|
/** Output only. Last update time. */
|
|
580
|
-
updateTime?:
|
|
747
|
+
updateTime?:
|
|
748
|
+
string;
|
|
581
749
|
}
|
|
582
750
|
interface Policy {
|
|
583
751
|
/**
|
|
@@ -586,7 +754,8 @@ declare namespace gapi.client {
|
|
|
586
754
|
* 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
|
|
587
755
|
* 1,450 principals to the `bindings` in the `Policy`.
|
|
588
756
|
*/
|
|
589
|
-
bindings?:
|
|
757
|
+
bindings?:
|
|
758
|
+
Binding[];
|
|
590
759
|
/**
|
|
591
760
|
* `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
|
|
592
761
|
* 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
|
|
@@ -594,7 +763,8 @@ declare namespace gapi.client {
|
|
|
594
763
|
* 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`
|
|
595
764
|
* policy, and all of the conditions in the version `3` policy are lost.
|
|
596
765
|
*/
|
|
597
|
-
etag?:
|
|
766
|
+
etag?:
|
|
767
|
+
string;
|
|
598
768
|
/**
|
|
599
769
|
* 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
|
|
600
770
|
* 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
|
|
@@ -603,262 +773,358 @@ declare namespace gapi.client {
|
|
|
603
773
|
* 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
|
|
604
774
|
* 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).
|
|
605
775
|
*/
|
|
606
|
-
version?:
|
|
776
|
+
version?:
|
|
777
|
+
number;
|
|
607
778
|
}
|
|
608
779
|
interface ReconfigureTrustRequest {
|
|
609
780
|
/** The domain trust resource with updated dns conditional forwarder. */
|
|
610
|
-
trust?:
|
|
781
|
+
trust?:
|
|
782
|
+
Trust;
|
|
611
783
|
}
|
|
612
784
|
// tslint:disable-next-line:no-empty-interface
|
|
613
785
|
interface ResetAdminPasswordRequest {
|
|
614
786
|
}
|
|
615
787
|
interface ResetAdminPasswordResponse {
|
|
616
788
|
/** A random password. See admin for more information. */
|
|
617
|
-
password?:
|
|
789
|
+
password?:
|
|
790
|
+
string;
|
|
618
791
|
}
|
|
619
792
|
interface RestoreDomainRequest {
|
|
620
793
|
/** Required. ID of the backup to be restored */
|
|
621
|
-
backupId?:
|
|
794
|
+
backupId?:
|
|
795
|
+
string;
|
|
622
796
|
}
|
|
623
797
|
interface Schedule {
|
|
624
798
|
/** Allows to define schedule that runs specified day of the week. */
|
|
625
|
-
day?:
|
|
799
|
+
day?:
|
|
800
|
+
string;
|
|
626
801
|
/** Output only. Duration of the time window, set by service producer. */
|
|
627
|
-
duration?:
|
|
802
|
+
duration?:
|
|
803
|
+
string;
|
|
628
804
|
/** Time within the window to start the operations. */
|
|
629
|
-
startTime?:
|
|
805
|
+
startTime?:
|
|
806
|
+
TimeOfDay;
|
|
630
807
|
}
|
|
631
808
|
interface SetIamPolicyRequest {
|
|
632
809
|
/**
|
|
633
810
|
* 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
|
|
634
811
|
* services (such as Projects) might reject them.
|
|
635
812
|
*/
|
|
636
|
-
policy?:
|
|
813
|
+
policy?:
|
|
814
|
+
Policy;
|
|
637
815
|
}
|
|
638
816
|
interface SQLIntegration {
|
|
639
817
|
/** Output only. The time the instance was created. */
|
|
640
|
-
createTime?:
|
|
818
|
+
createTime?:
|
|
819
|
+
string;
|
|
641
820
|
/** The unique name of the sql integration in the form of `projects/{project_id}/locations/global/domains/{domain_name}/sqlIntegrations/{sql_integration}` */
|
|
642
|
-
name?:
|
|
821
|
+
name?:
|
|
822
|
+
string;
|
|
643
823
|
/** The full resource name of an integrated sql instance */
|
|
644
|
-
sqlInstance?:
|
|
824
|
+
sqlInstance?:
|
|
825
|
+
string;
|
|
645
826
|
/** Output only. The current state of the managed OU. */
|
|
646
|
-
state?:
|
|
827
|
+
state?:
|
|
828
|
+
string;
|
|
647
829
|
/** Output only. Last update time for this SQL instance. */
|
|
648
|
-
updateTime?:
|
|
830
|
+
updateTime?:
|
|
831
|
+
string;
|
|
649
832
|
}
|
|
650
833
|
interface Status {
|
|
651
834
|
/** The status code, which should be an enum value of google.rpc.Code. */
|
|
652
|
-
code?:
|
|
835
|
+
code?:
|
|
836
|
+
number;
|
|
653
837
|
/** A list of messages that carry the error details. There is a common set of message types for APIs to use. */
|
|
654
|
-
details?:
|
|
838
|
+
details?:
|
|
839
|
+
Array<{ [P in string]: any }>;
|
|
655
840
|
/**
|
|
656
841
|
* 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
|
|
657
842
|
* client.
|
|
658
843
|
*/
|
|
659
|
-
message?:
|
|
844
|
+
message?:
|
|
845
|
+
string;
|
|
660
846
|
}
|
|
661
847
|
interface TestIamPermissionsRequest {
|
|
662
848
|
/**
|
|
663
849
|
* The set of permissions to check for the `resource`. Permissions with wildcards (such as `*` or `storage.*`) are not allowed. For more information see [IAM
|
|
664
850
|
* Overview](https://cloud.google.com/iam/docs/overview#permissions).
|
|
665
851
|
*/
|
|
666
|
-
permissions?:
|
|
852
|
+
permissions?:
|
|
853
|
+
string[];
|
|
667
854
|
}
|
|
668
855
|
interface TestIamPermissionsResponse {
|
|
669
856
|
/** A subset of `TestPermissionsRequest.permissions` that the caller is allowed. */
|
|
670
|
-
permissions?:
|
|
857
|
+
permissions?:
|
|
858
|
+
string[];
|
|
671
859
|
}
|
|
672
860
|
interface TimeOfDay {
|
|
673
861
|
/** Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time. */
|
|
674
|
-
hours?:
|
|
862
|
+
hours?:
|
|
863
|
+
number;
|
|
675
864
|
/** Minutes of hour of day. Must be from 0 to 59. */
|
|
676
|
-
minutes?:
|
|
865
|
+
minutes?:
|
|
866
|
+
number;
|
|
677
867
|
/** Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999. */
|
|
678
|
-
nanos?:
|
|
868
|
+
nanos?:
|
|
869
|
+
number;
|
|
679
870
|
/** Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds. */
|
|
680
|
-
seconds?:
|
|
871
|
+
seconds?:
|
|
872
|
+
number;
|
|
681
873
|
}
|
|
682
874
|
interface Trust {
|
|
683
875
|
/** Output only. The time the instance was created. */
|
|
684
|
-
createTime?:
|
|
876
|
+
createTime?:
|
|
877
|
+
string;
|
|
685
878
|
/** Output only. The last heartbeat time when the trust was known to be connected. */
|
|
686
|
-
lastKnownTrustConnectedHeartbeatTime?:
|
|
879
|
+
lastKnownTrustConnectedHeartbeatTime?:
|
|
880
|
+
string;
|
|
687
881
|
/** The trust authentication type which decides whether the trusted side has forest/domain wide access or selective access to approved set of resources. */
|
|
688
|
-
selectiveAuthentication?:
|
|
882
|
+
selectiveAuthentication?:
|
|
883
|
+
boolean;
|
|
689
884
|
/** Output only. The current state of this trust. */
|
|
690
|
-
state?:
|
|
885
|
+
state?:
|
|
886
|
+
string;
|
|
691
887
|
/** Output only. Additional information about the current state of this trust, if available. */
|
|
692
|
-
stateDescription?:
|
|
888
|
+
stateDescription?:
|
|
889
|
+
string;
|
|
693
890
|
/** The target dns server ip addresses which can resolve the remote domain involved in trust. */
|
|
694
|
-
targetDnsIpAddresses?:
|
|
891
|
+
targetDnsIpAddresses?:
|
|
892
|
+
string[];
|
|
695
893
|
/** The fully qualified target domain name which will be in trust with current domain. */
|
|
696
|
-
targetDomainName?:
|
|
894
|
+
targetDomainName?:
|
|
895
|
+
string;
|
|
697
896
|
/** The trust direction decides the current domain is trusted, trusting or both. */
|
|
698
|
-
trustDirection?:
|
|
897
|
+
trustDirection?:
|
|
898
|
+
string;
|
|
699
899
|
/** Input only, and will not be stored. The trust secret used for handshake with target domain. */
|
|
700
|
-
trustHandshakeSecret?:
|
|
900
|
+
trustHandshakeSecret?:
|
|
901
|
+
string;
|
|
701
902
|
/** The type of trust represented by the trust resource. */
|
|
702
|
-
trustType?:
|
|
903
|
+
trustType?:
|
|
904
|
+
string;
|
|
703
905
|
/** Output only. Last update time. */
|
|
704
|
-
updateTime?:
|
|
906
|
+
updateTime?:
|
|
907
|
+
string;
|
|
705
908
|
}
|
|
706
909
|
interface UpdatePolicy {
|
|
707
910
|
/** Optional. Relative scheduling channel applied to resource. */
|
|
708
|
-
channel?:
|
|
911
|
+
channel?:
|
|
912
|
+
string;
|
|
709
913
|
/**
|
|
710
914
|
* Deny Maintenance Period that is applied to resource to indicate when maintenance is forbidden. User can specify zero or more non-overlapping deny periods. Maximum number of
|
|
711
915
|
* deny_maintenance_periods expected is one.
|
|
712
916
|
*/
|
|
713
|
-
denyMaintenancePeriods?:
|
|
917
|
+
denyMaintenancePeriods?:
|
|
918
|
+
DenyMaintenancePeriod[];
|
|
714
919
|
/** Optional. Maintenance window that is applied to resources covered by this policy. */
|
|
715
|
-
window?:
|
|
920
|
+
window?:
|
|
921
|
+
MaintenanceWindow;
|
|
716
922
|
}
|
|
717
923
|
interface ValidateTrustRequest {
|
|
718
924
|
/** The domain trust to validate trust state for. */
|
|
719
|
-
trust?:
|
|
925
|
+
trust?:
|
|
926
|
+
Trust;
|
|
720
927
|
}
|
|
721
928
|
interface WeeklyCycle {
|
|
722
929
|
/** User can specify multiple windows in a week. Minimum of 1 window. */
|
|
723
|
-
schedule?:
|
|
930
|
+
schedule?:
|
|
931
|
+
Schedule[];
|
|
724
932
|
}
|
|
725
933
|
interface BackupsResource {
|
|
726
934
|
/** Creates a Backup for a domain. */
|
|
727
935
|
create(request: {
|
|
728
936
|
/** V1 error format. */
|
|
729
|
-
"$.xgafv"?:
|
|
937
|
+
"$.xgafv"?:
|
|
938
|
+
string;
|
|
730
939
|
/** OAuth access token. */
|
|
731
|
-
access_token?:
|
|
940
|
+
access_token?:
|
|
941
|
+
string;
|
|
732
942
|
/** Data format for response. */
|
|
733
|
-
alt?:
|
|
943
|
+
alt?:
|
|
944
|
+
string;
|
|
734
945
|
/**
|
|
735
946
|
* Required. Backup Id, unique name to identify the backups with the following restrictions: * Must be lowercase letters, numbers, and hyphens * Must start with a letter. * Must
|
|
736
947
|
* contain between 1-63 characters. * Must end with a number or a letter. * Must be unique within the domain.
|
|
737
948
|
*/
|
|
738
|
-
backupId?:
|
|
949
|
+
backupId?:
|
|
950
|
+
string;
|
|
739
951
|
/** JSONP */
|
|
740
|
-
callback?:
|
|
952
|
+
callback?:
|
|
953
|
+
string;
|
|
741
954
|
/** Selector specifying which fields to include in a partial response. */
|
|
742
|
-
fields?:
|
|
955
|
+
fields?:
|
|
956
|
+
string;
|
|
743
957
|
/** 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. */
|
|
744
|
-
key?:
|
|
958
|
+
key?:
|
|
959
|
+
string;
|
|
745
960
|
/** OAuth 2.0 token for the current user. */
|
|
746
|
-
oauth_token?:
|
|
961
|
+
oauth_token?:
|
|
962
|
+
string;
|
|
747
963
|
/** Required. The domain resource name using the form: `projects/{project_id}/locations/global/domains/{domain_name}` */
|
|
748
|
-
parent:
|
|
964
|
+
parent:
|
|
965
|
+
string;
|
|
749
966
|
/** Returns response with indentations and line breaks. */
|
|
750
|
-
prettyPrint?:
|
|
967
|
+
prettyPrint?:
|
|
968
|
+
boolean;
|
|
751
969
|
/** 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. */
|
|
752
|
-
quotaUser?:
|
|
970
|
+
quotaUser?:
|
|
971
|
+
string;
|
|
753
972
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
754
|
-
upload_protocol?:
|
|
973
|
+
upload_protocol?:
|
|
974
|
+
string;
|
|
755
975
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
756
|
-
uploadType?:
|
|
976
|
+
uploadType?:
|
|
977
|
+
string;
|
|
757
978
|
/** Request body */
|
|
758
|
-
resource:
|
|
979
|
+
resource:
|
|
980
|
+
Backup;
|
|
759
981
|
}): Request<Operation>;
|
|
760
982
|
create(request: {
|
|
761
983
|
/** V1 error format. */
|
|
762
|
-
"$.xgafv"?:
|
|
984
|
+
"$.xgafv"?:
|
|
985
|
+
string;
|
|
763
986
|
/** OAuth access token. */
|
|
764
|
-
access_token?:
|
|
987
|
+
access_token?:
|
|
988
|
+
string;
|
|
765
989
|
/** Data format for response. */
|
|
766
|
-
alt?:
|
|
990
|
+
alt?:
|
|
991
|
+
string;
|
|
767
992
|
/**
|
|
768
993
|
* Required. Backup Id, unique name to identify the backups with the following restrictions: * Must be lowercase letters, numbers, and hyphens * Must start with a letter. * Must
|
|
769
994
|
* contain between 1-63 characters. * Must end with a number or a letter. * Must be unique within the domain.
|
|
770
995
|
*/
|
|
771
|
-
backupId?:
|
|
996
|
+
backupId?:
|
|
997
|
+
string;
|
|
772
998
|
/** JSONP */
|
|
773
|
-
callback?:
|
|
999
|
+
callback?:
|
|
1000
|
+
string;
|
|
774
1001
|
/** Selector specifying which fields to include in a partial response. */
|
|
775
|
-
fields?:
|
|
1002
|
+
fields?:
|
|
1003
|
+
string;
|
|
776
1004
|
/** 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. */
|
|
777
|
-
key?:
|
|
1005
|
+
key?:
|
|
1006
|
+
string;
|
|
778
1007
|
/** OAuth 2.0 token for the current user. */
|
|
779
|
-
oauth_token?:
|
|
1008
|
+
oauth_token?:
|
|
1009
|
+
string;
|
|
780
1010
|
/** Required. The domain resource name using the form: `projects/{project_id}/locations/global/domains/{domain_name}` */
|
|
781
|
-
parent:
|
|
1011
|
+
parent:
|
|
1012
|
+
string;
|
|
782
1013
|
/** Returns response with indentations and line breaks. */
|
|
783
|
-
prettyPrint?:
|
|
1014
|
+
prettyPrint?:
|
|
1015
|
+
boolean;
|
|
784
1016
|
/** 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. */
|
|
785
|
-
quotaUser?:
|
|
1017
|
+
quotaUser?:
|
|
1018
|
+
string;
|
|
786
1019
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
787
|
-
upload_protocol?:
|
|
1020
|
+
upload_protocol?:
|
|
1021
|
+
string;
|
|
788
1022
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
789
|
-
uploadType?:
|
|
1023
|
+
uploadType?:
|
|
1024
|
+
string;
|
|
790
1025
|
},
|
|
791
1026
|
body: Backup): Request<Operation>;
|
|
792
1027
|
/** Deletes identified Backup. */
|
|
793
1028
|
delete(request?: {
|
|
794
1029
|
/** V1 error format. */
|
|
795
|
-
"$.xgafv"?:
|
|
1030
|
+
"$.xgafv"?:
|
|
1031
|
+
string;
|
|
796
1032
|
/** OAuth access token. */
|
|
797
|
-
access_token?:
|
|
1033
|
+
access_token?:
|
|
1034
|
+
string;
|
|
798
1035
|
/** Data format for response. */
|
|
799
|
-
alt?:
|
|
1036
|
+
alt?:
|
|
1037
|
+
string;
|
|
800
1038
|
/** JSONP */
|
|
801
|
-
callback?:
|
|
1039
|
+
callback?:
|
|
1040
|
+
string;
|
|
802
1041
|
/** Selector specifying which fields to include in a partial response. */
|
|
803
|
-
fields?:
|
|
1042
|
+
fields?:
|
|
1043
|
+
string;
|
|
804
1044
|
/** 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. */
|
|
805
|
-
key?:
|
|
1045
|
+
key?:
|
|
1046
|
+
string;
|
|
806
1047
|
/** Required. The backup resource name using the form: `projects/{project_id}/locations/global/domains/{domain_name}/backups/{backup_id}` */
|
|
807
|
-
name:
|
|
1048
|
+
name:
|
|
1049
|
+
string;
|
|
808
1050
|
/** OAuth 2.0 token for the current user. */
|
|
809
|
-
oauth_token?:
|
|
1051
|
+
oauth_token?:
|
|
1052
|
+
string;
|
|
810
1053
|
/** Returns response with indentations and line breaks. */
|
|
811
|
-
prettyPrint?:
|
|
1054
|
+
prettyPrint?:
|
|
1055
|
+
boolean;
|
|
812
1056
|
/** 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. */
|
|
813
|
-
quotaUser?:
|
|
1057
|
+
quotaUser?:
|
|
1058
|
+
string;
|
|
814
1059
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
815
|
-
upload_protocol?:
|
|
1060
|
+
upload_protocol?:
|
|
1061
|
+
string;
|
|
816
1062
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
817
|
-
uploadType?:
|
|
1063
|
+
uploadType?:
|
|
1064
|
+
string;
|
|
818
1065
|
}): Request<Operation>;
|
|
819
1066
|
/** Gets details of a single Backup. */
|
|
820
1067
|
get(request?: {
|
|
821
1068
|
/** V1 error format. */
|
|
822
|
-
"$.xgafv"?:
|
|
1069
|
+
"$.xgafv"?:
|
|
1070
|
+
string;
|
|
823
1071
|
/** OAuth access token. */
|
|
824
|
-
access_token?:
|
|
1072
|
+
access_token?:
|
|
1073
|
+
string;
|
|
825
1074
|
/** Data format for response. */
|
|
826
|
-
alt?:
|
|
1075
|
+
alt?:
|
|
1076
|
+
string;
|
|
827
1077
|
/** JSONP */
|
|
828
|
-
callback?:
|
|
1078
|
+
callback?:
|
|
1079
|
+
string;
|
|
829
1080
|
/** Selector specifying which fields to include in a partial response. */
|
|
830
|
-
fields?:
|
|
1081
|
+
fields?:
|
|
1082
|
+
string;
|
|
831
1083
|
/** 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. */
|
|
832
|
-
key?:
|
|
1084
|
+
key?:
|
|
1085
|
+
string;
|
|
833
1086
|
/** Required. The backup resource name using the form: `projects/{project_id}/locations/global/domains/{domain_name}/backups/{backup_id}` */
|
|
834
|
-
name:
|
|
1087
|
+
name:
|
|
1088
|
+
string;
|
|
835
1089
|
/** OAuth 2.0 token for the current user. */
|
|
836
|
-
oauth_token?:
|
|
1090
|
+
oauth_token?:
|
|
1091
|
+
string;
|
|
837
1092
|
/** Returns response with indentations and line breaks. */
|
|
838
|
-
prettyPrint?:
|
|
1093
|
+
prettyPrint?:
|
|
1094
|
+
boolean;
|
|
839
1095
|
/** 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. */
|
|
840
|
-
quotaUser?:
|
|
1096
|
+
quotaUser?:
|
|
1097
|
+
string;
|
|
841
1098
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
842
|
-
upload_protocol?:
|
|
1099
|
+
upload_protocol?:
|
|
1100
|
+
string;
|
|
843
1101
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
844
|
-
uploadType?:
|
|
1102
|
+
uploadType?:
|
|
1103
|
+
string;
|
|
845
1104
|
}): Request<Backup>;
|
|
846
1105
|
/** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
|
|
847
1106
|
getIamPolicy(request?: {
|
|
848
1107
|
/** V1 error format. */
|
|
849
|
-
"$.xgafv"?:
|
|
1108
|
+
"$.xgafv"?:
|
|
1109
|
+
string;
|
|
850
1110
|
/** OAuth access token. */
|
|
851
|
-
access_token?:
|
|
1111
|
+
access_token?:
|
|
1112
|
+
string;
|
|
852
1113
|
/** Data format for response. */
|
|
853
|
-
alt?:
|
|
1114
|
+
alt?:
|
|
1115
|
+
string;
|
|
854
1116
|
/** JSONP */
|
|
855
|
-
callback?:
|
|
1117
|
+
callback?:
|
|
1118
|
+
string;
|
|
856
1119
|
/** Selector specifying which fields to include in a partial response. */
|
|
857
|
-
fields?:
|
|
1120
|
+
fields?:
|
|
1121
|
+
string;
|
|
858
1122
|
/** 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. */
|
|
859
|
-
key?:
|
|
1123
|
+
key?:
|
|
1124
|
+
string;
|
|
860
1125
|
/** OAuth 2.0 token for the current user. */
|
|
861
|
-
oauth_token?:
|
|
1126
|
+
oauth_token?:
|
|
1127
|
+
string;
|
|
862
1128
|
/**
|
|
863
1129
|
* 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
|
|
864
1130
|
* 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
|
|
@@ -866,154 +1132,215 @@ declare namespace gapi.client {
|
|
|
866
1132
|
* role bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM
|
|
867
1133
|
* documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
|
|
868
1134
|
*/
|
|
869
|
-
"options.requestedPolicyVersion"?:
|
|
1135
|
+
"options.requestedPolicyVersion"?:
|
|
1136
|
+
number;
|
|
870
1137
|
/** Returns response with indentations and line breaks. */
|
|
871
|
-
prettyPrint?:
|
|
1138
|
+
prettyPrint?:
|
|
1139
|
+
boolean;
|
|
872
1140
|
/** 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. */
|
|
873
|
-
quotaUser?:
|
|
1141
|
+
quotaUser?:
|
|
1142
|
+
string;
|
|
874
1143
|
/**
|
|
875
1144
|
* 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
|
|
876
1145
|
* field.
|
|
877
1146
|
*/
|
|
878
|
-
resource:
|
|
1147
|
+
resource:
|
|
1148
|
+
string;
|
|
879
1149
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
880
|
-
upload_protocol?:
|
|
1150
|
+
upload_protocol?:
|
|
1151
|
+
string;
|
|
881
1152
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
882
|
-
uploadType?:
|
|
1153
|
+
uploadType?:
|
|
1154
|
+
string;
|
|
883
1155
|
}): Request<Policy>;
|
|
884
1156
|
/** Lists Backup in a given project. */
|
|
885
1157
|
list(request?: {
|
|
886
1158
|
/** V1 error format. */
|
|
887
|
-
"$.xgafv"?:
|
|
1159
|
+
"$.xgafv"?:
|
|
1160
|
+
string;
|
|
888
1161
|
/** OAuth access token. */
|
|
889
|
-
access_token?:
|
|
1162
|
+
access_token?:
|
|
1163
|
+
string;
|
|
890
1164
|
/** Data format for response. */
|
|
891
|
-
alt?:
|
|
1165
|
+
alt?:
|
|
1166
|
+
string;
|
|
892
1167
|
/** JSONP */
|
|
893
|
-
callback?:
|
|
1168
|
+
callback?:
|
|
1169
|
+
string;
|
|
894
1170
|
/** Selector specifying which fields to include in a partial response. */
|
|
895
|
-
fields?:
|
|
1171
|
+
fields?:
|
|
1172
|
+
string;
|
|
896
1173
|
/** Optional. Filter specifying constraints of a list operation. */
|
|
897
|
-
filter?:
|
|
1174
|
+
filter?:
|
|
1175
|
+
string;
|
|
898
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. */
|
|
899
|
-
key?:
|
|
1177
|
+
key?:
|
|
1178
|
+
string;
|
|
900
1179
|
/** OAuth 2.0 token for the current user. */
|
|
901
|
-
oauth_token?:
|
|
1180
|
+
oauth_token?:
|
|
1181
|
+
string;
|
|
902
1182
|
/** Optional. Specifies the ordering of results following syntax at https://cloud.google.com/apis/design/design_patterns#sorting_order. */
|
|
903
|
-
orderBy?:
|
|
1183
|
+
orderBy?:
|
|
1184
|
+
string;
|
|
904
1185
|
/**
|
|
905
1186
|
* Optional. The maximum number of items to return. If not specified, a default value of 1000 will be used by the service. Regardless of the page_size value, the response may
|
|
906
1187
|
* include a partial list and a caller should only rely on response's next_page_token to determine if there are more instances left to be queried.
|
|
907
1188
|
*/
|
|
908
|
-
pageSize?:
|
|
1189
|
+
pageSize?:
|
|
1190
|
+
number;
|
|
909
1191
|
/** Optional. The next_page_token value returned from a previous List request, if any. */
|
|
910
|
-
pageToken?:
|
|
1192
|
+
pageToken?:
|
|
1193
|
+
string;
|
|
911
1194
|
/** Required. The domain resource name using the form: `projects/{project_id}/locations/global/domains/{domain_name}` */
|
|
912
|
-
parent:
|
|
1195
|
+
parent:
|
|
1196
|
+
string;
|
|
913
1197
|
/** Returns response with indentations and line breaks. */
|
|
914
|
-
prettyPrint?:
|
|
1198
|
+
prettyPrint?:
|
|
1199
|
+
boolean;
|
|
915
1200
|
/** 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. */
|
|
916
|
-
quotaUser?:
|
|
1201
|
+
quotaUser?:
|
|
1202
|
+
string;
|
|
917
1203
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
918
|
-
upload_protocol?:
|
|
1204
|
+
upload_protocol?:
|
|
1205
|
+
string;
|
|
919
1206
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
920
|
-
uploadType?:
|
|
1207
|
+
uploadType?:
|
|
1208
|
+
string;
|
|
921
1209
|
}): Request<ListBackupsResponse>;
|
|
922
1210
|
/** Updates the labels for specified Backup. */
|
|
923
1211
|
patch(request: {
|
|
924
1212
|
/** V1 error format. */
|
|
925
|
-
"$.xgafv"?:
|
|
1213
|
+
"$.xgafv"?:
|
|
1214
|
+
string;
|
|
926
1215
|
/** OAuth access token. */
|
|
927
|
-
access_token?:
|
|
1216
|
+
access_token?:
|
|
1217
|
+
string;
|
|
928
1218
|
/** Data format for response. */
|
|
929
|
-
alt?:
|
|
1219
|
+
alt?:
|
|
1220
|
+
string;
|
|
930
1221
|
/** JSONP */
|
|
931
|
-
callback?:
|
|
1222
|
+
callback?:
|
|
1223
|
+
string;
|
|
932
1224
|
/** Selector specifying which fields to include in a partial response. */
|
|
933
|
-
fields?:
|
|
1225
|
+
fields?:
|
|
1226
|
+
string;
|
|
934
1227
|
/** 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. */
|
|
935
|
-
key?:
|
|
1228
|
+
key?:
|
|
1229
|
+
string;
|
|
936
1230
|
/** Output only. The unique name of the Backup in the form of projects/{project_id}/locations/global/domains/{domain_name}/backups/{name} */
|
|
937
|
-
name:
|
|
1231
|
+
name:
|
|
1232
|
+
string;
|
|
938
1233
|
/** OAuth 2.0 token for the current user. */
|
|
939
|
-
oauth_token?:
|
|
1234
|
+
oauth_token?:
|
|
1235
|
+
string;
|
|
940
1236
|
/** Returns response with indentations and line breaks. */
|
|
941
|
-
prettyPrint?:
|
|
1237
|
+
prettyPrint?:
|
|
1238
|
+
boolean;
|
|
942
1239
|
/** 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. */
|
|
943
|
-
quotaUser?:
|
|
1240
|
+
quotaUser?:
|
|
1241
|
+
string;
|
|
944
1242
|
/**
|
|
945
1243
|
* Required. Mask of fields to update. At least one path must be supplied in this field. The elements of the repeated paths field may only include these fields from Backup: *
|
|
946
1244
|
* `labels`
|
|
947
1245
|
*/
|
|
948
|
-
updateMask?:
|
|
1246
|
+
updateMask?:
|
|
1247
|
+
string;
|
|
949
1248
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
950
|
-
upload_protocol?:
|
|
1249
|
+
upload_protocol?:
|
|
1250
|
+
string;
|
|
951
1251
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
952
|
-
uploadType?:
|
|
1252
|
+
uploadType?:
|
|
1253
|
+
string;
|
|
953
1254
|
/** Request body */
|
|
954
|
-
resource:
|
|
1255
|
+
resource:
|
|
1256
|
+
Backup;
|
|
955
1257
|
}): Request<Operation>;
|
|
956
1258
|
patch(request: {
|
|
957
1259
|
/** V1 error format. */
|
|
958
|
-
"$.xgafv"?:
|
|
1260
|
+
"$.xgafv"?:
|
|
1261
|
+
string;
|
|
959
1262
|
/** OAuth access token. */
|
|
960
|
-
access_token?:
|
|
1263
|
+
access_token?:
|
|
1264
|
+
string;
|
|
961
1265
|
/** Data format for response. */
|
|
962
|
-
alt?:
|
|
1266
|
+
alt?:
|
|
1267
|
+
string;
|
|
963
1268
|
/** JSONP */
|
|
964
|
-
callback?:
|
|
1269
|
+
callback?:
|
|
1270
|
+
string;
|
|
965
1271
|
/** Selector specifying which fields to include in a partial response. */
|
|
966
|
-
fields?:
|
|
1272
|
+
fields?:
|
|
1273
|
+
string;
|
|
967
1274
|
/** 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. */
|
|
968
|
-
key?:
|
|
1275
|
+
key?:
|
|
1276
|
+
string;
|
|
969
1277
|
/** Output only. The unique name of the Backup in the form of projects/{project_id}/locations/global/domains/{domain_name}/backups/{name} */
|
|
970
|
-
name:
|
|
1278
|
+
name:
|
|
1279
|
+
string;
|
|
971
1280
|
/** OAuth 2.0 token for the current user. */
|
|
972
|
-
oauth_token?:
|
|
1281
|
+
oauth_token?:
|
|
1282
|
+
string;
|
|
973
1283
|
/** Returns response with indentations and line breaks. */
|
|
974
|
-
prettyPrint?:
|
|
1284
|
+
prettyPrint?:
|
|
1285
|
+
boolean;
|
|
975
1286
|
/** 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. */
|
|
976
|
-
quotaUser?:
|
|
1287
|
+
quotaUser?:
|
|
1288
|
+
string;
|
|
977
1289
|
/**
|
|
978
1290
|
* Required. Mask of fields to update. At least one path must be supplied in this field. The elements of the repeated paths field may only include these fields from Backup: *
|
|
979
1291
|
* `labels`
|
|
980
1292
|
*/
|
|
981
|
-
updateMask?:
|
|
1293
|
+
updateMask?:
|
|
1294
|
+
string;
|
|
982
1295
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
983
|
-
upload_protocol?:
|
|
1296
|
+
upload_protocol?:
|
|
1297
|
+
string;
|
|
984
1298
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
985
|
-
uploadType?:
|
|
1299
|
+
uploadType?:
|
|
1300
|
+
string;
|
|
986
1301
|
},
|
|
987
1302
|
body: Backup): Request<Operation>;
|
|
988
1303
|
/** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
|
|
989
1304
|
setIamPolicy(request: {
|
|
990
1305
|
/** V1 error format. */
|
|
991
|
-
"$.xgafv"?:
|
|
1306
|
+
"$.xgafv"?:
|
|
1307
|
+
string;
|
|
992
1308
|
/** OAuth access token. */
|
|
993
|
-
access_token?:
|
|
1309
|
+
access_token?:
|
|
1310
|
+
string;
|
|
994
1311
|
/** Data format for response. */
|
|
995
|
-
alt?:
|
|
1312
|
+
alt?:
|
|
1313
|
+
string;
|
|
996
1314
|
/** JSONP */
|
|
997
|
-
callback?:
|
|
1315
|
+
callback?:
|
|
1316
|
+
string;
|
|
998
1317
|
/** Selector specifying which fields to include in a partial response. */
|
|
999
|
-
fields?:
|
|
1318
|
+
fields?:
|
|
1319
|
+
string;
|
|
1000
1320
|
/** 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. */
|
|
1001
|
-
key?:
|
|
1321
|
+
key?:
|
|
1322
|
+
string;
|
|
1002
1323
|
/** OAuth 2.0 token for the current user. */
|
|
1003
|
-
oauth_token?:
|
|
1324
|
+
oauth_token?:
|
|
1325
|
+
string;
|
|
1004
1326
|
/** Returns response with indentations and line breaks. */
|
|
1005
|
-
prettyPrint?:
|
|
1327
|
+
prettyPrint?:
|
|
1328
|
+
boolean;
|
|
1006
1329
|
/** 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. */
|
|
1007
|
-
quotaUser?:
|
|
1330
|
+
quotaUser?:
|
|
1331
|
+
string;
|
|
1008
1332
|
/**
|
|
1009
1333
|
* 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
|
|
1010
1334
|
* field.
|
|
1011
1335
|
*/
|
|
1012
|
-
resource:
|
|
1336
|
+
resource:
|
|
1337
|
+
string;
|
|
1013
1338
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1014
|
-
upload_protocol?:
|
|
1339
|
+
upload_protocol?:
|
|
1340
|
+
string;
|
|
1015
1341
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1016
|
-
uploadType?:
|
|
1342
|
+
uploadType?:
|
|
1343
|
+
string;
|
|
1017
1344
|
},
|
|
1018
1345
|
body: SetIamPolicyRequest): Request<Policy>;
|
|
1019
1346
|
/**
|
|
@@ -1022,32 +1349,44 @@ declare namespace gapi.client {
|
|
|
1022
1349
|
*/
|
|
1023
1350
|
testIamPermissions(request: {
|
|
1024
1351
|
/** V1 error format. */
|
|
1025
|
-
"$.xgafv"?:
|
|
1352
|
+
"$.xgafv"?:
|
|
1353
|
+
string;
|
|
1026
1354
|
/** OAuth access token. */
|
|
1027
|
-
access_token?:
|
|
1355
|
+
access_token?:
|
|
1356
|
+
string;
|
|
1028
1357
|
/** Data format for response. */
|
|
1029
|
-
alt?:
|
|
1358
|
+
alt?:
|
|
1359
|
+
string;
|
|
1030
1360
|
/** JSONP */
|
|
1031
|
-
callback?:
|
|
1361
|
+
callback?:
|
|
1362
|
+
string;
|
|
1032
1363
|
/** Selector specifying which fields to include in a partial response. */
|
|
1033
|
-
fields?:
|
|
1364
|
+
fields?:
|
|
1365
|
+
string;
|
|
1034
1366
|
/** 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. */
|
|
1035
|
-
key?:
|
|
1367
|
+
key?:
|
|
1368
|
+
string;
|
|
1036
1369
|
/** OAuth 2.0 token for the current user. */
|
|
1037
|
-
oauth_token?:
|
|
1370
|
+
oauth_token?:
|
|
1371
|
+
string;
|
|
1038
1372
|
/** Returns response with indentations and line breaks. */
|
|
1039
|
-
prettyPrint?:
|
|
1373
|
+
prettyPrint?:
|
|
1374
|
+
boolean;
|
|
1040
1375
|
/** 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. */
|
|
1041
|
-
quotaUser?:
|
|
1376
|
+
quotaUser?:
|
|
1377
|
+
string;
|
|
1042
1378
|
/**
|
|
1043
1379
|
* 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
|
|
1044
1380
|
* this field.
|
|
1045
1381
|
*/
|
|
1046
|
-
resource:
|
|
1382
|
+
resource:
|
|
1383
|
+
string;
|
|
1047
1384
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1048
|
-
upload_protocol?:
|
|
1385
|
+
upload_protocol?:
|
|
1386
|
+
string;
|
|
1049
1387
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1050
|
-
uploadType?:
|
|
1388
|
+
uploadType?:
|
|
1389
|
+
string;
|
|
1051
1390
|
},
|
|
1052
1391
|
body: TestIamPermissionsRequest): Request<TestIamPermissionsResponse>;
|
|
1053
1392
|
}
|
|
@@ -1055,600 +1394,861 @@ declare namespace gapi.client {
|
|
|
1055
1394
|
/** Gets details of a single sqlIntegration. */
|
|
1056
1395
|
get(request?: {
|
|
1057
1396
|
/** V1 error format. */
|
|
1058
|
-
"$.xgafv"?:
|
|
1397
|
+
"$.xgafv"?:
|
|
1398
|
+
string;
|
|
1059
1399
|
/** OAuth access token. */
|
|
1060
|
-
access_token?:
|
|
1400
|
+
access_token?:
|
|
1401
|
+
string;
|
|
1061
1402
|
/** Data format for response. */
|
|
1062
|
-
alt?:
|
|
1403
|
+
alt?:
|
|
1404
|
+
string;
|
|
1063
1405
|
/** JSONP */
|
|
1064
|
-
callback?:
|
|
1406
|
+
callback?:
|
|
1407
|
+
string;
|
|
1065
1408
|
/** Selector specifying which fields to include in a partial response. */
|
|
1066
|
-
fields?:
|
|
1409
|
+
fields?:
|
|
1410
|
+
string;
|
|
1067
1411
|
/** 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. */
|
|
1068
|
-
key?:
|
|
1412
|
+
key?:
|
|
1413
|
+
string;
|
|
1069
1414
|
/** Required. MangedOU resource name using the form: `projects/{project_id}/locations/global/domains/*/sqlIntegrations/{name}` */
|
|
1070
|
-
name:
|
|
1415
|
+
name:
|
|
1416
|
+
string;
|
|
1071
1417
|
/** OAuth 2.0 token for the current user. */
|
|
1072
|
-
oauth_token?:
|
|
1418
|
+
oauth_token?:
|
|
1419
|
+
string;
|
|
1073
1420
|
/** Returns response with indentations and line breaks. */
|
|
1074
|
-
prettyPrint?:
|
|
1421
|
+
prettyPrint?:
|
|
1422
|
+
boolean;
|
|
1075
1423
|
/** 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. */
|
|
1076
|
-
quotaUser?:
|
|
1424
|
+
quotaUser?:
|
|
1425
|
+
string;
|
|
1077
1426
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1078
|
-
upload_protocol?:
|
|
1427
|
+
upload_protocol?:
|
|
1428
|
+
string;
|
|
1079
1429
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1080
|
-
uploadType?:
|
|
1430
|
+
uploadType?:
|
|
1431
|
+
string;
|
|
1081
1432
|
}): Request<SQLIntegration>;
|
|
1082
1433
|
/** Lists SQLIntegrations in a given domain. */
|
|
1083
1434
|
list(request?: {
|
|
1084
1435
|
/** V1 error format. */
|
|
1085
|
-
"$.xgafv"?:
|
|
1436
|
+
"$.xgafv"?:
|
|
1437
|
+
string;
|
|
1086
1438
|
/** OAuth access token. */
|
|
1087
|
-
access_token?:
|
|
1439
|
+
access_token?:
|
|
1440
|
+
string;
|
|
1088
1441
|
/** Data format for response. */
|
|
1089
|
-
alt?:
|
|
1442
|
+
alt?:
|
|
1443
|
+
string;
|
|
1090
1444
|
/** JSONP */
|
|
1091
|
-
callback?:
|
|
1445
|
+
callback?:
|
|
1446
|
+
string;
|
|
1092
1447
|
/** Selector specifying which fields to include in a partial response. */
|
|
1093
|
-
fields?:
|
|
1448
|
+
fields?:
|
|
1449
|
+
string;
|
|
1094
1450
|
/** Optional. Filter specifying constraints of a list operation. For example, `SqlIntegration.name="sql"`. */
|
|
1095
|
-
filter?:
|
|
1451
|
+
filter?:
|
|
1452
|
+
string;
|
|
1096
1453
|
/** 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. */
|
|
1097
|
-
key?:
|
|
1454
|
+
key?:
|
|
1455
|
+
string;
|
|
1098
1456
|
/** OAuth 2.0 token for the current user. */
|
|
1099
|
-
oauth_token?:
|
|
1457
|
+
oauth_token?:
|
|
1458
|
+
string;
|
|
1100
1459
|
/** Optional. Specifies the ordering of results following syntax at https://cloud.google.com/apis/design/design_patterns#sorting_order. */
|
|
1101
|
-
orderBy?:
|
|
1460
|
+
orderBy?:
|
|
1461
|
+
string;
|
|
1102
1462
|
/**
|
|
1103
1463
|
* Optional. The maximum number of items to return. If not specified, a default value of 1000 will be used by the service. Regardless of the page_size value, the response may
|
|
1104
1464
|
* include a partial list and a caller should only rely on response'ANIZATIONs next_page_token to determine if there are more instances left to be queried.
|
|
1105
1465
|
*/
|
|
1106
|
-
pageSize?:
|
|
1466
|
+
pageSize?:
|
|
1467
|
+
number;
|
|
1107
1468
|
/** Optional. The next_page_token value returned from a previous List request, if any. */
|
|
1108
|
-
pageToken?:
|
|
1469
|
+
pageToken?:
|
|
1470
|
+
string;
|
|
1109
1471
|
/** Required. The resource name of the SqlIntegrations using the form: `projects/{project_id}/locations/global/domains/*` */
|
|
1110
|
-
parent:
|
|
1472
|
+
parent:
|
|
1473
|
+
string;
|
|
1111
1474
|
/** Returns response with indentations and line breaks. */
|
|
1112
|
-
prettyPrint?:
|
|
1475
|
+
prettyPrint?:
|
|
1476
|
+
boolean;
|
|
1113
1477
|
/** 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. */
|
|
1114
|
-
quotaUser?:
|
|
1478
|
+
quotaUser?:
|
|
1479
|
+
string;
|
|
1115
1480
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1116
|
-
upload_protocol?:
|
|
1481
|
+
upload_protocol?:
|
|
1482
|
+
string;
|
|
1117
1483
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1118
|
-
uploadType?:
|
|
1484
|
+
uploadType?:
|
|
1485
|
+
string;
|
|
1119
1486
|
}): Request<ListSQLIntegrationsResponse>;
|
|
1120
1487
|
}
|
|
1121
1488
|
interface DomainsResource {
|
|
1122
1489
|
/** Adds AD trust in a given domain. Operation */
|
|
1123
1490
|
attachTrust(request: {
|
|
1124
1491
|
/** V1 error format. */
|
|
1125
|
-
"$.xgafv"?:
|
|
1492
|
+
"$.xgafv"?:
|
|
1493
|
+
string;
|
|
1126
1494
|
/** OAuth access token. */
|
|
1127
|
-
access_token?:
|
|
1495
|
+
access_token?:
|
|
1496
|
+
string;
|
|
1128
1497
|
/** Data format for response. */
|
|
1129
|
-
alt?:
|
|
1498
|
+
alt?:
|
|
1499
|
+
string;
|
|
1130
1500
|
/** JSONP */
|
|
1131
|
-
callback?:
|
|
1501
|
+
callback?:
|
|
1502
|
+
string;
|
|
1132
1503
|
/** Selector specifying which fields to include in a partial response. */
|
|
1133
|
-
fields?:
|
|
1504
|
+
fields?:
|
|
1505
|
+
string;
|
|
1134
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. */
|
|
1135
|
-
key?:
|
|
1507
|
+
key?:
|
|
1508
|
+
string;
|
|
1136
1509
|
/** The resource domain name, project name and location using the form: `projects/{project_id}/locations/global/domains/{domain_name}` */
|
|
1137
|
-
name:
|
|
1510
|
+
name:
|
|
1511
|
+
string;
|
|
1138
1512
|
/** OAuth 2.0 token for the current user. */
|
|
1139
|
-
oauth_token?:
|
|
1513
|
+
oauth_token?:
|
|
1514
|
+
string;
|
|
1140
1515
|
/** Returns response with indentations and line breaks. */
|
|
1141
|
-
prettyPrint?:
|
|
1516
|
+
prettyPrint?:
|
|
1517
|
+
boolean;
|
|
1142
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. */
|
|
1143
|
-
quotaUser?:
|
|
1519
|
+
quotaUser?:
|
|
1520
|
+
string;
|
|
1144
1521
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1145
|
-
upload_protocol?:
|
|
1522
|
+
upload_protocol?:
|
|
1523
|
+
string;
|
|
1146
1524
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1147
|
-
uploadType?:
|
|
1525
|
+
uploadType?:
|
|
1526
|
+
string;
|
|
1148
1527
|
/** Request body */
|
|
1149
|
-
resource:
|
|
1528
|
+
resource:
|
|
1529
|
+
AttachTrustRequest;
|
|
1150
1530
|
}): Request<Operation>;
|
|
1151
1531
|
attachTrust(request: {
|
|
1152
1532
|
/** V1 error format. */
|
|
1153
|
-
"$.xgafv"?:
|
|
1533
|
+
"$.xgafv"?:
|
|
1534
|
+
string;
|
|
1154
1535
|
/** OAuth access token. */
|
|
1155
|
-
access_token?:
|
|
1536
|
+
access_token?:
|
|
1537
|
+
string;
|
|
1156
1538
|
/** Data format for response. */
|
|
1157
|
-
alt?:
|
|
1539
|
+
alt?:
|
|
1540
|
+
string;
|
|
1158
1541
|
/** JSONP */
|
|
1159
|
-
callback?:
|
|
1542
|
+
callback?:
|
|
1543
|
+
string;
|
|
1160
1544
|
/** Selector specifying which fields to include in a partial response. */
|
|
1161
|
-
fields?:
|
|
1545
|
+
fields?:
|
|
1546
|
+
string;
|
|
1162
1547
|
/** 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. */
|
|
1163
|
-
key?:
|
|
1548
|
+
key?:
|
|
1549
|
+
string;
|
|
1164
1550
|
/** The resource domain name, project name and location using the form: `projects/{project_id}/locations/global/domains/{domain_name}` */
|
|
1165
|
-
name:
|
|
1551
|
+
name:
|
|
1552
|
+
string;
|
|
1166
1553
|
/** OAuth 2.0 token for the current user. */
|
|
1167
|
-
oauth_token?:
|
|
1554
|
+
oauth_token?:
|
|
1555
|
+
string;
|
|
1168
1556
|
/** Returns response with indentations and line breaks. */
|
|
1169
|
-
prettyPrint?:
|
|
1557
|
+
prettyPrint?:
|
|
1558
|
+
boolean;
|
|
1170
1559
|
/** 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. */
|
|
1171
|
-
quotaUser?:
|
|
1560
|
+
quotaUser?:
|
|
1561
|
+
string;
|
|
1172
1562
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1173
|
-
upload_protocol?:
|
|
1563
|
+
upload_protocol?:
|
|
1564
|
+
string;
|
|
1174
1565
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1175
|
-
uploadType?:
|
|
1566
|
+
uploadType?:
|
|
1567
|
+
string;
|
|
1176
1568
|
},
|
|
1177
1569
|
body: AttachTrustRequest): Request<Operation>;
|
|
1178
1570
|
/** AuditMigration API gets the current state of DomainMigration */
|
|
1179
1571
|
checkMigrationPermission(request: {
|
|
1180
1572
|
/** V1 error format. */
|
|
1181
|
-
"$.xgafv"?:
|
|
1573
|
+
"$.xgafv"?:
|
|
1574
|
+
string;
|
|
1182
1575
|
/** OAuth access token. */
|
|
1183
|
-
access_token?:
|
|
1576
|
+
access_token?:
|
|
1577
|
+
string;
|
|
1184
1578
|
/** Data format for response. */
|
|
1185
|
-
alt?:
|
|
1579
|
+
alt?:
|
|
1580
|
+
string;
|
|
1186
1581
|
/** JSONP */
|
|
1187
|
-
callback?:
|
|
1582
|
+
callback?:
|
|
1583
|
+
string;
|
|
1188
1584
|
/** Required. The domain resource name using the form: `projects/{project_id}/locations/global/domains/{domain_name}` */
|
|
1189
|
-
domain:
|
|
1585
|
+
domain:
|
|
1586
|
+
string;
|
|
1190
1587
|
/** Selector specifying which fields to include in a partial response. */
|
|
1191
|
-
fields?:
|
|
1588
|
+
fields?:
|
|
1589
|
+
string;
|
|
1192
1590
|
/** 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. */
|
|
1193
|
-
key?:
|
|
1591
|
+
key?:
|
|
1592
|
+
string;
|
|
1194
1593
|
/** OAuth 2.0 token for the current user. */
|
|
1195
|
-
oauth_token?:
|
|
1594
|
+
oauth_token?:
|
|
1595
|
+
string;
|
|
1196
1596
|
/** Returns response with indentations and line breaks. */
|
|
1197
|
-
prettyPrint?:
|
|
1597
|
+
prettyPrint?:
|
|
1598
|
+
boolean;
|
|
1198
1599
|
/** 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. */
|
|
1199
|
-
quotaUser?:
|
|
1600
|
+
quotaUser?:
|
|
1601
|
+
string;
|
|
1200
1602
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1201
|
-
upload_protocol?:
|
|
1603
|
+
upload_protocol?:
|
|
1604
|
+
string;
|
|
1202
1605
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1203
|
-
uploadType?:
|
|
1606
|
+
uploadType?:
|
|
1607
|
+
string;
|
|
1204
1608
|
/** Request body */
|
|
1205
|
-
resource:
|
|
1609
|
+
resource:
|
|
1610
|
+
CheckMigrationPermissionRequest;
|
|
1206
1611
|
}): Request<CheckMigrationPermissionResponse>;
|
|
1207
1612
|
checkMigrationPermission(request: {
|
|
1208
1613
|
/** V1 error format. */
|
|
1209
|
-
"$.xgafv"?:
|
|
1614
|
+
"$.xgafv"?:
|
|
1615
|
+
string;
|
|
1210
1616
|
/** OAuth access token. */
|
|
1211
|
-
access_token?:
|
|
1617
|
+
access_token?:
|
|
1618
|
+
string;
|
|
1212
1619
|
/** Data format for response. */
|
|
1213
|
-
alt?:
|
|
1620
|
+
alt?:
|
|
1621
|
+
string;
|
|
1214
1622
|
/** JSONP */
|
|
1215
|
-
callback?:
|
|
1623
|
+
callback?:
|
|
1624
|
+
string;
|
|
1216
1625
|
/** Required. The domain resource name using the form: `projects/{project_id}/locations/global/domains/{domain_name}` */
|
|
1217
|
-
domain:
|
|
1626
|
+
domain:
|
|
1627
|
+
string;
|
|
1218
1628
|
/** Selector specifying which fields to include in a partial response. */
|
|
1219
|
-
fields?:
|
|
1629
|
+
fields?:
|
|
1630
|
+
string;
|
|
1220
1631
|
/** 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. */
|
|
1221
|
-
key?:
|
|
1632
|
+
key?:
|
|
1633
|
+
string;
|
|
1222
1634
|
/** OAuth 2.0 token for the current user. */
|
|
1223
|
-
oauth_token?:
|
|
1635
|
+
oauth_token?:
|
|
1636
|
+
string;
|
|
1224
1637
|
/** Returns response with indentations and line breaks. */
|
|
1225
|
-
prettyPrint?:
|
|
1638
|
+
prettyPrint?:
|
|
1639
|
+
boolean;
|
|
1226
1640
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1227
|
-
quotaUser?:
|
|
1641
|
+
quotaUser?:
|
|
1642
|
+
string;
|
|
1228
1643
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1229
|
-
upload_protocol?:
|
|
1644
|
+
upload_protocol?:
|
|
1645
|
+
string;
|
|
1230
1646
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1231
|
-
uploadType?:
|
|
1647
|
+
uploadType?:
|
|
1648
|
+
string;
|
|
1232
1649
|
},
|
|
1233
1650
|
body: CheckMigrationPermissionRequest): Request<CheckMigrationPermissionResponse>;
|
|
1234
1651
|
/** Creates a Microsoft AD Domain in a given project. Operation */
|
|
1235
1652
|
create(request: {
|
|
1236
1653
|
/** V1 error format. */
|
|
1237
|
-
"$.xgafv"?:
|
|
1654
|
+
"$.xgafv"?:
|
|
1655
|
+
string;
|
|
1238
1656
|
/** OAuth access token. */
|
|
1239
|
-
access_token?:
|
|
1657
|
+
access_token?:
|
|
1658
|
+
string;
|
|
1240
1659
|
/** Data format for response. */
|
|
1241
|
-
alt?:
|
|
1660
|
+
alt?:
|
|
1661
|
+
string;
|
|
1242
1662
|
/** JSONP */
|
|
1243
|
-
callback?:
|
|
1663
|
+
callback?:
|
|
1664
|
+
string;
|
|
1244
1665
|
/**
|
|
1245
1666
|
* The fully qualified domain name. e.g. mydomain.myorganization.com, with the following restrictions: * Must contain only lowercase letters, numbers, periods and hyphens. * Must
|
|
1246
1667
|
* start with a letter. * Must contain between 2-64 characters. * Must end with a number or a letter. * Must not start with period. * Must be unique within the project. * First
|
|
1247
1668
|
* segment length (mydomain form example above) shouldn't exceed 15 chars. * The last segment cannot be fully numeric.
|
|
1248
1669
|
*/
|
|
1249
|
-
domainName?:
|
|
1670
|
+
domainName?:
|
|
1671
|
+
string;
|
|
1250
1672
|
/** Selector specifying which fields to include in a partial response. */
|
|
1251
|
-
fields?:
|
|
1673
|
+
fields?:
|
|
1674
|
+
string;
|
|
1252
1675
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1253
|
-
key?:
|
|
1676
|
+
key?:
|
|
1677
|
+
string;
|
|
1254
1678
|
/** OAuth 2.0 token for the current user. */
|
|
1255
|
-
oauth_token?:
|
|
1679
|
+
oauth_token?:
|
|
1680
|
+
string;
|
|
1256
1681
|
/** Resource project name and location using the form: `projects/{project_id}/locations/global` */
|
|
1257
|
-
parent:
|
|
1682
|
+
parent:
|
|
1683
|
+
string;
|
|
1258
1684
|
/** Returns response with indentations and line breaks. */
|
|
1259
|
-
prettyPrint?:
|
|
1685
|
+
prettyPrint?:
|
|
1686
|
+
boolean;
|
|
1260
1687
|
/** 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. */
|
|
1261
|
-
quotaUser?:
|
|
1688
|
+
quotaUser?:
|
|
1689
|
+
string;
|
|
1262
1690
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1263
|
-
upload_protocol?:
|
|
1691
|
+
upload_protocol?:
|
|
1692
|
+
string;
|
|
1264
1693
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1265
|
-
uploadType?:
|
|
1694
|
+
uploadType?:
|
|
1695
|
+
string;
|
|
1266
1696
|
/** Request body */
|
|
1267
|
-
resource:
|
|
1697
|
+
resource:
|
|
1698
|
+
Domain;
|
|
1268
1699
|
}): Request<Operation>;
|
|
1269
1700
|
create(request: {
|
|
1270
1701
|
/** V1 error format. */
|
|
1271
|
-
"$.xgafv"?:
|
|
1702
|
+
"$.xgafv"?:
|
|
1703
|
+
string;
|
|
1272
1704
|
/** OAuth access token. */
|
|
1273
|
-
access_token?:
|
|
1705
|
+
access_token?:
|
|
1706
|
+
string;
|
|
1274
1707
|
/** Data format for response. */
|
|
1275
|
-
alt?:
|
|
1708
|
+
alt?:
|
|
1709
|
+
string;
|
|
1276
1710
|
/** JSONP */
|
|
1277
|
-
callback?:
|
|
1711
|
+
callback?:
|
|
1712
|
+
string;
|
|
1278
1713
|
/**
|
|
1279
1714
|
* The fully qualified domain name. e.g. mydomain.myorganization.com, with the following restrictions: * Must contain only lowercase letters, numbers, periods and hyphens. * Must
|
|
1280
1715
|
* start with a letter. * Must contain between 2-64 characters. * Must end with a number or a letter. * Must not start with period. * Must be unique within the project. * First
|
|
1281
1716
|
* segment length (mydomain form example above) shouldn't exceed 15 chars. * The last segment cannot be fully numeric.
|
|
1282
1717
|
*/
|
|
1283
|
-
domainName?:
|
|
1718
|
+
domainName?:
|
|
1719
|
+
string;
|
|
1284
1720
|
/** Selector specifying which fields to include in a partial response. */
|
|
1285
|
-
fields?:
|
|
1721
|
+
fields?:
|
|
1722
|
+
string;
|
|
1286
1723
|
/** 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. */
|
|
1287
|
-
key?:
|
|
1724
|
+
key?:
|
|
1725
|
+
string;
|
|
1288
1726
|
/** OAuth 2.0 token for the current user. */
|
|
1289
|
-
oauth_token?:
|
|
1727
|
+
oauth_token?:
|
|
1728
|
+
string;
|
|
1290
1729
|
/** Resource project name and location using the form: `projects/{project_id}/locations/global` */
|
|
1291
|
-
parent:
|
|
1730
|
+
parent:
|
|
1731
|
+
string;
|
|
1292
1732
|
/** Returns response with indentations and line breaks. */
|
|
1293
|
-
prettyPrint?:
|
|
1733
|
+
prettyPrint?:
|
|
1734
|
+
boolean;
|
|
1294
1735
|
/** 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. */
|
|
1295
|
-
quotaUser?:
|
|
1736
|
+
quotaUser?:
|
|
1737
|
+
string;
|
|
1296
1738
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1297
|
-
upload_protocol?:
|
|
1739
|
+
upload_protocol?:
|
|
1740
|
+
string;
|
|
1298
1741
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1299
|
-
uploadType?:
|
|
1742
|
+
uploadType?:
|
|
1743
|
+
string;
|
|
1300
1744
|
},
|
|
1301
1745
|
body: Domain): Request<Operation>;
|
|
1302
1746
|
/** Deletes identified domain. Operation */
|
|
1303
1747
|
delete(request?: {
|
|
1304
1748
|
/** V1 error format. */
|
|
1305
|
-
"$.xgafv"?:
|
|
1749
|
+
"$.xgafv"?:
|
|
1750
|
+
string;
|
|
1306
1751
|
/** OAuth access token. */
|
|
1307
|
-
access_token?:
|
|
1752
|
+
access_token?:
|
|
1753
|
+
string;
|
|
1308
1754
|
/** Data format for response. */
|
|
1309
|
-
alt?:
|
|
1755
|
+
alt?:
|
|
1756
|
+
string;
|
|
1310
1757
|
/** JSONP */
|
|
1311
|
-
callback?:
|
|
1758
|
+
callback?:
|
|
1759
|
+
string;
|
|
1312
1760
|
/** Selector specifying which fields to include in a partial response. */
|
|
1313
|
-
fields?:
|
|
1761
|
+
fields?:
|
|
1762
|
+
string;
|
|
1314
1763
|
/** 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. */
|
|
1315
|
-
key?:
|
|
1764
|
+
key?:
|
|
1765
|
+
string;
|
|
1316
1766
|
/** Domain resource name using the form: `projects/{project_id}/locations/global/domains/{domain_name}` */
|
|
1317
|
-
name:
|
|
1767
|
+
name:
|
|
1768
|
+
string;
|
|
1318
1769
|
/** OAuth 2.0 token for the current user. */
|
|
1319
|
-
oauth_token?:
|
|
1770
|
+
oauth_token?:
|
|
1771
|
+
string;
|
|
1320
1772
|
/** Returns response with indentations and line breaks. */
|
|
1321
|
-
prettyPrint?:
|
|
1773
|
+
prettyPrint?:
|
|
1774
|
+
boolean;
|
|
1322
1775
|
/** 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. */
|
|
1323
|
-
quotaUser?:
|
|
1776
|
+
quotaUser?:
|
|
1777
|
+
string;
|
|
1324
1778
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1325
|
-
upload_protocol?:
|
|
1779
|
+
upload_protocol?:
|
|
1780
|
+
string;
|
|
1326
1781
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1327
|
-
uploadType?:
|
|
1782
|
+
uploadType?:
|
|
1783
|
+
string;
|
|
1328
1784
|
}): Request<Operation>;
|
|
1329
1785
|
/** Removes identified trust. Operation */
|
|
1330
1786
|
detachTrust(request: {
|
|
1331
1787
|
/** V1 error format. */
|
|
1332
|
-
"$.xgafv"?:
|
|
1788
|
+
"$.xgafv"?:
|
|
1789
|
+
string;
|
|
1333
1790
|
/** OAuth access token. */
|
|
1334
|
-
access_token?:
|
|
1791
|
+
access_token?:
|
|
1792
|
+
string;
|
|
1335
1793
|
/** Data format for response. */
|
|
1336
|
-
alt?:
|
|
1794
|
+
alt?:
|
|
1795
|
+
string;
|
|
1337
1796
|
/** JSONP */
|
|
1338
|
-
callback?:
|
|
1797
|
+
callback?:
|
|
1798
|
+
string;
|
|
1339
1799
|
/** Selector specifying which fields to include in a partial response. */
|
|
1340
|
-
fields?:
|
|
1800
|
+
fields?:
|
|
1801
|
+
string;
|
|
1341
1802
|
/** 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. */
|
|
1342
|
-
key?:
|
|
1803
|
+
key?:
|
|
1804
|
+
string;
|
|
1343
1805
|
/** The resource domain name, project name, and location using the form: `projects/{project_id}/locations/global/domains/{domain_name}` */
|
|
1344
|
-
name:
|
|
1806
|
+
name:
|
|
1807
|
+
string;
|
|
1345
1808
|
/** OAuth 2.0 token for the current user. */
|
|
1346
|
-
oauth_token?:
|
|
1809
|
+
oauth_token?:
|
|
1810
|
+
string;
|
|
1347
1811
|
/** Returns response with indentations and line breaks. */
|
|
1348
|
-
prettyPrint?:
|
|
1812
|
+
prettyPrint?:
|
|
1813
|
+
boolean;
|
|
1349
1814
|
/** 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. */
|
|
1350
|
-
quotaUser?:
|
|
1815
|
+
quotaUser?:
|
|
1816
|
+
string;
|
|
1351
1817
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1352
|
-
upload_protocol?:
|
|
1818
|
+
upload_protocol?:
|
|
1819
|
+
string;
|
|
1353
1820
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1354
|
-
uploadType?:
|
|
1821
|
+
uploadType?:
|
|
1822
|
+
string;
|
|
1355
1823
|
/** Request body */
|
|
1356
|
-
resource:
|
|
1824
|
+
resource:
|
|
1825
|
+
DetachTrustRequest;
|
|
1357
1826
|
}): Request<Operation>;
|
|
1358
1827
|
detachTrust(request: {
|
|
1359
1828
|
/** V1 error format. */
|
|
1360
|
-
"$.xgafv"?:
|
|
1829
|
+
"$.xgafv"?:
|
|
1830
|
+
string;
|
|
1361
1831
|
/** OAuth access token. */
|
|
1362
|
-
access_token?:
|
|
1832
|
+
access_token?:
|
|
1833
|
+
string;
|
|
1363
1834
|
/** Data format for response. */
|
|
1364
|
-
alt?:
|
|
1835
|
+
alt?:
|
|
1836
|
+
string;
|
|
1365
1837
|
/** JSONP */
|
|
1366
|
-
callback?:
|
|
1838
|
+
callback?:
|
|
1839
|
+
string;
|
|
1367
1840
|
/** Selector specifying which fields to include in a partial response. */
|
|
1368
|
-
fields?:
|
|
1841
|
+
fields?:
|
|
1842
|
+
string;
|
|
1369
1843
|
/** 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. */
|
|
1370
|
-
key?:
|
|
1844
|
+
key?:
|
|
1845
|
+
string;
|
|
1371
1846
|
/** The resource domain name, project name, and location using the form: `projects/{project_id}/locations/global/domains/{domain_name}` */
|
|
1372
|
-
name:
|
|
1847
|
+
name:
|
|
1848
|
+
string;
|
|
1373
1849
|
/** OAuth 2.0 token for the current user. */
|
|
1374
|
-
oauth_token?:
|
|
1850
|
+
oauth_token?:
|
|
1851
|
+
string;
|
|
1375
1852
|
/** Returns response with indentations and line breaks. */
|
|
1376
|
-
prettyPrint?:
|
|
1853
|
+
prettyPrint?:
|
|
1854
|
+
boolean;
|
|
1377
1855
|
/** 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. */
|
|
1378
|
-
quotaUser?:
|
|
1856
|
+
quotaUser?:
|
|
1857
|
+
string;
|
|
1379
1858
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1380
|
-
upload_protocol?:
|
|
1859
|
+
upload_protocol?:
|
|
1860
|
+
string;
|
|
1381
1861
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1382
|
-
uploadType?:
|
|
1862
|
+
uploadType?:
|
|
1863
|
+
string;
|
|
1383
1864
|
},
|
|
1384
1865
|
body: DetachTrustRequest): Request<Operation>;
|
|
1385
1866
|
/** Disable Domain Migration */
|
|
1386
1867
|
disableMigration(request: {
|
|
1387
1868
|
/** V1 error format. */
|
|
1388
|
-
"$.xgafv"?:
|
|
1869
|
+
"$.xgafv"?:
|
|
1870
|
+
string;
|
|
1389
1871
|
/** OAuth access token. */
|
|
1390
|
-
access_token?:
|
|
1872
|
+
access_token?:
|
|
1873
|
+
string;
|
|
1391
1874
|
/** Data format for response. */
|
|
1392
|
-
alt?:
|
|
1875
|
+
alt?:
|
|
1876
|
+
string;
|
|
1393
1877
|
/** JSONP */
|
|
1394
|
-
callback?:
|
|
1878
|
+
callback?:
|
|
1879
|
+
string;
|
|
1395
1880
|
/** Required. The domain resource name using the form: `projects/{project_id}/locations/global/domains/{domain_name}` */
|
|
1396
|
-
domain:
|
|
1881
|
+
domain:
|
|
1882
|
+
string;
|
|
1397
1883
|
/** Selector specifying which fields to include in a partial response. */
|
|
1398
|
-
fields?:
|
|
1884
|
+
fields?:
|
|
1885
|
+
string;
|
|
1399
1886
|
/** 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. */
|
|
1400
|
-
key?:
|
|
1887
|
+
key?:
|
|
1888
|
+
string;
|
|
1401
1889
|
/** OAuth 2.0 token for the current user. */
|
|
1402
|
-
oauth_token?:
|
|
1890
|
+
oauth_token?:
|
|
1891
|
+
string;
|
|
1403
1892
|
/** Returns response with indentations and line breaks. */
|
|
1404
|
-
prettyPrint?:
|
|
1893
|
+
prettyPrint?:
|
|
1894
|
+
boolean;
|
|
1405
1895
|
/** 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. */
|
|
1406
|
-
quotaUser?:
|
|
1896
|
+
quotaUser?:
|
|
1897
|
+
string;
|
|
1407
1898
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1408
|
-
upload_protocol?:
|
|
1899
|
+
upload_protocol?:
|
|
1900
|
+
string;
|
|
1409
1901
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1410
|
-
uploadType?:
|
|
1902
|
+
uploadType?:
|
|
1903
|
+
string;
|
|
1411
1904
|
/** Request body */
|
|
1412
|
-
resource:
|
|
1905
|
+
resource:
|
|
1906
|
+
DisableMigrationRequest;
|
|
1413
1907
|
}): Request<Operation>;
|
|
1414
1908
|
disableMigration(request: {
|
|
1415
1909
|
/** V1 error format. */
|
|
1416
|
-
"$.xgafv"?:
|
|
1910
|
+
"$.xgafv"?:
|
|
1911
|
+
string;
|
|
1417
1912
|
/** OAuth access token. */
|
|
1418
|
-
access_token?:
|
|
1913
|
+
access_token?:
|
|
1914
|
+
string;
|
|
1419
1915
|
/** Data format for response. */
|
|
1420
|
-
alt?:
|
|
1916
|
+
alt?:
|
|
1917
|
+
string;
|
|
1421
1918
|
/** JSONP */
|
|
1422
|
-
callback?:
|
|
1919
|
+
callback?:
|
|
1920
|
+
string;
|
|
1423
1921
|
/** Required. The domain resource name using the form: `projects/{project_id}/locations/global/domains/{domain_name}` */
|
|
1424
|
-
domain:
|
|
1922
|
+
domain:
|
|
1923
|
+
string;
|
|
1425
1924
|
/** Selector specifying which fields to include in a partial response. */
|
|
1426
|
-
fields?:
|
|
1925
|
+
fields?:
|
|
1926
|
+
string;
|
|
1427
1927
|
/** 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. */
|
|
1428
|
-
key?:
|
|
1928
|
+
key?:
|
|
1929
|
+
string;
|
|
1429
1930
|
/** OAuth 2.0 token for the current user. */
|
|
1430
|
-
oauth_token?:
|
|
1931
|
+
oauth_token?:
|
|
1932
|
+
string;
|
|
1431
1933
|
/** Returns response with indentations and line breaks. */
|
|
1432
|
-
prettyPrint?:
|
|
1934
|
+
prettyPrint?:
|
|
1935
|
+
boolean;
|
|
1433
1936
|
/** 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. */
|
|
1434
|
-
quotaUser?:
|
|
1937
|
+
quotaUser?:
|
|
1938
|
+
string;
|
|
1435
1939
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1436
|
-
upload_protocol?:
|
|
1940
|
+
upload_protocol?:
|
|
1941
|
+
string;
|
|
1437
1942
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1438
|
-
uploadType?:
|
|
1943
|
+
uploadType?:
|
|
1944
|
+
string;
|
|
1439
1945
|
},
|
|
1440
1946
|
body: DisableMigrationRequest): Request<Operation>;
|
|
1441
1947
|
/** DomainJoinMachine API joins a Compute Engine VM to the domain */
|
|
1442
1948
|
domainJoinMachine(request: {
|
|
1443
1949
|
/** V1 error format. */
|
|
1444
|
-
"$.xgafv"?:
|
|
1950
|
+
"$.xgafv"?:
|
|
1951
|
+
string;
|
|
1445
1952
|
/** OAuth access token. */
|
|
1446
|
-
access_token?:
|
|
1953
|
+
access_token?:
|
|
1954
|
+
string;
|
|
1447
1955
|
/** Data format for response. */
|
|
1448
|
-
alt?:
|
|
1956
|
+
alt?:
|
|
1957
|
+
string;
|
|
1449
1958
|
/** JSONP */
|
|
1450
|
-
callback?:
|
|
1959
|
+
callback?:
|
|
1960
|
+
string;
|
|
1451
1961
|
/** Required. The domain resource name using the form: projects/{project_id}/locations/global/domains/{domain_name} */
|
|
1452
|
-
domain:
|
|
1962
|
+
domain:
|
|
1963
|
+
string;
|
|
1453
1964
|
/** Selector specifying which fields to include in a partial response. */
|
|
1454
|
-
fields?:
|
|
1965
|
+
fields?:
|
|
1966
|
+
string;
|
|
1455
1967
|
/** 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. */
|
|
1456
|
-
key?:
|
|
1968
|
+
key?:
|
|
1969
|
+
string;
|
|
1457
1970
|
/** OAuth 2.0 token for the current user. */
|
|
1458
|
-
oauth_token?:
|
|
1971
|
+
oauth_token?:
|
|
1972
|
+
string;
|
|
1459
1973
|
/** Returns response with indentations and line breaks. */
|
|
1460
|
-
prettyPrint?:
|
|
1974
|
+
prettyPrint?:
|
|
1975
|
+
boolean;
|
|
1461
1976
|
/** 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. */
|
|
1462
|
-
quotaUser?:
|
|
1977
|
+
quotaUser?:
|
|
1978
|
+
string;
|
|
1463
1979
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1464
|
-
upload_protocol?:
|
|
1980
|
+
upload_protocol?:
|
|
1981
|
+
string;
|
|
1465
1982
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1466
|
-
uploadType?:
|
|
1983
|
+
uploadType?:
|
|
1984
|
+
string;
|
|
1467
1985
|
/** Request body */
|
|
1468
|
-
resource:
|
|
1986
|
+
resource:
|
|
1987
|
+
DomainJoinMachineRequest;
|
|
1469
1988
|
}): Request<DomainJoinMachineResponse>;
|
|
1470
1989
|
domainJoinMachine(request: {
|
|
1471
1990
|
/** V1 error format. */
|
|
1472
|
-
"$.xgafv"?:
|
|
1991
|
+
"$.xgafv"?:
|
|
1992
|
+
string;
|
|
1473
1993
|
/** OAuth access token. */
|
|
1474
|
-
access_token?:
|
|
1994
|
+
access_token?:
|
|
1995
|
+
string;
|
|
1475
1996
|
/** Data format for response. */
|
|
1476
|
-
alt?:
|
|
1997
|
+
alt?:
|
|
1998
|
+
string;
|
|
1477
1999
|
/** JSONP */
|
|
1478
|
-
callback?:
|
|
2000
|
+
callback?:
|
|
2001
|
+
string;
|
|
1479
2002
|
/** Required. The domain resource name using the form: projects/{project_id}/locations/global/domains/{domain_name} */
|
|
1480
|
-
domain:
|
|
2003
|
+
domain:
|
|
2004
|
+
string;
|
|
1481
2005
|
/** Selector specifying which fields to include in a partial response. */
|
|
1482
|
-
fields?:
|
|
2006
|
+
fields?:
|
|
2007
|
+
string;
|
|
1483
2008
|
/** 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. */
|
|
1484
|
-
key?:
|
|
2009
|
+
key?:
|
|
2010
|
+
string;
|
|
1485
2011
|
/** OAuth 2.0 token for the current user. */
|
|
1486
|
-
oauth_token?:
|
|
2012
|
+
oauth_token?:
|
|
2013
|
+
string;
|
|
1487
2014
|
/** Returns response with indentations and line breaks. */
|
|
1488
|
-
prettyPrint?:
|
|
2015
|
+
prettyPrint?:
|
|
2016
|
+
boolean;
|
|
1489
2017
|
/** 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. */
|
|
1490
|
-
quotaUser?:
|
|
2018
|
+
quotaUser?:
|
|
2019
|
+
string;
|
|
1491
2020
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1492
|
-
upload_protocol?:
|
|
2021
|
+
upload_protocol?:
|
|
2022
|
+
string;
|
|
1493
2023
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1494
|
-
uploadType?:
|
|
2024
|
+
uploadType?:
|
|
2025
|
+
string;
|
|
1495
2026
|
},
|
|
1496
2027
|
body: DomainJoinMachineRequest): Request<DomainJoinMachineResponse>;
|
|
1497
2028
|
/** Enable Domain Migration */
|
|
1498
2029
|
enableMigration(request: {
|
|
1499
2030
|
/** V1 error format. */
|
|
1500
|
-
"$.xgafv"?:
|
|
2031
|
+
"$.xgafv"?:
|
|
2032
|
+
string;
|
|
1501
2033
|
/** OAuth access token. */
|
|
1502
|
-
access_token?:
|
|
2034
|
+
access_token?:
|
|
2035
|
+
string;
|
|
1503
2036
|
/** Data format for response. */
|
|
1504
|
-
alt?:
|
|
2037
|
+
alt?:
|
|
2038
|
+
string;
|
|
1505
2039
|
/** JSONP */
|
|
1506
|
-
callback?:
|
|
2040
|
+
callback?:
|
|
2041
|
+
string;
|
|
1507
2042
|
/** Required. The domain resource name using the form: `projects/{project_id}/locations/global/domains/{domain_name}` */
|
|
1508
|
-
domain:
|
|
2043
|
+
domain:
|
|
2044
|
+
string;
|
|
1509
2045
|
/** Selector specifying which fields to include in a partial response. */
|
|
1510
|
-
fields?:
|
|
2046
|
+
fields?:
|
|
2047
|
+
string;
|
|
1511
2048
|
/** 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. */
|
|
1512
|
-
key?:
|
|
2049
|
+
key?:
|
|
2050
|
+
string;
|
|
1513
2051
|
/** OAuth 2.0 token for the current user. */
|
|
1514
|
-
oauth_token?:
|
|
2052
|
+
oauth_token?:
|
|
2053
|
+
string;
|
|
1515
2054
|
/** Returns response with indentations and line breaks. */
|
|
1516
|
-
prettyPrint?:
|
|
2055
|
+
prettyPrint?:
|
|
2056
|
+
boolean;
|
|
1517
2057
|
/** 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. */
|
|
1518
|
-
quotaUser?:
|
|
2058
|
+
quotaUser?:
|
|
2059
|
+
string;
|
|
1519
2060
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1520
|
-
upload_protocol?:
|
|
2061
|
+
upload_protocol?:
|
|
2062
|
+
string;
|
|
1521
2063
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1522
|
-
uploadType?:
|
|
2064
|
+
uploadType?:
|
|
2065
|
+
string;
|
|
1523
2066
|
/** Request body */
|
|
1524
|
-
resource:
|
|
2067
|
+
resource:
|
|
2068
|
+
EnableMigrationRequest;
|
|
1525
2069
|
}): Request<Operation>;
|
|
1526
2070
|
enableMigration(request: {
|
|
1527
2071
|
/** V1 error format. */
|
|
1528
|
-
"$.xgafv"?:
|
|
2072
|
+
"$.xgafv"?:
|
|
2073
|
+
string;
|
|
1529
2074
|
/** OAuth access token. */
|
|
1530
|
-
access_token?:
|
|
2075
|
+
access_token?:
|
|
2076
|
+
string;
|
|
1531
2077
|
/** Data format for response. */
|
|
1532
|
-
alt?:
|
|
2078
|
+
alt?:
|
|
2079
|
+
string;
|
|
1533
2080
|
/** JSONP */
|
|
1534
|
-
callback?:
|
|
2081
|
+
callback?:
|
|
2082
|
+
string;
|
|
1535
2083
|
/** Required. The domain resource name using the form: `projects/{project_id}/locations/global/domains/{domain_name}` */
|
|
1536
|
-
domain:
|
|
2084
|
+
domain:
|
|
2085
|
+
string;
|
|
1537
2086
|
/** Selector specifying which fields to include in a partial response. */
|
|
1538
|
-
fields?:
|
|
2087
|
+
fields?:
|
|
2088
|
+
string;
|
|
1539
2089
|
/** 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. */
|
|
1540
|
-
key?:
|
|
2090
|
+
key?:
|
|
2091
|
+
string;
|
|
1541
2092
|
/** OAuth 2.0 token for the current user. */
|
|
1542
|
-
oauth_token?:
|
|
2093
|
+
oauth_token?:
|
|
2094
|
+
string;
|
|
1543
2095
|
/** Returns response with indentations and line breaks. */
|
|
1544
|
-
prettyPrint?:
|
|
2096
|
+
prettyPrint?:
|
|
2097
|
+
boolean;
|
|
1545
2098
|
/** 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. */
|
|
1546
|
-
quotaUser?:
|
|
2099
|
+
quotaUser?:
|
|
2100
|
+
string;
|
|
1547
2101
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1548
|
-
upload_protocol?:
|
|
2102
|
+
upload_protocol?:
|
|
2103
|
+
string;
|
|
1549
2104
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1550
|
-
uploadType?:
|
|
2105
|
+
uploadType?:
|
|
2106
|
+
string;
|
|
1551
2107
|
},
|
|
1552
2108
|
body: EnableMigrationRequest): Request<Operation>;
|
|
1553
2109
|
/** Extend Schema for Domain */
|
|
1554
2110
|
extendSchema(request: {
|
|
1555
2111
|
/** V1 error format. */
|
|
1556
|
-
"$.xgafv"?:
|
|
2112
|
+
"$.xgafv"?:
|
|
2113
|
+
string;
|
|
1557
2114
|
/** OAuth access token. */
|
|
1558
|
-
access_token?:
|
|
2115
|
+
access_token?:
|
|
2116
|
+
string;
|
|
1559
2117
|
/** Data format for response. */
|
|
1560
|
-
alt?:
|
|
2118
|
+
alt?:
|
|
2119
|
+
string;
|
|
1561
2120
|
/** JSONP */
|
|
1562
|
-
callback?:
|
|
2121
|
+
callback?:
|
|
2122
|
+
string;
|
|
1563
2123
|
/** Required. The domain resource name using the form: `projects/{project_id}/locations/global/domains/{domain_name}` */
|
|
1564
|
-
domain:
|
|
2124
|
+
domain:
|
|
2125
|
+
string;
|
|
1565
2126
|
/** Selector specifying which fields to include in a partial response. */
|
|
1566
|
-
fields?:
|
|
2127
|
+
fields?:
|
|
2128
|
+
string;
|
|
1567
2129
|
/** 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. */
|
|
1568
|
-
key?:
|
|
2130
|
+
key?:
|
|
2131
|
+
string;
|
|
1569
2132
|
/** OAuth 2.0 token for the current user. */
|
|
1570
|
-
oauth_token?:
|
|
2133
|
+
oauth_token?:
|
|
2134
|
+
string;
|
|
1571
2135
|
/** Returns response with indentations and line breaks. */
|
|
1572
|
-
prettyPrint?:
|
|
2136
|
+
prettyPrint?:
|
|
2137
|
+
boolean;
|
|
1573
2138
|
/** 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. */
|
|
1574
|
-
quotaUser?:
|
|
2139
|
+
quotaUser?:
|
|
2140
|
+
string;
|
|
1575
2141
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1576
|
-
upload_protocol?:
|
|
2142
|
+
upload_protocol?:
|
|
2143
|
+
string;
|
|
1577
2144
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1578
|
-
uploadType?:
|
|
2145
|
+
uploadType?:
|
|
2146
|
+
string;
|
|
1579
2147
|
/** Request body */
|
|
1580
|
-
resource:
|
|
2148
|
+
resource:
|
|
2149
|
+
ExtendSchemaRequest;
|
|
1581
2150
|
}): Request<Operation>;
|
|
1582
2151
|
extendSchema(request: {
|
|
1583
2152
|
/** V1 error format. */
|
|
1584
|
-
"$.xgafv"?:
|
|
2153
|
+
"$.xgafv"?:
|
|
2154
|
+
string;
|
|
1585
2155
|
/** OAuth access token. */
|
|
1586
|
-
access_token?:
|
|
2156
|
+
access_token?:
|
|
2157
|
+
string;
|
|
1587
2158
|
/** Data format for response. */
|
|
1588
|
-
alt?:
|
|
2159
|
+
alt?:
|
|
2160
|
+
string;
|
|
1589
2161
|
/** JSONP */
|
|
1590
|
-
callback?:
|
|
2162
|
+
callback?:
|
|
2163
|
+
string;
|
|
1591
2164
|
/** Required. The domain resource name using the form: `projects/{project_id}/locations/global/domains/{domain_name}` */
|
|
1592
|
-
domain:
|
|
2165
|
+
domain:
|
|
2166
|
+
string;
|
|
1593
2167
|
/** Selector specifying which fields to include in a partial response. */
|
|
1594
|
-
fields?:
|
|
2168
|
+
fields?:
|
|
2169
|
+
string;
|
|
1595
2170
|
/** 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. */
|
|
1596
|
-
key?:
|
|
2171
|
+
key?:
|
|
2172
|
+
string;
|
|
1597
2173
|
/** OAuth 2.0 token for the current user. */
|
|
1598
|
-
oauth_token?:
|
|
2174
|
+
oauth_token?:
|
|
2175
|
+
string;
|
|
1599
2176
|
/** Returns response with indentations and line breaks. */
|
|
1600
|
-
prettyPrint?:
|
|
2177
|
+
prettyPrint?:
|
|
2178
|
+
boolean;
|
|
1601
2179
|
/** 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. */
|
|
1602
|
-
quotaUser?:
|
|
2180
|
+
quotaUser?:
|
|
2181
|
+
string;
|
|
1603
2182
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1604
|
-
upload_protocol?:
|
|
2183
|
+
upload_protocol?:
|
|
2184
|
+
string;
|
|
1605
2185
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1606
|
-
uploadType?:
|
|
2186
|
+
uploadType?:
|
|
2187
|
+
string;
|
|
1607
2188
|
},
|
|
1608
2189
|
body: ExtendSchemaRequest): Request<Operation>;
|
|
1609
2190
|
/** Gets details of a single Domain. */
|
|
1610
2191
|
get(request?: {
|
|
1611
2192
|
/** V1 error format. */
|
|
1612
|
-
"$.xgafv"?:
|
|
2193
|
+
"$.xgafv"?:
|
|
2194
|
+
string;
|
|
1613
2195
|
/** OAuth access token. */
|
|
1614
|
-
access_token?:
|
|
2196
|
+
access_token?:
|
|
2197
|
+
string;
|
|
1615
2198
|
/** Data format for response. */
|
|
1616
|
-
alt?:
|
|
2199
|
+
alt?:
|
|
2200
|
+
string;
|
|
1617
2201
|
/** JSONP */
|
|
1618
|
-
callback?:
|
|
2202
|
+
callback?:
|
|
2203
|
+
string;
|
|
1619
2204
|
/** Selector specifying which fields to include in a partial response. */
|
|
1620
|
-
fields?:
|
|
2205
|
+
fields?:
|
|
2206
|
+
string;
|
|
1621
2207
|
/** 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. */
|
|
1622
|
-
key?:
|
|
2208
|
+
key?:
|
|
2209
|
+
string;
|
|
1623
2210
|
/** Domain resource name using the form: `projects/{project_id}/locations/global/domains/{domain_name}` */
|
|
1624
|
-
name:
|
|
2211
|
+
name:
|
|
2212
|
+
string;
|
|
1625
2213
|
/** OAuth 2.0 token for the current user. */
|
|
1626
|
-
oauth_token?:
|
|
2214
|
+
oauth_token?:
|
|
2215
|
+
string;
|
|
1627
2216
|
/** Returns response with indentations and line breaks. */
|
|
1628
|
-
prettyPrint?:
|
|
2217
|
+
prettyPrint?:
|
|
2218
|
+
boolean;
|
|
1629
2219
|
/** 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. */
|
|
1630
|
-
quotaUser?:
|
|
2220
|
+
quotaUser?:
|
|
2221
|
+
string;
|
|
1631
2222
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1632
|
-
upload_protocol?:
|
|
2223
|
+
upload_protocol?:
|
|
2224
|
+
string;
|
|
1633
2225
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1634
|
-
uploadType?:
|
|
2226
|
+
uploadType?:
|
|
2227
|
+
string;
|
|
1635
2228
|
}): Request<Domain>;
|
|
1636
2229
|
/** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
|
|
1637
2230
|
getIamPolicy(request?: {
|
|
1638
2231
|
/** V1 error format. */
|
|
1639
|
-
"$.xgafv"?:
|
|
2232
|
+
"$.xgafv"?:
|
|
2233
|
+
string;
|
|
1640
2234
|
/** OAuth access token. */
|
|
1641
|
-
access_token?:
|
|
2235
|
+
access_token?:
|
|
2236
|
+
string;
|
|
1642
2237
|
/** Data format for response. */
|
|
1643
|
-
alt?:
|
|
2238
|
+
alt?:
|
|
2239
|
+
string;
|
|
1644
2240
|
/** JSONP */
|
|
1645
|
-
callback?:
|
|
2241
|
+
callback?:
|
|
2242
|
+
string;
|
|
1646
2243
|
/** Selector specifying which fields to include in a partial response. */
|
|
1647
|
-
fields?:
|
|
2244
|
+
fields?:
|
|
2245
|
+
string;
|
|
1648
2246
|
/** 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. */
|
|
1649
|
-
key?:
|
|
2247
|
+
key?:
|
|
2248
|
+
string;
|
|
1650
2249
|
/** OAuth 2.0 token for the current user. */
|
|
1651
|
-
oauth_token?:
|
|
2250
|
+
oauth_token?:
|
|
2251
|
+
string;
|
|
1652
2252
|
/**
|
|
1653
2253
|
* 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
|
|
1654
2254
|
* 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
|
|
@@ -1656,349 +2256,497 @@ declare namespace gapi.client {
|
|
|
1656
2256
|
* role bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM
|
|
1657
2257
|
* documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
|
|
1658
2258
|
*/
|
|
1659
|
-
"options.requestedPolicyVersion"?:
|
|
2259
|
+
"options.requestedPolicyVersion"?:
|
|
2260
|
+
number;
|
|
1660
2261
|
/** Returns response with indentations and line breaks. */
|
|
1661
|
-
prettyPrint?:
|
|
2262
|
+
prettyPrint?:
|
|
2263
|
+
boolean;
|
|
1662
2264
|
/** 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. */
|
|
1663
|
-
quotaUser?:
|
|
2265
|
+
quotaUser?:
|
|
2266
|
+
string;
|
|
1664
2267
|
/**
|
|
1665
2268
|
* 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
|
|
1666
2269
|
* field.
|
|
1667
2270
|
*/
|
|
1668
|
-
resource:
|
|
2271
|
+
resource:
|
|
2272
|
+
string;
|
|
1669
2273
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1670
|
-
upload_protocol?:
|
|
2274
|
+
upload_protocol?:
|
|
2275
|
+
string;
|
|
1671
2276
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1672
|
-
uploadType?:
|
|
2277
|
+
uploadType?:
|
|
2278
|
+
string;
|
|
1673
2279
|
}): Request<Policy>;
|
|
1674
2280
|
/** Gets the domain ldaps settings. */
|
|
1675
2281
|
getLdapssettings(request?: {
|
|
1676
2282
|
/** V1 error format. */
|
|
1677
|
-
"$.xgafv"?:
|
|
2283
|
+
"$.xgafv"?:
|
|
2284
|
+
string;
|
|
1678
2285
|
/** OAuth access token. */
|
|
1679
|
-
access_token?:
|
|
2286
|
+
access_token?:
|
|
2287
|
+
string;
|
|
1680
2288
|
/** Data format for response. */
|
|
1681
|
-
alt?:
|
|
2289
|
+
alt?:
|
|
2290
|
+
string;
|
|
1682
2291
|
/** JSONP */
|
|
1683
|
-
callback?:
|
|
2292
|
+
callback?:
|
|
2293
|
+
string;
|
|
1684
2294
|
/** Selector specifying which fields to include in a partial response. */
|
|
1685
|
-
fields?:
|
|
2295
|
+
fields?:
|
|
2296
|
+
string;
|
|
1686
2297
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1687
|
-
key?:
|
|
2298
|
+
key?:
|
|
2299
|
+
string;
|
|
1688
2300
|
/** Required. The domain resource name using the form: `projects/{project_id}/locations/global/domains/{domain_name}` */
|
|
1689
|
-
name:
|
|
2301
|
+
name:
|
|
2302
|
+
string;
|
|
1690
2303
|
/** OAuth 2.0 token for the current user. */
|
|
1691
|
-
oauth_token?:
|
|
2304
|
+
oauth_token?:
|
|
2305
|
+
string;
|
|
1692
2306
|
/** Returns response with indentations and line breaks. */
|
|
1693
|
-
prettyPrint?:
|
|
2307
|
+
prettyPrint?:
|
|
2308
|
+
boolean;
|
|
1694
2309
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1695
|
-
quotaUser?:
|
|
2310
|
+
quotaUser?:
|
|
2311
|
+
string;
|
|
1696
2312
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1697
|
-
upload_protocol?:
|
|
2313
|
+
upload_protocol?:
|
|
2314
|
+
string;
|
|
1698
2315
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1699
|
-
uploadType?:
|
|
2316
|
+
uploadType?:
|
|
2317
|
+
string;
|
|
1700
2318
|
}): Request<LDAPSSettings>;
|
|
1701
2319
|
/** Lists Domains in a given project. */
|
|
1702
2320
|
list(request?: {
|
|
1703
2321
|
/** V1 error format. */
|
|
1704
|
-
"$.xgafv"?:
|
|
2322
|
+
"$.xgafv"?:
|
|
2323
|
+
string;
|
|
1705
2324
|
/** OAuth access token. */
|
|
1706
|
-
access_token?:
|
|
2325
|
+
access_token?:
|
|
2326
|
+
string;
|
|
1707
2327
|
/** Data format for response. */
|
|
1708
|
-
alt?:
|
|
2328
|
+
alt?:
|
|
2329
|
+
string;
|
|
1709
2330
|
/** JSONP */
|
|
1710
|
-
callback?:
|
|
2331
|
+
callback?:
|
|
2332
|
+
string;
|
|
1711
2333
|
/** Selector specifying which fields to include in a partial response. */
|
|
1712
|
-
fields?:
|
|
2334
|
+
fields?:
|
|
2335
|
+
string;
|
|
1713
2336
|
/** Optional. Filter specifying constraints of a list operation. For example, `Domain.fqdn="mydomain.myorginization"`. */
|
|
1714
|
-
filter?:
|
|
2337
|
+
filter?:
|
|
2338
|
+
string;
|
|
1715
2339
|
/** 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. */
|
|
1716
|
-
key?:
|
|
2340
|
+
key?:
|
|
2341
|
+
string;
|
|
1717
2342
|
/** OAuth 2.0 token for the current user. */
|
|
1718
|
-
oauth_token?:
|
|
2343
|
+
oauth_token?:
|
|
2344
|
+
string;
|
|
1719
2345
|
/** Optional. Specifies the ordering of results following syntax at https://cloud.google.com/apis/design/design_patterns#sorting_order. */
|
|
1720
|
-
orderBy?:
|
|
2346
|
+
orderBy?:
|
|
2347
|
+
string;
|
|
1721
2348
|
/**
|
|
1722
2349
|
* If not specified, a default value of 1000 will be used by the service. Regardless of the page_size value, the response may include a partial list and a caller should only rely
|
|
1723
2350
|
* on response's next_page_token to determine if there are more instances left to be queried.
|
|
1724
2351
|
*/
|
|
1725
|
-
pageSize?:
|
|
2352
|
+
pageSize?:
|
|
2353
|
+
number;
|
|
1726
2354
|
/** The next_page_token value returned from a previous List request, if any. */
|
|
1727
|
-
pageToken?:
|
|
2355
|
+
pageToken?:
|
|
2356
|
+
string;
|
|
1728
2357
|
/** Required. The resource name of the domain location using the form: `projects/{project_id}/locations/global` */
|
|
1729
|
-
parent:
|
|
2358
|
+
parent:
|
|
2359
|
+
string;
|
|
1730
2360
|
/** Returns response with indentations and line breaks. */
|
|
1731
|
-
prettyPrint?:
|
|
2361
|
+
prettyPrint?:
|
|
2362
|
+
boolean;
|
|
1732
2363
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1733
|
-
quotaUser?:
|
|
2364
|
+
quotaUser?:
|
|
2365
|
+
string;
|
|
1734
2366
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1735
|
-
upload_protocol?:
|
|
2367
|
+
upload_protocol?:
|
|
2368
|
+
string;
|
|
1736
2369
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1737
|
-
uploadType?:
|
|
2370
|
+
uploadType?:
|
|
2371
|
+
string;
|
|
1738
2372
|
}): Request<ListDomainsResponse>;
|
|
1739
2373
|
/** Updates the metadata and configuration of a specified domain. Operation */
|
|
1740
2374
|
patch(request: {
|
|
1741
2375
|
/** V1 error format. */
|
|
1742
|
-
"$.xgafv"?:
|
|
2376
|
+
"$.xgafv"?:
|
|
2377
|
+
string;
|
|
1743
2378
|
/** OAuth access token. */
|
|
1744
|
-
access_token?:
|
|
2379
|
+
access_token?:
|
|
2380
|
+
string;
|
|
1745
2381
|
/** Data format for response. */
|
|
1746
|
-
alt?:
|
|
2382
|
+
alt?:
|
|
2383
|
+
string;
|
|
1747
2384
|
/** JSONP */
|
|
1748
|
-
callback?:
|
|
2385
|
+
callback?:
|
|
2386
|
+
string;
|
|
1749
2387
|
/** Selector specifying which fields to include in a partial response. */
|
|
1750
|
-
fields?:
|
|
2388
|
+
fields?:
|
|
2389
|
+
string;
|
|
1751
2390
|
/** 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. */
|
|
1752
|
-
key?:
|
|
2391
|
+
key?:
|
|
2392
|
+
string;
|
|
1753
2393
|
/** Output only. Unique name of the domain in this scope including projects and location using the form: `projects/{project_id}/locations/global/domains/{domain_name}`. */
|
|
1754
|
-
name:
|
|
2394
|
+
name:
|
|
2395
|
+
string;
|
|
1755
2396
|
/** OAuth 2.0 token for the current user. */
|
|
1756
|
-
oauth_token?:
|
|
2397
|
+
oauth_token?:
|
|
2398
|
+
string;
|
|
1757
2399
|
/** Returns response with indentations and line breaks. */
|
|
1758
|
-
prettyPrint?:
|
|
2400
|
+
prettyPrint?:
|
|
2401
|
+
boolean;
|
|
1759
2402
|
/** 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. */
|
|
1760
|
-
quotaUser?:
|
|
2403
|
+
quotaUser?:
|
|
2404
|
+
string;
|
|
1761
2405
|
/**
|
|
1762
2406
|
* Mask of fields to update. At least one path must be supplied in this field. The elements of the repeated paths field may only include these fields from Domain: * `labels` *
|
|
1763
2407
|
* `locations` * `authorized_networks` * `audit_logs_enabled`
|
|
1764
2408
|
*/
|
|
1765
|
-
updateMask?:
|
|
2409
|
+
updateMask?:
|
|
2410
|
+
string;
|
|
1766
2411
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1767
|
-
upload_protocol?:
|
|
2412
|
+
upload_protocol?:
|
|
2413
|
+
string;
|
|
1768
2414
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1769
|
-
uploadType?:
|
|
2415
|
+
uploadType?:
|
|
2416
|
+
string;
|
|
1770
2417
|
/** Request body */
|
|
1771
|
-
resource:
|
|
2418
|
+
resource:
|
|
2419
|
+
Domain;
|
|
1772
2420
|
}): Request<Operation>;
|
|
1773
2421
|
patch(request: {
|
|
1774
2422
|
/** V1 error format. */
|
|
1775
|
-
"$.xgafv"?:
|
|
2423
|
+
"$.xgafv"?:
|
|
2424
|
+
string;
|
|
1776
2425
|
/** OAuth access token. */
|
|
1777
|
-
access_token?:
|
|
2426
|
+
access_token?:
|
|
2427
|
+
string;
|
|
1778
2428
|
/** Data format for response. */
|
|
1779
|
-
alt?:
|
|
2429
|
+
alt?:
|
|
2430
|
+
string;
|
|
1780
2431
|
/** JSONP */
|
|
1781
|
-
callback?:
|
|
2432
|
+
callback?:
|
|
2433
|
+
string;
|
|
1782
2434
|
/** Selector specifying which fields to include in a partial response. */
|
|
1783
|
-
fields?:
|
|
2435
|
+
fields?:
|
|
2436
|
+
string;
|
|
1784
2437
|
/** 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. */
|
|
1785
|
-
key?:
|
|
2438
|
+
key?:
|
|
2439
|
+
string;
|
|
1786
2440
|
/** Output only. Unique name of the domain in this scope including projects and location using the form: `projects/{project_id}/locations/global/domains/{domain_name}`. */
|
|
1787
|
-
name:
|
|
2441
|
+
name:
|
|
2442
|
+
string;
|
|
1788
2443
|
/** OAuth 2.0 token for the current user. */
|
|
1789
|
-
oauth_token?:
|
|
2444
|
+
oauth_token?:
|
|
2445
|
+
string;
|
|
1790
2446
|
/** Returns response with indentations and line breaks. */
|
|
1791
|
-
prettyPrint?:
|
|
2447
|
+
prettyPrint?:
|
|
2448
|
+
boolean;
|
|
1792
2449
|
/** 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. */
|
|
1793
|
-
quotaUser?:
|
|
2450
|
+
quotaUser?:
|
|
2451
|
+
string;
|
|
1794
2452
|
/**
|
|
1795
2453
|
* Mask of fields to update. At least one path must be supplied in this field. The elements of the repeated paths field may only include these fields from Domain: * `labels` *
|
|
1796
2454
|
* `locations` * `authorized_networks` * `audit_logs_enabled`
|
|
1797
2455
|
*/
|
|
1798
|
-
updateMask?:
|
|
2456
|
+
updateMask?:
|
|
2457
|
+
string;
|
|
1799
2458
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1800
|
-
upload_protocol?:
|
|
2459
|
+
upload_protocol?:
|
|
2460
|
+
string;
|
|
1801
2461
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1802
|
-
uploadType?:
|
|
2462
|
+
uploadType?:
|
|
2463
|
+
string;
|
|
1803
2464
|
},
|
|
1804
2465
|
body: Domain): Request<Operation>;
|
|
1805
2466
|
/** Updates the dns conditional forwarder. Operation */
|
|
1806
2467
|
reconfigureTrust(request: {
|
|
1807
2468
|
/** V1 error format. */
|
|
1808
|
-
"$.xgafv"?:
|
|
2469
|
+
"$.xgafv"?:
|
|
2470
|
+
string;
|
|
1809
2471
|
/** OAuth access token. */
|
|
1810
|
-
access_token?:
|
|
2472
|
+
access_token?:
|
|
2473
|
+
string;
|
|
1811
2474
|
/** Data format for response. */
|
|
1812
|
-
alt?:
|
|
2475
|
+
alt?:
|
|
2476
|
+
string;
|
|
1813
2477
|
/** JSONP */
|
|
1814
|
-
callback?:
|
|
2478
|
+
callback?:
|
|
2479
|
+
string;
|
|
1815
2480
|
/** Selector specifying which fields to include in a partial response. */
|
|
1816
|
-
fields?:
|
|
2481
|
+
fields?:
|
|
2482
|
+
string;
|
|
1817
2483
|
/** 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. */
|
|
1818
|
-
key?:
|
|
2484
|
+
key?:
|
|
2485
|
+
string;
|
|
1819
2486
|
/** The resource domain name, project name and location using the form: `projects/{project_id}/locations/global/domains/{domain_name}` */
|
|
1820
|
-
name:
|
|
2487
|
+
name:
|
|
2488
|
+
string;
|
|
1821
2489
|
/** OAuth 2.0 token for the current user. */
|
|
1822
|
-
oauth_token?:
|
|
2490
|
+
oauth_token?:
|
|
2491
|
+
string;
|
|
1823
2492
|
/** Returns response with indentations and line breaks. */
|
|
1824
|
-
prettyPrint?:
|
|
2493
|
+
prettyPrint?:
|
|
2494
|
+
boolean;
|
|
1825
2495
|
/** 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. */
|
|
1826
|
-
quotaUser?:
|
|
2496
|
+
quotaUser?:
|
|
2497
|
+
string;
|
|
1827
2498
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1828
|
-
upload_protocol?:
|
|
2499
|
+
upload_protocol?:
|
|
2500
|
+
string;
|
|
1829
2501
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1830
|
-
uploadType?:
|
|
2502
|
+
uploadType?:
|
|
2503
|
+
string;
|
|
1831
2504
|
/** Request body */
|
|
1832
|
-
resource:
|
|
2505
|
+
resource:
|
|
2506
|
+
ReconfigureTrustRequest;
|
|
1833
2507
|
}): Request<Operation>;
|
|
1834
2508
|
reconfigureTrust(request: {
|
|
1835
2509
|
/** V1 error format. */
|
|
1836
|
-
"$.xgafv"?:
|
|
2510
|
+
"$.xgafv"?:
|
|
2511
|
+
string;
|
|
1837
2512
|
/** OAuth access token. */
|
|
1838
|
-
access_token?:
|
|
2513
|
+
access_token?:
|
|
2514
|
+
string;
|
|
1839
2515
|
/** Data format for response. */
|
|
1840
|
-
alt?:
|
|
2516
|
+
alt?:
|
|
2517
|
+
string;
|
|
1841
2518
|
/** JSONP */
|
|
1842
|
-
callback?:
|
|
2519
|
+
callback?:
|
|
2520
|
+
string;
|
|
1843
2521
|
/** Selector specifying which fields to include in a partial response. */
|
|
1844
|
-
fields?:
|
|
2522
|
+
fields?:
|
|
2523
|
+
string;
|
|
1845
2524
|
/** 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. */
|
|
1846
|
-
key?:
|
|
2525
|
+
key?:
|
|
2526
|
+
string;
|
|
1847
2527
|
/** The resource domain name, project name and location using the form: `projects/{project_id}/locations/global/domains/{domain_name}` */
|
|
1848
|
-
name:
|
|
2528
|
+
name:
|
|
2529
|
+
string;
|
|
1849
2530
|
/** OAuth 2.0 token for the current user. */
|
|
1850
|
-
oauth_token?:
|
|
2531
|
+
oauth_token?:
|
|
2532
|
+
string;
|
|
1851
2533
|
/** Returns response with indentations and line breaks. */
|
|
1852
|
-
prettyPrint?:
|
|
2534
|
+
prettyPrint?:
|
|
2535
|
+
boolean;
|
|
1853
2536
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1854
|
-
quotaUser?:
|
|
2537
|
+
quotaUser?:
|
|
2538
|
+
string;
|
|
1855
2539
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1856
|
-
upload_protocol?:
|
|
2540
|
+
upload_protocol?:
|
|
2541
|
+
string;
|
|
1857
2542
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1858
|
-
uploadType?:
|
|
2543
|
+
uploadType?:
|
|
2544
|
+
string;
|
|
1859
2545
|
},
|
|
1860
2546
|
body: ReconfigureTrustRequest): Request<Operation>;
|
|
1861
2547
|
/** Resets managed identities admin password identified by managed_identities_admin_name */
|
|
1862
2548
|
resetAdminPassword(request: {
|
|
1863
2549
|
/** V1 error format. */
|
|
1864
|
-
"$.xgafv"?:
|
|
2550
|
+
"$.xgafv"?:
|
|
2551
|
+
string;
|
|
1865
2552
|
/** OAuth access token. */
|
|
1866
|
-
access_token?:
|
|
2553
|
+
access_token?:
|
|
2554
|
+
string;
|
|
1867
2555
|
/** Data format for response. */
|
|
1868
|
-
alt?:
|
|
2556
|
+
alt?:
|
|
2557
|
+
string;
|
|
1869
2558
|
/** JSONP */
|
|
1870
|
-
callback?:
|
|
2559
|
+
callback?:
|
|
2560
|
+
string;
|
|
1871
2561
|
/** Selector specifying which fields to include in a partial response. */
|
|
1872
|
-
fields?:
|
|
2562
|
+
fields?:
|
|
2563
|
+
string;
|
|
1873
2564
|
/** 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. */
|
|
1874
|
-
key?:
|
|
2565
|
+
key?:
|
|
2566
|
+
string;
|
|
1875
2567
|
/** The domain resource name using the form: `projects/{project_id}/locations/global/domains/{domain_name}` */
|
|
1876
|
-
name:
|
|
2568
|
+
name:
|
|
2569
|
+
string;
|
|
1877
2570
|
/** OAuth 2.0 token for the current user. */
|
|
1878
|
-
oauth_token?:
|
|
2571
|
+
oauth_token?:
|
|
2572
|
+
string;
|
|
1879
2573
|
/** Returns response with indentations and line breaks. */
|
|
1880
|
-
prettyPrint?:
|
|
2574
|
+
prettyPrint?:
|
|
2575
|
+
boolean;
|
|
1881
2576
|
/** 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. */
|
|
1882
|
-
quotaUser?:
|
|
2577
|
+
quotaUser?:
|
|
2578
|
+
string;
|
|
1883
2579
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1884
|
-
upload_protocol?:
|
|
2580
|
+
upload_protocol?:
|
|
2581
|
+
string;
|
|
1885
2582
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1886
|
-
uploadType?:
|
|
2583
|
+
uploadType?:
|
|
2584
|
+
string;
|
|
1887
2585
|
/** Request body */
|
|
1888
|
-
resource:
|
|
2586
|
+
resource:
|
|
2587
|
+
ResetAdminPasswordRequest;
|
|
1889
2588
|
}): Request<ResetAdminPasswordResponse>;
|
|
1890
2589
|
resetAdminPassword(request: {
|
|
1891
2590
|
/** V1 error format. */
|
|
1892
|
-
"$.xgafv"?:
|
|
2591
|
+
"$.xgafv"?:
|
|
2592
|
+
string;
|
|
1893
2593
|
/** OAuth access token. */
|
|
1894
|
-
access_token?:
|
|
2594
|
+
access_token?:
|
|
2595
|
+
string;
|
|
1895
2596
|
/** Data format for response. */
|
|
1896
|
-
alt?:
|
|
2597
|
+
alt?:
|
|
2598
|
+
string;
|
|
1897
2599
|
/** JSONP */
|
|
1898
|
-
callback?:
|
|
2600
|
+
callback?:
|
|
2601
|
+
string;
|
|
1899
2602
|
/** Selector specifying which fields to include in a partial response. */
|
|
1900
|
-
fields?:
|
|
2603
|
+
fields?:
|
|
2604
|
+
string;
|
|
1901
2605
|
/** 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. */
|
|
1902
|
-
key?:
|
|
2606
|
+
key?:
|
|
2607
|
+
string;
|
|
1903
2608
|
/** The domain resource name using the form: `projects/{project_id}/locations/global/domains/{domain_name}` */
|
|
1904
|
-
name:
|
|
2609
|
+
name:
|
|
2610
|
+
string;
|
|
1905
2611
|
/** OAuth 2.0 token for the current user. */
|
|
1906
|
-
oauth_token?:
|
|
2612
|
+
oauth_token?:
|
|
2613
|
+
string;
|
|
1907
2614
|
/** Returns response with indentations and line breaks. */
|
|
1908
|
-
prettyPrint?:
|
|
2615
|
+
prettyPrint?:
|
|
2616
|
+
boolean;
|
|
1909
2617
|
/** 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. */
|
|
1910
|
-
quotaUser?:
|
|
2618
|
+
quotaUser?:
|
|
2619
|
+
string;
|
|
1911
2620
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1912
|
-
upload_protocol?:
|
|
2621
|
+
upload_protocol?:
|
|
2622
|
+
string;
|
|
1913
2623
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1914
|
-
uploadType?:
|
|
2624
|
+
uploadType?:
|
|
2625
|
+
string;
|
|
1915
2626
|
},
|
|
1916
2627
|
body: ResetAdminPasswordRequest): Request<ResetAdminPasswordResponse>;
|
|
1917
2628
|
/** RestoreDomain restores domain backup mentioned in the RestoreDomainRequest */
|
|
1918
2629
|
restore(request: {
|
|
1919
2630
|
/** V1 error format. */
|
|
1920
|
-
"$.xgafv"?:
|
|
2631
|
+
"$.xgafv"?:
|
|
2632
|
+
string;
|
|
1921
2633
|
/** OAuth access token. */
|
|
1922
|
-
access_token?:
|
|
2634
|
+
access_token?:
|
|
2635
|
+
string;
|
|
1923
2636
|
/** Data format for response. */
|
|
1924
|
-
alt?:
|
|
2637
|
+
alt?:
|
|
2638
|
+
string;
|
|
1925
2639
|
/** JSONP */
|
|
1926
|
-
callback?:
|
|
2640
|
+
callback?:
|
|
2641
|
+
string;
|
|
1927
2642
|
/** Selector specifying which fields to include in a partial response. */
|
|
1928
|
-
fields?:
|
|
2643
|
+
fields?:
|
|
2644
|
+
string;
|
|
1929
2645
|
/** 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. */
|
|
1930
|
-
key?:
|
|
2646
|
+
key?:
|
|
2647
|
+
string;
|
|
1931
2648
|
/** Required. resource name for the domain to which the backup belongs */
|
|
1932
|
-
name:
|
|
2649
|
+
name:
|
|
2650
|
+
string;
|
|
1933
2651
|
/** OAuth 2.0 token for the current user. */
|
|
1934
|
-
oauth_token?:
|
|
2652
|
+
oauth_token?:
|
|
2653
|
+
string;
|
|
1935
2654
|
/** Returns response with indentations and line breaks. */
|
|
1936
|
-
prettyPrint?:
|
|
2655
|
+
prettyPrint?:
|
|
2656
|
+
boolean;
|
|
1937
2657
|
/** 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. */
|
|
1938
|
-
quotaUser?:
|
|
2658
|
+
quotaUser?:
|
|
2659
|
+
string;
|
|
1939
2660
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1940
|
-
upload_protocol?:
|
|
2661
|
+
upload_protocol?:
|
|
2662
|
+
string;
|
|
1941
2663
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1942
|
-
uploadType?:
|
|
2664
|
+
uploadType?:
|
|
2665
|
+
string;
|
|
1943
2666
|
/** Request body */
|
|
1944
|
-
resource:
|
|
2667
|
+
resource:
|
|
2668
|
+
RestoreDomainRequest;
|
|
1945
2669
|
}): Request<Operation>;
|
|
1946
2670
|
restore(request: {
|
|
1947
2671
|
/** V1 error format. */
|
|
1948
|
-
"$.xgafv"?:
|
|
2672
|
+
"$.xgafv"?:
|
|
2673
|
+
string;
|
|
1949
2674
|
/** OAuth access token. */
|
|
1950
|
-
access_token?:
|
|
2675
|
+
access_token?:
|
|
2676
|
+
string;
|
|
1951
2677
|
/** Data format for response. */
|
|
1952
|
-
alt?:
|
|
2678
|
+
alt?:
|
|
2679
|
+
string;
|
|
1953
2680
|
/** JSONP */
|
|
1954
|
-
callback?:
|
|
2681
|
+
callback?:
|
|
2682
|
+
string;
|
|
1955
2683
|
/** Selector specifying which fields to include in a partial response. */
|
|
1956
|
-
fields?:
|
|
2684
|
+
fields?:
|
|
2685
|
+
string;
|
|
1957
2686
|
/** 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. */
|
|
1958
|
-
key?:
|
|
2687
|
+
key?:
|
|
2688
|
+
string;
|
|
1959
2689
|
/** Required. resource name for the domain to which the backup belongs */
|
|
1960
|
-
name:
|
|
2690
|
+
name:
|
|
2691
|
+
string;
|
|
1961
2692
|
/** OAuth 2.0 token for the current user. */
|
|
1962
|
-
oauth_token?:
|
|
2693
|
+
oauth_token?:
|
|
2694
|
+
string;
|
|
1963
2695
|
/** Returns response with indentations and line breaks. */
|
|
1964
|
-
prettyPrint?:
|
|
2696
|
+
prettyPrint?:
|
|
2697
|
+
boolean;
|
|
1965
2698
|
/** 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. */
|
|
1966
|
-
quotaUser?:
|
|
2699
|
+
quotaUser?:
|
|
2700
|
+
string;
|
|
1967
2701
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1968
|
-
upload_protocol?:
|
|
2702
|
+
upload_protocol?:
|
|
2703
|
+
string;
|
|
1969
2704
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1970
|
-
uploadType?:
|
|
2705
|
+
uploadType?:
|
|
2706
|
+
string;
|
|
1971
2707
|
},
|
|
1972
2708
|
body: RestoreDomainRequest): Request<Operation>;
|
|
1973
2709
|
/** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
|
|
1974
2710
|
setIamPolicy(request: {
|
|
1975
2711
|
/** V1 error format. */
|
|
1976
|
-
"$.xgafv"?:
|
|
2712
|
+
"$.xgafv"?:
|
|
2713
|
+
string;
|
|
1977
2714
|
/** OAuth access token. */
|
|
1978
|
-
access_token?:
|
|
2715
|
+
access_token?:
|
|
2716
|
+
string;
|
|
1979
2717
|
/** Data format for response. */
|
|
1980
|
-
alt?:
|
|
2718
|
+
alt?:
|
|
2719
|
+
string;
|
|
1981
2720
|
/** JSONP */
|
|
1982
|
-
callback?:
|
|
2721
|
+
callback?:
|
|
2722
|
+
string;
|
|
1983
2723
|
/** Selector specifying which fields to include in a partial response. */
|
|
1984
|
-
fields?:
|
|
2724
|
+
fields?:
|
|
2725
|
+
string;
|
|
1985
2726
|
/** 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. */
|
|
1986
|
-
key?:
|
|
2727
|
+
key?:
|
|
2728
|
+
string;
|
|
1987
2729
|
/** OAuth 2.0 token for the current user. */
|
|
1988
|
-
oauth_token?:
|
|
2730
|
+
oauth_token?:
|
|
2731
|
+
string;
|
|
1989
2732
|
/** Returns response with indentations and line breaks. */
|
|
1990
|
-
prettyPrint?:
|
|
2733
|
+
prettyPrint?:
|
|
2734
|
+
boolean;
|
|
1991
2735
|
/** 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. */
|
|
1992
|
-
quotaUser?:
|
|
2736
|
+
quotaUser?:
|
|
2737
|
+
string;
|
|
1993
2738
|
/**
|
|
1994
2739
|
* 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
|
|
1995
2740
|
* field.
|
|
1996
2741
|
*/
|
|
1997
|
-
resource:
|
|
2742
|
+
resource:
|
|
2743
|
+
string;
|
|
1998
2744
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1999
|
-
upload_protocol?:
|
|
2745
|
+
upload_protocol?:
|
|
2746
|
+
string;
|
|
2000
2747
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2001
|
-
uploadType?:
|
|
2748
|
+
uploadType?:
|
|
2749
|
+
string;
|
|
2002
2750
|
},
|
|
2003
2751
|
body: SetIamPolicyRequest): Request<Policy>;
|
|
2004
2752
|
/**
|
|
@@ -2007,158 +2755,224 @@ declare namespace gapi.client {
|
|
|
2007
2755
|
*/
|
|
2008
2756
|
testIamPermissions(request: {
|
|
2009
2757
|
/** V1 error format. */
|
|
2010
|
-
"$.xgafv"?:
|
|
2758
|
+
"$.xgafv"?:
|
|
2759
|
+
string;
|
|
2011
2760
|
/** OAuth access token. */
|
|
2012
|
-
access_token?:
|
|
2761
|
+
access_token?:
|
|
2762
|
+
string;
|
|
2013
2763
|
/** Data format for response. */
|
|
2014
|
-
alt?:
|
|
2764
|
+
alt?:
|
|
2765
|
+
string;
|
|
2015
2766
|
/** JSONP */
|
|
2016
|
-
callback?:
|
|
2767
|
+
callback?:
|
|
2768
|
+
string;
|
|
2017
2769
|
/** Selector specifying which fields to include in a partial response. */
|
|
2018
|
-
fields?:
|
|
2770
|
+
fields?:
|
|
2771
|
+
string;
|
|
2019
2772
|
/** 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. */
|
|
2020
|
-
key?:
|
|
2773
|
+
key?:
|
|
2774
|
+
string;
|
|
2021
2775
|
/** OAuth 2.0 token for the current user. */
|
|
2022
|
-
oauth_token?:
|
|
2776
|
+
oauth_token?:
|
|
2777
|
+
string;
|
|
2023
2778
|
/** Returns response with indentations and line breaks. */
|
|
2024
|
-
prettyPrint?:
|
|
2779
|
+
prettyPrint?:
|
|
2780
|
+
boolean;
|
|
2025
2781
|
/** 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. */
|
|
2026
|
-
quotaUser?:
|
|
2782
|
+
quotaUser?:
|
|
2783
|
+
string;
|
|
2027
2784
|
/**
|
|
2028
2785
|
* 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
|
|
2029
2786
|
* this field.
|
|
2030
2787
|
*/
|
|
2031
|
-
resource:
|
|
2788
|
+
resource:
|
|
2789
|
+
string;
|
|
2032
2790
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2033
|
-
upload_protocol?:
|
|
2791
|
+
upload_protocol?:
|
|
2792
|
+
string;
|
|
2034
2793
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2035
|
-
uploadType?:
|
|
2794
|
+
uploadType?:
|
|
2795
|
+
string;
|
|
2036
2796
|
},
|
|
2037
2797
|
body: TestIamPermissionsRequest): Request<TestIamPermissionsResponse>;
|
|
2038
2798
|
/** Patches a single ldaps settings. */
|
|
2039
2799
|
updateLdapssettings(request: {
|
|
2040
2800
|
/** V1 error format. */
|
|
2041
|
-
"$.xgafv"?:
|
|
2801
|
+
"$.xgafv"?:
|
|
2802
|
+
string;
|
|
2042
2803
|
/** OAuth access token. */
|
|
2043
|
-
access_token?:
|
|
2804
|
+
access_token?:
|
|
2805
|
+
string;
|
|
2044
2806
|
/** Data format for response. */
|
|
2045
|
-
alt?:
|
|
2807
|
+
alt?:
|
|
2808
|
+
string;
|
|
2046
2809
|
/** JSONP */
|
|
2047
|
-
callback?:
|
|
2810
|
+
callback?:
|
|
2811
|
+
string;
|
|
2048
2812
|
/** Selector specifying which fields to include in a partial response. */
|
|
2049
|
-
fields?:
|
|
2813
|
+
fields?:
|
|
2814
|
+
string;
|
|
2050
2815
|
/** 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. */
|
|
2051
|
-
key?:
|
|
2816
|
+
key?:
|
|
2817
|
+
string;
|
|
2052
2818
|
/** The resource name of the LDAPS settings. Uses the form: `projects/{project}/locations/{location}/domains/{domain}`. */
|
|
2053
|
-
name:
|
|
2819
|
+
name:
|
|
2820
|
+
string;
|
|
2054
2821
|
/** OAuth 2.0 token for the current user. */
|
|
2055
|
-
oauth_token?:
|
|
2822
|
+
oauth_token?:
|
|
2823
|
+
string;
|
|
2056
2824
|
/** Returns response with indentations and line breaks. */
|
|
2057
|
-
prettyPrint?:
|
|
2825
|
+
prettyPrint?:
|
|
2826
|
+
boolean;
|
|
2058
2827
|
/** 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. */
|
|
2059
|
-
quotaUser?:
|
|
2828
|
+
quotaUser?:
|
|
2829
|
+
string;
|
|
2060
2830
|
/**
|
|
2061
2831
|
* Required. Mask of fields to update. At least one path must be supplied in this field. For the `FieldMask` definition, see
|
|
2062
2832
|
* https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask
|
|
2063
2833
|
*/
|
|
2064
|
-
updateMask?:
|
|
2834
|
+
updateMask?:
|
|
2835
|
+
string;
|
|
2065
2836
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2066
|
-
upload_protocol?:
|
|
2837
|
+
upload_protocol?:
|
|
2838
|
+
string;
|
|
2067
2839
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2068
|
-
uploadType?:
|
|
2840
|
+
uploadType?:
|
|
2841
|
+
string;
|
|
2069
2842
|
/** Request body */
|
|
2070
|
-
resource:
|
|
2843
|
+
resource:
|
|
2844
|
+
LDAPSSettings;
|
|
2071
2845
|
}): Request<Operation>;
|
|
2072
2846
|
updateLdapssettings(request: {
|
|
2073
2847
|
/** V1 error format. */
|
|
2074
|
-
"$.xgafv"?:
|
|
2848
|
+
"$.xgafv"?:
|
|
2849
|
+
string;
|
|
2075
2850
|
/** OAuth access token. */
|
|
2076
|
-
access_token?:
|
|
2851
|
+
access_token?:
|
|
2852
|
+
string;
|
|
2077
2853
|
/** Data format for response. */
|
|
2078
|
-
alt?:
|
|
2854
|
+
alt?:
|
|
2855
|
+
string;
|
|
2079
2856
|
/** JSONP */
|
|
2080
|
-
callback?:
|
|
2857
|
+
callback?:
|
|
2858
|
+
string;
|
|
2081
2859
|
/** Selector specifying which fields to include in a partial response. */
|
|
2082
|
-
fields?:
|
|
2860
|
+
fields?:
|
|
2861
|
+
string;
|
|
2083
2862
|
/** 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. */
|
|
2084
|
-
key?:
|
|
2863
|
+
key?:
|
|
2864
|
+
string;
|
|
2085
2865
|
/** The resource name of the LDAPS settings. Uses the form: `projects/{project}/locations/{location}/domains/{domain}`. */
|
|
2086
|
-
name:
|
|
2866
|
+
name:
|
|
2867
|
+
string;
|
|
2087
2868
|
/** OAuth 2.0 token for the current user. */
|
|
2088
|
-
oauth_token?:
|
|
2869
|
+
oauth_token?:
|
|
2870
|
+
string;
|
|
2089
2871
|
/** Returns response with indentations and line breaks. */
|
|
2090
|
-
prettyPrint?:
|
|
2872
|
+
prettyPrint?:
|
|
2873
|
+
boolean;
|
|
2091
2874
|
/** 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. */
|
|
2092
|
-
quotaUser?:
|
|
2875
|
+
quotaUser?:
|
|
2876
|
+
string;
|
|
2093
2877
|
/**
|
|
2094
2878
|
* Required. Mask of fields to update. At least one path must be supplied in this field. For the `FieldMask` definition, see
|
|
2095
2879
|
* https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask
|
|
2096
2880
|
*/
|
|
2097
|
-
updateMask?:
|
|
2881
|
+
updateMask?:
|
|
2882
|
+
string;
|
|
2098
2883
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2099
|
-
upload_protocol?:
|
|
2884
|
+
upload_protocol?:
|
|
2885
|
+
string;
|
|
2100
2886
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2101
|
-
uploadType?:
|
|
2887
|
+
uploadType?:
|
|
2888
|
+
string;
|
|
2102
2889
|
},
|
|
2103
2890
|
body: LDAPSSettings): Request<Operation>;
|
|
2104
2891
|
/** Validate the trust state Operation */
|
|
2105
2892
|
validateTrust(request: {
|
|
2106
2893
|
/** V1 error format. */
|
|
2107
|
-
"$.xgafv"?:
|
|
2894
|
+
"$.xgafv"?:
|
|
2895
|
+
string;
|
|
2108
2896
|
/** OAuth access token. */
|
|
2109
|
-
access_token?:
|
|
2897
|
+
access_token?:
|
|
2898
|
+
string;
|
|
2110
2899
|
/** Data format for response. */
|
|
2111
|
-
alt?:
|
|
2900
|
+
alt?:
|
|
2901
|
+
string;
|
|
2112
2902
|
/** JSONP */
|
|
2113
|
-
callback?:
|
|
2903
|
+
callback?:
|
|
2904
|
+
string;
|
|
2114
2905
|
/** Selector specifying which fields to include in a partial response. */
|
|
2115
|
-
fields?:
|
|
2906
|
+
fields?:
|
|
2907
|
+
string;
|
|
2116
2908
|
/** 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. */
|
|
2117
|
-
key?:
|
|
2909
|
+
key?:
|
|
2910
|
+
string;
|
|
2118
2911
|
/** The resource domain name, project name, and location using the form: `projects/{project_id}/locations/global/domains/{domain_name}` */
|
|
2119
|
-
name:
|
|
2912
|
+
name:
|
|
2913
|
+
string;
|
|
2120
2914
|
/** OAuth 2.0 token for the current user. */
|
|
2121
|
-
oauth_token?:
|
|
2915
|
+
oauth_token?:
|
|
2916
|
+
string;
|
|
2122
2917
|
/** Returns response with indentations and line breaks. */
|
|
2123
|
-
prettyPrint?:
|
|
2918
|
+
prettyPrint?:
|
|
2919
|
+
boolean;
|
|
2124
2920
|
/** 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. */
|
|
2125
|
-
quotaUser?:
|
|
2921
|
+
quotaUser?:
|
|
2922
|
+
string;
|
|
2126
2923
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2127
|
-
upload_protocol?:
|
|
2924
|
+
upload_protocol?:
|
|
2925
|
+
string;
|
|
2128
2926
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2129
|
-
uploadType?:
|
|
2927
|
+
uploadType?:
|
|
2928
|
+
string;
|
|
2130
2929
|
/** Request body */
|
|
2131
|
-
resource:
|
|
2930
|
+
resource:
|
|
2931
|
+
ValidateTrustRequest;
|
|
2132
2932
|
}): Request<Operation>;
|
|
2133
2933
|
validateTrust(request: {
|
|
2134
2934
|
/** V1 error format. */
|
|
2135
|
-
"$.xgafv"?:
|
|
2935
|
+
"$.xgafv"?:
|
|
2936
|
+
string;
|
|
2136
2937
|
/** OAuth access token. */
|
|
2137
|
-
access_token?:
|
|
2938
|
+
access_token?:
|
|
2939
|
+
string;
|
|
2138
2940
|
/** Data format for response. */
|
|
2139
|
-
alt?:
|
|
2941
|
+
alt?:
|
|
2942
|
+
string;
|
|
2140
2943
|
/** JSONP */
|
|
2141
|
-
callback?:
|
|
2944
|
+
callback?:
|
|
2945
|
+
string;
|
|
2142
2946
|
/** Selector specifying which fields to include in a partial response. */
|
|
2143
|
-
fields?:
|
|
2947
|
+
fields?:
|
|
2948
|
+
string;
|
|
2144
2949
|
/** 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. */
|
|
2145
|
-
key?:
|
|
2950
|
+
key?:
|
|
2951
|
+
string;
|
|
2146
2952
|
/** The resource domain name, project name, and location using the form: `projects/{project_id}/locations/global/domains/{domain_name}` */
|
|
2147
|
-
name:
|
|
2953
|
+
name:
|
|
2954
|
+
string;
|
|
2148
2955
|
/** OAuth 2.0 token for the current user. */
|
|
2149
|
-
oauth_token?:
|
|
2956
|
+
oauth_token?:
|
|
2957
|
+
string;
|
|
2150
2958
|
/** Returns response with indentations and line breaks. */
|
|
2151
|
-
prettyPrint?:
|
|
2959
|
+
prettyPrint?:
|
|
2960
|
+
boolean;
|
|
2152
2961
|
/** 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. */
|
|
2153
|
-
quotaUser?:
|
|
2962
|
+
quotaUser?:
|
|
2963
|
+
string;
|
|
2154
2964
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2155
|
-
upload_protocol?:
|
|
2965
|
+
upload_protocol?:
|
|
2966
|
+
string;
|
|
2156
2967
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2157
|
-
uploadType?:
|
|
2968
|
+
uploadType?:
|
|
2969
|
+
string;
|
|
2158
2970
|
},
|
|
2159
2971
|
body: ValidateTrustRequest): Request<Operation>;
|
|
2160
|
-
backups:
|
|
2161
|
-
|
|
2972
|
+
backups:
|
|
2973
|
+
BackupsResource;
|
|
2974
|
+
sqlIntegrations:
|
|
2975
|
+
SqlIntegrationsResource;
|
|
2162
2976
|
}
|
|
2163
2977
|
interface OperationsResource {
|
|
2164
2978
|
/**
|
|
@@ -2169,57 +2983,82 @@ declare namespace gapi.client {
|
|
|
2169
2983
|
*/
|
|
2170
2984
|
cancel(request: {
|
|
2171
2985
|
/** V1 error format. */
|
|
2172
|
-
"$.xgafv"?:
|
|
2986
|
+
"$.xgafv"?:
|
|
2987
|
+
string;
|
|
2173
2988
|
/** OAuth access token. */
|
|
2174
|
-
access_token?:
|
|
2989
|
+
access_token?:
|
|
2990
|
+
string;
|
|
2175
2991
|
/** Data format for response. */
|
|
2176
|
-
alt?:
|
|
2992
|
+
alt?:
|
|
2993
|
+
string;
|
|
2177
2994
|
/** JSONP */
|
|
2178
|
-
callback?:
|
|
2995
|
+
callback?:
|
|
2996
|
+
string;
|
|
2179
2997
|
/** Selector specifying which fields to include in a partial response. */
|
|
2180
|
-
fields?:
|
|
2998
|
+
fields?:
|
|
2999
|
+
string;
|
|
2181
3000
|
/** 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. */
|
|
2182
|
-
key?:
|
|
3001
|
+
key?:
|
|
3002
|
+
string;
|
|
2183
3003
|
/** The name of the operation resource to be cancelled. */
|
|
2184
|
-
name:
|
|
3004
|
+
name:
|
|
3005
|
+
string;
|
|
2185
3006
|
/** OAuth 2.0 token for the current user. */
|
|
2186
|
-
oauth_token?:
|
|
3007
|
+
oauth_token?:
|
|
3008
|
+
string;
|
|
2187
3009
|
/** Returns response with indentations and line breaks. */
|
|
2188
|
-
prettyPrint?:
|
|
3010
|
+
prettyPrint?:
|
|
3011
|
+
boolean;
|
|
2189
3012
|
/** 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. */
|
|
2190
|
-
quotaUser?:
|
|
3013
|
+
quotaUser?:
|
|
3014
|
+
string;
|
|
2191
3015
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2192
|
-
upload_protocol?:
|
|
3016
|
+
upload_protocol?:
|
|
3017
|
+
string;
|
|
2193
3018
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2194
|
-
uploadType?:
|
|
3019
|
+
uploadType?:
|
|
3020
|
+
string;
|
|
2195
3021
|
/** Request body */
|
|
2196
|
-
resource:
|
|
3022
|
+
resource:
|
|
3023
|
+
CancelOperationRequest;
|
|
2197
3024
|
}): Request<{}>;
|
|
2198
3025
|
cancel(request: {
|
|
2199
3026
|
/** V1 error format. */
|
|
2200
|
-
"$.xgafv"?:
|
|
3027
|
+
"$.xgafv"?:
|
|
3028
|
+
string;
|
|
2201
3029
|
/** OAuth access token. */
|
|
2202
|
-
access_token?:
|
|
3030
|
+
access_token?:
|
|
3031
|
+
string;
|
|
2203
3032
|
/** Data format for response. */
|
|
2204
|
-
alt?:
|
|
3033
|
+
alt?:
|
|
3034
|
+
string;
|
|
2205
3035
|
/** JSONP */
|
|
2206
|
-
callback?:
|
|
3036
|
+
callback?:
|
|
3037
|
+
string;
|
|
2207
3038
|
/** Selector specifying which fields to include in a partial response. */
|
|
2208
|
-
fields?:
|
|
3039
|
+
fields?:
|
|
3040
|
+
string;
|
|
2209
3041
|
/** 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. */
|
|
2210
|
-
key?:
|
|
3042
|
+
key?:
|
|
3043
|
+
string;
|
|
2211
3044
|
/** The name of the operation resource to be cancelled. */
|
|
2212
|
-
name:
|
|
3045
|
+
name:
|
|
3046
|
+
string;
|
|
2213
3047
|
/** OAuth 2.0 token for the current user. */
|
|
2214
|
-
oauth_token?:
|
|
3048
|
+
oauth_token?:
|
|
3049
|
+
string;
|
|
2215
3050
|
/** Returns response with indentations and line breaks. */
|
|
2216
|
-
prettyPrint?:
|
|
3051
|
+
prettyPrint?:
|
|
3052
|
+
boolean;
|
|
2217
3053
|
/** 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. */
|
|
2218
|
-
quotaUser?:
|
|
3054
|
+
quotaUser?:
|
|
3055
|
+
string;
|
|
2219
3056
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2220
|
-
upload_protocol?:
|
|
3057
|
+
upload_protocol?:
|
|
3058
|
+
string;
|
|
2221
3059
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2222
|
-
uploadType?:
|
|
3060
|
+
uploadType?:
|
|
3061
|
+
string;
|
|
2223
3062
|
},
|
|
2224
3063
|
body: CancelOperationRequest): Request<{}>;
|
|
2225
3064
|
/**
|
|
@@ -2228,222 +3067,319 @@ declare namespace gapi.client {
|
|
|
2228
3067
|
*/
|
|
2229
3068
|
delete(request?: {
|
|
2230
3069
|
/** V1 error format. */
|
|
2231
|
-
"$.xgafv"?:
|
|
3070
|
+
"$.xgafv"?:
|
|
3071
|
+
string;
|
|
2232
3072
|
/** OAuth access token. */
|
|
2233
|
-
access_token?:
|
|
3073
|
+
access_token?:
|
|
3074
|
+
string;
|
|
2234
3075
|
/** Data format for response. */
|
|
2235
|
-
alt?:
|
|
3076
|
+
alt?:
|
|
3077
|
+
string;
|
|
2236
3078
|
/** JSONP */
|
|
2237
|
-
callback?:
|
|
3079
|
+
callback?:
|
|
3080
|
+
string;
|
|
2238
3081
|
/** Selector specifying which fields to include in a partial response. */
|
|
2239
|
-
fields?:
|
|
3082
|
+
fields?:
|
|
3083
|
+
string;
|
|
2240
3084
|
/** 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. */
|
|
2241
|
-
key?:
|
|
3085
|
+
key?:
|
|
3086
|
+
string;
|
|
2242
3087
|
/** The name of the operation resource to be deleted. */
|
|
2243
|
-
name:
|
|
3088
|
+
name:
|
|
3089
|
+
string;
|
|
2244
3090
|
/** OAuth 2.0 token for the current user. */
|
|
2245
|
-
oauth_token?:
|
|
3091
|
+
oauth_token?:
|
|
3092
|
+
string;
|
|
2246
3093
|
/** Returns response with indentations and line breaks. */
|
|
2247
|
-
prettyPrint?:
|
|
3094
|
+
prettyPrint?:
|
|
3095
|
+
boolean;
|
|
2248
3096
|
/** 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. */
|
|
2249
|
-
quotaUser?:
|
|
3097
|
+
quotaUser?:
|
|
3098
|
+
string;
|
|
2250
3099
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2251
|
-
upload_protocol?:
|
|
3100
|
+
upload_protocol?:
|
|
3101
|
+
string;
|
|
2252
3102
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2253
|
-
uploadType?:
|
|
3103
|
+
uploadType?:
|
|
3104
|
+
string;
|
|
2254
3105
|
}): Request<{}>;
|
|
2255
3106
|
/** 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. */
|
|
2256
3107
|
get(request?: {
|
|
2257
3108
|
/** V1 error format. */
|
|
2258
|
-
"$.xgafv"?:
|
|
3109
|
+
"$.xgafv"?:
|
|
3110
|
+
string;
|
|
2259
3111
|
/** OAuth access token. */
|
|
2260
|
-
access_token?:
|
|
3112
|
+
access_token?:
|
|
3113
|
+
string;
|
|
2261
3114
|
/** Data format for response. */
|
|
2262
|
-
alt?:
|
|
3115
|
+
alt?:
|
|
3116
|
+
string;
|
|
2263
3117
|
/** JSONP */
|
|
2264
|
-
callback?:
|
|
3118
|
+
callback?:
|
|
3119
|
+
string;
|
|
2265
3120
|
/** Selector specifying which fields to include in a partial response. */
|
|
2266
|
-
fields?:
|
|
3121
|
+
fields?:
|
|
3122
|
+
string;
|
|
2267
3123
|
/** 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. */
|
|
2268
|
-
key?:
|
|
3124
|
+
key?:
|
|
3125
|
+
string;
|
|
2269
3126
|
/** The name of the operation resource. */
|
|
2270
|
-
name:
|
|
3127
|
+
name:
|
|
3128
|
+
string;
|
|
2271
3129
|
/** OAuth 2.0 token for the current user. */
|
|
2272
|
-
oauth_token?:
|
|
3130
|
+
oauth_token?:
|
|
3131
|
+
string;
|
|
2273
3132
|
/** Returns response with indentations and line breaks. */
|
|
2274
|
-
prettyPrint?:
|
|
3133
|
+
prettyPrint?:
|
|
3134
|
+
boolean;
|
|
2275
3135
|
/** 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. */
|
|
2276
|
-
quotaUser?:
|
|
3136
|
+
quotaUser?:
|
|
3137
|
+
string;
|
|
2277
3138
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2278
|
-
upload_protocol?:
|
|
3139
|
+
upload_protocol?:
|
|
3140
|
+
string;
|
|
2279
3141
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2280
|
-
uploadType?:
|
|
3142
|
+
uploadType?:
|
|
3143
|
+
string;
|
|
2281
3144
|
}): Request<Operation>;
|
|
2282
3145
|
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
2283
3146
|
list(request?: {
|
|
2284
3147
|
/** V1 error format. */
|
|
2285
|
-
"$.xgafv"?:
|
|
3148
|
+
"$.xgafv"?:
|
|
3149
|
+
string;
|
|
2286
3150
|
/** OAuth access token. */
|
|
2287
|
-
access_token?:
|
|
3151
|
+
access_token?:
|
|
3152
|
+
string;
|
|
2288
3153
|
/** Data format for response. */
|
|
2289
|
-
alt?:
|
|
3154
|
+
alt?:
|
|
3155
|
+
string;
|
|
2290
3156
|
/** JSONP */
|
|
2291
|
-
callback?:
|
|
3157
|
+
callback?:
|
|
3158
|
+
string;
|
|
2292
3159
|
/** Selector specifying which fields to include in a partial response. */
|
|
2293
|
-
fields?:
|
|
3160
|
+
fields?:
|
|
3161
|
+
string;
|
|
2294
3162
|
/** The standard list filter. */
|
|
2295
|
-
filter?:
|
|
3163
|
+
filter?:
|
|
3164
|
+
string;
|
|
2296
3165
|
/** 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. */
|
|
2297
|
-
key?:
|
|
3166
|
+
key?:
|
|
3167
|
+
string;
|
|
2298
3168
|
/** The name of the operation's parent resource. */
|
|
2299
|
-
name:
|
|
3169
|
+
name:
|
|
3170
|
+
string;
|
|
2300
3171
|
/** OAuth 2.0 token for the current user. */
|
|
2301
|
-
oauth_token?:
|
|
3172
|
+
oauth_token?:
|
|
3173
|
+
string;
|
|
2302
3174
|
/** The standard list page size. */
|
|
2303
|
-
pageSize?:
|
|
3175
|
+
pageSize?:
|
|
3176
|
+
number;
|
|
2304
3177
|
/** The standard list page token. */
|
|
2305
|
-
pageToken?:
|
|
3178
|
+
pageToken?:
|
|
3179
|
+
string;
|
|
2306
3180
|
/** Returns response with indentations and line breaks. */
|
|
2307
|
-
prettyPrint?:
|
|
3181
|
+
prettyPrint?:
|
|
3182
|
+
boolean;
|
|
2308
3183
|
/** 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. */
|
|
2309
|
-
quotaUser?:
|
|
3184
|
+
quotaUser?:
|
|
3185
|
+
string;
|
|
2310
3186
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2311
|
-
upload_protocol?:
|
|
3187
|
+
upload_protocol?:
|
|
3188
|
+
string;
|
|
2312
3189
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2313
|
-
uploadType?:
|
|
3190
|
+
uploadType?:
|
|
3191
|
+
string;
|
|
2314
3192
|
}): Request<ListOperationsResponse>;
|
|
2315
3193
|
}
|
|
2316
3194
|
interface PeeringsResource {
|
|
2317
3195
|
/** Creates a Peering for Managed AD instance. */
|
|
2318
3196
|
create(request: {
|
|
2319
3197
|
/** V1 error format. */
|
|
2320
|
-
"$.xgafv"?:
|
|
3198
|
+
"$.xgafv"?:
|
|
3199
|
+
string;
|
|
2321
3200
|
/** OAuth access token. */
|
|
2322
|
-
access_token?:
|
|
3201
|
+
access_token?:
|
|
3202
|
+
string;
|
|
2323
3203
|
/** Data format for response. */
|
|
2324
|
-
alt?:
|
|
3204
|
+
alt?:
|
|
3205
|
+
string;
|
|
2325
3206
|
/** JSONP */
|
|
2326
|
-
callback?:
|
|
3207
|
+
callback?:
|
|
3208
|
+
string;
|
|
2327
3209
|
/** Selector specifying which fields to include in a partial response. */
|
|
2328
|
-
fields?:
|
|
3210
|
+
fields?:
|
|
3211
|
+
string;
|
|
2329
3212
|
/** 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. */
|
|
2330
|
-
key?:
|
|
3213
|
+
key?:
|
|
3214
|
+
string;
|
|
2331
3215
|
/** OAuth 2.0 token for the current user. */
|
|
2332
|
-
oauth_token?:
|
|
3216
|
+
oauth_token?:
|
|
3217
|
+
string;
|
|
2333
3218
|
/** Required. Resource project name and location using the form: `projects/{project_id}/locations/global` */
|
|
2334
|
-
parent:
|
|
3219
|
+
parent:
|
|
3220
|
+
string;
|
|
2335
3221
|
/** Required. Peering Id, unique name to identify peering. */
|
|
2336
|
-
peeringId?:
|
|
3222
|
+
peeringId?:
|
|
3223
|
+
string;
|
|
2337
3224
|
/** Returns response with indentations and line breaks. */
|
|
2338
|
-
prettyPrint?:
|
|
3225
|
+
prettyPrint?:
|
|
3226
|
+
boolean;
|
|
2339
3227
|
/** 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. */
|
|
2340
|
-
quotaUser?:
|
|
3228
|
+
quotaUser?:
|
|
3229
|
+
string;
|
|
2341
3230
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2342
|
-
upload_protocol?:
|
|
3231
|
+
upload_protocol?:
|
|
3232
|
+
string;
|
|
2343
3233
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2344
|
-
uploadType?:
|
|
3234
|
+
uploadType?:
|
|
3235
|
+
string;
|
|
2345
3236
|
/** Request body */
|
|
2346
|
-
resource:
|
|
3237
|
+
resource:
|
|
3238
|
+
Peering;
|
|
2347
3239
|
}): Request<Operation>;
|
|
2348
3240
|
create(request: {
|
|
2349
3241
|
/** V1 error format. */
|
|
2350
|
-
"$.xgafv"?:
|
|
3242
|
+
"$.xgafv"?:
|
|
3243
|
+
string;
|
|
2351
3244
|
/** OAuth access token. */
|
|
2352
|
-
access_token?:
|
|
3245
|
+
access_token?:
|
|
3246
|
+
string;
|
|
2353
3247
|
/** Data format for response. */
|
|
2354
|
-
alt?:
|
|
3248
|
+
alt?:
|
|
3249
|
+
string;
|
|
2355
3250
|
/** JSONP */
|
|
2356
|
-
callback?:
|
|
3251
|
+
callback?:
|
|
3252
|
+
string;
|
|
2357
3253
|
/** Selector specifying which fields to include in a partial response. */
|
|
2358
|
-
fields?:
|
|
3254
|
+
fields?:
|
|
3255
|
+
string;
|
|
2359
3256
|
/** 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. */
|
|
2360
|
-
key?:
|
|
3257
|
+
key?:
|
|
3258
|
+
string;
|
|
2361
3259
|
/** OAuth 2.0 token for the current user. */
|
|
2362
|
-
oauth_token?:
|
|
3260
|
+
oauth_token?:
|
|
3261
|
+
string;
|
|
2363
3262
|
/** Required. Resource project name and location using the form: `projects/{project_id}/locations/global` */
|
|
2364
|
-
parent:
|
|
3263
|
+
parent:
|
|
3264
|
+
string;
|
|
2365
3265
|
/** Required. Peering Id, unique name to identify peering. */
|
|
2366
|
-
peeringId?:
|
|
3266
|
+
peeringId?:
|
|
3267
|
+
string;
|
|
2367
3268
|
/** Returns response with indentations and line breaks. */
|
|
2368
|
-
prettyPrint?:
|
|
3269
|
+
prettyPrint?:
|
|
3270
|
+
boolean;
|
|
2369
3271
|
/** 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. */
|
|
2370
|
-
quotaUser?:
|
|
3272
|
+
quotaUser?:
|
|
3273
|
+
string;
|
|
2371
3274
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2372
|
-
upload_protocol?:
|
|
3275
|
+
upload_protocol?:
|
|
3276
|
+
string;
|
|
2373
3277
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2374
|
-
uploadType?:
|
|
3278
|
+
uploadType?:
|
|
3279
|
+
string;
|
|
2375
3280
|
},
|
|
2376
3281
|
body: Peering): Request<Operation>;
|
|
2377
3282
|
/** Deletes identified Peering. */
|
|
2378
3283
|
delete(request?: {
|
|
2379
3284
|
/** V1 error format. */
|
|
2380
|
-
"$.xgafv"?:
|
|
3285
|
+
"$.xgafv"?:
|
|
3286
|
+
string;
|
|
2381
3287
|
/** OAuth access token. */
|
|
2382
|
-
access_token?:
|
|
3288
|
+
access_token?:
|
|
3289
|
+
string;
|
|
2383
3290
|
/** Data format for response. */
|
|
2384
|
-
alt?:
|
|
3291
|
+
alt?:
|
|
3292
|
+
string;
|
|
2385
3293
|
/** JSONP */
|
|
2386
|
-
callback?:
|
|
3294
|
+
callback?:
|
|
3295
|
+
string;
|
|
2387
3296
|
/** Selector specifying which fields to include in a partial response. */
|
|
2388
|
-
fields?:
|
|
3297
|
+
fields?:
|
|
3298
|
+
string;
|
|
2389
3299
|
/** 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. */
|
|
2390
|
-
key?:
|
|
3300
|
+
key?:
|
|
3301
|
+
string;
|
|
2391
3302
|
/** Required. Peering resource name using the form: `projects/{project_id}/locations/global/peerings/{peering_id}` */
|
|
2392
|
-
name:
|
|
3303
|
+
name:
|
|
3304
|
+
string;
|
|
2393
3305
|
/** OAuth 2.0 token for the current user. */
|
|
2394
|
-
oauth_token?:
|
|
3306
|
+
oauth_token?:
|
|
3307
|
+
string;
|
|
2395
3308
|
/** Returns response with indentations and line breaks. */
|
|
2396
|
-
prettyPrint?:
|
|
3309
|
+
prettyPrint?:
|
|
3310
|
+
boolean;
|
|
2397
3311
|
/** 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. */
|
|
2398
|
-
quotaUser?:
|
|
3312
|
+
quotaUser?:
|
|
3313
|
+
string;
|
|
2399
3314
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2400
|
-
upload_protocol?:
|
|
3315
|
+
upload_protocol?:
|
|
3316
|
+
string;
|
|
2401
3317
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2402
|
-
uploadType?:
|
|
3318
|
+
uploadType?:
|
|
3319
|
+
string;
|
|
2403
3320
|
}): Request<Operation>;
|
|
2404
3321
|
/** Gets details of a single Peering. */
|
|
2405
3322
|
get(request?: {
|
|
2406
3323
|
/** V1 error format. */
|
|
2407
|
-
"$.xgafv"?:
|
|
3324
|
+
"$.xgafv"?:
|
|
3325
|
+
string;
|
|
2408
3326
|
/** OAuth access token. */
|
|
2409
|
-
access_token?:
|
|
3327
|
+
access_token?:
|
|
3328
|
+
string;
|
|
2410
3329
|
/** Data format for response. */
|
|
2411
|
-
alt?:
|
|
3330
|
+
alt?:
|
|
3331
|
+
string;
|
|
2412
3332
|
/** JSONP */
|
|
2413
|
-
callback?:
|
|
3333
|
+
callback?:
|
|
3334
|
+
string;
|
|
2414
3335
|
/** Selector specifying which fields to include in a partial response. */
|
|
2415
|
-
fields?:
|
|
3336
|
+
fields?:
|
|
3337
|
+
string;
|
|
2416
3338
|
/** 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. */
|
|
2417
|
-
key?:
|
|
3339
|
+
key?:
|
|
3340
|
+
string;
|
|
2418
3341
|
/** Required. Peering resource name using the form: `projects/{project_id}/locations/global/peerings/{peering_id}` */
|
|
2419
|
-
name:
|
|
3342
|
+
name:
|
|
3343
|
+
string;
|
|
2420
3344
|
/** OAuth 2.0 token for the current user. */
|
|
2421
|
-
oauth_token?:
|
|
3345
|
+
oauth_token?:
|
|
3346
|
+
string;
|
|
2422
3347
|
/** Returns response with indentations and line breaks. */
|
|
2423
|
-
prettyPrint?:
|
|
3348
|
+
prettyPrint?:
|
|
3349
|
+
boolean;
|
|
2424
3350
|
/** 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. */
|
|
2425
|
-
quotaUser?:
|
|
3351
|
+
quotaUser?:
|
|
3352
|
+
string;
|
|
2426
3353
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2427
|
-
upload_protocol?:
|
|
3354
|
+
upload_protocol?:
|
|
3355
|
+
string;
|
|
2428
3356
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2429
|
-
uploadType?:
|
|
3357
|
+
uploadType?:
|
|
3358
|
+
string;
|
|
2430
3359
|
}): Request<Peering>;
|
|
2431
3360
|
/** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
|
|
2432
3361
|
getIamPolicy(request?: {
|
|
2433
3362
|
/** V1 error format. */
|
|
2434
|
-
"$.xgafv"?:
|
|
3363
|
+
"$.xgafv"?:
|
|
3364
|
+
string;
|
|
2435
3365
|
/** OAuth access token. */
|
|
2436
|
-
access_token?:
|
|
3366
|
+
access_token?:
|
|
3367
|
+
string;
|
|
2437
3368
|
/** Data format for response. */
|
|
2438
|
-
alt?:
|
|
3369
|
+
alt?:
|
|
3370
|
+
string;
|
|
2439
3371
|
/** JSONP */
|
|
2440
|
-
callback?:
|
|
3372
|
+
callback?:
|
|
3373
|
+
string;
|
|
2441
3374
|
/** Selector specifying which fields to include in a partial response. */
|
|
2442
|
-
fields?:
|
|
3375
|
+
fields?:
|
|
3376
|
+
string;
|
|
2443
3377
|
/** 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. */
|
|
2444
|
-
key?:
|
|
3378
|
+
key?:
|
|
3379
|
+
string;
|
|
2445
3380
|
/** OAuth 2.0 token for the current user. */
|
|
2446
|
-
oauth_token?:
|
|
3381
|
+
oauth_token?:
|
|
3382
|
+
string;
|
|
2447
3383
|
/**
|
|
2448
3384
|
* 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
|
|
2449
3385
|
* 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
|
|
@@ -2451,154 +3387,215 @@ declare namespace gapi.client {
|
|
|
2451
3387
|
* role bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM
|
|
2452
3388
|
* documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
|
|
2453
3389
|
*/
|
|
2454
|
-
"options.requestedPolicyVersion"?:
|
|
3390
|
+
"options.requestedPolicyVersion"?:
|
|
3391
|
+
number;
|
|
2455
3392
|
/** Returns response with indentations and line breaks. */
|
|
2456
|
-
prettyPrint?:
|
|
3393
|
+
prettyPrint?:
|
|
3394
|
+
boolean;
|
|
2457
3395
|
/** 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. */
|
|
2458
|
-
quotaUser?:
|
|
3396
|
+
quotaUser?:
|
|
3397
|
+
string;
|
|
2459
3398
|
/**
|
|
2460
3399
|
* 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
|
|
2461
3400
|
* field.
|
|
2462
3401
|
*/
|
|
2463
|
-
resource:
|
|
3402
|
+
resource:
|
|
3403
|
+
string;
|
|
2464
3404
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2465
|
-
upload_protocol?:
|
|
3405
|
+
upload_protocol?:
|
|
3406
|
+
string;
|
|
2466
3407
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2467
|
-
uploadType?:
|
|
3408
|
+
uploadType?:
|
|
3409
|
+
string;
|
|
2468
3410
|
}): Request<Policy>;
|
|
2469
3411
|
/** Lists Peerings in a given project. */
|
|
2470
3412
|
list(request?: {
|
|
2471
3413
|
/** V1 error format. */
|
|
2472
|
-
"$.xgafv"?:
|
|
3414
|
+
"$.xgafv"?:
|
|
3415
|
+
string;
|
|
2473
3416
|
/** OAuth access token. */
|
|
2474
|
-
access_token?:
|
|
3417
|
+
access_token?:
|
|
3418
|
+
string;
|
|
2475
3419
|
/** Data format for response. */
|
|
2476
|
-
alt?:
|
|
3420
|
+
alt?:
|
|
3421
|
+
string;
|
|
2477
3422
|
/** JSONP */
|
|
2478
|
-
callback?:
|
|
3423
|
+
callback?:
|
|
3424
|
+
string;
|
|
2479
3425
|
/** Selector specifying which fields to include in a partial response. */
|
|
2480
|
-
fields?:
|
|
3426
|
+
fields?:
|
|
3427
|
+
string;
|
|
2481
3428
|
/** Optional. Filter specifying constraints of a list operation. For example, `peering.authoized_network ="/projects/myprojectid"`. */
|
|
2482
|
-
filter?:
|
|
3429
|
+
filter?:
|
|
3430
|
+
string;
|
|
2483
3431
|
/** 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. */
|
|
2484
|
-
key?:
|
|
3432
|
+
key?:
|
|
3433
|
+
string;
|
|
2485
3434
|
/** OAuth 2.0 token for the current user. */
|
|
2486
|
-
oauth_token?:
|
|
3435
|
+
oauth_token?:
|
|
3436
|
+
string;
|
|
2487
3437
|
/** Optional. Specifies the ordering of results following syntax at https://cloud.google.com/apis/design/design_patterns#sorting_order. */
|
|
2488
|
-
orderBy?:
|
|
3438
|
+
orderBy?:
|
|
3439
|
+
string;
|
|
2489
3440
|
/**
|
|
2490
3441
|
* Optional. The maximum number of items to return. If not specified, a default value of 1000 will be used by the service. Regardless of the page_size value, the response may
|
|
2491
3442
|
* include a partial list and a caller should only rely on response's next_page_token to determine if there are more instances left to be queried.
|
|
2492
3443
|
*/
|
|
2493
|
-
pageSize?:
|
|
3444
|
+
pageSize?:
|
|
3445
|
+
number;
|
|
2494
3446
|
/** Optional. The next_page_token value returned from a previous List request, if any. */
|
|
2495
|
-
pageToken?:
|
|
3447
|
+
pageToken?:
|
|
3448
|
+
string;
|
|
2496
3449
|
/** Required. The resource name of the domain location using the form: `projects/{project_id}/locations/global` */
|
|
2497
|
-
parent:
|
|
3450
|
+
parent:
|
|
3451
|
+
string;
|
|
2498
3452
|
/** Returns response with indentations and line breaks. */
|
|
2499
|
-
prettyPrint?:
|
|
3453
|
+
prettyPrint?:
|
|
3454
|
+
boolean;
|
|
2500
3455
|
/** 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. */
|
|
2501
|
-
quotaUser?:
|
|
3456
|
+
quotaUser?:
|
|
3457
|
+
string;
|
|
2502
3458
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2503
|
-
upload_protocol?:
|
|
3459
|
+
upload_protocol?:
|
|
3460
|
+
string;
|
|
2504
3461
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2505
|
-
uploadType?:
|
|
3462
|
+
uploadType?:
|
|
3463
|
+
string;
|
|
2506
3464
|
}): Request<ListPeeringsResponse>;
|
|
2507
3465
|
/** Updates the labels for specified Peering. */
|
|
2508
3466
|
patch(request: {
|
|
2509
3467
|
/** V1 error format. */
|
|
2510
|
-
"$.xgafv"?:
|
|
3468
|
+
"$.xgafv"?:
|
|
3469
|
+
string;
|
|
2511
3470
|
/** OAuth access token. */
|
|
2512
|
-
access_token?:
|
|
3471
|
+
access_token?:
|
|
3472
|
+
string;
|
|
2513
3473
|
/** Data format for response. */
|
|
2514
|
-
alt?:
|
|
3474
|
+
alt?:
|
|
3475
|
+
string;
|
|
2515
3476
|
/** JSONP */
|
|
2516
|
-
callback?:
|
|
3477
|
+
callback?:
|
|
3478
|
+
string;
|
|
2517
3479
|
/** Selector specifying which fields to include in a partial response. */
|
|
2518
|
-
fields?:
|
|
3480
|
+
fields?:
|
|
3481
|
+
string;
|
|
2519
3482
|
/** 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. */
|
|
2520
|
-
key?:
|
|
3483
|
+
key?:
|
|
3484
|
+
string;
|
|
2521
3485
|
/** Output only. Unique name of the peering in this scope including projects and location using the form: `projects/{project_id}/locations/global/peerings/{peering_id}`. */
|
|
2522
|
-
name:
|
|
3486
|
+
name:
|
|
3487
|
+
string;
|
|
2523
3488
|
/** OAuth 2.0 token for the current user. */
|
|
2524
|
-
oauth_token?:
|
|
3489
|
+
oauth_token?:
|
|
3490
|
+
string;
|
|
2525
3491
|
/** Returns response with indentations and line breaks. */
|
|
2526
|
-
prettyPrint?:
|
|
3492
|
+
prettyPrint?:
|
|
3493
|
+
boolean;
|
|
2527
3494
|
/** 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. */
|
|
2528
|
-
quotaUser?:
|
|
3495
|
+
quotaUser?:
|
|
3496
|
+
string;
|
|
2529
3497
|
/**
|
|
2530
3498
|
* Required. Mask of fields to update. At least one path must be supplied in this field. The elements of the repeated paths field may only include these fields from Peering: *
|
|
2531
3499
|
* `labels`
|
|
2532
3500
|
*/
|
|
2533
|
-
updateMask?:
|
|
3501
|
+
updateMask?:
|
|
3502
|
+
string;
|
|
2534
3503
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2535
|
-
upload_protocol?:
|
|
3504
|
+
upload_protocol?:
|
|
3505
|
+
string;
|
|
2536
3506
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2537
|
-
uploadType?:
|
|
3507
|
+
uploadType?:
|
|
3508
|
+
string;
|
|
2538
3509
|
/** Request body */
|
|
2539
|
-
resource:
|
|
3510
|
+
resource:
|
|
3511
|
+
Peering;
|
|
2540
3512
|
}): Request<Operation>;
|
|
2541
3513
|
patch(request: {
|
|
2542
3514
|
/** V1 error format. */
|
|
2543
|
-
"$.xgafv"?:
|
|
3515
|
+
"$.xgafv"?:
|
|
3516
|
+
string;
|
|
2544
3517
|
/** OAuth access token. */
|
|
2545
|
-
access_token?:
|
|
3518
|
+
access_token?:
|
|
3519
|
+
string;
|
|
2546
3520
|
/** Data format for response. */
|
|
2547
|
-
alt?:
|
|
3521
|
+
alt?:
|
|
3522
|
+
string;
|
|
2548
3523
|
/** JSONP */
|
|
2549
|
-
callback?:
|
|
3524
|
+
callback?:
|
|
3525
|
+
string;
|
|
2550
3526
|
/** Selector specifying which fields to include in a partial response. */
|
|
2551
|
-
fields?:
|
|
3527
|
+
fields?:
|
|
3528
|
+
string;
|
|
2552
3529
|
/** 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. */
|
|
2553
|
-
key?:
|
|
3530
|
+
key?:
|
|
3531
|
+
string;
|
|
2554
3532
|
/** Output only. Unique name of the peering in this scope including projects and location using the form: `projects/{project_id}/locations/global/peerings/{peering_id}`. */
|
|
2555
|
-
name:
|
|
3533
|
+
name:
|
|
3534
|
+
string;
|
|
2556
3535
|
/** OAuth 2.0 token for the current user. */
|
|
2557
|
-
oauth_token?:
|
|
3536
|
+
oauth_token?:
|
|
3537
|
+
string;
|
|
2558
3538
|
/** Returns response with indentations and line breaks. */
|
|
2559
|
-
prettyPrint?:
|
|
3539
|
+
prettyPrint?:
|
|
3540
|
+
boolean;
|
|
2560
3541
|
/** 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. */
|
|
2561
|
-
quotaUser?:
|
|
3542
|
+
quotaUser?:
|
|
3543
|
+
string;
|
|
2562
3544
|
/**
|
|
2563
3545
|
* Required. Mask of fields to update. At least one path must be supplied in this field. The elements of the repeated paths field may only include these fields from Peering: *
|
|
2564
3546
|
* `labels`
|
|
2565
3547
|
*/
|
|
2566
|
-
updateMask?:
|
|
3548
|
+
updateMask?:
|
|
3549
|
+
string;
|
|
2567
3550
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2568
|
-
upload_protocol?:
|
|
3551
|
+
upload_protocol?:
|
|
3552
|
+
string;
|
|
2569
3553
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2570
|
-
uploadType?:
|
|
3554
|
+
uploadType?:
|
|
3555
|
+
string;
|
|
2571
3556
|
},
|
|
2572
3557
|
body: Peering): Request<Operation>;
|
|
2573
3558
|
/** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
|
|
2574
3559
|
setIamPolicy(request: {
|
|
2575
3560
|
/** V1 error format. */
|
|
2576
|
-
"$.xgafv"?:
|
|
3561
|
+
"$.xgafv"?:
|
|
3562
|
+
string;
|
|
2577
3563
|
/** OAuth access token. */
|
|
2578
|
-
access_token?:
|
|
3564
|
+
access_token?:
|
|
3565
|
+
string;
|
|
2579
3566
|
/** Data format for response. */
|
|
2580
|
-
alt?:
|
|
3567
|
+
alt?:
|
|
3568
|
+
string;
|
|
2581
3569
|
/** JSONP */
|
|
2582
|
-
callback?:
|
|
3570
|
+
callback?:
|
|
3571
|
+
string;
|
|
2583
3572
|
/** Selector specifying which fields to include in a partial response. */
|
|
2584
|
-
fields?:
|
|
3573
|
+
fields?:
|
|
3574
|
+
string;
|
|
2585
3575
|
/** 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. */
|
|
2586
|
-
key?:
|
|
3576
|
+
key?:
|
|
3577
|
+
string;
|
|
2587
3578
|
/** OAuth 2.0 token for the current user. */
|
|
2588
|
-
oauth_token?:
|
|
3579
|
+
oauth_token?:
|
|
3580
|
+
string;
|
|
2589
3581
|
/** Returns response with indentations and line breaks. */
|
|
2590
|
-
prettyPrint?:
|
|
3582
|
+
prettyPrint?:
|
|
3583
|
+
boolean;
|
|
2591
3584
|
/** 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. */
|
|
2592
|
-
quotaUser?:
|
|
3585
|
+
quotaUser?:
|
|
3586
|
+
string;
|
|
2593
3587
|
/**
|
|
2594
3588
|
* 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
|
|
2595
3589
|
* field.
|
|
2596
3590
|
*/
|
|
2597
|
-
resource:
|
|
3591
|
+
resource:
|
|
3592
|
+
string;
|
|
2598
3593
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2599
|
-
upload_protocol?:
|
|
3594
|
+
upload_protocol?:
|
|
3595
|
+
string;
|
|
2600
3596
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2601
|
-
uploadType?:
|
|
3597
|
+
uploadType?:
|
|
3598
|
+
string;
|
|
2602
3599
|
},
|
|
2603
3600
|
body: SetIamPolicyRequest): Request<Policy>;
|
|
2604
3601
|
/**
|
|
@@ -2607,108 +3604,152 @@ declare namespace gapi.client {
|
|
|
2607
3604
|
*/
|
|
2608
3605
|
testIamPermissions(request: {
|
|
2609
3606
|
/** V1 error format. */
|
|
2610
|
-
"$.xgafv"?:
|
|
3607
|
+
"$.xgafv"?:
|
|
3608
|
+
string;
|
|
2611
3609
|
/** OAuth access token. */
|
|
2612
|
-
access_token?:
|
|
3610
|
+
access_token?:
|
|
3611
|
+
string;
|
|
2613
3612
|
/** Data format for response. */
|
|
2614
|
-
alt?:
|
|
3613
|
+
alt?:
|
|
3614
|
+
string;
|
|
2615
3615
|
/** JSONP */
|
|
2616
|
-
callback?:
|
|
3616
|
+
callback?:
|
|
3617
|
+
string;
|
|
2617
3618
|
/** Selector specifying which fields to include in a partial response. */
|
|
2618
|
-
fields?:
|
|
3619
|
+
fields?:
|
|
3620
|
+
string;
|
|
2619
3621
|
/** 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. */
|
|
2620
|
-
key?:
|
|
3622
|
+
key?:
|
|
3623
|
+
string;
|
|
2621
3624
|
/** OAuth 2.0 token for the current user. */
|
|
2622
|
-
oauth_token?:
|
|
3625
|
+
oauth_token?:
|
|
3626
|
+
string;
|
|
2623
3627
|
/** Returns response with indentations and line breaks. */
|
|
2624
|
-
prettyPrint?:
|
|
3628
|
+
prettyPrint?:
|
|
3629
|
+
boolean;
|
|
2625
3630
|
/** 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. */
|
|
2626
|
-
quotaUser?:
|
|
3631
|
+
quotaUser?:
|
|
3632
|
+
string;
|
|
2627
3633
|
/**
|
|
2628
3634
|
* 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
|
|
2629
3635
|
* this field.
|
|
2630
3636
|
*/
|
|
2631
|
-
resource:
|
|
3637
|
+
resource:
|
|
3638
|
+
string;
|
|
2632
3639
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2633
|
-
upload_protocol?:
|
|
3640
|
+
upload_protocol?:
|
|
3641
|
+
string;
|
|
2634
3642
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2635
|
-
uploadType?:
|
|
3643
|
+
uploadType?:
|
|
3644
|
+
string;
|
|
2636
3645
|
},
|
|
2637
3646
|
body: TestIamPermissionsRequest): Request<TestIamPermissionsResponse>;
|
|
2638
3647
|
}
|
|
2639
3648
|
interface GlobalResource {
|
|
2640
|
-
domains:
|
|
2641
|
-
|
|
2642
|
-
|
|
3649
|
+
domains:
|
|
3650
|
+
DomainsResource;
|
|
3651
|
+
operations:
|
|
3652
|
+
OperationsResource;
|
|
3653
|
+
peerings:
|
|
3654
|
+
PeeringsResource;
|
|
2643
3655
|
}
|
|
2644
3656
|
interface LocationsResource {
|
|
2645
3657
|
/** Gets information about a location. */
|
|
2646
3658
|
get(request?: {
|
|
2647
3659
|
/** V1 error format. */
|
|
2648
|
-
"$.xgafv"?:
|
|
3660
|
+
"$.xgafv"?:
|
|
3661
|
+
string;
|
|
2649
3662
|
/** OAuth access token. */
|
|
2650
|
-
access_token?:
|
|
3663
|
+
access_token?:
|
|
3664
|
+
string;
|
|
2651
3665
|
/** Data format for response. */
|
|
2652
|
-
alt?:
|
|
3666
|
+
alt?:
|
|
3667
|
+
string;
|
|
2653
3668
|
/** JSONP */
|
|
2654
|
-
callback?:
|
|
3669
|
+
callback?:
|
|
3670
|
+
string;
|
|
2655
3671
|
/** Selector specifying which fields to include in a partial response. */
|
|
2656
|
-
fields?:
|
|
3672
|
+
fields?:
|
|
3673
|
+
string;
|
|
2657
3674
|
/** 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. */
|
|
2658
|
-
key?:
|
|
3675
|
+
key?:
|
|
3676
|
+
string;
|
|
2659
3677
|
/** Resource name for the location. */
|
|
2660
|
-
name:
|
|
3678
|
+
name:
|
|
3679
|
+
string;
|
|
2661
3680
|
/** OAuth 2.0 token for the current user. */
|
|
2662
|
-
oauth_token?:
|
|
3681
|
+
oauth_token?:
|
|
3682
|
+
string;
|
|
2663
3683
|
/** Returns response with indentations and line breaks. */
|
|
2664
|
-
prettyPrint?:
|
|
3684
|
+
prettyPrint?:
|
|
3685
|
+
boolean;
|
|
2665
3686
|
/** 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. */
|
|
2666
|
-
quotaUser?:
|
|
3687
|
+
quotaUser?:
|
|
3688
|
+
string;
|
|
2667
3689
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2668
|
-
upload_protocol?:
|
|
3690
|
+
upload_protocol?:
|
|
3691
|
+
string;
|
|
2669
3692
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2670
|
-
uploadType?:
|
|
3693
|
+
uploadType?:
|
|
3694
|
+
string;
|
|
2671
3695
|
}): Request<Location>;
|
|
2672
3696
|
/** Lists information about the supported locations for this service. */
|
|
2673
3697
|
list(request?: {
|
|
2674
3698
|
/** V1 error format. */
|
|
2675
|
-
"$.xgafv"?:
|
|
3699
|
+
"$.xgafv"?:
|
|
3700
|
+
string;
|
|
2676
3701
|
/** OAuth access token. */
|
|
2677
|
-
access_token?:
|
|
3702
|
+
access_token?:
|
|
3703
|
+
string;
|
|
2678
3704
|
/** Data format for response. */
|
|
2679
|
-
alt?:
|
|
3705
|
+
alt?:
|
|
3706
|
+
string;
|
|
2680
3707
|
/** JSONP */
|
|
2681
|
-
callback?:
|
|
3708
|
+
callback?:
|
|
3709
|
+
string;
|
|
2682
3710
|
/** Selector specifying which fields to include in a partial response. */
|
|
2683
|
-
fields?:
|
|
3711
|
+
fields?:
|
|
3712
|
+
string;
|
|
2684
3713
|
/**
|
|
2685
3714
|
* 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
|
|
2686
3715
|
* [AIP-160](https://google.aip.dev/160).
|
|
2687
3716
|
*/
|
|
2688
|
-
filter?:
|
|
3717
|
+
filter?:
|
|
3718
|
+
string;
|
|
2689
3719
|
/** 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. */
|
|
2690
|
-
key?:
|
|
3720
|
+
key?:
|
|
3721
|
+
string;
|
|
2691
3722
|
/** The resource that owns the locations collection, if applicable. */
|
|
2692
|
-
name:
|
|
3723
|
+
name:
|
|
3724
|
+
string;
|
|
2693
3725
|
/** OAuth 2.0 token for the current user. */
|
|
2694
|
-
oauth_token?:
|
|
3726
|
+
oauth_token?:
|
|
3727
|
+
string;
|
|
2695
3728
|
/** The maximum number of results to return. If not set, the service selects a default. */
|
|
2696
|
-
pageSize?:
|
|
3729
|
+
pageSize?:
|
|
3730
|
+
number;
|
|
2697
3731
|
/** A page token received from the `next_page_token` field in the response. Send that page token to receive the subsequent page. */
|
|
2698
|
-
pageToken?:
|
|
3732
|
+
pageToken?:
|
|
3733
|
+
string;
|
|
2699
3734
|
/** Returns response with indentations and line breaks. */
|
|
2700
|
-
prettyPrint?:
|
|
3735
|
+
prettyPrint?:
|
|
3736
|
+
boolean;
|
|
2701
3737
|
/** 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. */
|
|
2702
|
-
quotaUser?:
|
|
3738
|
+
quotaUser?:
|
|
3739
|
+
string;
|
|
2703
3740
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2704
|
-
upload_protocol?:
|
|
3741
|
+
upload_protocol?:
|
|
3742
|
+
string;
|
|
2705
3743
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2706
|
-
uploadType?:
|
|
3744
|
+
uploadType?:
|
|
3745
|
+
string;
|
|
2707
3746
|
}): Request<ListLocationsResponse>;
|
|
2708
|
-
global:
|
|
3747
|
+
global:
|
|
3748
|
+
GlobalResource;
|
|
2709
3749
|
}
|
|
2710
3750
|
interface ProjectsResource {
|
|
2711
|
-
locations:
|
|
3751
|
+
locations:
|
|
3752
|
+
LocationsResource;
|
|
2712
3753
|
}
|
|
2713
3754
|
|
|
2714
3755
|
const projects: ProjectsResource;
|