@maxim_mazurok/gapi.client.dns-v1beta2 0.0.20230413 → 0.0.20230427

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.
Files changed (3) hide show
  1. package/index.d.ts +2103 -1052
  2. package/package.json +1 -1
  3. package/tests.ts +1 -1
package/index.d.ts CHANGED
@@ -9,7 +9,7 @@
9
9
  // This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
10
10
  // In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
11
11
  // Generated from: https://dns.googleapis.com/$discovery/rest?version=v1beta2
12
- // Revision: 20230413
12
+ // Revision: 20230427
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -24,122 +24,162 @@ declare namespace gapi.client {
24
24
  namespace dns {
25
25
  interface Change {
26
26
  /** Which ResourceRecordSets to add? */
27
- additions?: ResourceRecordSet[];
27
+ additions?:
28
+ ResourceRecordSet[];
28
29
  /** Which ResourceRecordSets to remove? Must match existing data exactly. */
29
- deletions?: ResourceRecordSet[];
30
+ deletions?:
31
+ ResourceRecordSet[];
30
32
  /** Unique identifier for the resource; defined by the server (output only). */
31
- id?: string;
33
+ id?:
34
+ string;
32
35
  /** If the DNS queries for the zone will be served. */
33
- isServing?: boolean;
34
- kind?: string;
36
+ isServing?:
37
+ boolean;
38
+ kind?:
39
+ string;
35
40
  /** The time that this operation was started by the server (output only). This is in RFC3339 text format. */
36
- startTime?: string;
41
+ startTime?:
42
+ string;
37
43
  /** Status of the operation (output only). A status of "done" means that the request to update the authoritative servers has been sent, but the servers might not be updated yet. */
38
- status?: string;
44
+ status?:
45
+ string;
39
46
  }
40
47
  interface ChangesListResponse {
41
48
  /** The requested changes. */
42
- changes?: Change[];
43
- header?: ResponseHeader;
49
+ changes?:
50
+ Change[];
51
+ header?:
52
+ ResponseHeader;
44
53
  /** Type of resource. */
45
- kind?: string;
54
+ kind?:
55
+ string;
46
56
  /**
47
57
  * The presence of this field indicates that there exist more results following your last page of results in pagination order. To fetch them, make another list request using this value
48
58
  * as your pagination token. This lets you retrieve the complete contents of even very large collections one page at a time. However, if the contents of the collection change between
49
59
  * the first and last paginated list request, the set of all elements returned are an inconsistent view of the collection. You cannot retrieve a "snapshot" of collections larger than
50
60
  * the maximum page size.
51
61
  */
52
- nextPageToken?: string;
62
+ nextPageToken?:
63
+ string;
53
64
  }
54
65
  interface DnsKey {
55
66
  /** String mnemonic specifying the DNSSEC algorithm of this key. Immutable after creation time. */
56
- algorithm?: string;
67
+ algorithm?:
68
+ string;
57
69
  /** The time that this resource was created in the control plane. This is in RFC3339 text format. Output only. */
58
- creationTime?: string;
70
+ creationTime?:
71
+ string;
59
72
  /** A mutable string of at most 1024 characters associated with this resource for the user's convenience. Has no effect on the resource's function. */
60
- description?: string;
73
+ description?:
74
+ string;
61
75
  /** Cryptographic hashes of the DNSKEY resource record associated with this DnsKey. These digests are needed to construct a DS record that points at this DNS key. Output only. */
62
- digests?: DnsKeyDigest[];
76
+ digests?:
77
+ DnsKeyDigest[];
63
78
  /** Unique identifier for the resource; defined by the server (output only). */
64
- id?: string;
79
+ id?:
80
+ string;
65
81
  /**
66
82
  * Active keys are used to sign subsequent changes to the ManagedZone. Inactive keys are still present as DNSKEY Resource Records for the use of resolvers validating existing
67
83
  * signatures.
68
84
  */
69
- isActive?: boolean;
85
+ isActive?:
86
+ boolean;
70
87
  /** Length of the key in bits. Specified at creation time, and then immutable. */
71
- keyLength?: number;
88
+ keyLength?:
89
+ number;
72
90
  /**
73
91
  * The key tag is a non-cryptographic hash of the a DNSKEY resource record associated with this DnsKey. The key tag can be used to identify a DNSKEY more quickly (but it is not a
74
92
  * unique identifier). In particular, the key tag is used in a parent zone's DS record to point at the DNSKEY in this child ManagedZone. The key tag is a number in the range [0, 65535]
75
93
  * and the algorithm to calculate it is specified in RFC4034 Appendix B. Output only.
76
94
  */
77
- keyTag?: number;
78
- kind?: string;
95
+ keyTag?:
96
+ number;
97
+ kind?:
98
+ string;
79
99
  /** Base64 encoded public half of this key. Output only. */
80
- publicKey?: string;
100
+ publicKey?:
101
+ string;
81
102
  /**
82
103
  * One of "KEY_SIGNING" or "ZONE_SIGNING". Keys of type KEY_SIGNING have the Secure Entry Point flag set and, when active, are used to sign only resource record sets of type DNSKEY.
83
104
  * Otherwise, the Secure Entry Point flag is cleared, and this key is used to sign only resource record sets of other types. Immutable after creation time.
84
105
  */
85
- type?: string;
106
+ type?:
107
+ string;
86
108
  }
87
109
  interface DnsKeyDigest {
88
110
  /** The base-16 encoded bytes of this digest. Suitable for use in a DS resource record. */
89
- digest?: string;
111
+ digest?:
112
+ string;
90
113
  /** Specifies the algorithm used to calculate this digest. */
91
- type?: string;
114
+ type?:
115
+ string;
92
116
  }
93
117
  interface DnsKeysListResponse {
94
118
  /** The requested resources. */
95
- dnsKeys?: DnsKey[];
96
- header?: ResponseHeader;
119
+ dnsKeys?:
120
+ DnsKey[];
121
+ header?:
122
+ ResponseHeader;
97
123
  /** Type of resource. */
98
- kind?: string;
124
+ kind?:
125
+ string;
99
126
  /**
100
127
  * The presence of this field indicates that there exist more results following your last page of results in pagination order. To fetch them, make another list request using this value
101
128
  * as your pagination token. In this way you can retrieve the complete contents of even very large collections one page at a time. However, if the contents of the collection change
102
129
  * between the first and last paginated list request, the set of all elements returned are an inconsistent view of the collection. There is no way to retrieve a "snapshot" of
103
130
  * collections larger than the maximum page size.
104
131
  */
105
- nextPageToken?: string;
132
+ nextPageToken?:
133
+ string;
106
134
  }
107
135
  interface DnsKeySpec {
108
136
  /** String mnemonic specifying the DNSSEC algorithm of this key. */
109
- algorithm?: string;
137
+ algorithm?:
138
+ string;
110
139
  /** Length of the keys in bits. */
111
- keyLength?: number;
140
+ keyLength?:
141
+ number;
112
142
  /**
113
143
  * Specifies whether this is a key signing key (KSK) or a zone signing key (ZSK). Key signing keys have the Secure Entry Point flag set and, when active, are only used to sign resource
114
144
  * record sets of type DNSKEY. Zone signing keys do not have the Secure Entry Point flag set and are used to sign all other types of resource record sets.
115
145
  */
116
- keyType?: string;
117
- kind?: string;
146
+ keyType?:
147
+ string;
148
+ kind?:
149
+ string;
118
150
  }
119
151
  interface Expr {
120
152
  /** Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI. */
121
- description?: string;
153
+ description?:
154
+ string;
122
155
  /** Textual representation of an expression in Common Expression Language syntax. */
123
- expression?: string;
156
+ expression?:
157
+ string;
124
158
  /** Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file. */
125
- location?: string;
159
+ location?:
160
+ string;
126
161
  /** 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. */
127
- title?: string;
162
+ title?:
163
+ string;
128
164
  }
129
165
  interface GoogleIamV1AuditConfig {
130
166
  /** The configuration for logging of each type of permission. */
131
- auditLogConfigs?: GoogleIamV1AuditLogConfig[];
167
+ auditLogConfigs?:
168
+ GoogleIamV1AuditLogConfig[];
132
169
  /**
133
170
  * Specifies a service that will be enabled for audit logging. For example, `storage.googleapis.com`, `cloudsql.googleapis.com`. `allServices` is a special value that covers all
134
171
  * services.
135
172
  */
136
- service?: string;
173
+ service?:
174
+ string;
137
175
  }
138
176
  interface GoogleIamV1AuditLogConfig {
139
177
  /** Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members. */
140
- exemptedMembers?: string[];
178
+ exemptedMembers?:
179
+ string[];
141
180
  /** The log type that this config enables. */
142
- logType?: string;
181
+ logType?:
182
+ string;
143
183
  }
144
184
  interface GoogleIamV1Binding {
145
185
  /**
@@ -147,7 +187,8 @@ declare namespace gapi.client {
147
187
  * 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
148
188
  * resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
149
189
  */
150
- condition?: Expr;
190
+ condition?:
191
+ Expr;
151
192
  /**
152
193
  * 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
153
194
  * 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
@@ -164,13 +205,16 @@ declare namespace gapi.client {
164
205
  * 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
165
206
  * retains the role in the binding.
166
207
  */
167
- members?: string[];
208
+ members?:
209
+ string[];
168
210
  /** Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`. */
169
- role?: string;
211
+ role?:
212
+ string;
170
213
  }
171
214
  interface GoogleIamV1GetIamPolicyRequest {
172
215
  /** OPTIONAL: A `GetPolicyOptions` object for specifying options to `GetIamPolicy`. */
173
- options?: GoogleIamV1GetPolicyOptions;
216
+ options?:
217
+ GoogleIamV1GetPolicyOptions;
174
218
  }
175
219
  interface GoogleIamV1GetPolicyOptions {
176
220
  /**
@@ -180,18 +224,21 @@ declare namespace gapi.client {
180
224
  * bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM
181
225
  * documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
182
226
  */
183
- requestedPolicyVersion?: number;
227
+ requestedPolicyVersion?:
228
+ number;
184
229
  }
185
230
  interface GoogleIamV1Policy {
186
231
  /** Specifies cloud audit logging configuration for this policy. */
187
- auditConfigs?: GoogleIamV1AuditConfig[];
232
+ auditConfigs?:
233
+ GoogleIamV1AuditConfig[];
188
234
  /**
189
235
  * Associates a list of `members`, or principals, with a `role`. Optionally, may specify a `condition` that determines how and when the `bindings` are applied. Each of the `bindings`
190
236
  * must contain at least one principal. The `bindings` in a `Policy` can refer to up to 1,500 principals; up to 250 of these principals can be Google groups. Each occurrence of a
191
237
  * 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
192
238
  * 1,450 principals to the `bindings` in the `Policy`.
193
239
  */
194
- bindings?: GoogleIamV1Binding[];
240
+ bindings?:
241
+ GoogleIamV1Binding[];
195
242
  /**
196
243
  * `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
197
244
  * 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
@@ -199,7 +246,8 @@ declare namespace gapi.client {
199
246
  * 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`
200
247
  * policy, and all of the conditions in the version `3` policy are lost.
201
248
  */
202
- etag?: string;
249
+ etag?:
250
+ string;
203
251
  /**
204
252
  * 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
205
253
  * 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
@@ -208,478 +256,651 @@ declare namespace gapi.client {
208
256
  * 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
209
257
  * 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).
210
258
  */
211
- version?: number;
259
+ version?:
260
+ number;
212
261
  }
213
262
  interface GoogleIamV1SetIamPolicyRequest {
214
263
  /**
215
264
  * 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
216
265
  * services (such as Projects) might reject them.
217
266
  */
218
- policy?: GoogleIamV1Policy;
267
+ policy?:
268
+ GoogleIamV1Policy;
219
269
  /**
220
270
  * OPTIONAL: A FieldMask specifying which fields of the policy to modify. Only the fields in the mask will be modified. If no mask is provided, the following default mask is used:
221
271
  * `paths: "bindings, etag"`
222
272
  */
223
- updateMask?: string;
273
+ updateMask?:
274
+ string;
224
275
  }
225
276
  interface GoogleIamV1TestIamPermissionsRequest {
226
277
  /**
227
278
  * The set of permissions to check for the `resource`. Permissions with wildcards (such as `*` or `storage.*`) are not allowed. For more information see [IAM
228
279
  * Overview](https://cloud.google.com/iam/docs/overview#permissions).
229
280
  */
230
- permissions?: string[];
281
+ permissions?:
282
+ string[];
231
283
  }
232
284
  interface GoogleIamV1TestIamPermissionsResponse {
233
285
  /** A subset of `TestPermissionsRequest.permissions` that the caller is allowed. */
234
- permissions?: string[];
286
+ permissions?:
287
+ string[];
235
288
  }
236
289
  interface ManagedZone {
237
- cloudLoggingConfig?: ManagedZoneCloudLoggingConfig;
290
+ cloudLoggingConfig?:
291
+ ManagedZoneCloudLoggingConfig;
238
292
  /** The time that this resource was created on the server. This is in RFC3339 text format. Output only. */
239
- creationTime?: string;
293
+ creationTime?:
294
+ string;
240
295
  /** A mutable string of at most 1024 characters associated with this resource for the user's convenience. Has no effect on the managed zone's function. */
241
- description?: string;
296
+ description?:
297
+ string;
242
298
  /** The DNS name of this managed zone, for instance "example.com.". */
243
- dnsName?: string;
299
+ dnsName?:
300
+ string;
244
301
  /** DNSSEC configuration. */
245
- dnssecConfig?: ManagedZoneDnsSecConfig;
302
+ dnssecConfig?:
303
+ ManagedZoneDnsSecConfig;
246
304
  /** The presence for this field indicates that outbound forwarding is enabled for this zone. The value of this field contains the set of destinations to forward to. */
247
- forwardingConfig?: ManagedZoneForwardingConfig;
305
+ forwardingConfig?:
306
+ ManagedZoneForwardingConfig;
248
307
  /** Unique identifier for the resource; defined by the server (output only) */
249
- id?: string;
250
- kind?: string;
308
+ id?:
309
+ string;
310
+ kind?:
311
+ string;
251
312
  /** User labels. */
252
- labels?: { [P in string]: string };
313
+ labels?:
314
+ { [P in string]: string };
253
315
  /**
254
316
  * User assigned name for this resource. Must be unique within the project. The name must be 1-63 characters long, must begin with a letter, end with a letter or digit, and only
255
317
  * contain lowercase letters, digits or dashes.
256
318
  */
257
- name?: string;
319
+ name?:
320
+ string;
258
321
  /** Delegate your managed_zone to these virtual name servers; defined by the server (output only) */
259
- nameServers?: string[];
322
+ nameServers?:
323
+ string[];
260
324
  /**
261
325
  * Optionally specifies the NameServerSet for this ManagedZone. A NameServerSet is a set of DNS name servers that all host the same ManagedZones. Most users leave this field unset. If
262
326
  * you need to use this field, contact your account team.
263
327
  */
264
- nameServerSet?: string;
328
+ nameServerSet?:
329
+ string;
265
330
  /** The presence of this field indicates that DNS Peering is enabled for this zone. The value of this field contains the network to peer with. */
266
- peeringConfig?: ManagedZonePeeringConfig;
331
+ peeringConfig?:
332
+ ManagedZonePeeringConfig;
267
333
  /** For privately visible zones, the set of Virtual Private Cloud resources that the zone is visible from. */
268
- privateVisibilityConfig?: ManagedZonePrivateVisibilityConfig;
334
+ privateVisibilityConfig?:
335
+ ManagedZonePrivateVisibilityConfig;
269
336
  /**
270
337
  * The presence of this field indicates that this is a managed reverse lookup zone and Cloud DNS resolves reverse lookup queries using automatically configured records for VPC
271
338
  * resources. This only applies to networks listed under private_visibility_config.
272
339
  */
273
- reverseLookupConfig?: ManagedZoneReverseLookupConfig;
340
+ reverseLookupConfig?:
341
+ ManagedZoneReverseLookupConfig;
274
342
  /** This field links to the associated service directory namespace. Do not set this field for public zones or forwarding zones. */
275
- serviceDirectoryConfig?: ManagedZoneServiceDirectoryConfig;
343
+ serviceDirectoryConfig?:
344
+ ManagedZoneServiceDirectoryConfig;
276
345
  /** The zone's visibility: public zones are exposed to the Internet, while private zones are visible only to Virtual Private Cloud resources. */
277
- visibility?: string;
346
+ visibility?:
347
+ string;
278
348
  }
279
349
  interface ManagedZoneCloudLoggingConfig {
280
350
  /** If set, enable query logging for this ManagedZone. False by default, making logging opt-in. */
281
- enableLogging?: boolean;
282
- kind?: string;
351
+ enableLogging?:
352
+ boolean;
353
+ kind?:
354
+ string;
283
355
  }
284
356
  interface ManagedZoneDnsSecConfig {
285
357
  /** Specifies parameters for generating initial DnsKeys for this ManagedZone. Can only be changed while the state is OFF. */
286
- defaultKeySpecs?: DnsKeySpec[];
287
- kind?: string;
358
+ defaultKeySpecs?:
359
+ DnsKeySpec[];
360
+ kind?:
361
+ string;
288
362
  /** Specifies the mechanism for authenticated denial-of-existence responses. Can only be changed while the state is OFF. */
289
- nonExistence?: string;
363
+ nonExistence?:
364
+ string;
290
365
  /** Specifies whether DNSSEC is enabled, and what mode it is in. */
291
- state?: string;
366
+ state?:
367
+ string;
292
368
  }
293
369
  interface ManagedZoneForwardingConfig {
294
- kind?: string;
370
+ kind?:
371
+ string;
295
372
  /** List of target name servers to forward to. Cloud DNS selects the best available name server if more than one target is given. */
296
- targetNameServers?: ManagedZoneForwardingConfigNameServerTarget[];
373
+ targetNameServers?:
374
+ ManagedZoneForwardingConfigNameServerTarget[];
297
375
  }
298
376
  interface ManagedZoneForwardingConfigNameServerTarget {
299
377
  /**
300
378
  * Forwarding path for this NameServerTarget. If unset or set to DEFAULT, Cloud DNS makes forwarding decisions based on IP address ranges; that is, RFC1918 addresses go to the VPC
301
379
  * network, non-RFC1918 addresses go to the internet. When set to PRIVATE, Cloud DNS always sends queries through the VPC network for this target.
302
380
  */
303
- forwardingPath?: string;
381
+ forwardingPath?:
382
+ string;
304
383
  /** IPv4 address of a target name server. */
305
- ipv4Address?: string;
384
+ ipv4Address?:
385
+ string;
306
386
  /** IPv6 address of a target name server. Does not accept both fields (ipv4 & ipv6) being populated. Public preview as of November 2022. */
307
- ipv6Address?: string;
308
- kind?: string;
387
+ ipv6Address?:
388
+ string;
389
+ kind?:
390
+ string;
309
391
  }
310
392
  interface ManagedZoneOperationsListResponse {
311
- header?: ResponseHeader;
393
+ header?:
394
+ ResponseHeader;
312
395
  /** Type of resource. */
313
- kind?: string;
396
+ kind?:
397
+ string;
314
398
  /**
315
399
  * The presence of this field indicates that there exist more results following your last page of results in pagination order. To fetch them, make another list request using this value
316
400
  * as your page token. This lets you retrieve the complete contents of even very large collections one page at a time. However, if the contents of the collection change between the
317
401
  * first and last paginated list request, the set of all elements returned are an inconsistent view of the collection. You cannot retrieve a consistent snapshot of a collection larger
318
402
  * than the maximum page size.
319
403
  */
320
- nextPageToken?: string;
404
+ nextPageToken?:
405
+ string;
321
406
  /** The operation resources. */
322
- operations?: Operation[];
407
+ operations?:
408
+ Operation[];
323
409
  }
324
410
  interface ManagedZonePeeringConfig {
325
- kind?: string;
411
+ kind?:
412
+ string;
326
413
  /** The network with which to peer. */
327
- targetNetwork?: ManagedZonePeeringConfigTargetNetwork;
414
+ targetNetwork?:
415
+ ManagedZonePeeringConfigTargetNetwork;
328
416
  }
329
417
  interface ManagedZonePeeringConfigTargetNetwork {
330
418
  /**
331
419
  * The time at which the zone was deactivated, in RFC 3339 date-time format. An empty string indicates that the peering connection is active. The producer network can deactivate a
332
420
  * zone. The zone is automatically deactivated if the producer network that the zone targeted is deleted. Output only.
333
421
  */
334
- deactivateTime?: string;
335
- kind?: string;
422
+ deactivateTime?:
423
+ string;
424
+ kind?:
425
+ string;
336
426
  /** The fully qualified URL of the VPC network to forward queries to. This should be formatted like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network} */
337
- networkUrl?: string;
427
+ networkUrl?:
428
+ string;
338
429
  }
339
430
  interface ManagedZonePrivateVisibilityConfig {
340
431
  /** The list of Google Kubernetes Engine clusters that can see this zone. */
341
- gkeClusters?: ManagedZonePrivateVisibilityConfigGKECluster[];
342
- kind?: string;
432
+ gkeClusters?:
433
+ ManagedZonePrivateVisibilityConfigGKECluster[];
434
+ kind?:
435
+ string;
343
436
  /** The list of VPC networks that can see this zone. */
344
- networks?: ManagedZonePrivateVisibilityConfigNetwork[];
437
+ networks?:
438
+ ManagedZonePrivateVisibilityConfigNetwork[];
345
439
  }
346
440
  interface ManagedZonePrivateVisibilityConfigGKECluster {
347
441
  /**
348
442
  * The resource name of the cluster to bind this ManagedZone to. This should be specified in the format like: projects/*‍/locations/*‍/clusters/*. This is referenced from GKE
349
443
  * projects.locations.clusters.get API: https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/projects.locations.clusters/get
350
444
  */
351
- gkeClusterName?: string;
352
- kind?: string;
445
+ gkeClusterName?:
446
+ string;
447
+ kind?:
448
+ string;
353
449
  }
354
450
  interface ManagedZonePrivateVisibilityConfigNetwork {
355
- kind?: string;
451
+ kind?:
452
+ string;
356
453
  /** The fully qualified URL of the VPC network to bind to. Format this URL like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network} */
357
- networkUrl?: string;
454
+ networkUrl?:
455
+ string;
358
456
  }
359
457
  interface ManagedZoneReverseLookupConfig {
360
- kind?: string;
458
+ kind?:
459
+ string;
361
460
  }
362
461
  interface ManagedZoneServiceDirectoryConfig {
363
- kind?: string;
462
+ kind?:
463
+ string;
364
464
  /** Contains information about the namespace associated with the zone. */
365
- namespace?: ManagedZoneServiceDirectoryConfigNamespace;
465
+ namespace?:
466
+ ManagedZoneServiceDirectoryConfigNamespace;
366
467
  }
367
468
  interface ManagedZoneServiceDirectoryConfigNamespace {
368
469
  /** The time that the namespace backing this zone was deleted; an empty string if it still exists. This is in RFC3339 text format. Output only. */
369
- deletionTime?: string;
370
- kind?: string;
470
+ deletionTime?:
471
+ string;
472
+ kind?:
473
+ string;
371
474
  /**
372
475
  * The fully qualified URL of the namespace associated with the zone. Format must be
373
476
  * https://servicedirectory.googleapis.com/v1/projects/{project}/locations/{location}/namespaces/{namespace}
374
477
  */
375
- namespaceUrl?: string;
478
+ namespaceUrl?:
479
+ string;
376
480
  }
377
481
  interface ManagedZonesListResponse {
378
- header?: ResponseHeader;
482
+ header?:
483
+ ResponseHeader;
379
484
  /** Type of resource. */
380
- kind?: string;
485
+ kind?:
486
+ string;
381
487
  /** The managed zone resources. */
382
- managedZones?: ManagedZone[];
488
+ managedZones?:
489
+ ManagedZone[];
383
490
  /**
384
491
  * The presence of this field indicates that there exist more results following your last page of results in pagination order. To fetch them, make another list request using this value
385
492
  * as your page token. This lets you the complete contents of even very large collections one page at a time. However, if the contents of the collection change between the first and
386
493
  * last paginated list request, the set of all elements returned are an inconsistent view of the collection. You cannot retrieve a consistent snapshot of a collection larger than the
387
494
  * maximum page size.
388
495
  */
389
- nextPageToken?: string;
496
+ nextPageToken?:
497
+ string;
390
498
  }
391
499
  interface Operation {
392
500
  /** Only populated if the operation targeted a DnsKey (output only). */
393
- dnsKeyContext?: OperationDnsKeyContext;
501
+ dnsKeyContext?:
502
+ OperationDnsKeyContext;
394
503
  /**
395
504
  * Unique identifier for the resource. This is the client_operation_id if the client specified it when the mutation was initiated, otherwise, it is generated by the server. The name
396
505
  * must be 1-63 characters long and match the regular expression [-a-z0-9]? (output only)
397
506
  */
398
- id?: string;
399
- kind?: string;
507
+ id?:
508
+ string;
509
+ kind?:
510
+ string;
400
511
  /** The time that this operation was started by the server. This is in RFC3339 text format (output only). */
401
- startTime?: string;
512
+ startTime?:
513
+ string;
402
514
  /**
403
515
  * Status of the operation. Can be one of the following: "PENDING" or "DONE" (output only). A status of "DONE" means that the request to update the authoritative servers has been sent,
404
516
  * but the servers might not be updated yet.
405
517
  */
406
- status?: string;
518
+ status?:
519
+ string;
407
520
  /** Type of the operation. Operations include insert, update, and delete (output only). */
408
- type?: string;
521
+ type?:
522
+ string;
409
523
  /** User who requested the operation, for example: user@example.com. cloud-dns-system for operations automatically done by the system. (output only) */
410
- user?: string;
524
+ user?:
525
+ string;
411
526
  /** Only populated if the operation targeted a ManagedZone (output only). */
412
- zoneContext?: OperationManagedZoneContext;
527
+ zoneContext?:
528
+ OperationManagedZoneContext;
413
529
  }
414
530
  interface OperationDnsKeyContext {
415
531
  /** The post-operation DnsKey resource. */
416
- newValue?: DnsKey;
532
+ newValue?:
533
+ DnsKey;
417
534
  /** The pre-operation DnsKey resource. */
418
- oldValue?: DnsKey;
535
+ oldValue?:
536
+ DnsKey;
419
537
  }
420
538
  interface OperationManagedZoneContext {
421
539
  /** The post-operation ManagedZone resource. */
422
- newValue?: ManagedZone;
540
+ newValue?:
541
+ ManagedZone;
423
542
  /** The pre-operation ManagedZone resource. */
424
- oldValue?: ManagedZone;
543
+ oldValue?:
544
+ ManagedZone;
425
545
  }
426
546
  interface PoliciesListResponse {
427
- header?: ResponseHeader;
547
+ header?:
548
+ ResponseHeader;
428
549
  /** Type of resource. */
429
- kind?: string;
550
+ kind?:
551
+ string;
430
552
  /**
431
553
  * The presence of this field indicates that there exist more results following your last page of results in pagination order. To fetch them, make another list request using this value
432
554
  * as your page token. This lets you the complete contents of even very large collections one page at a time. However, if the contents of the collection change between the first and
433
555
  * last paginated list request, the set of all elements returned are an inconsistent view of the collection. You cannot retrieve a consistent snapshot of a collection larger than the
434
556
  * maximum page size.
435
557
  */
436
- nextPageToken?: string;
558
+ nextPageToken?:
559
+ string;
437
560
  /** The policy resources. */
438
- policies?: Policy[];
561
+ policies?:
562
+ Policy[];
439
563
  }
440
564
  interface PoliciesPatchResponse {
441
- header?: ResponseHeader;
442
- policy?: Policy;
565
+ header?:
566
+ ResponseHeader;
567
+ policy?:
568
+ Policy;
443
569
  }
444
570
  interface PoliciesUpdateResponse {
445
- header?: ResponseHeader;
446
- policy?: Policy;
571
+ header?:
572
+ ResponseHeader;
573
+ policy?:
574
+ Policy;
447
575
  }
448
576
  interface Policy {
449
577
  /**
450
578
  * Sets an alternative name server for the associated networks. When specified, all DNS queries are forwarded to a name server that you choose. Names such as .internal are not
451
579
  * available when an alternative name server is specified.
452
580
  */
453
- alternativeNameServerConfig?: PolicyAlternativeNameServerConfig;
581
+ alternativeNameServerConfig?:
582
+ PolicyAlternativeNameServerConfig;
454
583
  /** A mutable string of at most 1024 characters associated with this resource for the user's convenience. Has no effect on the policy's function. */
455
- description?: string;
584
+ description?:
585
+ string;
456
586
  /**
457
587
  * Allows networks bound to this policy to receive DNS queries sent by VMs or applications over VPN connections. When enabled, a virtual IP address is allocated from each of the
458
588
  * subnetworks that are bound to this policy.
459
589
  */
460
- enableInboundForwarding?: boolean;
590
+ enableInboundForwarding?:
591
+ boolean;
461
592
  /** Controls whether logging is enabled for the networks bound to this policy. Defaults to no logging if not set. */
462
- enableLogging?: boolean;
593
+ enableLogging?:
594
+ boolean;
463
595
  /** Unique identifier for the resource; defined by the server (output only). */
464
- id?: string;
465
- kind?: string;
596
+ id?:
597
+ string;
598
+ kind?:
599
+ string;
466
600
  /** User-assigned name for this policy. */
467
- name?: string;
601
+ name?:
602
+ string;
468
603
  /** List of network names specifying networks to which this policy is applied. */
469
- networks?: PolicyNetwork[];
604
+ networks?:
605
+ PolicyNetwork[];
470
606
  }
471
607
  interface PolicyAlternativeNameServerConfig {
472
- kind?: string;
608
+ kind?:
609
+ string;
473
610
  /**
474
611
  * Sets an alternative name server for the associated networks. When specified, all DNS queries are forwarded to a name server that you choose. Names such as .internal are not
475
612
  * available when an alternative name server is specified.
476
613
  */
477
- targetNameServers?: PolicyAlternativeNameServerConfigTargetNameServer[];
614
+ targetNameServers?:
615
+ PolicyAlternativeNameServerConfigTargetNameServer[];
478
616
  }
479
617
  interface PolicyAlternativeNameServerConfigTargetNameServer {
480
618
  /**
481
619
  * Forwarding path for this TargetNameServer. If unset or set to DEFAULT, Cloud DNS makes forwarding decisions based on address ranges; that is, RFC1918 addresses go to the VPC
482
620
  * network, non-RFC1918 addresses go to the internet. When set to PRIVATE, Cloud DNS always sends queries through the VPC network for this target.
483
621
  */
484
- forwardingPath?: string;
622
+ forwardingPath?:
623
+ string;
485
624
  /** IPv4 address to forward queries to. */
486
- ipv4Address?: string;
625
+ ipv4Address?:
626
+ string;
487
627
  /** IPv6 address to forward to. Does not accept both fields (ipv4 & ipv6) being populated. Public preview as of November 2022. */
488
- ipv6Address?: string;
489
- kind?: string;
628
+ ipv6Address?:
629
+ string;
630
+ kind?:
631
+ string;
490
632
  }
491
633
  interface PolicyNetwork {
492
- kind?: string;
634
+ kind?:
635
+ string;
493
636
  /** The fully qualified URL of the VPC network to bind to. This should be formatted like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network} */
494
- networkUrl?: string;
637
+ networkUrl?:
638
+ string;
495
639
  }
496
640
  interface Project {
497
641
  /** User assigned unique identifier for the resource (output only). */
498
- id?: string;
499
- kind?: string;
642
+ id?:
643
+ string;
644
+ kind?:
645
+ string;
500
646
  /** Unique numeric identifier for the resource; defined by the server (output only). */
501
- number?: string;
647
+ number?:
648
+ string;
502
649
  /** Quotas assigned to this project (output only). */
503
- quota?: Quota;
650
+ quota?:
651
+ Quota;
504
652
  }
505
653
  interface Quota {
506
654
  /** Maximum allowed number of DnsKeys per ManagedZone. */
507
- dnsKeysPerManagedZone?: number;
655
+ dnsKeysPerManagedZone?:
656
+ number;
508
657
  /** Maximum allowed number of GKE clusters to which a privately scoped zone can be attached. */
509
- gkeClustersPerManagedZone?: number;
658
+ gkeClustersPerManagedZone?:
659
+ number;
510
660
  /** Maximum allowed number of GKE clusters per policy. */
511
- gkeClustersPerPolicy?: number;
661
+ gkeClustersPerPolicy?:
662
+ number;
512
663
  /** Maximum allowed number of GKE clusters per response policy. */
513
- gkeClustersPerResponsePolicy?: number;
664
+ gkeClustersPerResponsePolicy?:
665
+ number;
514
666
  /** Maximum allowed number of items per routing policy. */
515
- itemsPerRoutingPolicy?: number;
516
- kind?: string;
667
+ itemsPerRoutingPolicy?:
668
+ number;
669
+ kind?:
670
+ string;
517
671
  /** Maximum allowed number of managed zones in the project. */
518
- managedZones?: number;
672
+ managedZones?:
673
+ number;
519
674
  /** Maximum allowed number of managed zones which can be attached to a GKE cluster. */
520
- managedZonesPerGkeCluster?: number;
675
+ managedZonesPerGkeCluster?:
676
+ number;
521
677
  /** Maximum allowed number of managed zones which can be attached to a network. */
522
- managedZonesPerNetwork?: number;
678
+ managedZonesPerNetwork?:
679
+ number;
523
680
  /** Maximum allowed number of networks to which a privately scoped zone can be attached. */
524
- networksPerManagedZone?: number;
681
+ networksPerManagedZone?:
682
+ number;
525
683
  /** Maximum allowed number of networks per policy. */
526
- networksPerPolicy?: number;
684
+ networksPerPolicy?:
685
+ number;
527
686
  /** Maximum allowed number of networks per response policy. */
528
- networksPerResponsePolicy?: number;
687
+ networksPerResponsePolicy?:
688
+ number;
529
689
  /** Maximum allowed number of consumer peering zones per target network owned by this producer project */
530
- peeringZonesPerTargetNetwork?: number;
690
+ peeringZonesPerTargetNetwork?:
691
+ number;
531
692
  /** Maximum allowed number of policies per project. */
532
- policies?: number;
693
+ policies?:
694
+ number;
533
695
  /** Maximum allowed number of ResourceRecords per ResourceRecordSet. */
534
- resourceRecordsPerRrset?: number;
696
+ resourceRecordsPerRrset?:
697
+ number;
535
698
  /** Maximum allowed number of response policies per project. */
536
- responsePolicies?: number;
699
+ responsePolicies?:
700
+ number;
537
701
  /** Maximum allowed number of rules per response policy. */
538
- responsePolicyRulesPerResponsePolicy?: number;
702
+ responsePolicyRulesPerResponsePolicy?:
703
+ number;
539
704
  /** Maximum allowed number of ResourceRecordSets to add per ChangesCreateRequest. */
540
- rrsetAdditionsPerChange?: number;
705
+ rrsetAdditionsPerChange?:
706
+ number;
541
707
  /** Maximum allowed number of ResourceRecordSets to delete per ChangesCreateRequest. */
542
- rrsetDeletionsPerChange?: number;
708
+ rrsetDeletionsPerChange?:
709
+ number;
543
710
  /** Maximum allowed number of ResourceRecordSets per zone in the project. */
544
- rrsetsPerManagedZone?: number;
711
+ rrsetsPerManagedZone?:
712
+ number;
545
713
  /** Maximum allowed number of target name servers per managed forwarding zone. */
546
- targetNameServersPerManagedZone?: number;
714
+ targetNameServersPerManagedZone?:
715
+ number;
547
716
  /** Maximum allowed number of alternative target name servers per policy. */
548
- targetNameServersPerPolicy?: number;
717
+ targetNameServersPerPolicy?:
718
+ number;
549
719
  /** Maximum allowed size for total rrdata in one ChangesCreateRequest in bytes. */
550
- totalRrdataSizePerChange?: number;
720
+ totalRrdataSizePerChange?:
721
+ number;
551
722
  /** DNSSEC algorithm and key length types that can be used for DnsKeys. */
552
- whitelistedKeySpecs?: DnsKeySpec[];
723
+ whitelistedKeySpecs?:
724
+ DnsKeySpec[];
553
725
  }
554
726
  interface ResourceRecordSet {
555
- kind?: string;
727
+ kind?:
728
+ string;
556
729
  /** For example, www.example.com. */
557
- name?: string;
730
+ name?:
731
+ string;
558
732
  /**
559
733
  * Configures dynamic query responses based on geo location of querying user or a weighted round robin based routing policy. A ResourceRecordSet should only have either rrdata (static)
560
734
  * or routing_policy (dynamic). An error is returned otherwise.
561
735
  */
562
- routingPolicy?: RRSetRoutingPolicy;
736
+ routingPolicy?:
737
+ RRSetRoutingPolicy;
563
738
  /** As defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1) -- see examples. */
564
- rrdatas?: string[];
739
+ rrdatas?:
740
+ string[];
565
741
  /** As defined in RFC 4034 (section 3.2). */
566
- signatureRrdatas?: string[];
742
+ signatureRrdatas?:
743
+ string[];
567
744
  /** Number of seconds that this ResourceRecordSet can be cached by resolvers. */
568
- ttl?: number;
745
+ ttl?:
746
+ number;
569
747
  /** The identifier of a supported record type. See the list of Supported DNS record types. */
570
- type?: string;
748
+ type?:
749
+ string;
571
750
  }
572
751
  interface ResourceRecordSetsListResponse {
573
- header?: ResponseHeader;
752
+ header?:
753
+ ResponseHeader;
574
754
  /** Type of resource. */
575
- kind?: string;
755
+ kind?:
756
+ string;
576
757
  /**
577
758
  * The presence of this field indicates that there exist more results following your last page of results in pagination order. To fetch them, make another list request using this value
578
759
  * as your pagination token. This lets you retrieve complete contents of even larger collections, one page at a time. However, if the contents of the collection change between the
579
760
  * first and last paginated list request, the set of elements returned are an inconsistent view of the collection. You cannot retrieve a consistent snapshot of a collection larger than
580
761
  * the maximum page size.
581
762
  */
582
- nextPageToken?: string;
763
+ nextPageToken?:
764
+ string;
583
765
  /** The resource record set resources. */
584
- rrsets?: ResourceRecordSet[];
766
+ rrsets?:
767
+ ResourceRecordSet[];
585
768
  }
586
769
  interface ResponseHeader {
587
770
  /** For mutating operation requests that completed successfully. This is the client_operation_id if the client specified it, otherwise it is generated by the server (output only). */
588
- operationId?: string;
771
+ operationId?:
772
+ string;
589
773
  }
590
774
  interface ResponsePoliciesListResponse {
591
- header?: ResponseHeader;
775
+ header?:
776
+ ResponseHeader;
592
777
  /**
593
778
  * The presence of this field indicates that more results exist following your last page of results in pagination order. To fetch them, make another list request by using this value as
594
779
  * your page token. This lets you view the complete contents of even very large collections one page at a time. However, if the contents of the collection change between the first and
595
780
  * last paginated list request, the set of all elements returned are an inconsistent view of the collection. You cannot retrieve a consistent snapshot of a collection larger than the
596
781
  * maximum page size.
597
782
  */
598
- nextPageToken?: string;
783
+ nextPageToken?:
784
+ string;
599
785
  /** The Response Policy resources. */
600
- responsePolicies?: ResponsePolicy[];
786
+ responsePolicies?:
787
+ ResponsePolicy[];
601
788
  }
602
789
  interface ResponsePoliciesPatchResponse {
603
- header?: ResponseHeader;
604
- responsePolicy?: ResponsePolicy;
790
+ header?:
791
+ ResponseHeader;
792
+ responsePolicy?:
793
+ ResponsePolicy;
605
794
  }
606
795
  interface ResponsePoliciesUpdateResponse {
607
- header?: ResponseHeader;
608
- responsePolicy?: ResponsePolicy;
796
+ header?:
797
+ ResponseHeader;
798
+ responsePolicy?:
799
+ ResponsePolicy;
609
800
  }
610
801
  interface ResponsePolicy {
611
802
  /** User-provided description for this Response Policy. */
612
- description?: string;
803
+ description?:
804
+ string;
613
805
  /** The list of Google Kubernetes Engine clusters to which this response policy is applied. */
614
- gkeClusters?: ResponsePolicyGKECluster[];
806
+ gkeClusters?:
807
+ ResponsePolicyGKECluster[];
615
808
  /** Unique identifier for the resource; defined by the server (output only). */
616
- id?: string;
617
- kind?: string;
809
+ id?:
810
+ string;
811
+ kind?:
812
+ string;
618
813
  /** User labels. */
619
- labels?: { [P in string]: string };
814
+ labels?:
815
+ { [P in string]: string };
620
816
  /** List of network names specifying networks to which this policy is applied. */
621
- networks?: ResponsePolicyNetwork[];
817
+ networks?:
818
+ ResponsePolicyNetwork[];
622
819
  /** User assigned name for this Response Policy. */
623
- responsePolicyName?: string;
820
+ responsePolicyName?:
821
+ string;
624
822
  }
625
823
  interface ResponsePolicyGKECluster {
626
824
  /**
627
825
  * The resource name of the cluster to bind this response policy to. This should be specified in the format like: projects/*‍/locations/*‍/clusters/*. This is referenced from GKE
628
826
  * projects.locations.clusters.get API: https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/projects.locations.clusters/get
629
827
  */
630
- gkeClusterName?: string;
631
- kind?: string;
828
+ gkeClusterName?:
829
+ string;
830
+ kind?:
831
+ string;
632
832
  }
633
833
  interface ResponsePolicyNetwork {
634
- kind?: string;
834
+ kind?:
835
+ string;
635
836
  /** The fully qualified URL of the VPC network to bind to. This should be formatted like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network} */
636
- networkUrl?: string;
837
+ networkUrl?:
838
+ string;
637
839
  }
638
840
  interface ResponsePolicyRule {
639
841
  /** Answer this query with a behavior rather than DNS data. */
640
- behavior?: string;
842
+ behavior?:
843
+ string;
641
844
  /** The DNS name (wildcard or exact) to apply this rule to. Must be unique within the Response Policy Rule. */
642
- dnsName?: string;
643
- kind?: string;
845
+ dnsName?:
846
+ string;
847
+ kind?:
848
+ string;
644
849
  /**
645
850
  * Answer this query directly with DNS data. These ResourceRecordSets override any other DNS behavior for the matched name; in particular they override private zones, the public
646
851
  * internet, and GCP internal DNS. No SOA nor NS types are allowed.
647
852
  */
648
- localData?: ResponsePolicyRuleLocalData;
853
+ localData?:
854
+ ResponsePolicyRuleLocalData;
649
855
  /** An identifier for this rule. Must be unique with the ResponsePolicy. */
650
- ruleName?: string;
856
+ ruleName?:
857
+ string;
651
858
  }
652
859
  interface ResponsePolicyRuleLocalData {
653
860
  /** All resource record sets for this selector, one per resource record type. The name must match the dns_name. */
654
- localDatas?: ResourceRecordSet[];
861
+ localDatas?:
862
+ ResourceRecordSet[];
655
863
  }
656
864
  interface ResponsePolicyRulesListResponse {
657
- header?: ResponseHeader;
865
+ header?:
866
+ ResponseHeader;
658
867
  /**
659
868
  * The presence of this field indicates that there exist more results following your last page of results in pagination order. To fetch them, make another list request using this value
660
869
  * as your page token. This lets you the complete contents of even very large collections one page at a time. However, if the contents of the collection change between the first and
661
870
  * last paginated list request, the set of all elements returned are an inconsistent view of the collection. You cannot retrieve a consistent snapshot of a collection larger than the
662
871
  * maximum page size.
663
872
  */
664
- nextPageToken?: string;
873
+ nextPageToken?:
874
+ string;
665
875
  /** The Response Policy Rule resources. */
666
- responsePolicyRules?: ResponsePolicyRule[];
876
+ responsePolicyRules?:
877
+ ResponsePolicyRule[];
667
878
  }
668
879
  interface ResponsePolicyRulesPatchResponse {
669
- header?: ResponseHeader;
670
- responsePolicyRule?: ResponsePolicyRule;
880
+ header?:
881
+ ResponseHeader;
882
+ responsePolicyRule?:
883
+ ResponsePolicyRule;
671
884
  }
672
885
  interface ResponsePolicyRulesUpdateResponse {
673
- header?: ResponseHeader;
674
- responsePolicyRule?: ResponsePolicyRule;
886
+ header?:
887
+ ResponseHeader;
888
+ responsePolicyRule?:
889
+ ResponsePolicyRule;
675
890
  }
676
891
  interface RRSetRoutingPolicy {
677
- geo?: RRSetRoutingPolicyGeoPolicy;
678
- geoPolicy?: RRSetRoutingPolicyGeoPolicy;
679
- kind?: string;
680
- primaryBackup?: RRSetRoutingPolicyPrimaryBackupPolicy;
681
- wrr?: RRSetRoutingPolicyWrrPolicy;
682
- wrrPolicy?: RRSetRoutingPolicyWrrPolicy;
892
+ geo?:
893
+ RRSetRoutingPolicyGeoPolicy;
894
+ geoPolicy?:
895
+ RRSetRoutingPolicyGeoPolicy;
896
+ kind?:
897
+ string;
898
+ primaryBackup?:
899
+ RRSetRoutingPolicyPrimaryBackupPolicy;
900
+ wrr?:
901
+ RRSetRoutingPolicyWrrPolicy;
902
+ wrrPolicy?:
903
+ RRSetRoutingPolicyWrrPolicy;
683
904
  }
684
905
  interface RRSetRoutingPolicyGeoPolicy {
685
906
  /**
@@ -687,51 +908,74 @@ declare namespace gapi.client {
687
908
  * as long as some targets in the current geo bucket are healthy, we'll return only the healthy targets. However, if they're all unhealthy, we won't failover to the next nearest
688
909
  * bucket, we'll simply return all the items in the current bucket even though they're unhealthy.
689
910
  */
690
- enableFencing?: boolean;
911
+ enableFencing?:
912
+ boolean;
691
913
  /** The primary geo routing configuration. If there are multiple items with the same location, an error is returned instead. */
692
- items?: RRSetRoutingPolicyGeoPolicyGeoPolicyItem[];
693
- kind?: string;
914
+ items?:
915
+ RRSetRoutingPolicyGeoPolicyGeoPolicyItem[];
916
+ kind?:
917
+ string;
694
918
  }
695
919
  interface RRSetRoutingPolicyGeoPolicyGeoPolicyItem {
696
920
  /** For A and AAAA types only. Endpoints to return in the query result only if they are healthy. These can be specified along with rrdata within this item. */
697
- healthCheckedTargets?: RRSetRoutingPolicyHealthCheckTargets;
698
- kind?: string;
921
+ healthCheckedTargets?:
922
+ RRSetRoutingPolicyHealthCheckTargets;
923
+ kind?:
924
+ string;
699
925
  /** The geo-location granularity is a GCP region. This location string should correspond to a GCP region. e.g. "us-east1", "southamerica-east1", "asia-east1", etc. */
700
- location?: string;
701
- rrdatas?: string[];
926
+ location?:
927
+ string;
928
+ rrdatas?:
929
+ string[];
702
930
  /** DNSSEC generated signatures for all the rrdata within this item. Note that if health checked targets are provided for DNSSEC enabled zones, there's a restriction of 1 ip per item. . */
703
- signatureRrdatas?: string[];
931
+ signatureRrdatas?:
932
+ string[];
704
933
  }
705
934
  interface RRSetRoutingPolicyHealthCheckTargets {
706
- internalLoadBalancers?: RRSetRoutingPolicyLoadBalancerTarget[];
935
+ internalLoadBalancers?:
936
+ RRSetRoutingPolicyLoadBalancerTarget[];
707
937
  }
708
938
  interface RRSetRoutingPolicyLoadBalancerTarget {
709
939
  /** The frontend IP address of the Load Balancer to health check. */
710
- ipAddress?: string;
711
- ipProtocol?: string;
712
- kind?: string;
940
+ ipAddress?:
941
+ string;
942
+ ipProtocol?:
943
+ string;
944
+ kind?:
945
+ string;
713
946
  /** The type of Load Balancer specified by this target. Must match the configuration of the Load Balancer located at the LoadBalancerTarget's IP address/port and region. */
714
- loadBalancerType?: string;
947
+ loadBalancerType?:
948
+ string;
715
949
  /** The fully qualified url of the network on which the ILB is present. This should be formatted like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network} */
716
- networkUrl?: string;
950
+ networkUrl?:
951
+ string;
717
952
  /** The configured port of the Load Balancer. */
718
- port?: string;
953
+ port?:
954
+ string;
719
955
  /** The project ID in which the ILB exists. */
720
- project?: string;
956
+ project?:
957
+ string;
721
958
  /** The region in which the ILB exists. */
722
- region?: string;
959
+ region?:
960
+ string;
723
961
  }
724
962
  interface RRSetRoutingPolicyPrimaryBackupPolicy {
725
963
  /** Backup targets provide a regional failover policy for the otherwise global primary targets. If serving state is set to BACKUP, this policy essentially becomes a geo routing policy. */
726
- backupGeoTargets?: RRSetRoutingPolicyGeoPolicy;
727
- kind?: string;
728
- primaryTargets?: RRSetRoutingPolicyHealthCheckTargets;
964
+ backupGeoTargets?:
965
+ RRSetRoutingPolicyGeoPolicy;
966
+ kind?:
967
+ string;
968
+ primaryTargets?:
969
+ RRSetRoutingPolicyHealthCheckTargets;
729
970
  /** When serving state is PRIMARY, this field provides the option of sending a small percentage of the traffic to the backup targets. */
730
- trickleTraffic?: number;
971
+ trickleTraffic?:
972
+ number;
731
973
  }
732
974
  interface RRSetRoutingPolicyWrrPolicy {
733
- items?: RRSetRoutingPolicyWrrPolicyWrrPolicyItem[];
734
- kind?: string;
975
+ items?:
976
+ RRSetRoutingPolicyWrrPolicyWrrPolicyItem[];
977
+ kind?:
978
+ string;
735
979
  }
736
980
  interface RRSetRoutingPolicyWrrPolicyWrrPolicyItem {
737
981
  /**
@@ -739,575 +983,827 @@ declare namespace gapi.client {
739
983
  * unhealthy, we'll choose a different bucket (sampled w.r.t. its weight) for responding. Note that if DNSSEC is enabled for this zone, only one of rrdata or health_checked_targets can
740
984
  * be set.
741
985
  */
742
- healthCheckedTargets?: RRSetRoutingPolicyHealthCheckTargets;
743
- kind?: string;
744
- rrdatas?: string[];
986
+ healthCheckedTargets?:
987
+ RRSetRoutingPolicyHealthCheckTargets;
988
+ kind?:
989
+ string;
990
+ rrdatas?:
991
+ string[];
745
992
  /** DNSSEC generated signatures for all the rrdata within this item. Note that if health checked targets are provided for DNSSEC enabled zones, there's a restriction of 1 ip per item. . */
746
- signatureRrdatas?: string[];
993
+ signatureRrdatas?:
994
+ string[];
747
995
  /**
748
996
  * The weight corresponding to this subset of rrdata. When multiple WeightedRoundRobinPolicyItems are configured, the probability of returning an rrset is proportional to its weight
749
997
  * relative to the sum of weights configured for all items. This weight should be non-negative.
750
998
  */
751
- weight?: number;
999
+ weight?:
1000
+ number;
752
1001
  }
753
1002
  interface ChangesResource {
754
1003
  /** Atomically updates the ResourceRecordSet collection. */
755
1004
  create(request: {
756
1005
  /** V1 error format. */
757
- "$.xgafv"?: string;
1006
+ "$.xgafv"?:
1007
+ string;
758
1008
  /** OAuth access token. */
759
- access_token?: string;
1009
+ access_token?:
1010
+ string;
760
1011
  /** Data format for response. */
761
- alt?: string;
1012
+ alt?:
1013
+ string;
762
1014
  /** JSONP */
763
- callback?: string;
1015
+ callback?:
1016
+ string;
764
1017
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
765
- clientOperationId?: string;
1018
+ clientOperationId?:
1019
+ string;
766
1020
  /** Selector specifying which fields to include in a partial response. */
767
- fields?: string;
1021
+ fields?:
1022
+ string;
768
1023
  /** 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. */
769
- key?: string;
1024
+ key?:
1025
+ string;
770
1026
  /** Identifies the managed zone addressed by this request. Can be the managed zone name or ID. */
771
- managedZone: string;
1027
+ managedZone:
1028
+ string;
772
1029
  /** OAuth 2.0 token for the current user. */
773
- oauth_token?: string;
1030
+ oauth_token?:
1031
+ string;
774
1032
  /** Returns response with indentations and line breaks. */
775
- prettyPrint?: boolean;
1033
+ prettyPrint?:
1034
+ boolean;
776
1035
  /** Identifies the project addressed by this request. */
777
- project: string;
1036
+ project:
1037
+ string;
778
1038
  /** 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. */
779
- quotaUser?: string;
1039
+ quotaUser?:
1040
+ string;
780
1041
  /** Upload protocol for media (e.g. "raw", "multipart"). */
781
- upload_protocol?: string;
1042
+ upload_protocol?:
1043
+ string;
782
1044
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
783
- uploadType?: string;
1045
+ uploadType?:
1046
+ string;
784
1047
  /** Request body */
785
- resource: Change;
1048
+ resource:
1049
+ Change;
786
1050
  }): Request<Change>;
787
1051
  create(request: {
788
1052
  /** V1 error format. */
789
- "$.xgafv"?: string;
1053
+ "$.xgafv"?:
1054
+ string;
790
1055
  /** OAuth access token. */
791
- access_token?: string;
1056
+ access_token?:
1057
+ string;
792
1058
  /** Data format for response. */
793
- alt?: string;
1059
+ alt?:
1060
+ string;
794
1061
  /** JSONP */
795
- callback?: string;
1062
+ callback?:
1063
+ string;
796
1064
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
797
- clientOperationId?: string;
1065
+ clientOperationId?:
1066
+ string;
798
1067
  /** Selector specifying which fields to include in a partial response. */
799
- fields?: string;
1068
+ fields?:
1069
+ string;
800
1070
  /** 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. */
801
- key?: string;
1071
+ key?:
1072
+ string;
802
1073
  /** Identifies the managed zone addressed by this request. Can be the managed zone name or ID. */
803
- managedZone: string;
1074
+ managedZone:
1075
+ string;
804
1076
  /** OAuth 2.0 token for the current user. */
805
- oauth_token?: string;
1077
+ oauth_token?:
1078
+ string;
806
1079
  /** Returns response with indentations and line breaks. */
807
- prettyPrint?: boolean;
1080
+ prettyPrint?:
1081
+ boolean;
808
1082
  /** Identifies the project addressed by this request. */
809
- project: string;
1083
+ project:
1084
+ string;
810
1085
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
811
- quotaUser?: string;
1086
+ quotaUser?:
1087
+ string;
812
1088
  /** Upload protocol for media (e.g. "raw", "multipart"). */
813
- upload_protocol?: string;
1089
+ upload_protocol?:
1090
+ string;
814
1091
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
815
- uploadType?: string;
1092
+ uploadType?:
1093
+ string;
816
1094
  },
817
1095
  body: Change): Request<Change>;
818
1096
  /** Fetches the representation of an existing Change. */
819
1097
  get(request?: {
820
1098
  /** V1 error format. */
821
- "$.xgafv"?: string;
1099
+ "$.xgafv"?:
1100
+ string;
822
1101
  /** OAuth access token. */
823
- access_token?: string;
1102
+ access_token?:
1103
+ string;
824
1104
  /** Data format for response. */
825
- alt?: string;
1105
+ alt?:
1106
+ string;
826
1107
  /** JSONP */
827
- callback?: string;
1108
+ callback?:
1109
+ string;
828
1110
  /** The identifier of the requested change, from a previous ResourceRecordSetsChangeResponse. */
829
- changeId: string;
1111
+ changeId:
1112
+ string;
830
1113
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
831
- clientOperationId?: string;
1114
+ clientOperationId?:
1115
+ string;
832
1116
  /** Selector specifying which fields to include in a partial response. */
833
- fields?: string;
1117
+ fields?:
1118
+ string;
834
1119
  /** 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. */
835
- key?: string;
1120
+ key?:
1121
+ string;
836
1122
  /** Identifies the managed zone addressed by this request. Can be the managed zone name or ID. */
837
- managedZone: string;
1123
+ managedZone:
1124
+ string;
838
1125
  /** OAuth 2.0 token for the current user. */
839
- oauth_token?: string;
1126
+ oauth_token?:
1127
+ string;
840
1128
  /** Returns response with indentations and line breaks. */
841
- prettyPrint?: boolean;
1129
+ prettyPrint?:
1130
+ boolean;
842
1131
  /** Identifies the project addressed by this request. */
843
- project: string;
1132
+ project:
1133
+ string;
844
1134
  /** 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. */
845
- quotaUser?: string;
1135
+ quotaUser?:
1136
+ string;
846
1137
  /** Upload protocol for media (e.g. "raw", "multipart"). */
847
- upload_protocol?: string;
1138
+ upload_protocol?:
1139
+ string;
848
1140
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
849
- uploadType?: string;
1141
+ uploadType?:
1142
+ string;
850
1143
  }): Request<Change>;
851
1144
  /** Enumerates Changes to a ResourceRecordSet collection. */
852
1145
  list(request?: {
853
1146
  /** V1 error format. */
854
- "$.xgafv"?: string;
1147
+ "$.xgafv"?:
1148
+ string;
855
1149
  /** OAuth access token. */
856
- access_token?: string;
1150
+ access_token?:
1151
+ string;
857
1152
  /** Data format for response. */
858
- alt?: string;
1153
+ alt?:
1154
+ string;
859
1155
  /** JSONP */
860
- callback?: string;
1156
+ callback?:
1157
+ string;
861
1158
  /** Selector specifying which fields to include in a partial response. */
862
- fields?: string;
1159
+ fields?:
1160
+ string;
863
1161
  /** 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. */
864
- key?: string;
1162
+ key?:
1163
+ string;
865
1164
  /** Identifies the managed zone addressed by this request. Can be the managed zone name or ID. */
866
- managedZone: string;
1165
+ managedZone:
1166
+ string;
867
1167
  /** Optional. Maximum number of results to be returned. If unspecified, the server decides how many results to return. */
868
- maxResults?: number;
1168
+ maxResults?:
1169
+ number;
869
1170
  /** OAuth 2.0 token for the current user. */
870
- oauth_token?: string;
1171
+ oauth_token?:
1172
+ string;
871
1173
  /** Optional. A tag returned by a previous list request that was truncated. Use this parameter to continue a previous list request. */
872
- pageToken?: string;
1174
+ pageToken?:
1175
+ string;
873
1176
  /** Returns response with indentations and line breaks. */
874
- prettyPrint?: boolean;
1177
+ prettyPrint?:
1178
+ boolean;
875
1179
  /** Identifies the project addressed by this request. */
876
- project: string;
1180
+ project:
1181
+ string;
877
1182
  /** 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. */
878
- quotaUser?: string;
1183
+ quotaUser?:
1184
+ string;
879
1185
  /** Sorting criterion. The only supported value is change sequence. */
880
- sortBy?: string;
1186
+ sortBy?:
1187
+ string;
881
1188
  /** Sorting order direction: 'ascending' or 'descending'. */
882
- sortOrder?: string;
1189
+ sortOrder?:
1190
+ string;
883
1191
  /** Upload protocol for media (e.g. "raw", "multipart"). */
884
- upload_protocol?: string;
1192
+ upload_protocol?:
1193
+ string;
885
1194
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
886
- uploadType?: string;
1195
+ uploadType?:
1196
+ string;
887
1197
  }): Request<ChangesListResponse>;
888
1198
  }
889
1199
  interface DnsKeysResource {
890
1200
  /** Fetches the representation of an existing DnsKey. */
891
1201
  get(request?: {
892
1202
  /** V1 error format. */
893
- "$.xgafv"?: string;
1203
+ "$.xgafv"?:
1204
+ string;
894
1205
  /** OAuth access token. */
895
- access_token?: string;
1206
+ access_token?:
1207
+ string;
896
1208
  /** Data format for response. */
897
- alt?: string;
1209
+ alt?:
1210
+ string;
898
1211
  /** JSONP */
899
- callback?: string;
1212
+ callback?:
1213
+ string;
900
1214
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
901
- clientOperationId?: string;
1215
+ clientOperationId?:
1216
+ string;
902
1217
  /** An optional comma-separated list of digest types to compute and display for key signing keys. If omitted, the recommended digest type is computed and displayed. */
903
- digestType?: string;
1218
+ digestType?:
1219
+ string;
904
1220
  /** The identifier of the requested DnsKey. */
905
- dnsKeyId: string;
1221
+ dnsKeyId:
1222
+ string;
906
1223
  /** Selector specifying which fields to include in a partial response. */
907
- fields?: string;
1224
+ fields?:
1225
+ string;
908
1226
  /** 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. */
909
- key?: string;
1227
+ key?:
1228
+ string;
910
1229
  /** Identifies the managed zone addressed by this request. Can be the managed zone name or ID. */
911
- managedZone: string;
1230
+ managedZone:
1231
+ string;
912
1232
  /** OAuth 2.0 token for the current user. */
913
- oauth_token?: string;
1233
+ oauth_token?:
1234
+ string;
914
1235
  /** Returns response with indentations and line breaks. */
915
- prettyPrint?: boolean;
1236
+ prettyPrint?:
1237
+ boolean;
916
1238
  /** Identifies the project addressed by this request. */
917
- project: string;
1239
+ project:
1240
+ string;
918
1241
  /** 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. */
919
- quotaUser?: string;
1242
+ quotaUser?:
1243
+ string;
920
1244
  /** Upload protocol for media (e.g. "raw", "multipart"). */
921
- upload_protocol?: string;
1245
+ upload_protocol?:
1246
+ string;
922
1247
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
923
- uploadType?: string;
1248
+ uploadType?:
1249
+ string;
924
1250
  }): Request<DnsKey>;
925
1251
  /** Enumerates DnsKeys to a ResourceRecordSet collection. */
926
1252
  list(request?: {
927
1253
  /** V1 error format. */
928
- "$.xgafv"?: string;
1254
+ "$.xgafv"?:
1255
+ string;
929
1256
  /** OAuth access token. */
930
- access_token?: string;
1257
+ access_token?:
1258
+ string;
931
1259
  /** Data format for response. */
932
- alt?: string;
1260
+ alt?:
1261
+ string;
933
1262
  /** JSONP */
934
- callback?: string;
1263
+ callback?:
1264
+ string;
935
1265
  /** An optional comma-separated list of digest types to compute and display for key signing keys. If omitted, the recommended digest type is computed and displayed. */
936
- digestType?: string;
1266
+ digestType?:
1267
+ string;
937
1268
  /** Selector specifying which fields to include in a partial response. */
938
- fields?: string;
1269
+ fields?:
1270
+ string;
939
1271
  /** 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. */
940
- key?: string;
1272
+ key?:
1273
+ string;
941
1274
  /** Identifies the managed zone addressed by this request. Can be the managed zone name or ID. */
942
- managedZone: string;
1275
+ managedZone:
1276
+ string;
943
1277
  /** Optional. Maximum number of results to be returned. If unspecified, the server decides how many results to return. */
944
- maxResults?: number;
1278
+ maxResults?:
1279
+ number;
945
1280
  /** OAuth 2.0 token for the current user. */
946
- oauth_token?: string;
1281
+ oauth_token?:
1282
+ string;
947
1283
  /** Optional. A tag returned by a previous list request that was truncated. Use this parameter to continue a previous list request. */
948
- pageToken?: string;
1284
+ pageToken?:
1285
+ string;
949
1286
  /** Returns response with indentations and line breaks. */
950
- prettyPrint?: boolean;
1287
+ prettyPrint?:
1288
+ boolean;
951
1289
  /** Identifies the project addressed by this request. */
952
- project: string;
1290
+ project:
1291
+ string;
953
1292
  /** 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. */
954
- quotaUser?: string;
1293
+ quotaUser?:
1294
+ string;
955
1295
  /** Upload protocol for media (e.g. "raw", "multipart"). */
956
- upload_protocol?: string;
1296
+ upload_protocol?:
1297
+ string;
957
1298
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
958
- uploadType?: string;
1299
+ uploadType?:
1300
+ string;
959
1301
  }): Request<DnsKeysListResponse>;
960
1302
  }
961
1303
  interface ManagedZoneOperationsResource {
962
1304
  /** Fetches the representation of an existing Operation. */
963
1305
  get(request?: {
964
1306
  /** V1 error format. */
965
- "$.xgafv"?: string;
1307
+ "$.xgafv"?:
1308
+ string;
966
1309
  /** OAuth access token. */
967
- access_token?: string;
1310
+ access_token?:
1311
+ string;
968
1312
  /** Data format for response. */
969
- alt?: string;
1313
+ alt?:
1314
+ string;
970
1315
  /** JSONP */
971
- callback?: string;
1316
+ callback?:
1317
+ string;
972
1318
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
973
- clientOperationId?: string;
1319
+ clientOperationId?:
1320
+ string;
974
1321
  /** Selector specifying which fields to include in a partial response. */
975
- fields?: string;
1322
+ fields?:
1323
+ string;
976
1324
  /** 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. */
977
- key?: string;
1325
+ key?:
1326
+ string;
978
1327
  /** Identifies the managed zone addressed by this request. */
979
- managedZone: string;
1328
+ managedZone:
1329
+ string;
980
1330
  /** OAuth 2.0 token for the current user. */
981
- oauth_token?: string;
1331
+ oauth_token?:
1332
+ string;
982
1333
  /** Identifies the operation addressed by this request (ID of the operation). */
983
- operation: string;
1334
+ operation:
1335
+ string;
984
1336
  /** Returns response with indentations and line breaks. */
985
- prettyPrint?: boolean;
1337
+ prettyPrint?:
1338
+ boolean;
986
1339
  /** Identifies the project addressed by this request. */
987
- project: string;
1340
+ project:
1341
+ string;
988
1342
  /** 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. */
989
- quotaUser?: string;
1343
+ quotaUser?:
1344
+ string;
990
1345
  /** Upload protocol for media (e.g. "raw", "multipart"). */
991
- upload_protocol?: string;
1346
+ upload_protocol?:
1347
+ string;
992
1348
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
993
- uploadType?: string;
1349
+ uploadType?:
1350
+ string;
994
1351
  }): Request<Operation>;
995
1352
  /** Enumerates Operations for the given ManagedZone. */
996
1353
  list(request?: {
997
1354
  /** V1 error format. */
998
- "$.xgafv"?: string;
1355
+ "$.xgafv"?:
1356
+ string;
999
1357
  /** OAuth access token. */
1000
- access_token?: string;
1358
+ access_token?:
1359
+ string;
1001
1360
  /** Data format for response. */
1002
- alt?: string;
1361
+ alt?:
1362
+ string;
1003
1363
  /** JSONP */
1004
- callback?: string;
1364
+ callback?:
1365
+ string;
1005
1366
  /** Selector specifying which fields to include in a partial response. */
1006
- fields?: string;
1367
+ fields?:
1368
+ string;
1007
1369
  /** 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. */
1008
- key?: string;
1370
+ key?:
1371
+ string;
1009
1372
  /** Identifies the managed zone addressed by this request. */
1010
- managedZone: string;
1373
+ managedZone:
1374
+ string;
1011
1375
  /** Optional. Maximum number of results to be returned. If unspecified, the server decides how many results to return. */
1012
- maxResults?: number;
1376
+ maxResults?:
1377
+ number;
1013
1378
  /** OAuth 2.0 token for the current user. */
1014
- oauth_token?: string;
1379
+ oauth_token?:
1380
+ string;
1015
1381
  /** Optional. A tag returned by a previous list request that was truncated. Use this parameter to continue a previous list request. */
1016
- pageToken?: string;
1382
+ pageToken?:
1383
+ string;
1017
1384
  /** Returns response with indentations and line breaks. */
1018
- prettyPrint?: boolean;
1385
+ prettyPrint?:
1386
+ boolean;
1019
1387
  /** Identifies the project addressed by this request. */
1020
- project: string;
1388
+ project:
1389
+ string;
1021
1390
  /** 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. */
1022
- quotaUser?: string;
1391
+ quotaUser?:
1392
+ string;
1023
1393
  /** Sorting criterion. The only supported values are START_TIME and ID. */
1024
- sortBy?: string;
1394
+ sortBy?:
1395
+ string;
1025
1396
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1026
- upload_protocol?: string;
1397
+ upload_protocol?:
1398
+ string;
1027
1399
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1028
- uploadType?: string;
1400
+ uploadType?:
1401
+ string;
1029
1402
  }): Request<ManagedZoneOperationsListResponse>;
1030
1403
  }
1031
1404
  interface ManagedZonesResource {
1032
1405
  /** Creates a new ManagedZone. */
1033
1406
  create(request: {
1034
1407
  /** V1 error format. */
1035
- "$.xgafv"?: string;
1408
+ "$.xgafv"?:
1409
+ string;
1036
1410
  /** OAuth access token. */
1037
- access_token?: string;
1411
+ access_token?:
1412
+ string;
1038
1413
  /** Data format for response. */
1039
- alt?: string;
1414
+ alt?:
1415
+ string;
1040
1416
  /** JSONP */
1041
- callback?: string;
1417
+ callback?:
1418
+ string;
1042
1419
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
1043
- clientOperationId?: string;
1420
+ clientOperationId?:
1421
+ string;
1044
1422
  /** Selector specifying which fields to include in a partial response. */
1045
- fields?: string;
1423
+ fields?:
1424
+ string;
1046
1425
  /** 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. */
1047
- key?: string;
1426
+ key?:
1427
+ string;
1048
1428
  /** OAuth 2.0 token for the current user. */
1049
- oauth_token?: string;
1429
+ oauth_token?:
1430
+ string;
1050
1431
  /** Returns response with indentations and line breaks. */
1051
- prettyPrint?: boolean;
1432
+ prettyPrint?:
1433
+ boolean;
1052
1434
  /** Identifies the project addressed by this request. */
1053
- project: string;
1435
+ project:
1436
+ string;
1054
1437
  /** 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. */
1055
- quotaUser?: string;
1438
+ quotaUser?:
1439
+ string;
1056
1440
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1057
- upload_protocol?: string;
1441
+ upload_protocol?:
1442
+ string;
1058
1443
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1059
- uploadType?: string;
1444
+ uploadType?:
1445
+ string;
1060
1446
  /** Request body */
1061
- resource: ManagedZone;
1447
+ resource:
1448
+ ManagedZone;
1062
1449
  }): Request<ManagedZone>;
1063
1450
  create(request: {
1064
1451
  /** V1 error format. */
1065
- "$.xgafv"?: string;
1452
+ "$.xgafv"?:
1453
+ string;
1066
1454
  /** OAuth access token. */
1067
- access_token?: string;
1455
+ access_token?:
1456
+ string;
1068
1457
  /** Data format for response. */
1069
- alt?: string;
1458
+ alt?:
1459
+ string;
1070
1460
  /** JSONP */
1071
- callback?: string;
1461
+ callback?:
1462
+ string;
1072
1463
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
1073
- clientOperationId?: string;
1464
+ clientOperationId?:
1465
+ string;
1074
1466
  /** Selector specifying which fields to include in a partial response. */
1075
- fields?: string;
1467
+ fields?:
1468
+ string;
1076
1469
  /** 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. */
1077
- key?: string;
1470
+ key?:
1471
+ string;
1078
1472
  /** OAuth 2.0 token for the current user. */
1079
- oauth_token?: string;
1473
+ oauth_token?:
1474
+ string;
1080
1475
  /** Returns response with indentations and line breaks. */
1081
- prettyPrint?: boolean;
1476
+ prettyPrint?:
1477
+ boolean;
1082
1478
  /** Identifies the project addressed by this request. */
1083
- project: string;
1479
+ project:
1480
+ string;
1084
1481
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1085
- quotaUser?: string;
1482
+ quotaUser?:
1483
+ string;
1086
1484
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1087
- upload_protocol?: string;
1485
+ upload_protocol?:
1486
+ string;
1088
1487
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1089
- uploadType?: string;
1488
+ uploadType?:
1489
+ string;
1090
1490
  },
1091
1491
  body: ManagedZone): Request<ManagedZone>;
1092
1492
  /** Deletes a previously created ManagedZone. */
1093
1493
  delete(request?: {
1094
1494
  /** V1 error format. */
1095
- "$.xgafv"?: string;
1495
+ "$.xgafv"?:
1496
+ string;
1096
1497
  /** OAuth access token. */
1097
- access_token?: string;
1498
+ access_token?:
1499
+ string;
1098
1500
  /** Data format for response. */
1099
- alt?: string;
1501
+ alt?:
1502
+ string;
1100
1503
  /** JSONP */
1101
- callback?: string;
1504
+ callback?:
1505
+ string;
1102
1506
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
1103
- clientOperationId?: string;
1507
+ clientOperationId?:
1508
+ string;
1104
1509
  /** Selector specifying which fields to include in a partial response. */
1105
- fields?: string;
1510
+ fields?:
1511
+ string;
1106
1512
  /** 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. */
1107
- key?: string;
1513
+ key?:
1514
+ string;
1108
1515
  /** Identifies the managed zone addressed by this request. Can be the managed zone name or ID. */
1109
- managedZone: string;
1516
+ managedZone:
1517
+ string;
1110
1518
  /** OAuth 2.0 token for the current user. */
1111
- oauth_token?: string;
1519
+ oauth_token?:
1520
+ string;
1112
1521
  /** Returns response with indentations and line breaks. */
1113
- prettyPrint?: boolean;
1522
+ prettyPrint?:
1523
+ boolean;
1114
1524
  /** Identifies the project addressed by this request. */
1115
- project: string;
1525
+ project:
1526
+ string;
1116
1527
  /** 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. */
1117
- quotaUser?: string;
1528
+ quotaUser?:
1529
+ string;
1118
1530
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1119
- upload_protocol?: string;
1531
+ upload_protocol?:
1532
+ string;
1120
1533
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1121
- uploadType?: string;
1534
+ uploadType?:
1535
+ string;
1122
1536
  }): Request<void>;
1123
1537
  /** Fetches the representation of an existing ManagedZone. */
1124
1538
  get(request?: {
1125
1539
  /** V1 error format. */
1126
- "$.xgafv"?: string;
1540
+ "$.xgafv"?:
1541
+ string;
1127
1542
  /** OAuth access token. */
1128
- access_token?: string;
1543
+ access_token?:
1544
+ string;
1129
1545
  /** Data format for response. */
1130
- alt?: string;
1546
+ alt?:
1547
+ string;
1131
1548
  /** JSONP */
1132
- callback?: string;
1549
+ callback?:
1550
+ string;
1133
1551
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
1134
- clientOperationId?: string;
1552
+ clientOperationId?:
1553
+ string;
1135
1554
  /** Selector specifying which fields to include in a partial response. */
1136
- fields?: string;
1555
+ fields?:
1556
+ string;
1137
1557
  /** 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. */
1138
- key?: string;
1558
+ key?:
1559
+ string;
1139
1560
  /** Identifies the managed zone addressed by this request. Can be the managed zone name or ID. */
1140
- managedZone: string;
1561
+ managedZone:
1562
+ string;
1141
1563
  /** OAuth 2.0 token for the current user. */
1142
- oauth_token?: string;
1564
+ oauth_token?:
1565
+ string;
1143
1566
  /** Returns response with indentations and line breaks. */
1144
- prettyPrint?: boolean;
1567
+ prettyPrint?:
1568
+ boolean;
1145
1569
  /** Identifies the project addressed by this request. */
1146
- project: string;
1570
+ project:
1571
+ string;
1147
1572
  /** 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. */
1148
- quotaUser?: string;
1573
+ quotaUser?:
1574
+ string;
1149
1575
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1150
- upload_protocol?: string;
1576
+ upload_protocol?:
1577
+ string;
1151
1578
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1152
- uploadType?: string;
1579
+ uploadType?:
1580
+ string;
1153
1581
  }): Request<ManagedZone>;
1154
1582
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
1155
1583
  getIamPolicy(request: {
1156
1584
  /** V1 error format. */
1157
- "$.xgafv"?: string;
1585
+ "$.xgafv"?:
1586
+ string;
1158
1587
  /** OAuth access token. */
1159
- access_token?: string;
1588
+ access_token?:
1589
+ string;
1160
1590
  /** Data format for response. */
1161
- alt?: string;
1591
+ alt?:
1592
+ string;
1162
1593
  /** JSONP */
1163
- callback?: string;
1594
+ callback?:
1595
+ string;
1164
1596
  /** Selector specifying which fields to include in a partial response. */
1165
- fields?: string;
1597
+ fields?:
1598
+ string;
1166
1599
  /** 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. */
1167
- key?: string;
1600
+ key?:
1601
+ string;
1168
1602
  /** OAuth 2.0 token for the current user. */
1169
- oauth_token?: string;
1603
+ oauth_token?:
1604
+ string;
1170
1605
  /** Returns response with indentations and line breaks. */
1171
- prettyPrint?: boolean;
1606
+ prettyPrint?:
1607
+ boolean;
1172
1608
  /** 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. */
1173
- quotaUser?: string;
1609
+ quotaUser?:
1610
+ string;
1174
1611
  /**
1175
1612
  * 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
1176
1613
  * field.
1177
1614
  */
1178
- resource: string;
1615
+ resource:
1616
+ string;
1179
1617
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1180
- upload_protocol?: string;
1618
+ upload_protocol?:
1619
+ string;
1181
1620
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1182
- uploadType?: string;
1621
+ uploadType?:
1622
+ string;
1183
1623
  },
1184
1624
  body: GoogleIamV1GetIamPolicyRequest): Request<GoogleIamV1Policy>;
1185
1625
  /** Enumerates ManagedZones that have been created but not yet deleted. */
1186
1626
  list(request?: {
1187
1627
  /** V1 error format. */
1188
- "$.xgafv"?: string;
1628
+ "$.xgafv"?:
1629
+ string;
1189
1630
  /** OAuth access token. */
1190
- access_token?: string;
1631
+ access_token?:
1632
+ string;
1191
1633
  /** Data format for response. */
1192
- alt?: string;
1634
+ alt?:
1635
+ string;
1193
1636
  /** JSONP */
1194
- callback?: string;
1637
+ callback?:
1638
+ string;
1195
1639
  /** Restricts the list to return only zones with this domain name. */
1196
- dnsName?: string;
1640
+ dnsName?:
1641
+ string;
1197
1642
  /** Selector specifying which fields to include in a partial response. */
1198
- fields?: string;
1643
+ fields?:
1644
+ string;
1199
1645
  /** 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. */
1200
- key?: string;
1646
+ key?:
1647
+ string;
1201
1648
  /** Optional. Maximum number of results to be returned. If unspecified, the server decides how many results to return. */
1202
- maxResults?: number;
1649
+ maxResults?:
1650
+ number;
1203
1651
  /** OAuth 2.0 token for the current user. */
1204
- oauth_token?: string;
1652
+ oauth_token?:
1653
+ string;
1205
1654
  /** Optional. A tag returned by a previous list request that was truncated. Use this parameter to continue a previous list request. */
1206
- pageToken?: string;
1655
+ pageToken?:
1656
+ string;
1207
1657
  /** Returns response with indentations and line breaks. */
1208
- prettyPrint?: boolean;
1658
+ prettyPrint?:
1659
+ boolean;
1209
1660
  /** Identifies the project addressed by this request. */
1210
- project: string;
1661
+ project:
1662
+ string;
1211
1663
  /** 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. */
1212
- quotaUser?: string;
1664
+ quotaUser?:
1665
+ string;
1213
1666
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1214
- upload_protocol?: string;
1667
+ upload_protocol?:
1668
+ string;
1215
1669
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1216
- uploadType?: string;
1670
+ uploadType?:
1671
+ string;
1217
1672
  }): Request<ManagedZonesListResponse>;
1218
1673
  /** Applies a partial update to an existing ManagedZone. */
1219
1674
  patch(request: {
1220
1675
  /** V1 error format. */
1221
- "$.xgafv"?: string;
1676
+ "$.xgafv"?:
1677
+ string;
1222
1678
  /** OAuth access token. */
1223
- access_token?: string;
1679
+ access_token?:
1680
+ string;
1224
1681
  /** Data format for response. */
1225
- alt?: string;
1682
+ alt?:
1683
+ string;
1226
1684
  /** JSONP */
1227
- callback?: string;
1685
+ callback?:
1686
+ string;
1228
1687
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
1229
- clientOperationId?: string;
1688
+ clientOperationId?:
1689
+ string;
1230
1690
  /** Selector specifying which fields to include in a partial response. */
1231
- fields?: string;
1691
+ fields?:
1692
+ string;
1232
1693
  /** 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. */
1233
- key?: string;
1694
+ key?:
1695
+ string;
1234
1696
  /** Identifies the managed zone addressed by this request. Can be the managed zone name or ID. */
1235
- managedZone: string;
1697
+ managedZone:
1698
+ string;
1236
1699
  /** OAuth 2.0 token for the current user. */
1237
- oauth_token?: string;
1700
+ oauth_token?:
1701
+ string;
1238
1702
  /** Returns response with indentations and line breaks. */
1239
- prettyPrint?: boolean;
1703
+ prettyPrint?:
1704
+ boolean;
1240
1705
  /** Identifies the project addressed by this request. */
1241
- project: string;
1706
+ project:
1707
+ string;
1242
1708
  /** 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. */
1243
- quotaUser?: string;
1709
+ quotaUser?:
1710
+ string;
1244
1711
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1245
- upload_protocol?: string;
1712
+ upload_protocol?:
1713
+ string;
1246
1714
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1247
- uploadType?: string;
1715
+ uploadType?:
1716
+ string;
1248
1717
  /** Request body */
1249
- resource: ManagedZone;
1718
+ resource:
1719
+ ManagedZone;
1250
1720
  }): Request<Operation>;
1251
1721
  patch(request: {
1252
1722
  /** V1 error format. */
1253
- "$.xgafv"?: string;
1723
+ "$.xgafv"?:
1724
+ string;
1254
1725
  /** OAuth access token. */
1255
- access_token?: string;
1726
+ access_token?:
1727
+ string;
1256
1728
  /** Data format for response. */
1257
- alt?: string;
1729
+ alt?:
1730
+ string;
1258
1731
  /** JSONP */
1259
- callback?: string;
1732
+ callback?:
1733
+ string;
1260
1734
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
1261
- clientOperationId?: string;
1735
+ clientOperationId?:
1736
+ string;
1262
1737
  /** Selector specifying which fields to include in a partial response. */
1263
- fields?: string;
1738
+ fields?:
1739
+ string;
1264
1740
  /** 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. */
1265
- key?: string;
1741
+ key?:
1742
+ string;
1266
1743
  /** Identifies the managed zone addressed by this request. Can be the managed zone name or ID. */
1267
- managedZone: string;
1744
+ managedZone:
1745
+ string;
1268
1746
  /** OAuth 2.0 token for the current user. */
1269
- oauth_token?: string;
1747
+ oauth_token?:
1748
+ string;
1270
1749
  /** Returns response with indentations and line breaks. */
1271
- prettyPrint?: boolean;
1750
+ prettyPrint?:
1751
+ boolean;
1272
1752
  /** Identifies the project addressed by this request. */
1273
- project: string;
1753
+ project:
1754
+ string;
1274
1755
  /** 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. */
1275
- quotaUser?: string;
1756
+ quotaUser?:
1757
+ string;
1276
1758
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1277
- upload_protocol?: string;
1759
+ upload_protocol?:
1760
+ string;
1278
1761
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1279
- uploadType?: string;
1762
+ uploadType?:
1763
+ string;
1280
1764
  },
1281
1765
  body: ManagedZone): Request<Operation>;
1282
1766
  /** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
1283
1767
  setIamPolicy(request: {
1284
1768
  /** V1 error format. */
1285
- "$.xgafv"?: string;
1769
+ "$.xgafv"?:
1770
+ string;
1286
1771
  /** OAuth access token. */
1287
- access_token?: string;
1772
+ access_token?:
1773
+ string;
1288
1774
  /** Data format for response. */
1289
- alt?: string;
1775
+ alt?:
1776
+ string;
1290
1777
  /** JSONP */
1291
- callback?: string;
1778
+ callback?:
1779
+ string;
1292
1780
  /** Selector specifying which fields to include in a partial response. */
1293
- fields?: string;
1781
+ fields?:
1782
+ string;
1294
1783
  /** 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. */
1295
- key?: string;
1784
+ key?:
1785
+ string;
1296
1786
  /** OAuth 2.0 token for the current user. */
1297
- oauth_token?: string;
1787
+ oauth_token?:
1788
+ string;
1298
1789
  /** Returns response with indentations and line breaks. */
1299
- prettyPrint?: boolean;
1790
+ prettyPrint?:
1791
+ boolean;
1300
1792
  /** 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. */
1301
- quotaUser?: string;
1793
+ quotaUser?:
1794
+ string;
1302
1795
  /**
1303
1796
  * 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
1304
1797
  * field.
1305
1798
  */
1306
- resource: string;
1799
+ resource:
1800
+ string;
1307
1801
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1308
- upload_protocol?: string;
1802
+ upload_protocol?:
1803
+ string;
1309
1804
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1310
- uploadType?: string;
1805
+ uploadType?:
1806
+ string;
1311
1807
  },
1312
1808
  body: GoogleIamV1SetIamPolicyRequest): Request<GoogleIamV1Policy>;
1313
1809
  /**
@@ -1316,96 +1812,137 @@ declare namespace gapi.client {
1316
1812
  */
1317
1813
  testIamPermissions(request: {
1318
1814
  /** V1 error format. */
1319
- "$.xgafv"?: string;
1815
+ "$.xgafv"?:
1816
+ string;
1320
1817
  /** OAuth access token. */
1321
- access_token?: string;
1818
+ access_token?:
1819
+ string;
1322
1820
  /** Data format for response. */
1323
- alt?: string;
1821
+ alt?:
1822
+ string;
1324
1823
  /** JSONP */
1325
- callback?: string;
1824
+ callback?:
1825
+ string;
1326
1826
  /** Selector specifying which fields to include in a partial response. */
1327
- fields?: string;
1827
+ fields?:
1828
+ string;
1328
1829
  /** 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. */
1329
- key?: string;
1830
+ key?:
1831
+ string;
1330
1832
  /** OAuth 2.0 token for the current user. */
1331
- oauth_token?: string;
1833
+ oauth_token?:
1834
+ string;
1332
1835
  /** Returns response with indentations and line breaks. */
1333
- prettyPrint?: boolean;
1836
+ prettyPrint?:
1837
+ boolean;
1334
1838
  /** 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. */
1335
- quotaUser?: string;
1839
+ quotaUser?:
1840
+ string;
1336
1841
  /**
1337
1842
  * 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
1338
1843
  * this field.
1339
1844
  */
1340
- resource: string;
1845
+ resource:
1846
+ string;
1341
1847
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1342
- upload_protocol?: string;
1848
+ upload_protocol?:
1849
+ string;
1343
1850
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1344
- uploadType?: string;
1851
+ uploadType?:
1852
+ string;
1345
1853
  },
1346
1854
  body: GoogleIamV1TestIamPermissionsRequest): Request<GoogleIamV1TestIamPermissionsResponse>;
1347
1855
  /** Updates an existing ManagedZone. */
1348
1856
  update(request: {
1349
1857
  /** V1 error format. */
1350
- "$.xgafv"?: string;
1858
+ "$.xgafv"?:
1859
+ string;
1351
1860
  /** OAuth access token. */
1352
- access_token?: string;
1861
+ access_token?:
1862
+ string;
1353
1863
  /** Data format for response. */
1354
- alt?: string;
1864
+ alt?:
1865
+ string;
1355
1866
  /** JSONP */
1356
- callback?: string;
1867
+ callback?:
1868
+ string;
1357
1869
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
1358
- clientOperationId?: string;
1870
+ clientOperationId?:
1871
+ string;
1359
1872
  /** Selector specifying which fields to include in a partial response. */
1360
- fields?: string;
1873
+ fields?:
1874
+ string;
1361
1875
  /** 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. */
1362
- key?: string;
1876
+ key?:
1877
+ string;
1363
1878
  /** Identifies the managed zone addressed by this request. Can be the managed zone name or ID. */
1364
- managedZone: string;
1879
+ managedZone:
1880
+ string;
1365
1881
  /** OAuth 2.0 token for the current user. */
1366
- oauth_token?: string;
1882
+ oauth_token?:
1883
+ string;
1367
1884
  /** Returns response with indentations and line breaks. */
1368
- prettyPrint?: boolean;
1885
+ prettyPrint?:
1886
+ boolean;
1369
1887
  /** Identifies the project addressed by this request. */
1370
- project: string;
1888
+ project:
1889
+ string;
1371
1890
  /** 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. */
1372
- quotaUser?: string;
1891
+ quotaUser?:
1892
+ string;
1373
1893
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1374
- upload_protocol?: string;
1894
+ upload_protocol?:
1895
+ string;
1375
1896
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1376
- uploadType?: string;
1897
+ uploadType?:
1898
+ string;
1377
1899
  /** Request body */
1378
- resource: ManagedZone;
1900
+ resource:
1901
+ ManagedZone;
1379
1902
  }): Request<Operation>;
1380
1903
  update(request: {
1381
1904
  /** V1 error format. */
1382
- "$.xgafv"?: string;
1905
+ "$.xgafv"?:
1906
+ string;
1383
1907
  /** OAuth access token. */
1384
- access_token?: string;
1908
+ access_token?:
1909
+ string;
1385
1910
  /** Data format for response. */
1386
- alt?: string;
1911
+ alt?:
1912
+ string;
1387
1913
  /** JSONP */
1388
- callback?: string;
1914
+ callback?:
1915
+ string;
1389
1916
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
1390
- clientOperationId?: string;
1917
+ clientOperationId?:
1918
+ string;
1391
1919
  /** Selector specifying which fields to include in a partial response. */
1392
- fields?: string;
1920
+ fields?:
1921
+ string;
1393
1922
  /** 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. */
1394
- key?: string;
1923
+ key?:
1924
+ string;
1395
1925
  /** Identifies the managed zone addressed by this request. Can be the managed zone name or ID. */
1396
- managedZone: string;
1926
+ managedZone:
1927
+ string;
1397
1928
  /** OAuth 2.0 token for the current user. */
1398
- oauth_token?: string;
1929
+ oauth_token?:
1930
+ string;
1399
1931
  /** Returns response with indentations and line breaks. */
1400
- prettyPrint?: boolean;
1932
+ prettyPrint?:
1933
+ boolean;
1401
1934
  /** Identifies the project addressed by this request. */
1402
- project: string;
1935
+ project:
1936
+ string;
1403
1937
  /** 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. */
1404
- quotaUser?: string;
1938
+ quotaUser?:
1939
+ string;
1405
1940
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1406
- upload_protocol?: string;
1941
+ upload_protocol?:
1942
+ string;
1407
1943
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1408
- uploadType?: string;
1944
+ uploadType?:
1945
+ string;
1409
1946
  },
1410
1947
  body: ManagedZone): Request<Operation>;
1411
1948
  }
@@ -1413,282 +1950,409 @@ declare namespace gapi.client {
1413
1950
  /** Creates a new Policy. */
1414
1951
  create(request: {
1415
1952
  /** V1 error format. */
1416
- "$.xgafv"?: string;
1953
+ "$.xgafv"?:
1954
+ string;
1417
1955
  /** OAuth access token. */
1418
- access_token?: string;
1956
+ access_token?:
1957
+ string;
1419
1958
  /** Data format for response. */
1420
- alt?: string;
1959
+ alt?:
1960
+ string;
1421
1961
  /** JSONP */
1422
- callback?: string;
1962
+ callback?:
1963
+ string;
1423
1964
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
1424
- clientOperationId?: string;
1965
+ clientOperationId?:
1966
+ string;
1425
1967
  /** Selector specifying which fields to include in a partial response. */
1426
- fields?: string;
1968
+ fields?:
1969
+ string;
1427
1970
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1428
- key?: string;
1971
+ key?:
1972
+ string;
1429
1973
  /** OAuth 2.0 token for the current user. */
1430
- oauth_token?: string;
1974
+ oauth_token?:
1975
+ string;
1431
1976
  /** Returns response with indentations and line breaks. */
1432
- prettyPrint?: boolean;
1977
+ prettyPrint?:
1978
+ boolean;
1433
1979
  /** Identifies the project addressed by this request. */
1434
- project: string;
1980
+ project:
1981
+ string;
1435
1982
  /** 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. */
1436
- quotaUser?: string;
1983
+ quotaUser?:
1984
+ string;
1437
1985
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1438
- upload_protocol?: string;
1986
+ upload_protocol?:
1987
+ string;
1439
1988
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1440
- uploadType?: string;
1989
+ uploadType?:
1990
+ string;
1441
1991
  /** Request body */
1442
- resource: Policy;
1992
+ resource:
1993
+ Policy;
1443
1994
  }): Request<Policy>;
1444
1995
  create(request: {
1445
1996
  /** V1 error format. */
1446
- "$.xgafv"?: string;
1997
+ "$.xgafv"?:
1998
+ string;
1447
1999
  /** OAuth access token. */
1448
- access_token?: string;
2000
+ access_token?:
2001
+ string;
1449
2002
  /** Data format for response. */
1450
- alt?: string;
2003
+ alt?:
2004
+ string;
1451
2005
  /** JSONP */
1452
- callback?: string;
2006
+ callback?:
2007
+ string;
1453
2008
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
1454
- clientOperationId?: string;
2009
+ clientOperationId?:
2010
+ string;
1455
2011
  /** Selector specifying which fields to include in a partial response. */
1456
- fields?: string;
2012
+ fields?:
2013
+ string;
1457
2014
  /** 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. */
1458
- key?: string;
2015
+ key?:
2016
+ string;
1459
2017
  /** OAuth 2.0 token for the current user. */
1460
- oauth_token?: string;
2018
+ oauth_token?:
2019
+ string;
1461
2020
  /** Returns response with indentations and line breaks. */
1462
- prettyPrint?: boolean;
2021
+ prettyPrint?:
2022
+ boolean;
1463
2023
  /** Identifies the project addressed by this request. */
1464
- project: string;
2024
+ project:
2025
+ string;
1465
2026
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1466
- quotaUser?: string;
2027
+ quotaUser?:
2028
+ string;
1467
2029
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1468
- upload_protocol?: string;
2030
+ upload_protocol?:
2031
+ string;
1469
2032
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1470
- uploadType?: string;
2033
+ uploadType?:
2034
+ string;
1471
2035
  },
1472
2036
  body: Policy): Request<Policy>;
1473
2037
  /** Deletes a previously created Policy. Fails if the policy is still being referenced by a network. */
1474
2038
  delete(request?: {
1475
2039
  /** V1 error format. */
1476
- "$.xgafv"?: string;
2040
+ "$.xgafv"?:
2041
+ string;
1477
2042
  /** OAuth access token. */
1478
- access_token?: string;
2043
+ access_token?:
2044
+ string;
1479
2045
  /** Data format for response. */
1480
- alt?: string;
2046
+ alt?:
2047
+ string;
1481
2048
  /** JSONP */
1482
- callback?: string;
2049
+ callback?:
2050
+ string;
1483
2051
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
1484
- clientOperationId?: string;
2052
+ clientOperationId?:
2053
+ string;
1485
2054
  /** Selector specifying which fields to include in a partial response. */
1486
- fields?: string;
2055
+ fields?:
2056
+ string;
1487
2057
  /** 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. */
1488
- key?: string;
2058
+ key?:
2059
+ string;
1489
2060
  /** OAuth 2.0 token for the current user. */
1490
- oauth_token?: string;
2061
+ oauth_token?:
2062
+ string;
1491
2063
  /** User given friendly name of the policy addressed by this request. */
1492
- policy: string;
2064
+ policy:
2065
+ string;
1493
2066
  /** Returns response with indentations and line breaks. */
1494
- prettyPrint?: boolean;
2067
+ prettyPrint?:
2068
+ boolean;
1495
2069
  /** Identifies the project addressed by this request. */
1496
- project: string;
2070
+ project:
2071
+ string;
1497
2072
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1498
- quotaUser?: string;
2073
+ quotaUser?:
2074
+ string;
1499
2075
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1500
- upload_protocol?: string;
2076
+ upload_protocol?:
2077
+ string;
1501
2078
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1502
- uploadType?: string;
2079
+ uploadType?:
2080
+ string;
1503
2081
  }): Request<void>;
1504
2082
  /** Fetches the representation of an existing Policy. */
1505
2083
  get(request?: {
1506
2084
  /** V1 error format. */
1507
- "$.xgafv"?: string;
2085
+ "$.xgafv"?:
2086
+ string;
1508
2087
  /** OAuth access token. */
1509
- access_token?: string;
2088
+ access_token?:
2089
+ string;
1510
2090
  /** Data format for response. */
1511
- alt?: string;
2091
+ alt?:
2092
+ string;
1512
2093
  /** JSONP */
1513
- callback?: string;
2094
+ callback?:
2095
+ string;
1514
2096
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
1515
- clientOperationId?: string;
2097
+ clientOperationId?:
2098
+ string;
1516
2099
  /** Selector specifying which fields to include in a partial response. */
1517
- fields?: string;
2100
+ fields?:
2101
+ string;
1518
2102
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1519
- key?: string;
2103
+ key?:
2104
+ string;
1520
2105
  /** OAuth 2.0 token for the current user. */
1521
- oauth_token?: string;
2106
+ oauth_token?:
2107
+ string;
1522
2108
  /** User given friendly name of the policy addressed by this request. */
1523
- policy: string;
2109
+ policy:
2110
+ string;
1524
2111
  /** Returns response with indentations and line breaks. */
1525
- prettyPrint?: boolean;
2112
+ prettyPrint?:
2113
+ boolean;
1526
2114
  /** Identifies the project addressed by this request. */
1527
- project: string;
2115
+ project:
2116
+ string;
1528
2117
  /** 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. */
1529
- quotaUser?: string;
2118
+ quotaUser?:
2119
+ string;
1530
2120
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1531
- upload_protocol?: string;
2121
+ upload_protocol?:
2122
+ string;
1532
2123
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1533
- uploadType?: string;
2124
+ uploadType?:
2125
+ string;
1534
2126
  }): Request<Policy>;
1535
2127
  /** Enumerates all Policies associated with a project. */
1536
2128
  list(request?: {
1537
2129
  /** V1 error format. */
1538
- "$.xgafv"?: string;
2130
+ "$.xgafv"?:
2131
+ string;
1539
2132
  /** OAuth access token. */
1540
- access_token?: string;
2133
+ access_token?:
2134
+ string;
1541
2135
  /** Data format for response. */
1542
- alt?: string;
2136
+ alt?:
2137
+ string;
1543
2138
  /** JSONP */
1544
- callback?: string;
2139
+ callback?:
2140
+ string;
1545
2141
  /** Selector specifying which fields to include in a partial response. */
1546
- fields?: string;
2142
+ fields?:
2143
+ string;
1547
2144
  /** 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. */
1548
- key?: string;
2145
+ key?:
2146
+ string;
1549
2147
  /** Optional. Maximum number of results to be returned. If unspecified, the server decides how many results to return. */
1550
- maxResults?: number;
2148
+ maxResults?:
2149
+ number;
1551
2150
  /** OAuth 2.0 token for the current user. */
1552
- oauth_token?: string;
2151
+ oauth_token?:
2152
+ string;
1553
2153
  /** Optional. A tag returned by a previous list request that was truncated. Use this parameter to continue a previous list request. */
1554
- pageToken?: string;
2154
+ pageToken?:
2155
+ string;
1555
2156
  /** Returns response with indentations and line breaks. */
1556
- prettyPrint?: boolean;
2157
+ prettyPrint?:
2158
+ boolean;
1557
2159
  /** Identifies the project addressed by this request. */
1558
- project: string;
2160
+ project:
2161
+ string;
1559
2162
  /** 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. */
1560
- quotaUser?: string;
2163
+ quotaUser?:
2164
+ string;
1561
2165
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1562
- upload_protocol?: string;
2166
+ upload_protocol?:
2167
+ string;
1563
2168
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1564
- uploadType?: string;
2169
+ uploadType?:
2170
+ string;
1565
2171
  }): Request<PoliciesListResponse>;
1566
2172
  /** Applies a partial update to an existing Policy. */
1567
2173
  patch(request: {
1568
2174
  /** V1 error format. */
1569
- "$.xgafv"?: string;
2175
+ "$.xgafv"?:
2176
+ string;
1570
2177
  /** OAuth access token. */
1571
- access_token?: string;
2178
+ access_token?:
2179
+ string;
1572
2180
  /** Data format for response. */
1573
- alt?: string;
2181
+ alt?:
2182
+ string;
1574
2183
  /** JSONP */
1575
- callback?: string;
2184
+ callback?:
2185
+ string;
1576
2186
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
1577
- clientOperationId?: string;
2187
+ clientOperationId?:
2188
+ string;
1578
2189
  /** Selector specifying which fields to include in a partial response. */
1579
- fields?: string;
2190
+ fields?:
2191
+ string;
1580
2192
  /** 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. */
1581
- key?: string;
2193
+ key?:
2194
+ string;
1582
2195
  /** OAuth 2.0 token for the current user. */
1583
- oauth_token?: string;
2196
+ oauth_token?:
2197
+ string;
1584
2198
  /** User given friendly name of the policy addressed by this request. */
1585
- policy: string;
2199
+ policy:
2200
+ string;
1586
2201
  /** Returns response with indentations and line breaks. */
1587
- prettyPrint?: boolean;
2202
+ prettyPrint?:
2203
+ boolean;
1588
2204
  /** Identifies the project addressed by this request. */
1589
- project: string;
2205
+ project:
2206
+ string;
1590
2207
  /** 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. */
1591
- quotaUser?: string;
2208
+ quotaUser?:
2209
+ string;
1592
2210
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1593
- upload_protocol?: string;
2211
+ upload_protocol?:
2212
+ string;
1594
2213
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1595
- uploadType?: string;
2214
+ uploadType?:
2215
+ string;
1596
2216
  /** Request body */
1597
- resource: Policy;
2217
+ resource:
2218
+ Policy;
1598
2219
  }): Request<PoliciesPatchResponse>;
1599
2220
  patch(request: {
1600
2221
  /** V1 error format. */
1601
- "$.xgafv"?: string;
2222
+ "$.xgafv"?:
2223
+ string;
1602
2224
  /** OAuth access token. */
1603
- access_token?: string;
2225
+ access_token?:
2226
+ string;
1604
2227
  /** Data format for response. */
1605
- alt?: string;
2228
+ alt?:
2229
+ string;
1606
2230
  /** JSONP */
1607
- callback?: string;
2231
+ callback?:
2232
+ string;
1608
2233
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
1609
- clientOperationId?: string;
2234
+ clientOperationId?:
2235
+ string;
1610
2236
  /** Selector specifying which fields to include in a partial response. */
1611
- fields?: string;
2237
+ fields?:
2238
+ string;
1612
2239
  /** 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. */
1613
- key?: string;
2240
+ key?:
2241
+ string;
1614
2242
  /** OAuth 2.0 token for the current user. */
1615
- oauth_token?: string;
2243
+ oauth_token?:
2244
+ string;
1616
2245
  /** User given friendly name of the policy addressed by this request. */
1617
- policy: string;
2246
+ policy:
2247
+ string;
1618
2248
  /** Returns response with indentations and line breaks. */
1619
- prettyPrint?: boolean;
2249
+ prettyPrint?:
2250
+ boolean;
1620
2251
  /** Identifies the project addressed by this request. */
1621
- project: string;
2252
+ project:
2253
+ string;
1622
2254
  /** 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. */
1623
- quotaUser?: string;
2255
+ quotaUser?:
2256
+ string;
1624
2257
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1625
- upload_protocol?: string;
2258
+ upload_protocol?:
2259
+ string;
1626
2260
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1627
- uploadType?: string;
2261
+ uploadType?:
2262
+ string;
1628
2263
  },
1629
2264
  body: Policy): Request<PoliciesPatchResponse>;
1630
2265
  /** Updates an existing Policy. */
1631
2266
  update(request: {
1632
2267
  /** V1 error format. */
1633
- "$.xgafv"?: string;
2268
+ "$.xgafv"?:
2269
+ string;
1634
2270
  /** OAuth access token. */
1635
- access_token?: string;
2271
+ access_token?:
2272
+ string;
1636
2273
  /** Data format for response. */
1637
- alt?: string;
2274
+ alt?:
2275
+ string;
1638
2276
  /** JSONP */
1639
- callback?: string;
2277
+ callback?:
2278
+ string;
1640
2279
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
1641
- clientOperationId?: string;
2280
+ clientOperationId?:
2281
+ string;
1642
2282
  /** Selector specifying which fields to include in a partial response. */
1643
- fields?: string;
2283
+ fields?:
2284
+ string;
1644
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. */
1645
- key?: string;
2286
+ key?:
2287
+ string;
1646
2288
  /** OAuth 2.0 token for the current user. */
1647
- oauth_token?: string;
2289
+ oauth_token?:
2290
+ string;
1648
2291
  /** User given friendly name of the policy addressed by this request. */
1649
- policy: string;
2292
+ policy:
2293
+ string;
1650
2294
  /** Returns response with indentations and line breaks. */
1651
- prettyPrint?: boolean;
2295
+ prettyPrint?:
2296
+ boolean;
1652
2297
  /** Identifies the project addressed by this request. */
1653
- project: string;
2298
+ project:
2299
+ string;
1654
2300
  /** 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. */
1655
- quotaUser?: string;
2301
+ quotaUser?:
2302
+ string;
1656
2303
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1657
- upload_protocol?: string;
2304
+ upload_protocol?:
2305
+ string;
1658
2306
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1659
- uploadType?: string;
2307
+ uploadType?:
2308
+ string;
1660
2309
  /** Request body */
1661
- resource: Policy;
2310
+ resource:
2311
+ Policy;
1662
2312
  }): Request<PoliciesUpdateResponse>;
1663
2313
  update(request: {
1664
2314
  /** V1 error format. */
1665
- "$.xgafv"?: string;
2315
+ "$.xgafv"?:
2316
+ string;
1666
2317
  /** OAuth access token. */
1667
- access_token?: string;
2318
+ access_token?:
2319
+ string;
1668
2320
  /** Data format for response. */
1669
- alt?: string;
2321
+ alt?:
2322
+ string;
1670
2323
  /** JSONP */
1671
- callback?: string;
2324
+ callback?:
2325
+ string;
1672
2326
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
1673
- clientOperationId?: string;
2327
+ clientOperationId?:
2328
+ string;
1674
2329
  /** Selector specifying which fields to include in a partial response. */
1675
- fields?: string;
2330
+ fields?:
2331
+ string;
1676
2332
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1677
- key?: string;
2333
+ key?:
2334
+ string;
1678
2335
  /** OAuth 2.0 token for the current user. */
1679
- oauth_token?: string;
2336
+ oauth_token?:
2337
+ string;
1680
2338
  /** User given friendly name of the policy addressed by this request. */
1681
- policy: string;
2339
+ policy:
2340
+ string;
1682
2341
  /** Returns response with indentations and line breaks. */
1683
- prettyPrint?: boolean;
2342
+ prettyPrint?:
2343
+ boolean;
1684
2344
  /** Identifies the project addressed by this request. */
1685
- project: string;
2345
+ project:
2346
+ string;
1686
2347
  /** 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. */
1687
- quotaUser?: string;
2348
+ quotaUser?:
2349
+ string;
1688
2350
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1689
- upload_protocol?: string;
2351
+ upload_protocol?:
2352
+ string;
1690
2353
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1691
- uploadType?: string;
2354
+ uploadType?:
2355
+ string;
1692
2356
  },
1693
2357
  body: Policy): Request<PoliciesUpdateResponse>;
1694
2358
  }
@@ -1696,275 +2360,399 @@ declare namespace gapi.client {
1696
2360
  /** Fetches the representation of an existing Project. */
1697
2361
  get(request?: {
1698
2362
  /** V1 error format. */
1699
- "$.xgafv"?: string;
2363
+ "$.xgafv"?:
2364
+ string;
1700
2365
  /** OAuth access token. */
1701
- access_token?: string;
2366
+ access_token?:
2367
+ string;
1702
2368
  /** Data format for response. */
1703
- alt?: string;
2369
+ alt?:
2370
+ string;
1704
2371
  /** JSONP */
1705
- callback?: string;
2372
+ callback?:
2373
+ string;
1706
2374
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
1707
- clientOperationId?: string;
2375
+ clientOperationId?:
2376
+ string;
1708
2377
  /** Selector specifying which fields to include in a partial response. */
1709
- fields?: string;
2378
+ fields?:
2379
+ string;
1710
2380
  /** 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. */
1711
- key?: string;
2381
+ key?:
2382
+ string;
1712
2383
  /** OAuth 2.0 token for the current user. */
1713
- oauth_token?: string;
2384
+ oauth_token?:
2385
+ string;
1714
2386
  /** Returns response with indentations and line breaks. */
1715
- prettyPrint?: boolean;
2387
+ prettyPrint?:
2388
+ boolean;
1716
2389
  /** Identifies the project addressed by this request. */
1717
- project: string;
2390
+ project:
2391
+ string;
1718
2392
  /** 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. */
1719
- quotaUser?: string;
2393
+ quotaUser?:
2394
+ string;
1720
2395
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1721
- upload_protocol?: string;
2396
+ upload_protocol?:
2397
+ string;
1722
2398
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1723
- uploadType?: string;
2399
+ uploadType?:
2400
+ string;
1724
2401
  }): Request<Project>;
1725
2402
  }
1726
2403
  interface ResourceRecordSetsResource {
1727
2404
  /** Creates a new ResourceRecordSet. */
1728
2405
  create(request: {
1729
2406
  /** V1 error format. */
1730
- "$.xgafv"?: string;
2407
+ "$.xgafv"?:
2408
+ string;
1731
2409
  /** OAuth access token. */
1732
- access_token?: string;
2410
+ access_token?:
2411
+ string;
1733
2412
  /** Data format for response. */
1734
- alt?: string;
2413
+ alt?:
2414
+ string;
1735
2415
  /** JSONP */
1736
- callback?: string;
2416
+ callback?:
2417
+ string;
1737
2418
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
1738
- clientOperationId?: string;
2419
+ clientOperationId?:
2420
+ string;
1739
2421
  /** Selector specifying which fields to include in a partial response. */
1740
- fields?: string;
2422
+ fields?:
2423
+ string;
1741
2424
  /** 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. */
1742
- key?: string;
2425
+ key?:
2426
+ string;
1743
2427
  /** Identifies the managed zone addressed by this request. Can be the managed zone name or ID. */
1744
- managedZone: string;
2428
+ managedZone:
2429
+ string;
1745
2430
  /** OAuth 2.0 token for the current user. */
1746
- oauth_token?: string;
2431
+ oauth_token?:
2432
+ string;
1747
2433
  /** Returns response with indentations and line breaks. */
1748
- prettyPrint?: boolean;
2434
+ prettyPrint?:
2435
+ boolean;
1749
2436
  /** Identifies the project addressed by this request. */
1750
- project: string;
2437
+ project:
2438
+ string;
1751
2439
  /** 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. */
1752
- quotaUser?: string;
2440
+ quotaUser?:
2441
+ string;
1753
2442
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1754
- upload_protocol?: string;
2443
+ upload_protocol?:
2444
+ string;
1755
2445
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1756
- uploadType?: string;
2446
+ uploadType?:
2447
+ string;
1757
2448
  /** Request body */
1758
- resource: ResourceRecordSet;
2449
+ resource:
2450
+ ResourceRecordSet;
1759
2451
  }): Request<ResourceRecordSet>;
1760
2452
  create(request: {
1761
2453
  /** V1 error format. */
1762
- "$.xgafv"?: string;
2454
+ "$.xgafv"?:
2455
+ string;
1763
2456
  /** OAuth access token. */
1764
- access_token?: string;
2457
+ access_token?:
2458
+ string;
1765
2459
  /** Data format for response. */
1766
- alt?: string;
2460
+ alt?:
2461
+ string;
1767
2462
  /** JSONP */
1768
- callback?: string;
2463
+ callback?:
2464
+ string;
1769
2465
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
1770
- clientOperationId?: string;
2466
+ clientOperationId?:
2467
+ string;
1771
2468
  /** Selector specifying which fields to include in a partial response. */
1772
- fields?: string;
2469
+ fields?:
2470
+ string;
1773
2471
  /** 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. */
1774
- key?: string;
2472
+ key?:
2473
+ string;
1775
2474
  /** Identifies the managed zone addressed by this request. Can be the managed zone name or ID. */
1776
- managedZone: string;
2475
+ managedZone:
2476
+ string;
1777
2477
  /** OAuth 2.0 token for the current user. */
1778
- oauth_token?: string;
2478
+ oauth_token?:
2479
+ string;
1779
2480
  /** Returns response with indentations and line breaks. */
1780
- prettyPrint?: boolean;
2481
+ prettyPrint?:
2482
+ boolean;
1781
2483
  /** Identifies the project addressed by this request. */
1782
- project: string;
2484
+ project:
2485
+ string;
1783
2486
  /** 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. */
1784
- quotaUser?: string;
2487
+ quotaUser?:
2488
+ string;
1785
2489
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1786
- upload_protocol?: string;
2490
+ upload_protocol?:
2491
+ string;
1787
2492
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1788
- uploadType?: string;
2493
+ uploadType?:
2494
+ string;
1789
2495
  },
1790
2496
  body: ResourceRecordSet): Request<ResourceRecordSet>;
1791
2497
  /** Deletes a previously created ResourceRecordSet. */
1792
2498
  delete(request?: {
1793
2499
  /** V1 error format. */
1794
- "$.xgafv"?: string;
2500
+ "$.xgafv"?:
2501
+ string;
1795
2502
  /** OAuth access token. */
1796
- access_token?: string;
2503
+ access_token?:
2504
+ string;
1797
2505
  /** Data format for response. */
1798
- alt?: string;
2506
+ alt?:
2507
+ string;
1799
2508
  /** JSONP */
1800
- callback?: string;
2509
+ callback?:
2510
+ string;
1801
2511
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
1802
- clientOperationId?: string;
2512
+ clientOperationId?:
2513
+ string;
1803
2514
  /** Selector specifying which fields to include in a partial response. */
1804
- fields?: string;
2515
+ fields?:
2516
+ string;
1805
2517
  /** 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. */
1806
- key?: string;
2518
+ key?:
2519
+ string;
1807
2520
  /** Identifies the managed zone addressed by this request. Can be the managed zone name or ID. */
1808
- managedZone: string;
2521
+ managedZone:
2522
+ string;
1809
2523
  /** Fully qualified domain name. */
1810
- name: string;
2524
+ name:
2525
+ string;
1811
2526
  /** OAuth 2.0 token for the current user. */
1812
- oauth_token?: string;
2527
+ oauth_token?:
2528
+ string;
1813
2529
  /** Returns response with indentations and line breaks. */
1814
- prettyPrint?: boolean;
2530
+ prettyPrint?:
2531
+ boolean;
1815
2532
  /** Identifies the project addressed by this request. */
1816
- project: string;
2533
+ project:
2534
+ string;
1817
2535
  /** 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. */
1818
- quotaUser?: string;
2536
+ quotaUser?:
2537
+ string;
1819
2538
  /** RRSet type. */
1820
- type: string;
2539
+ type:
2540
+ string;
1821
2541
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1822
- upload_protocol?: string;
2542
+ upload_protocol?:
2543
+ string;
1823
2544
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1824
- uploadType?: string;
2545
+ uploadType?:
2546
+ string;
1825
2547
  }): Request<void>;
1826
2548
  /** Fetches the representation of an existing ResourceRecordSet. */
1827
2549
  get(request?: {
1828
2550
  /** V1 error format. */
1829
- "$.xgafv"?: string;
2551
+ "$.xgafv"?:
2552
+ string;
1830
2553
  /** OAuth access token. */
1831
- access_token?: string;
2554
+ access_token?:
2555
+ string;
1832
2556
  /** Data format for response. */
1833
- alt?: string;
2557
+ alt?:
2558
+ string;
1834
2559
  /** JSONP */
1835
- callback?: string;
2560
+ callback?:
2561
+ string;
1836
2562
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
1837
- clientOperationId?: string;
2563
+ clientOperationId?:
2564
+ string;
1838
2565
  /** Selector specifying which fields to include in a partial response. */
1839
- fields?: string;
2566
+ fields?:
2567
+ string;
1840
2568
  /** 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. */
1841
- key?: string;
2569
+ key?:
2570
+ string;
1842
2571
  /** Identifies the managed zone addressed by this request. Can be the managed zone name or ID. */
1843
- managedZone: string;
2572
+ managedZone:
2573
+ string;
1844
2574
  /** Fully qualified domain name. */
1845
- name: string;
2575
+ name:
2576
+ string;
1846
2577
  /** OAuth 2.0 token for the current user. */
1847
- oauth_token?: string;
2578
+ oauth_token?:
2579
+ string;
1848
2580
  /** Returns response with indentations and line breaks. */
1849
- prettyPrint?: boolean;
2581
+ prettyPrint?:
2582
+ boolean;
1850
2583
  /** Identifies the project addressed by this request. */
1851
- project: string;
2584
+ project:
2585
+ string;
1852
2586
  /** 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. */
1853
- quotaUser?: string;
2587
+ quotaUser?:
2588
+ string;
1854
2589
  /** RRSet type. */
1855
- type: string;
2590
+ type:
2591
+ string;
1856
2592
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1857
- upload_protocol?: string;
2593
+ upload_protocol?:
2594
+ string;
1858
2595
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1859
- uploadType?: string;
2596
+ uploadType?:
2597
+ string;
1860
2598
  }): Request<ResourceRecordSet>;
1861
2599
  /** Enumerates ResourceRecordSets that you have created but not yet deleted. */
1862
2600
  list(request?: {
1863
2601
  /** V1 error format. */
1864
- "$.xgafv"?: string;
2602
+ "$.xgafv"?:
2603
+ string;
1865
2604
  /** OAuth access token. */
1866
- access_token?: string;
2605
+ access_token?:
2606
+ string;
1867
2607
  /** Data format for response. */
1868
- alt?: string;
2608
+ alt?:
2609
+ string;
1869
2610
  /** JSONP */
1870
- callback?: string;
2611
+ callback?:
2612
+ string;
1871
2613
  /** Selector specifying which fields to include in a partial response. */
1872
- fields?: string;
2614
+ fields?:
2615
+ string;
1873
2616
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1874
- key?: string;
2617
+ key?:
2618
+ string;
1875
2619
  /** Identifies the managed zone addressed by this request. Can be the managed zone name or ID. */
1876
- managedZone: string;
2620
+ managedZone:
2621
+ string;
1877
2622
  /** Optional. Maximum number of results to be returned. If unspecified, the server decides how many results to return. */
1878
- maxResults?: number;
2623
+ maxResults?:
2624
+ number;
1879
2625
  /** Restricts the list to return only records with this fully qualified domain name. */
1880
- name?: string;
2626
+ name?:
2627
+ string;
1881
2628
  /** OAuth 2.0 token for the current user. */
1882
- oauth_token?: string;
2629
+ oauth_token?:
2630
+ string;
1883
2631
  /** Optional. A tag returned by a previous list request that was truncated. Use this parameter to continue a previous list request. */
1884
- pageToken?: string;
2632
+ pageToken?:
2633
+ string;
1885
2634
  /** Returns response with indentations and line breaks. */
1886
- prettyPrint?: boolean;
2635
+ prettyPrint?:
2636
+ boolean;
1887
2637
  /** Identifies the project addressed by this request. */
1888
- project: string;
2638
+ project:
2639
+ string;
1889
2640
  /** 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. */
1890
- quotaUser?: string;
2641
+ quotaUser?:
2642
+ string;
1891
2643
  /** Restricts the list to return only records of this type. If present, the "name" parameter must also be present. */
1892
- type?: string;
2644
+ type?:
2645
+ string;
1893
2646
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1894
- upload_protocol?: string;
2647
+ upload_protocol?:
2648
+ string;
1895
2649
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1896
- uploadType?: string;
2650
+ uploadType?:
2651
+ string;
1897
2652
  }): Request<ResourceRecordSetsListResponse>;
1898
2653
  /** Applies a partial update to an existing ResourceRecordSet. */
1899
2654
  patch(request: {
1900
2655
  /** V1 error format. */
1901
- "$.xgafv"?: string;
2656
+ "$.xgafv"?:
2657
+ string;
1902
2658
  /** OAuth access token. */
1903
- access_token?: string;
2659
+ access_token?:
2660
+ string;
1904
2661
  /** Data format for response. */
1905
- alt?: string;
2662
+ alt?:
2663
+ string;
1906
2664
  /** JSONP */
1907
- callback?: string;
2665
+ callback?:
2666
+ string;
1908
2667
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
1909
- clientOperationId?: string;
2668
+ clientOperationId?:
2669
+ string;
1910
2670
  /** Selector specifying which fields to include in a partial response. */
1911
- fields?: string;
2671
+ fields?:
2672
+ string;
1912
2673
  /** 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. */
1913
- key?: string;
2674
+ key?:
2675
+ string;
1914
2676
  /** Identifies the managed zone addressed by this request. Can be the managed zone name or ID. */
1915
- managedZone: string;
2677
+ managedZone:
2678
+ string;
1916
2679
  /** Fully qualified domain name. */
1917
- name: string;
2680
+ name:
2681
+ string;
1918
2682
  /** OAuth 2.0 token for the current user. */
1919
- oauth_token?: string;
2683
+ oauth_token?:
2684
+ string;
1920
2685
  /** Returns response with indentations and line breaks. */
1921
- prettyPrint?: boolean;
2686
+ prettyPrint?:
2687
+ boolean;
1922
2688
  /** Identifies the project addressed by this request. */
1923
- project: string;
2689
+ project:
2690
+ string;
1924
2691
  /** 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. */
1925
- quotaUser?: string;
2692
+ quotaUser?:
2693
+ string;
1926
2694
  /** RRSet type. */
1927
- type: string;
2695
+ type:
2696
+ string;
1928
2697
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1929
- upload_protocol?: string;
2698
+ upload_protocol?:
2699
+ string;
1930
2700
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1931
- uploadType?: string;
2701
+ uploadType?:
2702
+ string;
1932
2703
  /** Request body */
1933
- resource: ResourceRecordSet;
2704
+ resource:
2705
+ ResourceRecordSet;
1934
2706
  }): Request<ResourceRecordSet>;
1935
2707
  patch(request: {
1936
2708
  /** V1 error format. */
1937
- "$.xgafv"?: string;
2709
+ "$.xgafv"?:
2710
+ string;
1938
2711
  /** OAuth access token. */
1939
- access_token?: string;
2712
+ access_token?:
2713
+ string;
1940
2714
  /** Data format for response. */
1941
- alt?: string;
2715
+ alt?:
2716
+ string;
1942
2717
  /** JSONP */
1943
- callback?: string;
2718
+ callback?:
2719
+ string;
1944
2720
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
1945
- clientOperationId?: string;
2721
+ clientOperationId?:
2722
+ string;
1946
2723
  /** Selector specifying which fields to include in a partial response. */
1947
- fields?: string;
2724
+ fields?:
2725
+ string;
1948
2726
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1949
- key?: string;
2727
+ key?:
2728
+ string;
1950
2729
  /** Identifies the managed zone addressed by this request. Can be the managed zone name or ID. */
1951
- managedZone: string;
2730
+ managedZone:
2731
+ string;
1952
2732
  /** Fully qualified domain name. */
1953
- name: string;
2733
+ name:
2734
+ string;
1954
2735
  /** OAuth 2.0 token for the current user. */
1955
- oauth_token?: string;
2736
+ oauth_token?:
2737
+ string;
1956
2738
  /** Returns response with indentations and line breaks. */
1957
- prettyPrint?: boolean;
2739
+ prettyPrint?:
2740
+ boolean;
1958
2741
  /** Identifies the project addressed by this request. */
1959
- project: string;
2742
+ project:
2743
+ string;
1960
2744
  /** 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. */
1961
- quotaUser?: string;
2745
+ quotaUser?:
2746
+ string;
1962
2747
  /** RRSet type. */
1963
- type: string;
2748
+ type:
2749
+ string;
1964
2750
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1965
- upload_protocol?: string;
2751
+ upload_protocol?:
2752
+ string;
1966
2753
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1967
- uploadType?: string;
2754
+ uploadType?:
2755
+ string;
1968
2756
  },
1969
2757
  body: ResourceRecordSet): Request<ResourceRecordSet>;
1970
2758
  }
@@ -1972,282 +2760,409 @@ declare namespace gapi.client {
1972
2760
  /** Creates a new Response Policy */
1973
2761
  create(request: {
1974
2762
  /** V1 error format. */
1975
- "$.xgafv"?: string;
2763
+ "$.xgafv"?:
2764
+ string;
1976
2765
  /** OAuth access token. */
1977
- access_token?: string;
2766
+ access_token?:
2767
+ string;
1978
2768
  /** Data format for response. */
1979
- alt?: string;
2769
+ alt?:
2770
+ string;
1980
2771
  /** JSONP */
1981
- callback?: string;
2772
+ callback?:
2773
+ string;
1982
2774
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
1983
- clientOperationId?: string;
2775
+ clientOperationId?:
2776
+ string;
1984
2777
  /** Selector specifying which fields to include in a partial response. */
1985
- fields?: string;
2778
+ fields?:
2779
+ string;
1986
2780
  /** 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. */
1987
- key?: string;
2781
+ key?:
2782
+ string;
1988
2783
  /** OAuth 2.0 token for the current user. */
1989
- oauth_token?: string;
2784
+ oauth_token?:
2785
+ string;
1990
2786
  /** Returns response with indentations and line breaks. */
1991
- prettyPrint?: boolean;
2787
+ prettyPrint?:
2788
+ boolean;
1992
2789
  /** Identifies the project addressed by this request. */
1993
- project: string;
2790
+ project:
2791
+ string;
1994
2792
  /** 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. */
1995
- quotaUser?: string;
2793
+ quotaUser?:
2794
+ string;
1996
2795
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1997
- upload_protocol?: string;
2796
+ upload_protocol?:
2797
+ string;
1998
2798
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1999
- uploadType?: string;
2799
+ uploadType?:
2800
+ string;
2000
2801
  /** Request body */
2001
- resource: ResponsePolicy;
2802
+ resource:
2803
+ ResponsePolicy;
2002
2804
  }): Request<ResponsePolicy>;
2003
2805
  create(request: {
2004
2806
  /** V1 error format. */
2005
- "$.xgafv"?: string;
2807
+ "$.xgafv"?:
2808
+ string;
2006
2809
  /** OAuth access token. */
2007
- access_token?: string;
2810
+ access_token?:
2811
+ string;
2008
2812
  /** Data format for response. */
2009
- alt?: string;
2813
+ alt?:
2814
+ string;
2010
2815
  /** JSONP */
2011
- callback?: string;
2816
+ callback?:
2817
+ string;
2012
2818
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
2013
- clientOperationId?: string;
2819
+ clientOperationId?:
2820
+ string;
2014
2821
  /** Selector specifying which fields to include in a partial response. */
2015
- fields?: string;
2822
+ fields?:
2823
+ string;
2016
2824
  /** 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. */
2017
- key?: string;
2825
+ key?:
2826
+ string;
2018
2827
  /** OAuth 2.0 token for the current user. */
2019
- oauth_token?: string;
2828
+ oauth_token?:
2829
+ string;
2020
2830
  /** Returns response with indentations and line breaks. */
2021
- prettyPrint?: boolean;
2831
+ prettyPrint?:
2832
+ boolean;
2022
2833
  /** Identifies the project addressed by this request. */
2023
- project: string;
2834
+ project:
2835
+ string;
2024
2836
  /** 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. */
2025
- quotaUser?: string;
2837
+ quotaUser?:
2838
+ string;
2026
2839
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2027
- upload_protocol?: string;
2840
+ upload_protocol?:
2841
+ string;
2028
2842
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2029
- uploadType?: string;
2843
+ uploadType?:
2844
+ string;
2030
2845
  },
2031
2846
  body: ResponsePolicy): Request<ResponsePolicy>;
2032
2847
  /** Deletes a previously created Response Policy. Fails if the response policy is non-empty or still being referenced by a network. */
2033
2848
  delete(request?: {
2034
2849
  /** V1 error format. */
2035
- "$.xgafv"?: string;
2850
+ "$.xgafv"?:
2851
+ string;
2036
2852
  /** OAuth access token. */
2037
- access_token?: string;
2853
+ access_token?:
2854
+ string;
2038
2855
  /** Data format for response. */
2039
- alt?: string;
2856
+ alt?:
2857
+ string;
2040
2858
  /** JSONP */
2041
- callback?: string;
2859
+ callback?:
2860
+ string;
2042
2861
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
2043
- clientOperationId?: string;
2862
+ clientOperationId?:
2863
+ string;
2044
2864
  /** Selector specifying which fields to include in a partial response. */
2045
- fields?: string;
2865
+ fields?:
2866
+ string;
2046
2867
  /** 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. */
2047
- key?: string;
2868
+ key?:
2869
+ string;
2048
2870
  /** OAuth 2.0 token for the current user. */
2049
- oauth_token?: string;
2871
+ oauth_token?:
2872
+ string;
2050
2873
  /** Returns response with indentations and line breaks. */
2051
- prettyPrint?: boolean;
2874
+ prettyPrint?:
2875
+ boolean;
2052
2876
  /** Identifies the project addressed by this request. */
2053
- project: string;
2877
+ project:
2878
+ string;
2054
2879
  /** 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. */
2055
- quotaUser?: string;
2880
+ quotaUser?:
2881
+ string;
2056
2882
  /** User assigned name of the Response Policy addressed by this request. */
2057
- responsePolicy: string;
2883
+ responsePolicy:
2884
+ string;
2058
2885
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2059
- upload_protocol?: string;
2886
+ upload_protocol?:
2887
+ string;
2060
2888
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2061
- uploadType?: string;
2889
+ uploadType?:
2890
+ string;
2062
2891
  }): Request<void>;
2063
2892
  /** Fetches the representation of an existing Response Policy. */
2064
2893
  get(request?: {
2065
2894
  /** V1 error format. */
2066
- "$.xgafv"?: string;
2895
+ "$.xgafv"?:
2896
+ string;
2067
2897
  /** OAuth access token. */
2068
- access_token?: string;
2898
+ access_token?:
2899
+ string;
2069
2900
  /** Data format for response. */
2070
- alt?: string;
2901
+ alt?:
2902
+ string;
2071
2903
  /** JSONP */
2072
- callback?: string;
2904
+ callback?:
2905
+ string;
2073
2906
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
2074
- clientOperationId?: string;
2907
+ clientOperationId?:
2908
+ string;
2075
2909
  /** Selector specifying which fields to include in a partial response. */
2076
- fields?: string;
2910
+ fields?:
2911
+ string;
2077
2912
  /** 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. */
2078
- key?: string;
2913
+ key?:
2914
+ string;
2079
2915
  /** OAuth 2.0 token for the current user. */
2080
- oauth_token?: string;
2916
+ oauth_token?:
2917
+ string;
2081
2918
  /** Returns response with indentations and line breaks. */
2082
- prettyPrint?: boolean;
2919
+ prettyPrint?:
2920
+ boolean;
2083
2921
  /** Identifies the project addressed by this request. */
2084
- project: string;
2922
+ project:
2923
+ string;
2085
2924
  /** 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. */
2086
- quotaUser?: string;
2925
+ quotaUser?:
2926
+ string;
2087
2927
  /** User assigned name of the Response Policy addressed by this request. */
2088
- responsePolicy: string;
2928
+ responsePolicy:
2929
+ string;
2089
2930
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2090
- upload_protocol?: string;
2931
+ upload_protocol?:
2932
+ string;
2091
2933
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2092
- uploadType?: string;
2934
+ uploadType?:
2935
+ string;
2093
2936
  }): Request<ResponsePolicy>;
2094
2937
  /** Enumerates all Response Policies associated with a project. */
2095
2938
  list(request?: {
2096
2939
  /** V1 error format. */
2097
- "$.xgafv"?: string;
2940
+ "$.xgafv"?:
2941
+ string;
2098
2942
  /** OAuth access token. */
2099
- access_token?: string;
2943
+ access_token?:
2944
+ string;
2100
2945
  /** Data format for response. */
2101
- alt?: string;
2946
+ alt?:
2947
+ string;
2102
2948
  /** JSONP */
2103
- callback?: string;
2949
+ callback?:
2950
+ string;
2104
2951
  /** Selector specifying which fields to include in a partial response. */
2105
- fields?: string;
2952
+ fields?:
2953
+ string;
2106
2954
  /** 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. */
2107
- key?: string;
2955
+ key?:
2956
+ string;
2108
2957
  /** Optional. Maximum number of results to be returned. If unspecified, the server decides how many results to return. */
2109
- maxResults?: number;
2958
+ maxResults?:
2959
+ number;
2110
2960
  /** OAuth 2.0 token for the current user. */
2111
- oauth_token?: string;
2961
+ oauth_token?:
2962
+ string;
2112
2963
  /** Optional. A tag returned by a previous list request that was truncated. Use this parameter to continue a previous list request. */
2113
- pageToken?: string;
2964
+ pageToken?:
2965
+ string;
2114
2966
  /** Returns response with indentations and line breaks. */
2115
- prettyPrint?: boolean;
2967
+ prettyPrint?:
2968
+ boolean;
2116
2969
  /** Identifies the project addressed by this request. */
2117
- project: string;
2970
+ project:
2971
+ string;
2118
2972
  /** 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. */
2119
- quotaUser?: string;
2973
+ quotaUser?:
2974
+ string;
2120
2975
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2121
- upload_protocol?: string;
2976
+ upload_protocol?:
2977
+ string;
2122
2978
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2123
- uploadType?: string;
2979
+ uploadType?:
2980
+ string;
2124
2981
  }): Request<ResponsePoliciesListResponse>;
2125
2982
  /** Applies a partial update to an existing Response Policy. */
2126
2983
  patch(request: {
2127
2984
  /** V1 error format. */
2128
- "$.xgafv"?: string;
2985
+ "$.xgafv"?:
2986
+ string;
2129
2987
  /** OAuth access token. */
2130
- access_token?: string;
2988
+ access_token?:
2989
+ string;
2131
2990
  /** Data format for response. */
2132
- alt?: string;
2991
+ alt?:
2992
+ string;
2133
2993
  /** JSONP */
2134
- callback?: string;
2994
+ callback?:
2995
+ string;
2135
2996
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
2136
- clientOperationId?: string;
2997
+ clientOperationId?:
2998
+ string;
2137
2999
  /** Selector specifying which fields to include in a partial response. */
2138
- fields?: string;
3000
+ fields?:
3001
+ string;
2139
3002
  /** 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. */
2140
- key?: string;
3003
+ key?:
3004
+ string;
2141
3005
  /** OAuth 2.0 token for the current user. */
2142
- oauth_token?: string;
3006
+ oauth_token?:
3007
+ string;
2143
3008
  /** Returns response with indentations and line breaks. */
2144
- prettyPrint?: boolean;
3009
+ prettyPrint?:
3010
+ boolean;
2145
3011
  /** Identifies the project addressed by this request. */
2146
- project: string;
3012
+ project:
3013
+ string;
2147
3014
  /** 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. */
2148
- quotaUser?: string;
3015
+ quotaUser?:
3016
+ string;
2149
3017
  /** User assigned name of the response policy addressed by this request. */
2150
- responsePolicy: string;
3018
+ responsePolicy:
3019
+ string;
2151
3020
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2152
- upload_protocol?: string;
3021
+ upload_protocol?:
3022
+ string;
2153
3023
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2154
- uploadType?: string;
3024
+ uploadType?:
3025
+ string;
2155
3026
  /** Request body */
2156
- resource: ResponsePolicy;
3027
+ resource:
3028
+ ResponsePolicy;
2157
3029
  }): Request<ResponsePoliciesPatchResponse>;
2158
3030
  patch(request: {
2159
3031
  /** V1 error format. */
2160
- "$.xgafv"?: string;
3032
+ "$.xgafv"?:
3033
+ string;
2161
3034
  /** OAuth access token. */
2162
- access_token?: string;
3035
+ access_token?:
3036
+ string;
2163
3037
  /** Data format for response. */
2164
- alt?: string;
3038
+ alt?:
3039
+ string;
2165
3040
  /** JSONP */
2166
- callback?: string;
3041
+ callback?:
3042
+ string;
2167
3043
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
2168
- clientOperationId?: string;
3044
+ clientOperationId?:
3045
+ string;
2169
3046
  /** Selector specifying which fields to include in a partial response. */
2170
- fields?: string;
3047
+ fields?:
3048
+ string;
2171
3049
  /** 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. */
2172
- key?: string;
3050
+ key?:
3051
+ string;
2173
3052
  /** OAuth 2.0 token for the current user. */
2174
- oauth_token?: string;
3053
+ oauth_token?:
3054
+ string;
2175
3055
  /** Returns response with indentations and line breaks. */
2176
- prettyPrint?: boolean;
3056
+ prettyPrint?:
3057
+ boolean;
2177
3058
  /** Identifies the project addressed by this request. */
2178
- project: string;
3059
+ project:
3060
+ string;
2179
3061
  /** 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. */
2180
- quotaUser?: string;
3062
+ quotaUser?:
3063
+ string;
2181
3064
  /** User assigned name of the response policy addressed by this request. */
2182
- responsePolicy: string;
3065
+ responsePolicy:
3066
+ string;
2183
3067
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2184
- upload_protocol?: string;
3068
+ upload_protocol?:
3069
+ string;
2185
3070
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2186
- uploadType?: string;
3071
+ uploadType?:
3072
+ string;
2187
3073
  },
2188
3074
  body: ResponsePolicy): Request<ResponsePoliciesPatchResponse>;
2189
3075
  /** Updates an existing Response Policy. */
2190
3076
  update(request: {
2191
3077
  /** V1 error format. */
2192
- "$.xgafv"?: string;
3078
+ "$.xgafv"?:
3079
+ string;
2193
3080
  /** OAuth access token. */
2194
- access_token?: string;
3081
+ access_token?:
3082
+ string;
2195
3083
  /** Data format for response. */
2196
- alt?: string;
3084
+ alt?:
3085
+ string;
2197
3086
  /** JSONP */
2198
- callback?: string;
3087
+ callback?:
3088
+ string;
2199
3089
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
2200
- clientOperationId?: string;
3090
+ clientOperationId?:
3091
+ string;
2201
3092
  /** Selector specifying which fields to include in a partial response. */
2202
- fields?: string;
3093
+ fields?:
3094
+ string;
2203
3095
  /** 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. */
2204
- key?: string;
3096
+ key?:
3097
+ string;
2205
3098
  /** OAuth 2.0 token for the current user. */
2206
- oauth_token?: string;
3099
+ oauth_token?:
3100
+ string;
2207
3101
  /** Returns response with indentations and line breaks. */
2208
- prettyPrint?: boolean;
3102
+ prettyPrint?:
3103
+ boolean;
2209
3104
  /** Identifies the project addressed by this request. */
2210
- project: string;
3105
+ project:
3106
+ string;
2211
3107
  /** 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. */
2212
- quotaUser?: string;
3108
+ quotaUser?:
3109
+ string;
2213
3110
  /** User assigned name of the Response Policy addressed by this request. */
2214
- responsePolicy: string;
3111
+ responsePolicy:
3112
+ string;
2215
3113
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2216
- upload_protocol?: string;
3114
+ upload_protocol?:
3115
+ string;
2217
3116
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2218
- uploadType?: string;
3117
+ uploadType?:
3118
+ string;
2219
3119
  /** Request body */
2220
- resource: ResponsePolicy;
3120
+ resource:
3121
+ ResponsePolicy;
2221
3122
  }): Request<ResponsePoliciesUpdateResponse>;
2222
3123
  update(request: {
2223
3124
  /** V1 error format. */
2224
- "$.xgafv"?: string;
3125
+ "$.xgafv"?:
3126
+ string;
2225
3127
  /** OAuth access token. */
2226
- access_token?: string;
3128
+ access_token?:
3129
+ string;
2227
3130
  /** Data format for response. */
2228
- alt?: string;
3131
+ alt?:
3132
+ string;
2229
3133
  /** JSONP */
2230
- callback?: string;
3134
+ callback?:
3135
+ string;
2231
3136
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
2232
- clientOperationId?: string;
3137
+ clientOperationId?:
3138
+ string;
2233
3139
  /** Selector specifying which fields to include in a partial response. */
2234
- fields?: string;
3140
+ fields?:
3141
+ string;
2235
3142
  /** 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. */
2236
- key?: string;
3143
+ key?:
3144
+ string;
2237
3145
  /** OAuth 2.0 token for the current user. */
2238
- oauth_token?: string;
3146
+ oauth_token?:
3147
+ string;
2239
3148
  /** Returns response with indentations and line breaks. */
2240
- prettyPrint?: boolean;
3149
+ prettyPrint?:
3150
+ boolean;
2241
3151
  /** Identifies the project addressed by this request. */
2242
- project: string;
3152
+ project:
3153
+ string;
2243
3154
  /** 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. */
2244
- quotaUser?: string;
3155
+ quotaUser?:
3156
+ string;
2245
3157
  /** User assigned name of the Response Policy addressed by this request. */
2246
- responsePolicy: string;
3158
+ responsePolicy:
3159
+ string;
2247
3160
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2248
- upload_protocol?: string;
3161
+ upload_protocol?:
3162
+ string;
2249
3163
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2250
- uploadType?: string;
3164
+ uploadType?:
3165
+ string;
2251
3166
  },
2252
3167
  body: ResponsePolicy): Request<ResponsePoliciesUpdateResponse>;
2253
3168
  }
@@ -2255,300 +3170,436 @@ declare namespace gapi.client {
2255
3170
  /** Creates a new Response Policy Rule. */
2256
3171
  create(request: {
2257
3172
  /** V1 error format. */
2258
- "$.xgafv"?: string;
3173
+ "$.xgafv"?:
3174
+ string;
2259
3175
  /** OAuth access token. */
2260
- access_token?: string;
3176
+ access_token?:
3177
+ string;
2261
3178
  /** Data format for response. */
2262
- alt?: string;
3179
+ alt?:
3180
+ string;
2263
3181
  /** JSONP */
2264
- callback?: string;
3182
+ callback?:
3183
+ string;
2265
3184
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
2266
- clientOperationId?: string;
3185
+ clientOperationId?:
3186
+ string;
2267
3187
  /** Selector specifying which fields to include in a partial response. */
2268
- fields?: string;
3188
+ fields?:
3189
+ string;
2269
3190
  /** 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. */
2270
- key?: string;
3191
+ key?:
3192
+ string;
2271
3193
  /** OAuth 2.0 token for the current user. */
2272
- oauth_token?: string;
3194
+ oauth_token?:
3195
+ string;
2273
3196
  /** Returns response with indentations and line breaks. */
2274
- prettyPrint?: boolean;
3197
+ prettyPrint?:
3198
+ boolean;
2275
3199
  /** Identifies the project addressed by this request. */
2276
- project: string;
3200
+ project:
3201
+ string;
2277
3202
  /** 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. */
2278
- quotaUser?: string;
3203
+ quotaUser?:
3204
+ string;
2279
3205
  /** User assigned name of the Response Policy containing the Response Policy Rule. */
2280
- responsePolicy: string;
3206
+ responsePolicy:
3207
+ string;
2281
3208
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2282
- upload_protocol?: string;
3209
+ upload_protocol?:
3210
+ string;
2283
3211
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2284
- uploadType?: string;
3212
+ uploadType?:
3213
+ string;
2285
3214
  /** Request body */
2286
- resource: ResponsePolicyRule;
3215
+ resource:
3216
+ ResponsePolicyRule;
2287
3217
  }): Request<ResponsePolicyRule>;
2288
3218
  create(request: {
2289
3219
  /** V1 error format. */
2290
- "$.xgafv"?: string;
3220
+ "$.xgafv"?:
3221
+ string;
2291
3222
  /** OAuth access token. */
2292
- access_token?: string;
3223
+ access_token?:
3224
+ string;
2293
3225
  /** Data format for response. */
2294
- alt?: string;
3226
+ alt?:
3227
+ string;
2295
3228
  /** JSONP */
2296
- callback?: string;
3229
+ callback?:
3230
+ string;
2297
3231
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
2298
- clientOperationId?: string;
3232
+ clientOperationId?:
3233
+ string;
2299
3234
  /** Selector specifying which fields to include in a partial response. */
2300
- fields?: string;
3235
+ fields?:
3236
+ string;
2301
3237
  /** 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. */
2302
- key?: string;
3238
+ key?:
3239
+ string;
2303
3240
  /** OAuth 2.0 token for the current user. */
2304
- oauth_token?: string;
3241
+ oauth_token?:
3242
+ string;
2305
3243
  /** Returns response with indentations and line breaks. */
2306
- prettyPrint?: boolean;
3244
+ prettyPrint?:
3245
+ boolean;
2307
3246
  /** Identifies the project addressed by this request. */
2308
- project: string;
3247
+ project:
3248
+ string;
2309
3249
  /** 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. */
2310
- quotaUser?: string;
3250
+ quotaUser?:
3251
+ string;
2311
3252
  /** User assigned name of the Response Policy containing the Response Policy Rule. */
2312
- responsePolicy: string;
3253
+ responsePolicy:
3254
+ string;
2313
3255
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2314
- upload_protocol?: string;
3256
+ upload_protocol?:
3257
+ string;
2315
3258
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2316
- uploadType?: string;
3259
+ uploadType?:
3260
+ string;
2317
3261
  },
2318
3262
  body: ResponsePolicyRule): Request<ResponsePolicyRule>;
2319
3263
  /** Deletes a previously created Response Policy Rule. */
2320
3264
  delete(request?: {
2321
3265
  /** V1 error format. */
2322
- "$.xgafv"?: string;
3266
+ "$.xgafv"?:
3267
+ string;
2323
3268
  /** OAuth access token. */
2324
- access_token?: string;
3269
+ access_token?:
3270
+ string;
2325
3271
  /** Data format for response. */
2326
- alt?: string;
3272
+ alt?:
3273
+ string;
2327
3274
  /** JSONP */
2328
- callback?: string;
3275
+ callback?:
3276
+ string;
2329
3277
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
2330
- clientOperationId?: string;
3278
+ clientOperationId?:
3279
+ string;
2331
3280
  /** Selector specifying which fields to include in a partial response. */
2332
- fields?: string;
3281
+ fields?:
3282
+ string;
2333
3283
  /** 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. */
2334
- key?: string;
3284
+ key?:
3285
+ string;
2335
3286
  /** OAuth 2.0 token for the current user. */
2336
- oauth_token?: string;
3287
+ oauth_token?:
3288
+ string;
2337
3289
  /** Returns response with indentations and line breaks. */
2338
- prettyPrint?: boolean;
3290
+ prettyPrint?:
3291
+ boolean;
2339
3292
  /** Identifies the project addressed by this request. */
2340
- project: string;
3293
+ project:
3294
+ string;
2341
3295
  /** 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. */
2342
- quotaUser?: string;
3296
+ quotaUser?:
3297
+ string;
2343
3298
  /** User assigned name of the Response Policy containing the Response Policy Rule. */
2344
- responsePolicy: string;
3299
+ responsePolicy:
3300
+ string;
2345
3301
  /** User assigned name of the Response Policy Rule addressed by this request. */
2346
- responsePolicyRule: string;
3302
+ responsePolicyRule:
3303
+ string;
2347
3304
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2348
- upload_protocol?: string;
3305
+ upload_protocol?:
3306
+ string;
2349
3307
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2350
- uploadType?: string;
3308
+ uploadType?:
3309
+ string;
2351
3310
  }): Request<void>;
2352
3311
  /** Fetches the representation of an existing Response Policy Rule. */
2353
3312
  get(request?: {
2354
3313
  /** V1 error format. */
2355
- "$.xgafv"?: string;
3314
+ "$.xgafv"?:
3315
+ string;
2356
3316
  /** OAuth access token. */
2357
- access_token?: string;
3317
+ access_token?:
3318
+ string;
2358
3319
  /** Data format for response. */
2359
- alt?: string;
3320
+ alt?:
3321
+ string;
2360
3322
  /** JSONP */
2361
- callback?: string;
3323
+ callback?:
3324
+ string;
2362
3325
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
2363
- clientOperationId?: string;
3326
+ clientOperationId?:
3327
+ string;
2364
3328
  /** Selector specifying which fields to include in a partial response. */
2365
- fields?: string;
3329
+ fields?:
3330
+ string;
2366
3331
  /** 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. */
2367
- key?: string;
3332
+ key?:
3333
+ string;
2368
3334
  /** OAuth 2.0 token for the current user. */
2369
- oauth_token?: string;
3335
+ oauth_token?:
3336
+ string;
2370
3337
  /** Returns response with indentations and line breaks. */
2371
- prettyPrint?: boolean;
3338
+ prettyPrint?:
3339
+ boolean;
2372
3340
  /** Identifies the project addressed by this request. */
2373
- project: string;
3341
+ project:
3342
+ string;
2374
3343
  /** 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. */
2375
- quotaUser?: string;
3344
+ quotaUser?:
3345
+ string;
2376
3346
  /** User assigned name of the Response Policy containing the Response Policy Rule. */
2377
- responsePolicy: string;
3347
+ responsePolicy:
3348
+ string;
2378
3349
  /** User assigned name of the Response Policy Rule addressed by this request. */
2379
- responsePolicyRule: string;
3350
+ responsePolicyRule:
3351
+ string;
2380
3352
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2381
- upload_protocol?: string;
3353
+ upload_protocol?:
3354
+ string;
2382
3355
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2383
- uploadType?: string;
3356
+ uploadType?:
3357
+ string;
2384
3358
  }): Request<ResponsePolicyRule>;
2385
3359
  /** Enumerates all Response Policy Rules associated with a project. */
2386
3360
  list(request?: {
2387
3361
  /** V1 error format. */
2388
- "$.xgafv"?: string;
3362
+ "$.xgafv"?:
3363
+ string;
2389
3364
  /** OAuth access token. */
2390
- access_token?: string;
3365
+ access_token?:
3366
+ string;
2391
3367
  /** Data format for response. */
2392
- alt?: string;
3368
+ alt?:
3369
+ string;
2393
3370
  /** JSONP */
2394
- callback?: string;
3371
+ callback?:
3372
+ string;
2395
3373
  /** Selector specifying which fields to include in a partial response. */
2396
- fields?: string;
3374
+ fields?:
3375
+ string;
2397
3376
  /** 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. */
2398
- key?: string;
3377
+ key?:
3378
+ string;
2399
3379
  /** Optional. Maximum number of results to be returned. If unspecified, the server decides how many results to return. */
2400
- maxResults?: number;
3380
+ maxResults?:
3381
+ number;
2401
3382
  /** OAuth 2.0 token for the current user. */
2402
- oauth_token?: string;
3383
+ oauth_token?:
3384
+ string;
2403
3385
  /** Optional. A tag returned by a previous list request that was truncated. Use this parameter to continue a previous list request. */
2404
- pageToken?: string;
3386
+ pageToken?:
3387
+ string;
2405
3388
  /** Returns response with indentations and line breaks. */
2406
- prettyPrint?: boolean;
3389
+ prettyPrint?:
3390
+ boolean;
2407
3391
  /** Identifies the project addressed by this request. */
2408
- project: string;
3392
+ project:
3393
+ string;
2409
3394
  /** 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. */
2410
- quotaUser?: string;
3395
+ quotaUser?:
3396
+ string;
2411
3397
  /** User assigned name of the Response Policy to list. */
2412
- responsePolicy: string;
3398
+ responsePolicy:
3399
+ string;
2413
3400
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2414
- upload_protocol?: string;
3401
+ upload_protocol?:
3402
+ string;
2415
3403
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2416
- uploadType?: string;
3404
+ uploadType?:
3405
+ string;
2417
3406
  }): Request<ResponsePolicyRulesListResponse>;
2418
3407
  /** Applies a partial update to an existing Response Policy Rule. */
2419
3408
  patch(request: {
2420
3409
  /** V1 error format. */
2421
- "$.xgafv"?: string;
3410
+ "$.xgafv"?:
3411
+ string;
2422
3412
  /** OAuth access token. */
2423
- access_token?: string;
3413
+ access_token?:
3414
+ string;
2424
3415
  /** Data format for response. */
2425
- alt?: string;
3416
+ alt?:
3417
+ string;
2426
3418
  /** JSONP */
2427
- callback?: string;
3419
+ callback?:
3420
+ string;
2428
3421
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
2429
- clientOperationId?: string;
3422
+ clientOperationId?:
3423
+ string;
2430
3424
  /** Selector specifying which fields to include in a partial response. */
2431
- fields?: string;
3425
+ fields?:
3426
+ string;
2432
3427
  /** 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. */
2433
- key?: string;
3428
+ key?:
3429
+ string;
2434
3430
  /** OAuth 2.0 token for the current user. */
2435
- oauth_token?: string;
3431
+ oauth_token?:
3432
+ string;
2436
3433
  /** Returns response with indentations and line breaks. */
2437
- prettyPrint?: boolean;
3434
+ prettyPrint?:
3435
+ boolean;
2438
3436
  /** Identifies the project addressed by this request. */
2439
- project: string;
3437
+ project:
3438
+ string;
2440
3439
  /** 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. */
2441
- quotaUser?: string;
3440
+ quotaUser?:
3441
+ string;
2442
3442
  /** User assigned name of the Response Policy containing the Response Policy Rule. */
2443
- responsePolicy: string;
3443
+ responsePolicy:
3444
+ string;
2444
3445
  /** User assigned name of the Response Policy Rule addressed by this request. */
2445
- responsePolicyRule: string;
3446
+ responsePolicyRule:
3447
+ string;
2446
3448
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2447
- upload_protocol?: string;
3449
+ upload_protocol?:
3450
+ string;
2448
3451
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2449
- uploadType?: string;
3452
+ uploadType?:
3453
+ string;
2450
3454
  /** Request body */
2451
- resource: ResponsePolicyRule;
3455
+ resource:
3456
+ ResponsePolicyRule;
2452
3457
  }): Request<ResponsePolicyRulesPatchResponse>;
2453
3458
  patch(request: {
2454
3459
  /** V1 error format. */
2455
- "$.xgafv"?: string;
3460
+ "$.xgafv"?:
3461
+ string;
2456
3462
  /** OAuth access token. */
2457
- access_token?: string;
3463
+ access_token?:
3464
+ string;
2458
3465
  /** Data format for response. */
2459
- alt?: string;
3466
+ alt?:
3467
+ string;
2460
3468
  /** JSONP */
2461
- callback?: string;
3469
+ callback?:
3470
+ string;
2462
3471
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
2463
- clientOperationId?: string;
3472
+ clientOperationId?:
3473
+ string;
2464
3474
  /** Selector specifying which fields to include in a partial response. */
2465
- fields?: string;
3475
+ fields?:
3476
+ string;
2466
3477
  /** 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. */
2467
- key?: string;
3478
+ key?:
3479
+ string;
2468
3480
  /** OAuth 2.0 token for the current user. */
2469
- oauth_token?: string;
3481
+ oauth_token?:
3482
+ string;
2470
3483
  /** Returns response with indentations and line breaks. */
2471
- prettyPrint?: boolean;
3484
+ prettyPrint?:
3485
+ boolean;
2472
3486
  /** Identifies the project addressed by this request. */
2473
- project: string;
3487
+ project:
3488
+ string;
2474
3489
  /** 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. */
2475
- quotaUser?: string;
3490
+ quotaUser?:
3491
+ string;
2476
3492
  /** User assigned name of the Response Policy containing the Response Policy Rule. */
2477
- responsePolicy: string;
3493
+ responsePolicy:
3494
+ string;
2478
3495
  /** User assigned name of the Response Policy Rule addressed by this request. */
2479
- responsePolicyRule: string;
3496
+ responsePolicyRule:
3497
+ string;
2480
3498
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2481
- upload_protocol?: string;
3499
+ upload_protocol?:
3500
+ string;
2482
3501
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2483
- uploadType?: string;
3502
+ uploadType?:
3503
+ string;
2484
3504
  },
2485
3505
  body: ResponsePolicyRule): Request<ResponsePolicyRulesPatchResponse>;
2486
3506
  /** Updates an existing Response Policy Rule. */
2487
3507
  update(request: {
2488
3508
  /** V1 error format. */
2489
- "$.xgafv"?: string;
3509
+ "$.xgafv"?:
3510
+ string;
2490
3511
  /** OAuth access token. */
2491
- access_token?: string;
3512
+ access_token?:
3513
+ string;
2492
3514
  /** Data format for response. */
2493
- alt?: string;
3515
+ alt?:
3516
+ string;
2494
3517
  /** JSONP */
2495
- callback?: string;
3518
+ callback?:
3519
+ string;
2496
3520
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
2497
- clientOperationId?: string;
3521
+ clientOperationId?:
3522
+ string;
2498
3523
  /** Selector specifying which fields to include in a partial response. */
2499
- fields?: string;
3524
+ fields?:
3525
+ string;
2500
3526
  /** 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. */
2501
- key?: string;
3527
+ key?:
3528
+ string;
2502
3529
  /** OAuth 2.0 token for the current user. */
2503
- oauth_token?: string;
3530
+ oauth_token?:
3531
+ string;
2504
3532
  /** Returns response with indentations and line breaks. */
2505
- prettyPrint?: boolean;
3533
+ prettyPrint?:
3534
+ boolean;
2506
3535
  /** Identifies the project addressed by this request. */
2507
- project: string;
3536
+ project:
3537
+ string;
2508
3538
  /** 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. */
2509
- quotaUser?: string;
3539
+ quotaUser?:
3540
+ string;
2510
3541
  /** User assigned name of the Response Policy containing the Response Policy Rule. */
2511
- responsePolicy: string;
3542
+ responsePolicy:
3543
+ string;
2512
3544
  /** User assigned name of the Response Policy Rule addressed by this request. */
2513
- responsePolicyRule: string;
3545
+ responsePolicyRule:
3546
+ string;
2514
3547
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2515
- upload_protocol?: string;
3548
+ upload_protocol?:
3549
+ string;
2516
3550
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2517
- uploadType?: string;
3551
+ uploadType?:
3552
+ string;
2518
3553
  /** Request body */
2519
- resource: ResponsePolicyRule;
3554
+ resource:
3555
+ ResponsePolicyRule;
2520
3556
  }): Request<ResponsePolicyRulesUpdateResponse>;
2521
3557
  update(request: {
2522
3558
  /** V1 error format. */
2523
- "$.xgafv"?: string;
3559
+ "$.xgafv"?:
3560
+ string;
2524
3561
  /** OAuth access token. */
2525
- access_token?: string;
3562
+ access_token?:
3563
+ string;
2526
3564
  /** Data format for response. */
2527
- alt?: string;
3565
+ alt?:
3566
+ string;
2528
3567
  /** JSONP */
2529
- callback?: string;
3568
+ callback?:
3569
+ string;
2530
3570
  /** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
2531
- clientOperationId?: string;
3571
+ clientOperationId?:
3572
+ string;
2532
3573
  /** Selector specifying which fields to include in a partial response. */
2533
- fields?: string;
3574
+ fields?:
3575
+ string;
2534
3576
  /** 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. */
2535
- key?: string;
3577
+ key?:
3578
+ string;
2536
3579
  /** OAuth 2.0 token for the current user. */
2537
- oauth_token?: string;
3580
+ oauth_token?:
3581
+ string;
2538
3582
  /** Returns response with indentations and line breaks. */
2539
- prettyPrint?: boolean;
3583
+ prettyPrint?:
3584
+ boolean;
2540
3585
  /** Identifies the project addressed by this request. */
2541
- project: string;
3586
+ project:
3587
+ string;
2542
3588
  /** 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. */
2543
- quotaUser?: string;
3589
+ quotaUser?:
3590
+ string;
2544
3591
  /** User assigned name of the Response Policy containing the Response Policy Rule. */
2545
- responsePolicy: string;
3592
+ responsePolicy:
3593
+ string;
2546
3594
  /** User assigned name of the Response Policy Rule addressed by this request. */
2547
- responsePolicyRule: string;
3595
+ responsePolicyRule:
3596
+ string;
2548
3597
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2549
- upload_protocol?: string;
3598
+ upload_protocol?:
3599
+ string;
2550
3600
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2551
- uploadType?: string;
3601
+ uploadType?:
3602
+ string;
2552
3603
  },
2553
3604
  body: ResponsePolicyRule): Request<ResponsePolicyRulesUpdateResponse>;
2554
3605
  }