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