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