@maxim_mazurok/gapi.client.networksecurity-v1 0.1.20260302 → 0.2.20260302

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 (2) hide show
  1. package/index.d.ts +605 -458
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -48,23 +48,36 @@ declare namespace gapi.client {
48
48
  /** Required. Name of the AddressGroup resource. It matches pattern `projects/*‍/locations/{location}/addressGroups/`. */
49
49
  name?: string;
50
50
  /** Optional. List of supported purposes of the Address Group. */
51
- purpose?: string[];
51
+ purpose?: 'PURPOSE_UNSPECIFIED' | 'DEFAULT' | 'CLOUD_ARMOR'[];
52
52
  /** Output only. Server-defined fully-qualified URL for this resource. */
53
53
  selfLink?: string;
54
54
  /** Required. The type of the Address Group. Possible values are "IPv4" or "IPV6". */
55
- type?: string;
55
+ type?: 'TYPE_UNSPECIFIED' | 'IPV4' | 'IPV6';
56
56
  /** Output only. The timestamp when the resource was updated. */
57
57
  updateTime?: string;
58
58
  }
59
59
  interface AntivirusOverride {
60
60
  /** Required. Threat action override. For some threat types, only a subset of actions applies. */
61
- action?: string;
61
+ action?:
62
+ | 'THREAT_ACTION_UNSPECIFIED'
63
+ | 'DEFAULT_ACTION'
64
+ | 'ALLOW'
65
+ | 'ALERT'
66
+ | 'DENY';
62
67
  /** Required. Protocol to match. */
63
- protocol?: string;
68
+ protocol?:
69
+ | 'PROTOCOL_UNSPECIFIED'
70
+ | 'SMTP'
71
+ | 'SMB'
72
+ | 'POP3'
73
+ | 'IMAP'
74
+ | 'HTTP2'
75
+ | 'HTTP'
76
+ | 'FTP';
64
77
  }
65
78
  interface AuthorizationPolicy {
66
79
  /** Required. The action to take when a rule match is found. Possible values are "ALLOW" or "DENY". */
67
- action?: string;
80
+ action?: 'ACTION_UNSPECIFIED' | 'ALLOW' | 'DENY';
68
81
  /** Output only. The timestamp when the resource was created. */
69
82
  createTime?: string;
70
83
  /** Optional. Free-text description of the resource. */
@@ -80,7 +93,7 @@ declare namespace gapi.client {
80
93
  }
81
94
  interface AuthzPolicy {
82
95
  /** Required. Can be one of `ALLOW`, `DENY`, `CUSTOM`. When the action is `CUSTOM`, `customProvider` must be specified. When the action is `ALLOW`, only requests matching the policy will be allowed. When the action is `DENY`, only requests matching the policy will be denied. When a request arrives, the policies are evaluated in the following order: 1. If there is a `CUSTOM` policy that matches the request, the `CUSTOM` policy is evaluated using the custom authorization providers and the request is denied if the provider rejects the request. 2. If there are any `DENY` policies that match the request, the request is denied. 3. If there are no `ALLOW` policies for the resource or if any of the `ALLOW` policies match the request, the request is allowed. 4. Else the request is denied by default if none of the configured AuthzPolicies with `ALLOW` action match the request. */
83
- action?: string;
96
+ action?: 'AUTHZ_ACTION_UNSPECIFIED' | 'ALLOW' | 'DENY' | 'CUSTOM';
84
97
  /** Output only. The timestamp when the resource was created. */
85
98
  createTime?: string;
86
99
  /** Optional. Required if the action is `CUSTOM`. Allows delegating authorization decisions to Cloud IAP or to Service Extensions. One of `cloudIap` or `authzExtension` must be specified. */
@@ -136,7 +149,11 @@ declare namespace gapi.client {
136
149
  /** Required. A non-empty string whose value is matched against the principal value based on the principal_selector. Only exact match can be applied for CLIENT_CERT_URI_SAN, CLIENT_CERT_DNS_NAME_SAN, CLIENT_CERT_COMMON_NAME selectors. */
137
150
  principal?: AuthzPolicyAuthzRuleStringMatch;
138
151
  /** Optional. An enum to decide what principal value the principal rule will match against. If not specified, the PrincipalSelector is CLIENT_CERT_URI_SAN. */
139
- principalSelector?: string;
152
+ principalSelector?:
153
+ | 'PRINCIPAL_SELECTOR_UNSPECIFIED'
154
+ | 'CLIENT_CERT_URI_SAN'
155
+ | 'CLIENT_CERT_DNS_NAME_SAN'
156
+ | 'CLIENT_CERT_COMMON_NAME';
140
157
  }
141
158
  interface AuthzPolicyAuthzRuleRequestResource {
142
159
  /** Optional. An IAM service account to match against the source service account of the VM sending the request. */
@@ -193,7 +210,11 @@ declare namespace gapi.client {
193
210
  interface AuthzPolicyCustomProviderCloudIap {}
194
211
  interface AuthzPolicyTarget {
195
212
  /** Required. All gateways and forwarding rules referenced by this policy and extensions must share the same load balancing scheme. Supported values: `INTERNAL_MANAGED` and `EXTERNAL_MANAGED`. For more information, refer to [Backend services overview](https://cloud.google.com/load-balancing/docs/backend-service). */
196
- loadBalancingScheme?: string;
213
+ loadBalancingScheme?:
214
+ | 'LOAD_BALANCING_SCHEME_UNSPECIFIED'
215
+ | 'INTERNAL_MANAGED'
216
+ | 'EXTERNAL_MANAGED'
217
+ | 'INTERNAL_SELF_MANAGED';
197
218
  /** Required. A list of references to the Forwarding Rules on which this policy will be applied. */
198
219
  resources?: string[];
199
220
  }
@@ -215,7 +236,7 @@ declare namespace gapi.client {
215
236
  /** Output only. The timestamp when the resource was updated. */
216
237
  updateTime?: string;
217
238
  /** Well known roots to use for server certificate validation. */
218
- wellKnownRoots?: string;
239
+ wellKnownRoots?: 'WELL_KNOWN_ROOTS_UNSPECIFIED' | 'NONE' | 'PUBLIC_ROOTS';
219
240
  }
220
241
  interface CancelOperationRequest {}
221
242
  interface CertificateProviderInstance {
@@ -274,7 +295,7 @@ declare namespace gapi.client {
274
295
  /** Immutable. Identifier. Name of the DnsThreatDetector resource. */
275
296
  name?: string;
276
297
  /** Required. The provider used for DNS threat analysis. */
277
- provider?: string;
298
+ provider?: 'PROVIDER_UNSPECIFIED' | 'INFOBLOX';
278
299
  /** Output only. Update time stamp. */
279
300
  updateTime?: string;
280
301
  }
@@ -313,7 +334,12 @@ declare namespace gapi.client {
313
334
  /** Output only. [Output Only] Reserved for future use. */
314
335
  satisfiesPzs?: boolean;
315
336
  /** Output only. Current state of the endpoint. */
316
- state?: string;
337
+ state?:
338
+ | 'STATE_UNSPECIFIED'
339
+ | 'CREATING'
340
+ | 'ACTIVE'
341
+ | 'DELETING'
342
+ | 'INACTIVE';
317
343
  /** Output only. Update time stamp */
318
344
  updateTime?: string;
319
345
  }
@@ -333,7 +359,13 @@ declare namespace gapi.client {
333
359
  /** Output only. Whether reconciling is in progress, recommended per https://google.aip.dev/128. */
334
360
  reconciling?: boolean;
335
361
  /** Output only. Current state of the association. */
336
- state?: string;
362
+ state?:
363
+ | 'STATE_UNSPECIFIED'
364
+ | 'CREATING'
365
+ | 'ACTIVE'
366
+ | 'DELETING'
367
+ | 'INACTIVE'
368
+ | 'ORPHAN';
337
369
  /** Optional. The URL of the TlsInspectionPolicy that is being associated. */
338
370
  tlsInspectionPolicy?: string;
339
371
  /** Output only. Update time stamp */
@@ -365,7 +397,7 @@ declare namespace gapi.client {
365
397
  /** Optional. CEL expression for matching on L7/application level criteria. */
366
398
  applicationMatcher?: string;
367
399
  /** Required. Profile which tells what the primitive action should be. */
368
- basicProfile?: string;
400
+ basicProfile?: 'BASIC_PROFILE_UNSPECIFIED' | 'ALLOW' | 'DENY';
369
401
  /** Output only. Time when the rule was created. */
370
402
  createTime?: string;
371
403
  /** Optional. Free-text description of the resource. */
@@ -403,7 +435,11 @@ declare namespace gapi.client {
403
435
  /** Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members. */
404
436
  exemptedMembers?: string[];
405
437
  /** The log type that this config enables. */
406
- logType?: string;
438
+ logType?:
439
+ | 'LOG_TYPE_UNSPECIFIED'
440
+ | 'ADMIN_READ'
441
+ | 'DATA_WRITE'
442
+ | 'DATA_READ';
407
443
  }
408
444
  interface GoogleIamV1Binding {
409
445
  /** The condition that is associated with this binding. If the condition evaluates to `true`, then this binding applies to the current request. If the condition evaluates to `false`, 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 resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies). */
@@ -459,7 +495,13 @@ declare namespace gapi.client {
459
495
  /** Output only. The current state of the resource does not match the user's intended state, and the system is working to reconcile them. This part of the normal operation (e.g. linking a new association to the parent group). See https://google.aip.dev/128. */
460
496
  reconciling?: boolean;
461
497
  /** Output only. The current state of the deployment. See https://google.aip.dev/216. */
462
- state?: string;
498
+ state?:
499
+ | 'STATE_UNSPECIFIED'
500
+ | 'ACTIVE'
501
+ | 'CREATING'
502
+ | 'DELETING'
503
+ | 'OUT_OF_SYNC'
504
+ | 'DELETE_FAILED';
463
505
  /** Output only. The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps. */
464
506
  updateTime?: string;
465
507
  }
@@ -483,7 +525,7 @@ declare namespace gapi.client {
483
525
  /** Output only. The current state of the resource does not match the user's intended state, and the system is working to reconcile them. This is part of the normal operation (e.g. adding a new deployment to the group) See https://google.aip.dev/128. */
484
526
  reconciling?: boolean;
485
527
  /** Output only. The current state of the deployment group. See https://google.aip.dev/216. */
486
- state?: string;
528
+ state?: 'STATE_UNSPECIFIED' | 'ACTIVE' | 'CREATING' | 'DELETING';
487
529
  /** Output only. The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps. */
488
530
  updateTime?: string;
489
531
  }
@@ -495,7 +537,13 @@ declare namespace gapi.client {
495
537
  /** Output only. The name of the Intercept Deployment, in the format: `projects/{project}/locations/{location}/interceptDeployments/{intercept_deployment}`. */
496
538
  name?: string;
497
539
  /** Output only. Most recent known state of the deployment. */
498
- state?: string;
540
+ state?:
541
+ | 'STATE_UNSPECIFIED'
542
+ | 'ACTIVE'
543
+ | 'CREATING'
544
+ | 'DELETING'
545
+ | 'OUT_OF_SYNC'
546
+ | 'DELETE_FAILED';
499
547
  }
500
548
  interface InterceptEndpointGroup {
501
549
  /** Output only. List of associations to this endpoint group. */
@@ -515,7 +563,14 @@ declare namespace gapi.client {
515
563
  /** Output only. The current state of the resource does not match the user's intended state, and the system is working to reconcile them. This is part of the normal operation (e.g. adding a new association to the group). See https://google.aip.dev/128. */
516
564
  reconciling?: boolean;
517
565
  /** Output only. The current state of the endpoint group. See https://google.aip.dev/216. */
518
- state?: string;
566
+ state?:
567
+ | 'STATE_UNSPECIFIED'
568
+ | 'ACTIVE'
569
+ | 'CLOSED'
570
+ | 'CREATING'
571
+ | 'DELETING'
572
+ | 'OUT_OF_SYNC'
573
+ | 'DELETE_FAILED';
519
574
  /** Output only. The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps. */
520
575
  updateTime?: string;
521
576
  }
@@ -537,7 +592,14 @@ declare namespace gapi.client {
537
592
  /** Output only. The current state of the resource does not match the user's intended state, and the system is working to reconcile them. This part of the normal operation (e.g. adding a new location to the target deployment group). See https://google.aip.dev/128. */
538
593
  reconciling?: boolean;
539
594
  /** Output only. Current state of the endpoint group association. */
540
- state?: string;
595
+ state?:
596
+ | 'STATE_UNSPECIFIED'
597
+ | 'ACTIVE'
598
+ | 'CREATING'
599
+ | 'DELETING'
600
+ | 'CLOSED'
601
+ | 'OUT_OF_SYNC'
602
+ | 'DELETE_FAILED';
541
603
  /** Output only. The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps. */
542
604
  updateTime?: string;
543
605
  }
@@ -547,13 +609,20 @@ declare namespace gapi.client {
547
609
  /** Output only. The associated network, for example: projects/123456789/global/networks/my-network. See https://google.aip.dev/124. */
548
610
  network?: string;
549
611
  /** Output only. Most recent known state of the association. */
550
- state?: string;
612
+ state?:
613
+ | 'STATE_UNSPECIFIED'
614
+ | 'ACTIVE'
615
+ | 'CREATING'
616
+ | 'DELETING'
617
+ | 'CLOSED'
618
+ | 'OUT_OF_SYNC'
619
+ | 'DELETE_FAILED';
551
620
  }
552
621
  interface InterceptEndpointGroupAssociationLocationDetails {
553
622
  /** Output only. The cloud location, e.g. "us-central1-a" or "asia-south1". */
554
623
  location?: string;
555
624
  /** Output only. The current state of the association in this location. */
556
- state?: string;
625
+ state?: 'STATE_UNSPECIFIED' | 'ACTIVE' | 'OUT_OF_SYNC';
557
626
  }
558
627
  interface InterceptEndpointGroupConnectedDeploymentGroup {
559
628
  /** Output only. The list of locations where the deployment group is present. */
@@ -565,7 +634,7 @@ declare namespace gapi.client {
565
634
  /** Output only. The cloud location, e.g. "us-central1-a" or "asia-south1". */
566
635
  location?: string;
567
636
  /** Output only. The current state of the association in this location. */
568
- state?: string;
637
+ state?: 'STATE_UNSPECIFIED' | 'ACTIVE' | 'OUT_OF_SYNC';
569
638
  }
570
639
  interface ListAddressGroupReferencesResponse {
571
640
  /** A list of references that matches the specified filter in the request. */
@@ -787,7 +856,13 @@ declare namespace gapi.client {
787
856
  /** Output only. The current state of the resource does not match the user's intended state, and the system is working to reconcile them. This part of the normal operation (e.g. linking a new association to the parent group). See https://google.aip.dev/128. */
788
857
  reconciling?: boolean;
789
858
  /** Output only. The current state of the deployment. See https://google.aip.dev/216. */
790
- state?: string;
859
+ state?:
860
+ | 'STATE_UNSPECIFIED'
861
+ | 'ACTIVE'
862
+ | 'CREATING'
863
+ | 'DELETING'
864
+ | 'OUT_OF_SYNC'
865
+ | 'DELETE_FAILED';
791
866
  /** Output only. The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps. */
792
867
  updateTime?: string;
793
868
  }
@@ -811,7 +886,12 @@ declare namespace gapi.client {
811
886
  /** Output only. The current state of the resource does not match the user's intended state, and the system is working to reconcile them. This is part of the normal operation (e.g. adding a new deployment to the group) See https://google.aip.dev/128. */
812
887
  reconciling?: boolean;
813
888
  /** Output only. The current state of the deployment group. See https://google.aip.dev/216. */
814
- state?: string;
889
+ state?:
890
+ | 'STATE_UNSPECIFIED'
891
+ | 'ACTIVE'
892
+ | 'CREATING'
893
+ | 'DELETING'
894
+ | 'CLOSED';
815
895
  /** Output only. The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps. */
816
896
  updateTime?: string;
817
897
  }
@@ -823,7 +903,13 @@ declare namespace gapi.client {
823
903
  /** Output only. The name of the Mirroring Deployment, in the format: `projects/{project}/locations/{location}/mirroringDeployments/{mirroring_deployment}`. */
824
904
  name?: string;
825
905
  /** Output only. Most recent known state of the deployment. */
826
- state?: string;
906
+ state?:
907
+ | 'STATE_UNSPECIFIED'
908
+ | 'ACTIVE'
909
+ | 'CREATING'
910
+ | 'DELETING'
911
+ | 'OUT_OF_SYNC'
912
+ | 'DELETE_FAILED';
827
913
  }
828
914
  interface MirroringEndpointGroup {
829
915
  /** Output only. List of associations to this endpoint group. */
@@ -843,9 +929,16 @@ declare namespace gapi.client {
843
929
  /** Output only. The current state of the resource does not match the user's intended state, and the system is working to reconcile them. This is part of the normal operation (e.g. adding a new association to the group). See https://google.aip.dev/128. */
844
930
  reconciling?: boolean;
845
931
  /** Output only. The current state of the endpoint group. See https://google.aip.dev/216. */
846
- state?: string;
932
+ state?:
933
+ | 'STATE_UNSPECIFIED'
934
+ | 'ACTIVE'
935
+ | 'CLOSED'
936
+ | 'CREATING'
937
+ | 'DELETING'
938
+ | 'OUT_OF_SYNC'
939
+ | 'DELETE_FAILED';
847
940
  /** Immutable. The type of the endpoint group. If left unspecified, defaults to DIRECT. */
848
- type?: string;
941
+ type?: 'TYPE_UNSPECIFIED' | 'DIRECT';
849
942
  /** Output only. The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps. */
850
943
  updateTime?: string;
851
944
  }
@@ -867,7 +960,14 @@ declare namespace gapi.client {
867
960
  /** Output only. The current state of the resource does not match the user's intended state, and the system is working to reconcile them. This part of the normal operation (e.g. adding a new location to the target deployment group). See https://google.aip.dev/128. */
868
961
  reconciling?: boolean;
869
962
  /** Output only. Current state of the endpoint group association. */
870
- state?: string;
963
+ state?:
964
+ | 'STATE_UNSPECIFIED'
965
+ | 'ACTIVE'
966
+ | 'CREATING'
967
+ | 'DELETING'
968
+ | 'CLOSED'
969
+ | 'OUT_OF_SYNC'
970
+ | 'DELETE_FAILED';
871
971
  /** Output only. The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps. */
872
972
  updateTime?: string;
873
973
  }
@@ -877,13 +977,20 @@ declare namespace gapi.client {
877
977
  /** Output only. The associated network, for example: projects/123456789/global/networks/my-network. See https://google.aip.dev/124. */
878
978
  network?: string;
879
979
  /** Output only. Most recent known state of the association. */
880
- state?: string;
980
+ state?:
981
+ | 'STATE_UNSPECIFIED'
982
+ | 'ACTIVE'
983
+ | 'CREATING'
984
+ | 'DELETING'
985
+ | 'CLOSED'
986
+ | 'OUT_OF_SYNC'
987
+ | 'DELETE_FAILED';
881
988
  }
882
989
  interface MirroringEndpointGroupAssociationLocationDetails {
883
990
  /** Output only. The cloud location, e.g. "us-central1-a" or "asia-south1". */
884
991
  location?: string;
885
992
  /** Output only. The current state of the association in this location. */
886
- state?: string;
993
+ state?: 'STATE_UNSPECIFIED' | 'ACTIVE' | 'OUT_OF_SYNC';
887
994
  }
888
995
  interface MirroringEndpointGroupConnectedDeploymentGroup {
889
996
  /** Output only. The list of locations where the deployment group is present. */
@@ -895,13 +1002,16 @@ declare namespace gapi.client {
895
1002
  /** Output only. The cloud location, e.g. "us-central1-a" or "asia-south1". */
896
1003
  location?: string;
897
1004
  /** Output only. The current state of the association in this location. */
898
- state?: string;
1005
+ state?: 'STATE_UNSPECIFIED' | 'ACTIVE' | 'OUT_OF_SYNC';
899
1006
  }
900
1007
  interface MTLSPolicy {
901
1008
  /** Required if the policy is to be used with Traffic Director. For Application Load Balancers it must be empty. Defines the mechanism to obtain the Certificate Authority certificate to validate the client certificate. */
902
1009
  clientValidationCa?: ValidationCA[];
903
1010
  /** When the client presents an invalid certificate or no certificate to the load balancer, the `client_validation_mode` specifies how the client connection is handled. Required if the policy is to be used with the Application Load Balancers. For Traffic Director it must be empty. */
904
- clientValidationMode?: string;
1011
+ clientValidationMode?:
1012
+ | 'CLIENT_VALIDATION_MODE_UNSPECIFIED'
1013
+ | 'ALLOW_INVALID_OR_MISSING_CLIENT_CERT'
1014
+ | 'REJECT_INVALID';
905
1015
  /** Reference to the TrustConfig from certificatemanager.googleapis.com namespace. If specified, the chain validation will be performed against certificates configured in the given TrustConfig. Allowed only if the policy is to be used with Application Load Balancers. */
906
1016
  clientValidationTrustConfig?: string;
907
1017
  }
@@ -963,7 +1073,12 @@ declare namespace gapi.client {
963
1073
  /** The threat prevention configuration for the SecurityProfile. */
964
1074
  threatPreventionProfile?: ThreatPreventionProfile;
965
1075
  /** Immutable. The single ProfileType that the SecurityProfile resource configures. */
966
- type?: string;
1076
+ type?:
1077
+ | 'PROFILE_TYPE_UNSPECIFIED'
1078
+ | 'THREAT_PREVENTION'
1079
+ | 'CUSTOM_MIRRORING'
1080
+ | 'CUSTOM_INTERCEPT'
1081
+ | 'URL_FILTERING';
967
1082
  /** Output only. Last resource update timestamp. */
968
1083
  updateTime?: string;
969
1084
  /** The URL filtering configuration for the SecurityProfile. */
@@ -1013,9 +1128,20 @@ declare namespace gapi.client {
1013
1128
  }
1014
1129
  interface SeverityOverride {
1015
1130
  /** Required. Threat action override. */
1016
- action?: string;
1131
+ action?:
1132
+ | 'THREAT_ACTION_UNSPECIFIED'
1133
+ | 'DEFAULT_ACTION'
1134
+ | 'ALLOW'
1135
+ | 'ALERT'
1136
+ | 'DENY';
1017
1137
  /** Required. Severity level to match. */
1018
- severity?: string;
1138
+ severity?:
1139
+ | 'SEVERITY_UNSPECIFIED'
1140
+ | 'INFORMATIONAL'
1141
+ | 'LOW'
1142
+ | 'MEDIUM'
1143
+ | 'HIGH'
1144
+ | 'CRITICAL';
1019
1145
  }
1020
1146
  interface Source {
1021
1147
  /** Optional. List of CIDR ranges to match based on source IP address. At least one IP block should match. Single IP (e.g., "1.2.3.4") and CIDR (e.g., "1.2.3.0/24") are supported. Authorization based on source IP alone should be avoided. The IP addresses of any load balancers or proxies should be considered untrusted. */
@@ -1033,11 +1159,22 @@ declare namespace gapi.client {
1033
1159
  }
1034
1160
  interface ThreatOverride {
1035
1161
  /** Required. Threat action override. For some threat types, only a subset of actions applies. */
1036
- action?: string;
1162
+ action?:
1163
+ | 'THREAT_ACTION_UNSPECIFIED'
1164
+ | 'DEFAULT_ACTION'
1165
+ | 'ALLOW'
1166
+ | 'ALERT'
1167
+ | 'DENY';
1037
1168
  /** Required. Vendor-specific ID of a threat to override. */
1038
1169
  threatId?: string;
1039
1170
  /** Output only. Type of the threat (read only). */
1040
- type?: string;
1171
+ type?:
1172
+ | 'THREAT_TYPE_UNSPECIFIED'
1173
+ | 'UNKNOWN'
1174
+ | 'VULNERABILITY'
1175
+ | 'ANTIVIRUS'
1176
+ | 'SPYWARE'
1177
+ | 'DNS';
1041
1178
  }
1042
1179
  interface ThreatPreventionProfile {
1043
1180
  /** Optional. Configuration for overriding antivirus actions per protocol. */
@@ -1059,11 +1196,21 @@ declare namespace gapi.client {
1059
1196
  /** Optional. If FALSE (the default), use our default set of public CAs in addition to any CAs specified in trust_config. These public CAs are currently based on the Mozilla Root Program and are subject to change over time. If TRUE, do not accept our default set of public CAs. Only CAs specified in trust_config will be accepted. This defaults to FALSE (use public CAs in addition to trust_config) for backwards compatibility, but trusting public root CAs is *not recommended* unless the traffic in question is outbound to public web servers. When possible, prefer setting this to "false" and explicitly specifying trusted CAs and certificates in a TrustConfig. Note that Secure Web Proxy does not yet honor this field. */
1060
1197
  excludePublicCaSet?: boolean;
1061
1198
  /** Optional. Minimum TLS version that the firewall should use when negotiating connections with both clients and servers. If this is not set, then the default value is to allow the broadest set of clients and servers (TLS 1.0 or higher). Setting this to more restrictive values may improve security, but may also prevent the firewall from connecting to some clients or servers. Note that Secure Web Proxy does not yet honor this field. */
1062
- minTlsVersion?: string;
1199
+ minTlsVersion?:
1200
+ | 'TLS_VERSION_UNSPECIFIED'
1201
+ | 'TLS_1_0'
1202
+ | 'TLS_1_1'
1203
+ | 'TLS_1_2'
1204
+ | 'TLS_1_3';
1063
1205
  /** Required. Name of the resource. Name is of the form projects/{project}/locations/{location}/tlsInspectionPolicies/{tls_inspection_policy} tls_inspection_policy should match the pattern:(^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$). */
1064
1206
  name?: string;
1065
1207
  /** Optional. The selected Profile. If this is not set, then the default value is to allow the broadest set of clients and servers ("PROFILE_COMPATIBLE"). Setting this to more restrictive values may improve security, but may also prevent the TLS inspection proxy from connecting to some clients or servers. Note that Secure Web Proxy does not yet honor this field. */
1066
- tlsFeatureProfile?: string;
1208
+ tlsFeatureProfile?:
1209
+ | 'PROFILE_UNSPECIFIED'
1210
+ | 'PROFILE_COMPATIBLE'
1211
+ | 'PROFILE_MODERN'
1212
+ | 'PROFILE_RESTRICTED'
1213
+ | 'PROFILE_CUSTOM';
1067
1214
  /** Optional. A TrustConfig resource used when making a connection to the TLS server. This is a relative resource path following the form "projects/{project}/locations/{location}/trustConfigs/{trust_config}". This is necessary to intercept TLS connections to servers with certificates signed by a private CA or self-signed certificates. Note that Secure Web Proxy does not yet honor this field. */
1068
1215
  trustConfig?: string;
1069
1216
  /** Output only. The timestamp when the resource was updated. */
@@ -1071,7 +1218,7 @@ declare namespace gapi.client {
1071
1218
  }
1072
1219
  interface UrlFilter {
1073
1220
  /** Required. The action taken when this filter is applied. */
1074
- filteringAction?: string;
1221
+ filteringAction?: 'URL_FILTERING_ACTION_UNSPECIFIED' | 'ALLOW' | 'DENY';
1075
1222
  /** Required. The priority of this filter within the URL Filtering Profile. Lower integers indicate higher priorities. The priority of a filter must be unique within a URL Filtering Profile. */
1076
1223
  priority?: number;
1077
1224
  /** Required. The list of strings that a URL must match with for this filter to be applied. */
@@ -1103,13 +1250,13 @@ declare namespace gapi.client {
1103
1250
  /** Adds items to an address group. */
1104
1251
  addItems(request: {
1105
1252
  /** V1 error format. */
1106
- '$.xgafv'?: string;
1253
+ '$.xgafv'?: '1' | '2';
1107
1254
  /** OAuth access token. */
1108
1255
  access_token?: string;
1109
1256
  /** Required. A name of the AddressGroup to add items to. Must be in the format `projects|organization/*‍/locations/{location}/addressGroups/*`. */
1110
1257
  addressGroup: string;
1111
1258
  /** Data format for response. */
1112
- alt?: string;
1259
+ alt?: 'json' | 'media' | 'proto';
1113
1260
  /** JSONP */
1114
1261
  callback?: string;
1115
1262
  /** Selector specifying which fields to include in a partial response. */
@@ -1132,13 +1279,13 @@ declare namespace gapi.client {
1132
1279
  addItems(
1133
1280
  request: {
1134
1281
  /** V1 error format. */
1135
- '$.xgafv'?: string;
1282
+ '$.xgafv'?: '1' | '2';
1136
1283
  /** OAuth access token. */
1137
1284
  access_token?: string;
1138
1285
  /** Required. A name of the AddressGroup to add items to. Must be in the format `projects|organization/*‍/locations/{location}/addressGroups/*`. */
1139
1286
  addressGroup: string;
1140
1287
  /** Data format for response. */
1141
- alt?: string;
1288
+ alt?: 'json' | 'media' | 'proto';
1142
1289
  /** JSONP */
1143
1290
  callback?: string;
1144
1291
  /** Selector specifying which fields to include in a partial response. */
@@ -1161,13 +1308,13 @@ declare namespace gapi.client {
1161
1308
  /** Clones items from one address group to another. */
1162
1309
  cloneItems(request: {
1163
1310
  /** V1 error format. */
1164
- '$.xgafv'?: string;
1311
+ '$.xgafv'?: '1' | '2';
1165
1312
  /** OAuth access token. */
1166
1313
  access_token?: string;
1167
1314
  /** Required. A name of the AddressGroup to clone items to. Must be in the format `projects|organization/*‍/locations/{location}/addressGroups/*`. */
1168
1315
  addressGroup: string;
1169
1316
  /** Data format for response. */
1170
- alt?: string;
1317
+ alt?: 'json' | 'media' | 'proto';
1171
1318
  /** JSONP */
1172
1319
  callback?: string;
1173
1320
  /** Selector specifying which fields to include in a partial response. */
@@ -1190,13 +1337,13 @@ declare namespace gapi.client {
1190
1337
  cloneItems(
1191
1338
  request: {
1192
1339
  /** V1 error format. */
1193
- '$.xgafv'?: string;
1340
+ '$.xgafv'?: '1' | '2';
1194
1341
  /** OAuth access token. */
1195
1342
  access_token?: string;
1196
1343
  /** Required. A name of the AddressGroup to clone items to. Must be in the format `projects|organization/*‍/locations/{location}/addressGroups/*`. */
1197
1344
  addressGroup: string;
1198
1345
  /** Data format for response. */
1199
- alt?: string;
1346
+ alt?: 'json' | 'media' | 'proto';
1200
1347
  /** JSONP */
1201
1348
  callback?: string;
1202
1349
  /** Selector specifying which fields to include in a partial response. */
@@ -1219,13 +1366,13 @@ declare namespace gapi.client {
1219
1366
  /** Creates a new address group in a given project and location. */
1220
1367
  create(request: {
1221
1368
  /** V1 error format. */
1222
- '$.xgafv'?: string;
1369
+ '$.xgafv'?: '1' | '2';
1223
1370
  /** OAuth access token. */
1224
1371
  access_token?: string;
1225
1372
  /** Required. Short name of the AddressGroup resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and should not start with a number. E.g. "authz_policy". */
1226
1373
  addressGroupId?: string;
1227
1374
  /** Data format for response. */
1228
- alt?: string;
1375
+ alt?: 'json' | 'media' | 'proto';
1229
1376
  /** JSONP */
1230
1377
  callback?: string;
1231
1378
  /** Selector specifying which fields to include in a partial response. */
@@ -1252,13 +1399,13 @@ declare namespace gapi.client {
1252
1399
  create(
1253
1400
  request: {
1254
1401
  /** V1 error format. */
1255
- '$.xgafv'?: string;
1402
+ '$.xgafv'?: '1' | '2';
1256
1403
  /** OAuth access token. */
1257
1404
  access_token?: string;
1258
1405
  /** Required. Short name of the AddressGroup resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and should not start with a number. E.g. "authz_policy". */
1259
1406
  addressGroupId?: string;
1260
1407
  /** Data format for response. */
1261
- alt?: string;
1408
+ alt?: 'json' | 'media' | 'proto';
1262
1409
  /** JSONP */
1263
1410
  callback?: string;
1264
1411
  /** Selector specifying which fields to include in a partial response. */
@@ -1285,11 +1432,11 @@ declare namespace gapi.client {
1285
1432
  /** Deletes an address group. */
1286
1433
  delete(request?: {
1287
1434
  /** V1 error format. */
1288
- '$.xgafv'?: string;
1435
+ '$.xgafv'?: '1' | '2';
1289
1436
  /** OAuth access token. */
1290
1437
  access_token?: string;
1291
1438
  /** Data format for response. */
1292
- alt?: string;
1439
+ alt?: 'json' | 'media' | 'proto';
1293
1440
  /** JSONP */
1294
1441
  callback?: string;
1295
1442
  /** Selector specifying which fields to include in a partial response. */
@@ -1314,11 +1461,11 @@ declare namespace gapi.client {
1314
1461
  /** Gets details of a single address group. */
1315
1462
  get(request?: {
1316
1463
  /** V1 error format. */
1317
- '$.xgafv'?: string;
1464
+ '$.xgafv'?: '1' | '2';
1318
1465
  /** OAuth access token. */
1319
1466
  access_token?: string;
1320
1467
  /** Data format for response. */
1321
- alt?: string;
1468
+ alt?: 'json' | 'media' | 'proto';
1322
1469
  /** JSONP */
1323
1470
  callback?: string;
1324
1471
  /** Selector specifying which fields to include in a partial response. */
@@ -1341,11 +1488,11 @@ declare namespace gapi.client {
1341
1488
  /** Lists address groups in a given project and location. */
1342
1489
  list(request?: {
1343
1490
  /** V1 error format. */
1344
- '$.xgafv'?: string;
1491
+ '$.xgafv'?: '1' | '2';
1345
1492
  /** OAuth access token. */
1346
1493
  access_token?: string;
1347
1494
  /** Data format for response. */
1348
- alt?: string;
1495
+ alt?: 'json' | 'media' | 'proto';
1349
1496
  /** JSONP */
1350
1497
  callback?: string;
1351
1498
  /** Selector specifying which fields to include in a partial response. */
@@ -1374,13 +1521,13 @@ declare namespace gapi.client {
1374
1521
  /** Lists references of an address group. */
1375
1522
  listReferences(request?: {
1376
1523
  /** V1 error format. */
1377
- '$.xgafv'?: string;
1524
+ '$.xgafv'?: '1' | '2';
1378
1525
  /** OAuth access token. */
1379
1526
  access_token?: string;
1380
1527
  /** Required. A name of the AddressGroup to clone items to. Must be in the format `projects|organization/*‍/locations/{location}/addressGroups/*`. */
1381
1528
  addressGroup: string;
1382
1529
  /** Data format for response. */
1383
- alt?: string;
1530
+ alt?: 'json' | 'media' | 'proto';
1384
1531
  /** JSONP */
1385
1532
  callback?: string;
1386
1533
  /** Selector specifying which fields to include in a partial response. */
@@ -1405,11 +1552,11 @@ declare namespace gapi.client {
1405
1552
  /** Updates parameters of an address group. */
1406
1553
  patch(request: {
1407
1554
  /** V1 error format. */
1408
- '$.xgafv'?: string;
1555
+ '$.xgafv'?: '1' | '2';
1409
1556
  /** OAuth access token. */
1410
1557
  access_token?: string;
1411
1558
  /** Data format for response. */
1412
- alt?: string;
1559
+ alt?: 'json' | 'media' | 'proto';
1413
1560
  /** JSONP */
1414
1561
  callback?: string;
1415
1562
  /** Selector specifying which fields to include in a partial response. */
@@ -1438,11 +1585,11 @@ declare namespace gapi.client {
1438
1585
  patch(
1439
1586
  request: {
1440
1587
  /** V1 error format. */
1441
- '$.xgafv'?: string;
1588
+ '$.xgafv'?: '1' | '2';
1442
1589
  /** OAuth access token. */
1443
1590
  access_token?: string;
1444
1591
  /** Data format for response. */
1445
- alt?: string;
1592
+ alt?: 'json' | 'media' | 'proto';
1446
1593
  /** JSONP */
1447
1594
  callback?: string;
1448
1595
  /** Selector specifying which fields to include in a partial response. */
@@ -1471,13 +1618,13 @@ declare namespace gapi.client {
1471
1618
  /** Removes items from an address group. */
1472
1619
  removeItems(request: {
1473
1620
  /** V1 error format. */
1474
- '$.xgafv'?: string;
1621
+ '$.xgafv'?: '1' | '2';
1475
1622
  /** OAuth access token. */
1476
1623
  access_token?: string;
1477
1624
  /** Required. A name of the AddressGroup to remove items from. Must be in the format `projects|organization/*‍/locations/{location}/addressGroups/*`. */
1478
1625
  addressGroup: string;
1479
1626
  /** Data format for response. */
1480
- alt?: string;
1627
+ alt?: 'json' | 'media' | 'proto';
1481
1628
  /** JSONP */
1482
1629
  callback?: string;
1483
1630
  /** Selector specifying which fields to include in a partial response. */
@@ -1500,13 +1647,13 @@ declare namespace gapi.client {
1500
1647
  removeItems(
1501
1648
  request: {
1502
1649
  /** V1 error format. */
1503
- '$.xgafv'?: string;
1650
+ '$.xgafv'?: '1' | '2';
1504
1651
  /** OAuth access token. */
1505
1652
  access_token?: string;
1506
1653
  /** Required. A name of the AddressGroup to remove items from. Must be in the format `projects|organization/*‍/locations/{location}/addressGroups/*`. */
1507
1654
  addressGroup: string;
1508
1655
  /** Data format for response. */
1509
- alt?: string;
1656
+ alt?: 'json' | 'media' | 'proto';
1510
1657
  /** JSONP */
1511
1658
  callback?: string;
1512
1659
  /** Selector specifying which fields to include in a partial response. */
@@ -1531,11 +1678,11 @@ declare namespace gapi.client {
1531
1678
  /** Creates a new FirewallEndpoint in a given organization and location. */
1532
1679
  create(request: {
1533
1680
  /** V1 error format. */
1534
- '$.xgafv'?: string;
1681
+ '$.xgafv'?: '1' | '2';
1535
1682
  /** OAuth access token. */
1536
1683
  access_token?: string;
1537
1684
  /** Data format for response. */
1538
- alt?: string;
1685
+ alt?: 'json' | 'media' | 'proto';
1539
1686
  /** JSONP */
1540
1687
  callback?: string;
1541
1688
  /** Selector specifying which fields to include in a partial response. */
@@ -1564,11 +1711,11 @@ declare namespace gapi.client {
1564
1711
  create(
1565
1712
  request: {
1566
1713
  /** V1 error format. */
1567
- '$.xgafv'?: string;
1714
+ '$.xgafv'?: '1' | '2';
1568
1715
  /** OAuth access token. */
1569
1716
  access_token?: string;
1570
1717
  /** Data format for response. */
1571
- alt?: string;
1718
+ alt?: 'json' | 'media' | 'proto';
1572
1719
  /** JSONP */
1573
1720
  callback?: string;
1574
1721
  /** Selector specifying which fields to include in a partial response. */
@@ -1597,11 +1744,11 @@ declare namespace gapi.client {
1597
1744
  /** Deletes a single org Endpoint. */
1598
1745
  delete(request?: {
1599
1746
  /** V1 error format. */
1600
- '$.xgafv'?: string;
1747
+ '$.xgafv'?: '1' | '2';
1601
1748
  /** OAuth access token. */
1602
1749
  access_token?: string;
1603
1750
  /** Data format for response. */
1604
- alt?: string;
1751
+ alt?: 'json' | 'media' | 'proto';
1605
1752
  /** JSONP */
1606
1753
  callback?: string;
1607
1754
  /** Selector specifying which fields to include in a partial response. */
@@ -1626,11 +1773,11 @@ declare namespace gapi.client {
1626
1773
  /** Gets details of a single org Endpoint. */
1627
1774
  get(request?: {
1628
1775
  /** V1 error format. */
1629
- '$.xgafv'?: string;
1776
+ '$.xgafv'?: '1' | '2';
1630
1777
  /** OAuth access token. */
1631
1778
  access_token?: string;
1632
1779
  /** Data format for response. */
1633
- alt?: string;
1780
+ alt?: 'json' | 'media' | 'proto';
1634
1781
  /** JSONP */
1635
1782
  callback?: string;
1636
1783
  /** Selector specifying which fields to include in a partial response. */
@@ -1653,11 +1800,11 @@ declare namespace gapi.client {
1653
1800
  /** Lists FirewallEndpoints in a given organization and location. */
1654
1801
  list(request?: {
1655
1802
  /** V1 error format. */
1656
- '$.xgafv'?: string;
1803
+ '$.xgafv'?: '1' | '2';
1657
1804
  /** OAuth access token. */
1658
1805
  access_token?: string;
1659
1806
  /** Data format for response. */
1660
- alt?: string;
1807
+ alt?: 'json' | 'media' | 'proto';
1661
1808
  /** JSONP */
1662
1809
  callback?: string;
1663
1810
  /** Selector specifying which fields to include in a partial response. */
@@ -1688,11 +1835,11 @@ declare namespace gapi.client {
1688
1835
  /** Update a single org Endpoint. */
1689
1836
  patch(request: {
1690
1837
  /** V1 error format. */
1691
- '$.xgafv'?: string;
1838
+ '$.xgafv'?: '1' | '2';
1692
1839
  /** OAuth access token. */
1693
1840
  access_token?: string;
1694
1841
  /** Data format for response. */
1695
- alt?: string;
1842
+ alt?: 'json' | 'media' | 'proto';
1696
1843
  /** JSONP */
1697
1844
  callback?: string;
1698
1845
  /** Selector specifying which fields to include in a partial response. */
@@ -1721,11 +1868,11 @@ declare namespace gapi.client {
1721
1868
  patch(
1722
1869
  request: {
1723
1870
  /** V1 error format. */
1724
- '$.xgafv'?: string;
1871
+ '$.xgafv'?: '1' | '2';
1725
1872
  /** OAuth access token. */
1726
1873
  access_token?: string;
1727
1874
  /** Data format for response. */
1728
- alt?: string;
1875
+ alt?: 'json' | 'media' | 'proto';
1729
1876
  /** JSONP */
1730
1877
  callback?: string;
1731
1878
  /** Selector specifying which fields to include in a partial response. */
@@ -1756,11 +1903,11 @@ declare namespace gapi.client {
1756
1903
  /** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
1757
1904
  cancel(request: {
1758
1905
  /** V1 error format. */
1759
- '$.xgafv'?: string;
1906
+ '$.xgafv'?: '1' | '2';
1760
1907
  /** OAuth access token. */
1761
1908
  access_token?: string;
1762
1909
  /** Data format for response. */
1763
- alt?: string;
1910
+ alt?: 'json' | 'media' | 'proto';
1764
1911
  /** JSONP */
1765
1912
  callback?: string;
1766
1913
  /** Selector specifying which fields to include in a partial response. */
@@ -1785,11 +1932,11 @@ declare namespace gapi.client {
1785
1932
  cancel(
1786
1933
  request: {
1787
1934
  /** V1 error format. */
1788
- '$.xgafv'?: string;
1935
+ '$.xgafv'?: '1' | '2';
1789
1936
  /** OAuth access token. */
1790
1937
  access_token?: string;
1791
1938
  /** Data format for response. */
1792
- alt?: string;
1939
+ alt?: 'json' | 'media' | 'proto';
1793
1940
  /** JSONP */
1794
1941
  callback?: string;
1795
1942
  /** Selector specifying which fields to include in a partial response. */
@@ -1814,11 +1961,11 @@ declare namespace gapi.client {
1814
1961
  /** Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. */
1815
1962
  delete(request?: {
1816
1963
  /** V1 error format. */
1817
- '$.xgafv'?: string;
1964
+ '$.xgafv'?: '1' | '2';
1818
1965
  /** OAuth access token. */
1819
1966
  access_token?: string;
1820
1967
  /** Data format for response. */
1821
- alt?: string;
1968
+ alt?: 'json' | 'media' | 'proto';
1822
1969
  /** JSONP */
1823
1970
  callback?: string;
1824
1971
  /** Selector specifying which fields to include in a partial response. */
@@ -1841,11 +1988,11 @@ declare namespace gapi.client {
1841
1988
  /** Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service. */
1842
1989
  get(request?: {
1843
1990
  /** V1 error format. */
1844
- '$.xgafv'?: string;
1991
+ '$.xgafv'?: '1' | '2';
1845
1992
  /** OAuth access token. */
1846
1993
  access_token?: string;
1847
1994
  /** Data format for response. */
1848
- alt?: string;
1995
+ alt?: 'json' | 'media' | 'proto';
1849
1996
  /** JSONP */
1850
1997
  callback?: string;
1851
1998
  /** Selector specifying which fields to include in a partial response. */
@@ -1868,11 +2015,11 @@ declare namespace gapi.client {
1868
2015
  /** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
1869
2016
  list(request?: {
1870
2017
  /** V1 error format. */
1871
- '$.xgafv'?: string;
2018
+ '$.xgafv'?: '1' | '2';
1872
2019
  /** OAuth access token. */
1873
2020
  access_token?: string;
1874
2021
  /** Data format for response. */
1875
- alt?: string;
2022
+ alt?: 'json' | 'media' | 'proto';
1876
2023
  /** JSONP */
1877
2024
  callback?: string;
1878
2025
  /** Selector specifying which fields to include in a partial response. */
@@ -1905,11 +2052,11 @@ declare namespace gapi.client {
1905
2052
  /** Creates a new SecurityProfileGroup in a given organization and location. */
1906
2053
  create(request: {
1907
2054
  /** V1 error format. */
1908
- '$.xgafv'?: string;
2055
+ '$.xgafv'?: '1' | '2';
1909
2056
  /** OAuth access token. */
1910
2057
  access_token?: string;
1911
2058
  /** Data format for response. */
1912
- alt?: string;
2059
+ alt?: 'json' | 'media' | 'proto';
1913
2060
  /** JSONP */
1914
2061
  callback?: string;
1915
2062
  /** Selector specifying which fields to include in a partial response. */
@@ -1936,11 +2083,11 @@ declare namespace gapi.client {
1936
2083
  create(
1937
2084
  request: {
1938
2085
  /** V1 error format. */
1939
- '$.xgafv'?: string;
2086
+ '$.xgafv'?: '1' | '2';
1940
2087
  /** OAuth access token. */
1941
2088
  access_token?: string;
1942
2089
  /** Data format for response. */
1943
- alt?: string;
2090
+ alt?: 'json' | 'media' | 'proto';
1944
2091
  /** JSONP */
1945
2092
  callback?: string;
1946
2093
  /** Selector specifying which fields to include in a partial response. */
@@ -1967,11 +2114,11 @@ declare namespace gapi.client {
1967
2114
  /** Deletes a single SecurityProfileGroup. */
1968
2115
  delete(request?: {
1969
2116
  /** V1 error format. */
1970
- '$.xgafv'?: string;
2117
+ '$.xgafv'?: '1' | '2';
1971
2118
  /** OAuth access token. */
1972
2119
  access_token?: string;
1973
2120
  /** Data format for response. */
1974
- alt?: string;
2121
+ alt?: 'json' | 'media' | 'proto';
1975
2122
  /** JSONP */
1976
2123
  callback?: string;
1977
2124
  /** Optional. If client provided etag is out of date, delete will return FAILED_PRECONDITION error. */
@@ -1996,11 +2143,11 @@ declare namespace gapi.client {
1996
2143
  /** Gets details of a single SecurityProfileGroup. */
1997
2144
  get(request?: {
1998
2145
  /** V1 error format. */
1999
- '$.xgafv'?: string;
2146
+ '$.xgafv'?: '1' | '2';
2000
2147
  /** OAuth access token. */
2001
2148
  access_token?: string;
2002
2149
  /** Data format for response. */
2003
- alt?: string;
2150
+ alt?: 'json' | 'media' | 'proto';
2004
2151
  /** JSONP */
2005
2152
  callback?: string;
2006
2153
  /** Selector specifying which fields to include in a partial response. */
@@ -2023,11 +2170,11 @@ declare namespace gapi.client {
2023
2170
  /** Lists SecurityProfileGroups in a given organization and location. */
2024
2171
  list(request?: {
2025
2172
  /** V1 error format. */
2026
- '$.xgafv'?: string;
2173
+ '$.xgafv'?: '1' | '2';
2027
2174
  /** OAuth access token. */
2028
2175
  access_token?: string;
2029
2176
  /** Data format for response. */
2030
- alt?: string;
2177
+ alt?: 'json' | 'media' | 'proto';
2031
2178
  /** JSONP */
2032
2179
  callback?: string;
2033
2180
  /** Selector specifying which fields to include in a partial response. */
@@ -2054,11 +2201,11 @@ declare namespace gapi.client {
2054
2201
  /** Updates the parameters of a single SecurityProfileGroup. */
2055
2202
  patch(request: {
2056
2203
  /** V1 error format. */
2057
- '$.xgafv'?: string;
2204
+ '$.xgafv'?: '1' | '2';
2058
2205
  /** OAuth access token. */
2059
2206
  access_token?: string;
2060
2207
  /** Data format for response. */
2061
- alt?: string;
2208
+ alt?: 'json' | 'media' | 'proto';
2062
2209
  /** JSONP */
2063
2210
  callback?: string;
2064
2211
  /** Selector specifying which fields to include in a partial response. */
@@ -2085,11 +2232,11 @@ declare namespace gapi.client {
2085
2232
  patch(
2086
2233
  request: {
2087
2234
  /** V1 error format. */
2088
- '$.xgafv'?: string;
2235
+ '$.xgafv'?: '1' | '2';
2089
2236
  /** OAuth access token. */
2090
2237
  access_token?: string;
2091
2238
  /** Data format for response. */
2092
- alt?: string;
2239
+ alt?: 'json' | 'media' | 'proto';
2093
2240
  /** JSONP */
2094
2241
  callback?: string;
2095
2242
  /** Selector specifying which fields to include in a partial response. */
@@ -2118,11 +2265,11 @@ declare namespace gapi.client {
2118
2265
  /** Creates a new SecurityProfile in a given organization and location. */
2119
2266
  create(request: {
2120
2267
  /** V1 error format. */
2121
- '$.xgafv'?: string;
2268
+ '$.xgafv'?: '1' | '2';
2122
2269
  /** OAuth access token. */
2123
2270
  access_token?: string;
2124
2271
  /** Data format for response. */
2125
- alt?: string;
2272
+ alt?: 'json' | 'media' | 'proto';
2126
2273
  /** JSONP */
2127
2274
  callback?: string;
2128
2275
  /** Selector specifying which fields to include in a partial response. */
@@ -2149,11 +2296,11 @@ declare namespace gapi.client {
2149
2296
  create(
2150
2297
  request: {
2151
2298
  /** V1 error format. */
2152
- '$.xgafv'?: string;
2299
+ '$.xgafv'?: '1' | '2';
2153
2300
  /** OAuth access token. */
2154
2301
  access_token?: string;
2155
2302
  /** Data format for response. */
2156
- alt?: string;
2303
+ alt?: 'json' | 'media' | 'proto';
2157
2304
  /** JSONP */
2158
2305
  callback?: string;
2159
2306
  /** Selector specifying which fields to include in a partial response. */
@@ -2180,11 +2327,11 @@ declare namespace gapi.client {
2180
2327
  /** Deletes a single SecurityProfile. */
2181
2328
  delete(request?: {
2182
2329
  /** V1 error format. */
2183
- '$.xgafv'?: string;
2330
+ '$.xgafv'?: '1' | '2';
2184
2331
  /** OAuth access token. */
2185
2332
  access_token?: string;
2186
2333
  /** Data format for response. */
2187
- alt?: string;
2334
+ alt?: 'json' | 'media' | 'proto';
2188
2335
  /** JSONP */
2189
2336
  callback?: string;
2190
2337
  /** Optional. If client provided etag is out of date, delete will return FAILED_PRECONDITION error. */
@@ -2209,11 +2356,11 @@ declare namespace gapi.client {
2209
2356
  /** Gets details of a single SecurityProfile. */
2210
2357
  get(request?: {
2211
2358
  /** V1 error format. */
2212
- '$.xgafv'?: string;
2359
+ '$.xgafv'?: '1' | '2';
2213
2360
  /** OAuth access token. */
2214
2361
  access_token?: string;
2215
2362
  /** Data format for response. */
2216
- alt?: string;
2363
+ alt?: 'json' | 'media' | 'proto';
2217
2364
  /** JSONP */
2218
2365
  callback?: string;
2219
2366
  /** Selector specifying which fields to include in a partial response. */
@@ -2236,11 +2383,11 @@ declare namespace gapi.client {
2236
2383
  /** Lists SecurityProfiles in a given organization and location. */
2237
2384
  list(request?: {
2238
2385
  /** V1 error format. */
2239
- '$.xgafv'?: string;
2386
+ '$.xgafv'?: '1' | '2';
2240
2387
  /** OAuth access token. */
2241
2388
  access_token?: string;
2242
2389
  /** Data format for response. */
2243
- alt?: string;
2390
+ alt?: 'json' | 'media' | 'proto';
2244
2391
  /** JSONP */
2245
2392
  callback?: string;
2246
2393
  /** Selector specifying which fields to include in a partial response. */
@@ -2267,11 +2414,11 @@ declare namespace gapi.client {
2267
2414
  /** Updates the parameters of a single SecurityProfile. */
2268
2415
  patch(request: {
2269
2416
  /** V1 error format. */
2270
- '$.xgafv'?: string;
2417
+ '$.xgafv'?: '1' | '2';
2271
2418
  /** OAuth access token. */
2272
2419
  access_token?: string;
2273
2420
  /** Data format for response. */
2274
- alt?: string;
2421
+ alt?: 'json' | 'media' | 'proto';
2275
2422
  /** JSONP */
2276
2423
  callback?: string;
2277
2424
  /** Selector specifying which fields to include in a partial response. */
@@ -2298,11 +2445,11 @@ declare namespace gapi.client {
2298
2445
  patch(
2299
2446
  request: {
2300
2447
  /** V1 error format. */
2301
- '$.xgafv'?: string;
2448
+ '$.xgafv'?: '1' | '2';
2302
2449
  /** OAuth access token. */
2303
2450
  access_token?: string;
2304
2451
  /** Data format for response. */
2305
- alt?: string;
2452
+ alt?: 'json' | 'media' | 'proto';
2306
2453
  /** JSONP */
2307
2454
  callback?: string;
2308
2455
  /** Selector specifying which fields to include in a partial response. */
@@ -2341,13 +2488,13 @@ declare namespace gapi.client {
2341
2488
  /** Adds items to an address group. */
2342
2489
  addItems(request: {
2343
2490
  /** V1 error format. */
2344
- '$.xgafv'?: string;
2491
+ '$.xgafv'?: '1' | '2';
2345
2492
  /** OAuth access token. */
2346
2493
  access_token?: string;
2347
2494
  /** Required. A name of the AddressGroup to add items to. Must be in the format `projects|organization/*‍/locations/{location}/addressGroups/*`. */
2348
2495
  addressGroup: string;
2349
2496
  /** Data format for response. */
2350
- alt?: string;
2497
+ alt?: 'json' | 'media' | 'proto';
2351
2498
  /** JSONP */
2352
2499
  callback?: string;
2353
2500
  /** Selector specifying which fields to include in a partial response. */
@@ -2370,13 +2517,13 @@ declare namespace gapi.client {
2370
2517
  addItems(
2371
2518
  request: {
2372
2519
  /** V1 error format. */
2373
- '$.xgafv'?: string;
2520
+ '$.xgafv'?: '1' | '2';
2374
2521
  /** OAuth access token. */
2375
2522
  access_token?: string;
2376
2523
  /** Required. A name of the AddressGroup to add items to. Must be in the format `projects|organization/*‍/locations/{location}/addressGroups/*`. */
2377
2524
  addressGroup: string;
2378
2525
  /** Data format for response. */
2379
- alt?: string;
2526
+ alt?: 'json' | 'media' | 'proto';
2380
2527
  /** JSONP */
2381
2528
  callback?: string;
2382
2529
  /** Selector specifying which fields to include in a partial response. */
@@ -2399,13 +2546,13 @@ declare namespace gapi.client {
2399
2546
  /** Clones items from one address group to another. */
2400
2547
  cloneItems(request: {
2401
2548
  /** V1 error format. */
2402
- '$.xgafv'?: string;
2549
+ '$.xgafv'?: '1' | '2';
2403
2550
  /** OAuth access token. */
2404
2551
  access_token?: string;
2405
2552
  /** Required. A name of the AddressGroup to clone items to. Must be in the format `projects|organization/*‍/locations/{location}/addressGroups/*`. */
2406
2553
  addressGroup: string;
2407
2554
  /** Data format for response. */
2408
- alt?: string;
2555
+ alt?: 'json' | 'media' | 'proto';
2409
2556
  /** JSONP */
2410
2557
  callback?: string;
2411
2558
  /** Selector specifying which fields to include in a partial response. */
@@ -2428,13 +2575,13 @@ declare namespace gapi.client {
2428
2575
  cloneItems(
2429
2576
  request: {
2430
2577
  /** V1 error format. */
2431
- '$.xgafv'?: string;
2578
+ '$.xgafv'?: '1' | '2';
2432
2579
  /** OAuth access token. */
2433
2580
  access_token?: string;
2434
2581
  /** Required. A name of the AddressGroup to clone items to. Must be in the format `projects|organization/*‍/locations/{location}/addressGroups/*`. */
2435
2582
  addressGroup: string;
2436
2583
  /** Data format for response. */
2437
- alt?: string;
2584
+ alt?: 'json' | 'media' | 'proto';
2438
2585
  /** JSONP */
2439
2586
  callback?: string;
2440
2587
  /** Selector specifying which fields to include in a partial response. */
@@ -2457,13 +2604,13 @@ declare namespace gapi.client {
2457
2604
  /** Creates a new address group in a given project and location. */
2458
2605
  create(request: {
2459
2606
  /** V1 error format. */
2460
- '$.xgafv'?: string;
2607
+ '$.xgafv'?: '1' | '2';
2461
2608
  /** OAuth access token. */
2462
2609
  access_token?: string;
2463
2610
  /** Required. Short name of the AddressGroup resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and should not start with a number. E.g. "authz_policy". */
2464
2611
  addressGroupId?: string;
2465
2612
  /** Data format for response. */
2466
- alt?: string;
2613
+ alt?: 'json' | 'media' | 'proto';
2467
2614
  /** JSONP */
2468
2615
  callback?: string;
2469
2616
  /** Selector specifying which fields to include in a partial response. */
@@ -2490,13 +2637,13 @@ declare namespace gapi.client {
2490
2637
  create(
2491
2638
  request: {
2492
2639
  /** V1 error format. */
2493
- '$.xgafv'?: string;
2640
+ '$.xgafv'?: '1' | '2';
2494
2641
  /** OAuth access token. */
2495
2642
  access_token?: string;
2496
2643
  /** Required. Short name of the AddressGroup resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and should not start with a number. E.g. "authz_policy". */
2497
2644
  addressGroupId?: string;
2498
2645
  /** Data format for response. */
2499
- alt?: string;
2646
+ alt?: 'json' | 'media' | 'proto';
2500
2647
  /** JSONP */
2501
2648
  callback?: string;
2502
2649
  /** Selector specifying which fields to include in a partial response. */
@@ -2523,11 +2670,11 @@ declare namespace gapi.client {
2523
2670
  /** Deletes a single address group. */
2524
2671
  delete(request?: {
2525
2672
  /** V1 error format. */
2526
- '$.xgafv'?: string;
2673
+ '$.xgafv'?: '1' | '2';
2527
2674
  /** OAuth access token. */
2528
2675
  access_token?: string;
2529
2676
  /** Data format for response. */
2530
- alt?: string;
2677
+ alt?: 'json' | 'media' | 'proto';
2531
2678
  /** JSONP */
2532
2679
  callback?: string;
2533
2680
  /** Selector specifying which fields to include in a partial response. */
@@ -2552,11 +2699,11 @@ declare namespace gapi.client {
2552
2699
  /** Gets details of a single address group. */
2553
2700
  get(request?: {
2554
2701
  /** V1 error format. */
2555
- '$.xgafv'?: string;
2702
+ '$.xgafv'?: '1' | '2';
2556
2703
  /** OAuth access token. */
2557
2704
  access_token?: string;
2558
2705
  /** Data format for response. */
2559
- alt?: string;
2706
+ alt?: 'json' | 'media' | 'proto';
2560
2707
  /** JSONP */
2561
2708
  callback?: string;
2562
2709
  /** Selector specifying which fields to include in a partial response. */
@@ -2579,11 +2726,11 @@ declare namespace gapi.client {
2579
2726
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
2580
2727
  getIamPolicy(request?: {
2581
2728
  /** V1 error format. */
2582
- '$.xgafv'?: string;
2729
+ '$.xgafv'?: '1' | '2';
2583
2730
  /** OAuth access token. */
2584
2731
  access_token?: string;
2585
2732
  /** Data format for response. */
2586
- alt?: string;
2733
+ alt?: 'json' | 'media' | 'proto';
2587
2734
  /** JSONP */
2588
2735
  callback?: string;
2589
2736
  /** Selector specifying which fields to include in a partial response. */
@@ -2608,11 +2755,11 @@ declare namespace gapi.client {
2608
2755
  /** Lists address groups in a given project and location. */
2609
2756
  list(request?: {
2610
2757
  /** V1 error format. */
2611
- '$.xgafv'?: string;
2758
+ '$.xgafv'?: '1' | '2';
2612
2759
  /** OAuth access token. */
2613
2760
  access_token?: string;
2614
2761
  /** Data format for response. */
2615
- alt?: string;
2762
+ alt?: 'json' | 'media' | 'proto';
2616
2763
  /** JSONP */
2617
2764
  callback?: string;
2618
2765
  /** Selector specifying which fields to include in a partial response. */
@@ -2641,13 +2788,13 @@ declare namespace gapi.client {
2641
2788
  /** Lists references of an address group. */
2642
2789
  listReferences(request?: {
2643
2790
  /** V1 error format. */
2644
- '$.xgafv'?: string;
2791
+ '$.xgafv'?: '1' | '2';
2645
2792
  /** OAuth access token. */
2646
2793
  access_token?: string;
2647
2794
  /** Required. A name of the AddressGroup to clone items to. Must be in the format `projects|organization/*‍/locations/{location}/addressGroups/*`. */
2648
2795
  addressGroup: string;
2649
2796
  /** Data format for response. */
2650
- alt?: string;
2797
+ alt?: 'json' | 'media' | 'proto';
2651
2798
  /** JSONP */
2652
2799
  callback?: string;
2653
2800
  /** Selector specifying which fields to include in a partial response. */
@@ -2672,11 +2819,11 @@ declare namespace gapi.client {
2672
2819
  /** Updates the parameters of a single address group. */
2673
2820
  patch(request: {
2674
2821
  /** V1 error format. */
2675
- '$.xgafv'?: string;
2822
+ '$.xgafv'?: '1' | '2';
2676
2823
  /** OAuth access token. */
2677
2824
  access_token?: string;
2678
2825
  /** Data format for response. */
2679
- alt?: string;
2826
+ alt?: 'json' | 'media' | 'proto';
2680
2827
  /** JSONP */
2681
2828
  callback?: string;
2682
2829
  /** Selector specifying which fields to include in a partial response. */
@@ -2705,11 +2852,11 @@ declare namespace gapi.client {
2705
2852
  patch(
2706
2853
  request: {
2707
2854
  /** V1 error format. */
2708
- '$.xgafv'?: string;
2855
+ '$.xgafv'?: '1' | '2';
2709
2856
  /** OAuth access token. */
2710
2857
  access_token?: string;
2711
2858
  /** Data format for response. */
2712
- alt?: string;
2859
+ alt?: 'json' | 'media' | 'proto';
2713
2860
  /** JSONP */
2714
2861
  callback?: string;
2715
2862
  /** Selector specifying which fields to include in a partial response. */
@@ -2738,13 +2885,13 @@ declare namespace gapi.client {
2738
2885
  /** Removes items from an address group. */
2739
2886
  removeItems(request: {
2740
2887
  /** V1 error format. */
2741
- '$.xgafv'?: string;
2888
+ '$.xgafv'?: '1' | '2';
2742
2889
  /** OAuth access token. */
2743
2890
  access_token?: string;
2744
2891
  /** Required. A name of the AddressGroup to remove items from. Must be in the format `projects|organization/*‍/locations/{location}/addressGroups/*`. */
2745
2892
  addressGroup: string;
2746
2893
  /** Data format for response. */
2747
- alt?: string;
2894
+ alt?: 'json' | 'media' | 'proto';
2748
2895
  /** JSONP */
2749
2896
  callback?: string;
2750
2897
  /** Selector specifying which fields to include in a partial response. */
@@ -2767,13 +2914,13 @@ declare namespace gapi.client {
2767
2914
  removeItems(
2768
2915
  request: {
2769
2916
  /** V1 error format. */
2770
- '$.xgafv'?: string;
2917
+ '$.xgafv'?: '1' | '2';
2771
2918
  /** OAuth access token. */
2772
2919
  access_token?: string;
2773
2920
  /** Required. A name of the AddressGroup to remove items from. Must be in the format `projects|organization/*‍/locations/{location}/addressGroups/*`. */
2774
2921
  addressGroup: string;
2775
2922
  /** Data format for response. */
2776
- alt?: string;
2923
+ alt?: 'json' | 'media' | 'proto';
2777
2924
  /** JSONP */
2778
2925
  callback?: string;
2779
2926
  /** Selector specifying which fields to include in a partial response. */
@@ -2797,11 +2944,11 @@ declare namespace gapi.client {
2797
2944
  setIamPolicy(
2798
2945
  request: {
2799
2946
  /** V1 error format. */
2800
- '$.xgafv'?: string;
2947
+ '$.xgafv'?: '1' | '2';
2801
2948
  /** OAuth access token. */
2802
2949
  access_token?: string;
2803
2950
  /** Data format for response. */
2804
- alt?: string;
2951
+ alt?: 'json' | 'media' | 'proto';
2805
2952
  /** JSONP */
2806
2953
  callback?: string;
2807
2954
  /** Selector specifying which fields to include in a partial response. */
@@ -2827,11 +2974,11 @@ declare namespace gapi.client {
2827
2974
  testIamPermissions(
2828
2975
  request: {
2829
2976
  /** V1 error format. */
2830
- '$.xgafv'?: string;
2977
+ '$.xgafv'?: '1' | '2';
2831
2978
  /** OAuth access token. */
2832
2979
  access_token?: string;
2833
2980
  /** Data format for response. */
2834
- alt?: string;
2981
+ alt?: 'json' | 'media' | 'proto';
2835
2982
  /** JSONP */
2836
2983
  callback?: string;
2837
2984
  /** Selector specifying which fields to include in a partial response. */
@@ -2858,11 +3005,11 @@ declare namespace gapi.client {
2858
3005
  /** Creates a new AuthorizationPolicy in a given project and location. */
2859
3006
  create(request: {
2860
3007
  /** V1 error format. */
2861
- '$.xgafv'?: string;
3008
+ '$.xgafv'?: '1' | '2';
2862
3009
  /** OAuth access token. */
2863
3010
  access_token?: string;
2864
3011
  /** Data format for response. */
2865
- alt?: string;
3012
+ alt?: 'json' | 'media' | 'proto';
2866
3013
  /** Required. Short name of the AuthorizationPolicy resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and should not start with a number. E.g. "authz_policy". */
2867
3014
  authorizationPolicyId?: string;
2868
3015
  /** JSONP */
@@ -2889,11 +3036,11 @@ declare namespace gapi.client {
2889
3036
  create(
2890
3037
  request: {
2891
3038
  /** V1 error format. */
2892
- '$.xgafv'?: string;
3039
+ '$.xgafv'?: '1' | '2';
2893
3040
  /** OAuth access token. */
2894
3041
  access_token?: string;
2895
3042
  /** Data format for response. */
2896
- alt?: string;
3043
+ alt?: 'json' | 'media' | 'proto';
2897
3044
  /** Required. Short name of the AuthorizationPolicy resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and should not start with a number. E.g. "authz_policy". */
2898
3045
  authorizationPolicyId?: string;
2899
3046
  /** JSONP */
@@ -2920,11 +3067,11 @@ declare namespace gapi.client {
2920
3067
  /** Deletes a single AuthorizationPolicy. */
2921
3068
  delete(request?: {
2922
3069
  /** V1 error format. */
2923
- '$.xgafv'?: string;
3070
+ '$.xgafv'?: '1' | '2';
2924
3071
  /** OAuth access token. */
2925
3072
  access_token?: string;
2926
3073
  /** Data format for response. */
2927
- alt?: string;
3074
+ alt?: 'json' | 'media' | 'proto';
2928
3075
  /** JSONP */
2929
3076
  callback?: string;
2930
3077
  /** Selector specifying which fields to include in a partial response. */
@@ -2947,11 +3094,11 @@ declare namespace gapi.client {
2947
3094
  /** Gets details of a single AuthorizationPolicy. */
2948
3095
  get(request?: {
2949
3096
  /** V1 error format. */
2950
- '$.xgafv'?: string;
3097
+ '$.xgafv'?: '1' | '2';
2951
3098
  /** OAuth access token. */
2952
3099
  access_token?: string;
2953
3100
  /** Data format for response. */
2954
- alt?: string;
3101
+ alt?: 'json' | 'media' | 'proto';
2955
3102
  /** JSONP */
2956
3103
  callback?: string;
2957
3104
  /** Selector specifying which fields to include in a partial response. */
@@ -2974,11 +3121,11 @@ declare namespace gapi.client {
2974
3121
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
2975
3122
  getIamPolicy(request?: {
2976
3123
  /** V1 error format. */
2977
- '$.xgafv'?: string;
3124
+ '$.xgafv'?: '1' | '2';
2978
3125
  /** OAuth access token. */
2979
3126
  access_token?: string;
2980
3127
  /** Data format for response. */
2981
- alt?: string;
3128
+ alt?: 'json' | 'media' | 'proto';
2982
3129
  /** JSONP */
2983
3130
  callback?: string;
2984
3131
  /** Selector specifying which fields to include in a partial response. */
@@ -3003,11 +3150,11 @@ declare namespace gapi.client {
3003
3150
  /** Lists AuthorizationPolicies in a given project and location. */
3004
3151
  list(request?: {
3005
3152
  /** V1 error format. */
3006
- '$.xgafv'?: string;
3153
+ '$.xgafv'?: '1' | '2';
3007
3154
  /** OAuth access token. */
3008
3155
  access_token?: string;
3009
3156
  /** Data format for response. */
3010
- alt?: string;
3157
+ alt?: 'json' | 'media' | 'proto';
3011
3158
  /** JSONP */
3012
3159
  callback?: string;
3013
3160
  /** Selector specifying which fields to include in a partial response. */
@@ -3034,11 +3181,11 @@ declare namespace gapi.client {
3034
3181
  /** Updates the parameters of a single AuthorizationPolicy. */
3035
3182
  patch(request: {
3036
3183
  /** V1 error format. */
3037
- '$.xgafv'?: string;
3184
+ '$.xgafv'?: '1' | '2';
3038
3185
  /** OAuth access token. */
3039
3186
  access_token?: string;
3040
3187
  /** Data format for response. */
3041
- alt?: string;
3188
+ alt?: 'json' | 'media' | 'proto';
3042
3189
  /** JSONP */
3043
3190
  callback?: string;
3044
3191
  /** Selector specifying which fields to include in a partial response. */
@@ -3065,11 +3212,11 @@ declare namespace gapi.client {
3065
3212
  patch(
3066
3213
  request: {
3067
3214
  /** V1 error format. */
3068
- '$.xgafv'?: string;
3215
+ '$.xgafv'?: '1' | '2';
3069
3216
  /** OAuth access token. */
3070
3217
  access_token?: string;
3071
3218
  /** Data format for response. */
3072
- alt?: string;
3219
+ alt?: 'json' | 'media' | 'proto';
3073
3220
  /** JSONP */
3074
3221
  callback?: string;
3075
3222
  /** Selector specifying which fields to include in a partial response. */
@@ -3097,11 +3244,11 @@ declare namespace gapi.client {
3097
3244
  setIamPolicy(
3098
3245
  request: {
3099
3246
  /** V1 error format. */
3100
- '$.xgafv'?: string;
3247
+ '$.xgafv'?: '1' | '2';
3101
3248
  /** OAuth access token. */
3102
3249
  access_token?: string;
3103
3250
  /** Data format for response. */
3104
- alt?: string;
3251
+ alt?: 'json' | 'media' | 'proto';
3105
3252
  /** JSONP */
3106
3253
  callback?: string;
3107
3254
  /** Selector specifying which fields to include in a partial response. */
@@ -3127,11 +3274,11 @@ declare namespace gapi.client {
3127
3274
  testIamPermissions(
3128
3275
  request: {
3129
3276
  /** V1 error format. */
3130
- '$.xgafv'?: string;
3277
+ '$.xgafv'?: '1' | '2';
3131
3278
  /** OAuth access token. */
3132
3279
  access_token?: string;
3133
3280
  /** Data format for response. */
3134
- alt?: string;
3281
+ alt?: 'json' | 'media' | 'proto';
3135
3282
  /** JSONP */
3136
3283
  callback?: string;
3137
3284
  /** Selector specifying which fields to include in a partial response. */
@@ -3158,11 +3305,11 @@ declare namespace gapi.client {
3158
3305
  /** Creates a new AuthzPolicy in a given project and location. */
3159
3306
  create(request: {
3160
3307
  /** V1 error format. */
3161
- '$.xgafv'?: string;
3308
+ '$.xgafv'?: '1' | '2';
3162
3309
  /** OAuth access token. */
3163
3310
  access_token?: string;
3164
3311
  /** Data format for response. */
3165
- alt?: string;
3312
+ alt?: 'json' | 'media' | 'proto';
3166
3313
  /** Required. User-provided ID of the `AuthzPolicy` resource to be created. */
3167
3314
  authzPolicyId?: string;
3168
3315
  /** JSONP */
@@ -3191,11 +3338,11 @@ declare namespace gapi.client {
3191
3338
  create(
3192
3339
  request: {
3193
3340
  /** V1 error format. */
3194
- '$.xgafv'?: string;
3341
+ '$.xgafv'?: '1' | '2';
3195
3342
  /** OAuth access token. */
3196
3343
  access_token?: string;
3197
3344
  /** Data format for response. */
3198
- alt?: string;
3345
+ alt?: 'json' | 'media' | 'proto';
3199
3346
  /** Required. User-provided ID of the `AuthzPolicy` resource to be created. */
3200
3347
  authzPolicyId?: string;
3201
3348
  /** JSONP */
@@ -3224,11 +3371,11 @@ declare namespace gapi.client {
3224
3371
  /** Deletes a single AuthzPolicy. */
3225
3372
  delete(request?: {
3226
3373
  /** V1 error format. */
3227
- '$.xgafv'?: string;
3374
+ '$.xgafv'?: '1' | '2';
3228
3375
  /** OAuth access token. */
3229
3376
  access_token?: string;
3230
3377
  /** Data format for response. */
3231
- alt?: string;
3378
+ alt?: 'json' | 'media' | 'proto';
3232
3379
  /** JSONP */
3233
3380
  callback?: string;
3234
3381
  /** Selector specifying which fields to include in a partial response. */
@@ -3253,11 +3400,11 @@ declare namespace gapi.client {
3253
3400
  /** Gets details of a single AuthzPolicy. */
3254
3401
  get(request?: {
3255
3402
  /** V1 error format. */
3256
- '$.xgafv'?: string;
3403
+ '$.xgafv'?: '1' | '2';
3257
3404
  /** OAuth access token. */
3258
3405
  access_token?: string;
3259
3406
  /** Data format for response. */
3260
- alt?: string;
3407
+ alt?: 'json' | 'media' | 'proto';
3261
3408
  /** JSONP */
3262
3409
  callback?: string;
3263
3410
  /** Selector specifying which fields to include in a partial response. */
@@ -3280,11 +3427,11 @@ declare namespace gapi.client {
3280
3427
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
3281
3428
  getIamPolicy(request?: {
3282
3429
  /** V1 error format. */
3283
- '$.xgafv'?: string;
3430
+ '$.xgafv'?: '1' | '2';
3284
3431
  /** OAuth access token. */
3285
3432
  access_token?: string;
3286
3433
  /** Data format for response. */
3287
- alt?: string;
3434
+ alt?: 'json' | 'media' | 'proto';
3288
3435
  /** JSONP */
3289
3436
  callback?: string;
3290
3437
  /** Selector specifying which fields to include in a partial response. */
@@ -3309,11 +3456,11 @@ declare namespace gapi.client {
3309
3456
  /** Lists AuthzPolicies in a given project and location. */
3310
3457
  list(request?: {
3311
3458
  /** V1 error format. */
3312
- '$.xgafv'?: string;
3459
+ '$.xgafv'?: '1' | '2';
3313
3460
  /** OAuth access token. */
3314
3461
  access_token?: string;
3315
3462
  /** Data format for response. */
3316
- alt?: string;
3463
+ alt?: 'json' | 'media' | 'proto';
3317
3464
  /** JSONP */
3318
3465
  callback?: string;
3319
3466
  /** Selector specifying which fields to include in a partial response. */
@@ -3344,11 +3491,11 @@ declare namespace gapi.client {
3344
3491
  /** Updates the parameters of a single AuthzPolicy. */
3345
3492
  patch(request: {
3346
3493
  /** V1 error format. */
3347
- '$.xgafv'?: string;
3494
+ '$.xgafv'?: '1' | '2';
3348
3495
  /** OAuth access token. */
3349
3496
  access_token?: string;
3350
3497
  /** Data format for response. */
3351
- alt?: string;
3498
+ alt?: 'json' | 'media' | 'proto';
3352
3499
  /** JSONP */
3353
3500
  callback?: string;
3354
3501
  /** Selector specifying which fields to include in a partial response. */
@@ -3377,11 +3524,11 @@ declare namespace gapi.client {
3377
3524
  patch(
3378
3525
  request: {
3379
3526
  /** V1 error format. */
3380
- '$.xgafv'?: string;
3527
+ '$.xgafv'?: '1' | '2';
3381
3528
  /** OAuth access token. */
3382
3529
  access_token?: string;
3383
3530
  /** Data format for response. */
3384
- alt?: string;
3531
+ alt?: 'json' | 'media' | 'proto';
3385
3532
  /** JSONP */
3386
3533
  callback?: string;
3387
3534
  /** Selector specifying which fields to include in a partial response. */
@@ -3411,11 +3558,11 @@ declare namespace gapi.client {
3411
3558
  setIamPolicy(
3412
3559
  request: {
3413
3560
  /** V1 error format. */
3414
- '$.xgafv'?: string;
3561
+ '$.xgafv'?: '1' | '2';
3415
3562
  /** OAuth access token. */
3416
3563
  access_token?: string;
3417
3564
  /** Data format for response. */
3418
- alt?: string;
3565
+ alt?: 'json' | 'media' | 'proto';
3419
3566
  /** JSONP */
3420
3567
  callback?: string;
3421
3568
  /** Selector specifying which fields to include in a partial response. */
@@ -3441,11 +3588,11 @@ declare namespace gapi.client {
3441
3588
  testIamPermissions(
3442
3589
  request: {
3443
3590
  /** V1 error format. */
3444
- '$.xgafv'?: string;
3591
+ '$.xgafv'?: '1' | '2';
3445
3592
  /** OAuth access token. */
3446
3593
  access_token?: string;
3447
3594
  /** Data format for response. */
3448
- alt?: string;
3595
+ alt?: 'json' | 'media' | 'proto';
3449
3596
  /** JSONP */
3450
3597
  callback?: string;
3451
3598
  /** Selector specifying which fields to include in a partial response. */
@@ -3472,11 +3619,11 @@ declare namespace gapi.client {
3472
3619
  /** Creates a new BackendAuthenticationConfig in a given project and location. */
3473
3620
  create(request: {
3474
3621
  /** V1 error format. */
3475
- '$.xgafv'?: string;
3622
+ '$.xgafv'?: '1' | '2';
3476
3623
  /** OAuth access token. */
3477
3624
  access_token?: string;
3478
3625
  /** Data format for response. */
3479
- alt?: string;
3626
+ alt?: 'json' | 'media' | 'proto';
3480
3627
  /** Required. Short name of the BackendAuthenticationConfig resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and should not start with a number. E.g. "backend-auth-config". */
3481
3628
  backendAuthenticationConfigId?: string;
3482
3629
  /** JSONP */
@@ -3503,11 +3650,11 @@ declare namespace gapi.client {
3503
3650
  create(
3504
3651
  request: {
3505
3652
  /** V1 error format. */
3506
- '$.xgafv'?: string;
3653
+ '$.xgafv'?: '1' | '2';
3507
3654
  /** OAuth access token. */
3508
3655
  access_token?: string;
3509
3656
  /** Data format for response. */
3510
- alt?: string;
3657
+ alt?: 'json' | 'media' | 'proto';
3511
3658
  /** Required. Short name of the BackendAuthenticationConfig resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and should not start with a number. E.g. "backend-auth-config". */
3512
3659
  backendAuthenticationConfigId?: string;
3513
3660
  /** JSONP */
@@ -3534,11 +3681,11 @@ declare namespace gapi.client {
3534
3681
  /** Deletes a single BackendAuthenticationConfig to BackendAuthenticationConfig. */
3535
3682
  delete(request?: {
3536
3683
  /** V1 error format. */
3537
- '$.xgafv'?: string;
3684
+ '$.xgafv'?: '1' | '2';
3538
3685
  /** OAuth access token. */
3539
3686
  access_token?: string;
3540
3687
  /** Data format for response. */
3541
- alt?: string;
3688
+ alt?: 'json' | 'media' | 'proto';
3542
3689
  /** JSONP */
3543
3690
  callback?: string;
3544
3691
  /** Optional. Etag of the resource. If this is provided, it must match the server's etag. */
@@ -3563,11 +3710,11 @@ declare namespace gapi.client {
3563
3710
  /** Gets details of a single BackendAuthenticationConfig to BackendAuthenticationConfig. */
3564
3711
  get(request?: {
3565
3712
  /** V1 error format. */
3566
- '$.xgafv'?: string;
3713
+ '$.xgafv'?: '1' | '2';
3567
3714
  /** OAuth access token. */
3568
3715
  access_token?: string;
3569
3716
  /** Data format for response. */
3570
- alt?: string;
3717
+ alt?: 'json' | 'media' | 'proto';
3571
3718
  /** JSONP */
3572
3719
  callback?: string;
3573
3720
  /** Selector specifying which fields to include in a partial response. */
@@ -3590,11 +3737,11 @@ declare namespace gapi.client {
3590
3737
  /** Lists BackendAuthenticationConfigs in a given project and location. */
3591
3738
  list(request?: {
3592
3739
  /** V1 error format. */
3593
- '$.xgafv'?: string;
3740
+ '$.xgafv'?: '1' | '2';
3594
3741
  /** OAuth access token. */
3595
3742
  access_token?: string;
3596
3743
  /** Data format for response. */
3597
- alt?: string;
3744
+ alt?: 'json' | 'media' | 'proto';
3598
3745
  /** JSONP */
3599
3746
  callback?: string;
3600
3747
  /** Selector specifying which fields to include in a partial response. */
@@ -3621,11 +3768,11 @@ declare namespace gapi.client {
3621
3768
  /** Updates the parameters of a single BackendAuthenticationConfig to BackendAuthenticationConfig. */
3622
3769
  patch(request: {
3623
3770
  /** V1 error format. */
3624
- '$.xgafv'?: string;
3771
+ '$.xgafv'?: '1' | '2';
3625
3772
  /** OAuth access token. */
3626
3773
  access_token?: string;
3627
3774
  /** Data format for response. */
3628
- alt?: string;
3775
+ alt?: 'json' | 'media' | 'proto';
3629
3776
  /** JSONP */
3630
3777
  callback?: string;
3631
3778
  /** Selector specifying which fields to include in a partial response. */
@@ -3652,11 +3799,11 @@ declare namespace gapi.client {
3652
3799
  patch(
3653
3800
  request: {
3654
3801
  /** V1 error format. */
3655
- '$.xgafv'?: string;
3802
+ '$.xgafv'?: '1' | '2';
3656
3803
  /** OAuth access token. */
3657
3804
  access_token?: string;
3658
3805
  /** Data format for response. */
3659
- alt?: string;
3806
+ alt?: 'json' | 'media' | 'proto';
3660
3807
  /** JSONP */
3661
3808
  callback?: string;
3662
3809
  /** Selector specifying which fields to include in a partial response. */
@@ -3685,11 +3832,11 @@ declare namespace gapi.client {
3685
3832
  /** Creates a new ClientTlsPolicy in a given project and location. */
3686
3833
  create(request: {
3687
3834
  /** V1 error format. */
3688
- '$.xgafv'?: string;
3835
+ '$.xgafv'?: '1' | '2';
3689
3836
  /** OAuth access token. */
3690
3837
  access_token?: string;
3691
3838
  /** Data format for response. */
3692
- alt?: string;
3839
+ alt?: 'json' | 'media' | 'proto';
3693
3840
  /** JSONP */
3694
3841
  callback?: string;
3695
3842
  /** Required. Short name of the ClientTlsPolicy resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and should not start with a number. E.g. "client_mtls_policy". */
@@ -3716,11 +3863,11 @@ declare namespace gapi.client {
3716
3863
  create(
3717
3864
  request: {
3718
3865
  /** V1 error format. */
3719
- '$.xgafv'?: string;
3866
+ '$.xgafv'?: '1' | '2';
3720
3867
  /** OAuth access token. */
3721
3868
  access_token?: string;
3722
3869
  /** Data format for response. */
3723
- alt?: string;
3870
+ alt?: 'json' | 'media' | 'proto';
3724
3871
  /** JSONP */
3725
3872
  callback?: string;
3726
3873
  /** Required. Short name of the ClientTlsPolicy resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and should not start with a number. E.g. "client_mtls_policy". */
@@ -3747,11 +3894,11 @@ declare namespace gapi.client {
3747
3894
  /** Deletes a single ClientTlsPolicy. */
3748
3895
  delete(request?: {
3749
3896
  /** V1 error format. */
3750
- '$.xgafv'?: string;
3897
+ '$.xgafv'?: '1' | '2';
3751
3898
  /** OAuth access token. */
3752
3899
  access_token?: string;
3753
3900
  /** Data format for response. */
3754
- alt?: string;
3901
+ alt?: 'json' | 'media' | 'proto';
3755
3902
  /** JSONP */
3756
3903
  callback?: string;
3757
3904
  /** Selector specifying which fields to include in a partial response. */
@@ -3774,11 +3921,11 @@ declare namespace gapi.client {
3774
3921
  /** Gets details of a single ClientTlsPolicy. */
3775
3922
  get(request?: {
3776
3923
  /** V1 error format. */
3777
- '$.xgafv'?: string;
3924
+ '$.xgafv'?: '1' | '2';
3778
3925
  /** OAuth access token. */
3779
3926
  access_token?: string;
3780
3927
  /** Data format for response. */
3781
- alt?: string;
3928
+ alt?: 'json' | 'media' | 'proto';
3782
3929
  /** JSONP */
3783
3930
  callback?: string;
3784
3931
  /** Selector specifying which fields to include in a partial response. */
@@ -3801,11 +3948,11 @@ declare namespace gapi.client {
3801
3948
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
3802
3949
  getIamPolicy(request?: {
3803
3950
  /** V1 error format. */
3804
- '$.xgafv'?: string;
3951
+ '$.xgafv'?: '1' | '2';
3805
3952
  /** OAuth access token. */
3806
3953
  access_token?: string;
3807
3954
  /** Data format for response. */
3808
- alt?: string;
3955
+ alt?: 'json' | 'media' | 'proto';
3809
3956
  /** JSONP */
3810
3957
  callback?: string;
3811
3958
  /** Selector specifying which fields to include in a partial response. */
@@ -3830,11 +3977,11 @@ declare namespace gapi.client {
3830
3977
  /** Lists ClientTlsPolicies in a given project and location. */
3831
3978
  list(request?: {
3832
3979
  /** V1 error format. */
3833
- '$.xgafv'?: string;
3980
+ '$.xgafv'?: '1' | '2';
3834
3981
  /** OAuth access token. */
3835
3982
  access_token?: string;
3836
3983
  /** Data format for response. */
3837
- alt?: string;
3984
+ alt?: 'json' | 'media' | 'proto';
3838
3985
  /** JSONP */
3839
3986
  callback?: string;
3840
3987
  /** Selector specifying which fields to include in a partial response. */
@@ -3861,11 +4008,11 @@ declare namespace gapi.client {
3861
4008
  /** Updates the parameters of a single ClientTlsPolicy. */
3862
4009
  patch(request: {
3863
4010
  /** V1 error format. */
3864
- '$.xgafv'?: string;
4011
+ '$.xgafv'?: '1' | '2';
3865
4012
  /** OAuth access token. */
3866
4013
  access_token?: string;
3867
4014
  /** Data format for response. */
3868
- alt?: string;
4015
+ alt?: 'json' | 'media' | 'proto';
3869
4016
  /** JSONP */
3870
4017
  callback?: string;
3871
4018
  /** Selector specifying which fields to include in a partial response. */
@@ -3892,11 +4039,11 @@ declare namespace gapi.client {
3892
4039
  patch(
3893
4040
  request: {
3894
4041
  /** V1 error format. */
3895
- '$.xgafv'?: string;
4042
+ '$.xgafv'?: '1' | '2';
3896
4043
  /** OAuth access token. */
3897
4044
  access_token?: string;
3898
4045
  /** Data format for response. */
3899
- alt?: string;
4046
+ alt?: 'json' | 'media' | 'proto';
3900
4047
  /** JSONP */
3901
4048
  callback?: string;
3902
4049
  /** Selector specifying which fields to include in a partial response. */
@@ -3924,11 +4071,11 @@ declare namespace gapi.client {
3924
4071
  setIamPolicy(
3925
4072
  request: {
3926
4073
  /** V1 error format. */
3927
- '$.xgafv'?: string;
4074
+ '$.xgafv'?: '1' | '2';
3928
4075
  /** OAuth access token. */
3929
4076
  access_token?: string;
3930
4077
  /** Data format for response. */
3931
- alt?: string;
4078
+ alt?: 'json' | 'media' | 'proto';
3932
4079
  /** JSONP */
3933
4080
  callback?: string;
3934
4081
  /** Selector specifying which fields to include in a partial response. */
@@ -3954,11 +4101,11 @@ declare namespace gapi.client {
3954
4101
  testIamPermissions(
3955
4102
  request: {
3956
4103
  /** V1 error format. */
3957
- '$.xgafv'?: string;
4104
+ '$.xgafv'?: '1' | '2';
3958
4105
  /** OAuth access token. */
3959
4106
  access_token?: string;
3960
4107
  /** Data format for response. */
3961
- alt?: string;
4108
+ alt?: 'json' | 'media' | 'proto';
3962
4109
  /** JSONP */
3963
4110
  callback?: string;
3964
4111
  /** Selector specifying which fields to include in a partial response. */
@@ -3985,11 +4132,11 @@ declare namespace gapi.client {
3985
4132
  /** Creates a new DnsThreatDetector in a given project and location. */
3986
4133
  create(request: {
3987
4134
  /** V1 error format. */
3988
- '$.xgafv'?: string;
4135
+ '$.xgafv'?: '1' | '2';
3989
4136
  /** OAuth access token. */
3990
4137
  access_token?: string;
3991
4138
  /** Data format for response. */
3992
- alt?: string;
4139
+ alt?: 'json' | 'media' | 'proto';
3993
4140
  /** JSONP */
3994
4141
  callback?: string;
3995
4142
  /** Optional. The ID of the requesting DnsThreatDetector object. If this field is not supplied, the service generates an identifier. */
@@ -4016,11 +4163,11 @@ declare namespace gapi.client {
4016
4163
  create(
4017
4164
  request: {
4018
4165
  /** V1 error format. */
4019
- '$.xgafv'?: string;
4166
+ '$.xgafv'?: '1' | '2';
4020
4167
  /** OAuth access token. */
4021
4168
  access_token?: string;
4022
4169
  /** Data format for response. */
4023
- alt?: string;
4170
+ alt?: 'json' | 'media' | 'proto';
4024
4171
  /** JSONP */
4025
4172
  callback?: string;
4026
4173
  /** Optional. The ID of the requesting DnsThreatDetector object. If this field is not supplied, the service generates an identifier. */
@@ -4047,11 +4194,11 @@ declare namespace gapi.client {
4047
4194
  /** Deletes a single DnsThreatDetector. */
4048
4195
  delete(request?: {
4049
4196
  /** V1 error format. */
4050
- '$.xgafv'?: string;
4197
+ '$.xgafv'?: '1' | '2';
4051
4198
  /** OAuth access token. */
4052
4199
  access_token?: string;
4053
4200
  /** Data format for response. */
4054
- alt?: string;
4201
+ alt?: 'json' | 'media' | 'proto';
4055
4202
  /** JSONP */
4056
4203
  callback?: string;
4057
4204
  /** Selector specifying which fields to include in a partial response. */
@@ -4074,11 +4221,11 @@ declare namespace gapi.client {
4074
4221
  /** Gets the details of a single DnsThreatDetector. */
4075
4222
  get(request?: {
4076
4223
  /** V1 error format. */
4077
- '$.xgafv'?: string;
4224
+ '$.xgafv'?: '1' | '2';
4078
4225
  /** OAuth access token. */
4079
4226
  access_token?: string;
4080
4227
  /** Data format for response. */
4081
- alt?: string;
4228
+ alt?: 'json' | 'media' | 'proto';
4082
4229
  /** JSONP */
4083
4230
  callback?: string;
4084
4231
  /** Selector specifying which fields to include in a partial response. */
@@ -4101,11 +4248,11 @@ declare namespace gapi.client {
4101
4248
  /** Lists DnsThreatDetectors in a given project and location. */
4102
4249
  list(request?: {
4103
4250
  /** V1 error format. */
4104
- '$.xgafv'?: string;
4251
+ '$.xgafv'?: '1' | '2';
4105
4252
  /** OAuth access token. */
4106
4253
  access_token?: string;
4107
4254
  /** Data format for response. */
4108
- alt?: string;
4255
+ alt?: 'json' | 'media' | 'proto';
4109
4256
  /** JSONP */
4110
4257
  callback?: string;
4111
4258
  /** Selector specifying which fields to include in a partial response. */
@@ -4132,11 +4279,11 @@ declare namespace gapi.client {
4132
4279
  /** Updates a single DnsThreatDetector. */
4133
4280
  patch(request: {
4134
4281
  /** V1 error format. */
4135
- '$.xgafv'?: string;
4282
+ '$.xgafv'?: '1' | '2';
4136
4283
  /** OAuth access token. */
4137
4284
  access_token?: string;
4138
4285
  /** Data format for response. */
4139
- alt?: string;
4286
+ alt?: 'json' | 'media' | 'proto';
4140
4287
  /** JSONP */
4141
4288
  callback?: string;
4142
4289
  /** Selector specifying which fields to include in a partial response. */
@@ -4163,11 +4310,11 @@ declare namespace gapi.client {
4163
4310
  patch(
4164
4311
  request: {
4165
4312
  /** V1 error format. */
4166
- '$.xgafv'?: string;
4313
+ '$.xgafv'?: '1' | '2';
4167
4314
  /** OAuth access token. */
4168
4315
  access_token?: string;
4169
4316
  /** Data format for response. */
4170
- alt?: string;
4317
+ alt?: 'json' | 'media' | 'proto';
4171
4318
  /** JSONP */
4172
4319
  callback?: string;
4173
4320
  /** Selector specifying which fields to include in a partial response. */
@@ -4196,11 +4343,11 @@ declare namespace gapi.client {
4196
4343
  /** Creates a new FirewallEndpointAssociation in a given project and location. */
4197
4344
  create(request: {
4198
4345
  /** V1 error format. */
4199
- '$.xgafv'?: string;
4346
+ '$.xgafv'?: '1' | '2';
4200
4347
  /** OAuth access token. */
4201
4348
  access_token?: string;
4202
4349
  /** Data format for response. */
4203
- alt?: string;
4350
+ alt?: 'json' | 'media' | 'proto';
4204
4351
  /** JSONP */
4205
4352
  callback?: string;
4206
4353
  /** Selector specifying which fields to include in a partial response. */
@@ -4229,11 +4376,11 @@ declare namespace gapi.client {
4229
4376
  create(
4230
4377
  request: {
4231
4378
  /** V1 error format. */
4232
- '$.xgafv'?: string;
4379
+ '$.xgafv'?: '1' | '2';
4233
4380
  /** OAuth access token. */
4234
4381
  access_token?: string;
4235
4382
  /** Data format for response. */
4236
- alt?: string;
4383
+ alt?: 'json' | 'media' | 'proto';
4237
4384
  /** JSONP */
4238
4385
  callback?: string;
4239
4386
  /** Selector specifying which fields to include in a partial response. */
@@ -4262,11 +4409,11 @@ declare namespace gapi.client {
4262
4409
  /** Deletes a single FirewallEndpointAssociation. */
4263
4410
  delete(request?: {
4264
4411
  /** V1 error format. */
4265
- '$.xgafv'?: string;
4412
+ '$.xgafv'?: '1' | '2';
4266
4413
  /** OAuth access token. */
4267
4414
  access_token?: string;
4268
4415
  /** Data format for response. */
4269
- alt?: string;
4416
+ alt?: 'json' | 'media' | 'proto';
4270
4417
  /** JSONP */
4271
4418
  callback?: string;
4272
4419
  /** Selector specifying which fields to include in a partial response. */
@@ -4291,11 +4438,11 @@ declare namespace gapi.client {
4291
4438
  /** Gets details of a single FirewallEndpointAssociation. */
4292
4439
  get(request?: {
4293
4440
  /** V1 error format. */
4294
- '$.xgafv'?: string;
4441
+ '$.xgafv'?: '1' | '2';
4295
4442
  /** OAuth access token. */
4296
4443
  access_token?: string;
4297
4444
  /** Data format for response. */
4298
- alt?: string;
4445
+ alt?: 'json' | 'media' | 'proto';
4299
4446
  /** JSONP */
4300
4447
  callback?: string;
4301
4448
  /** Selector specifying which fields to include in a partial response. */
@@ -4318,11 +4465,11 @@ declare namespace gapi.client {
4318
4465
  /** Lists Associations in a given project and location. */
4319
4466
  list(request?: {
4320
4467
  /** V1 error format. */
4321
- '$.xgafv'?: string;
4468
+ '$.xgafv'?: '1' | '2';
4322
4469
  /** OAuth access token. */
4323
4470
  access_token?: string;
4324
4471
  /** Data format for response. */
4325
- alt?: string;
4472
+ alt?: 'json' | 'media' | 'proto';
4326
4473
  /** JSONP */
4327
4474
  callback?: string;
4328
4475
  /** Selector specifying which fields to include in a partial response. */
@@ -4353,11 +4500,11 @@ declare namespace gapi.client {
4353
4500
  /** Update a single FirewallEndpointAssociation. */
4354
4501
  patch(request: {
4355
4502
  /** V1 error format. */
4356
- '$.xgafv'?: string;
4503
+ '$.xgafv'?: '1' | '2';
4357
4504
  /** OAuth access token. */
4358
4505
  access_token?: string;
4359
4506
  /** Data format for response. */
4360
- alt?: string;
4507
+ alt?: 'json' | 'media' | 'proto';
4361
4508
  /** JSONP */
4362
4509
  callback?: string;
4363
4510
  /** Selector specifying which fields to include in a partial response. */
@@ -4386,11 +4533,11 @@ declare namespace gapi.client {
4386
4533
  patch(
4387
4534
  request: {
4388
4535
  /** V1 error format. */
4389
- '$.xgafv'?: string;
4536
+ '$.xgafv'?: '1' | '2';
4390
4537
  /** OAuth access token. */
4391
4538
  access_token?: string;
4392
4539
  /** Data format for response. */
4393
- alt?: string;
4540
+ alt?: 'json' | 'media' | 'proto';
4394
4541
  /** JSONP */
4395
4542
  callback?: string;
4396
4543
  /** Selector specifying which fields to include in a partial response. */
@@ -4421,11 +4568,11 @@ declare namespace gapi.client {
4421
4568
  /** Creates a new GatewaySecurityPolicy in a given project and location. */
4422
4569
  create(request: {
4423
4570
  /** V1 error format. */
4424
- '$.xgafv'?: string;
4571
+ '$.xgafv'?: '1' | '2';
4425
4572
  /** OAuth access token. */
4426
4573
  access_token?: string;
4427
4574
  /** Data format for response. */
4428
- alt?: string;
4575
+ alt?: 'json' | 'media' | 'proto';
4429
4576
  /** JSONP */
4430
4577
  callback?: string;
4431
4578
  /** Selector specifying which fields to include in a partial response. */
@@ -4452,11 +4599,11 @@ declare namespace gapi.client {
4452
4599
  create(
4453
4600
  request: {
4454
4601
  /** V1 error format. */
4455
- '$.xgafv'?: string;
4602
+ '$.xgafv'?: '1' | '2';
4456
4603
  /** OAuth access token. */
4457
4604
  access_token?: string;
4458
4605
  /** Data format for response. */
4459
- alt?: string;
4606
+ alt?: 'json' | 'media' | 'proto';
4460
4607
  /** JSONP */
4461
4608
  callback?: string;
4462
4609
  /** Selector specifying which fields to include in a partial response. */
@@ -4483,11 +4630,11 @@ declare namespace gapi.client {
4483
4630
  /** Deletes a single GatewaySecurityPolicyRule. */
4484
4631
  delete(request?: {
4485
4632
  /** V1 error format. */
4486
- '$.xgafv'?: string;
4633
+ '$.xgafv'?: '1' | '2';
4487
4634
  /** OAuth access token. */
4488
4635
  access_token?: string;
4489
4636
  /** Data format for response. */
4490
- alt?: string;
4637
+ alt?: 'json' | 'media' | 'proto';
4491
4638
  /** JSONP */
4492
4639
  callback?: string;
4493
4640
  /** Selector specifying which fields to include in a partial response. */
@@ -4510,11 +4657,11 @@ declare namespace gapi.client {
4510
4657
  /** Gets details of a single GatewaySecurityPolicyRule. */
4511
4658
  get(request?: {
4512
4659
  /** V1 error format. */
4513
- '$.xgafv'?: string;
4660
+ '$.xgafv'?: '1' | '2';
4514
4661
  /** OAuth access token. */
4515
4662
  access_token?: string;
4516
4663
  /** Data format for response. */
4517
- alt?: string;
4664
+ alt?: 'json' | 'media' | 'proto';
4518
4665
  /** JSONP */
4519
4666
  callback?: string;
4520
4667
  /** Selector specifying which fields to include in a partial response. */
@@ -4537,11 +4684,11 @@ declare namespace gapi.client {
4537
4684
  /** Lists GatewaySecurityPolicyRules in a given project and location. */
4538
4685
  list(request?: {
4539
4686
  /** V1 error format. */
4540
- '$.xgafv'?: string;
4687
+ '$.xgafv'?: '1' | '2';
4541
4688
  /** OAuth access token. */
4542
4689
  access_token?: string;
4543
4690
  /** Data format for response. */
4544
- alt?: string;
4691
+ alt?: 'json' | 'media' | 'proto';
4545
4692
  /** JSONP */
4546
4693
  callback?: string;
4547
4694
  /** Selector specifying which fields to include in a partial response. */
@@ -4568,11 +4715,11 @@ declare namespace gapi.client {
4568
4715
  /** Updates the parameters of a single GatewaySecurityPolicyRule. */
4569
4716
  patch(request: {
4570
4717
  /** V1 error format. */
4571
- '$.xgafv'?: string;
4718
+ '$.xgafv'?: '1' | '2';
4572
4719
  /** OAuth access token. */
4573
4720
  access_token?: string;
4574
4721
  /** Data format for response. */
4575
- alt?: string;
4722
+ alt?: 'json' | 'media' | 'proto';
4576
4723
  /** JSONP */
4577
4724
  callback?: string;
4578
4725
  /** Selector specifying which fields to include in a partial response. */
@@ -4599,11 +4746,11 @@ declare namespace gapi.client {
4599
4746
  patch(
4600
4747
  request: {
4601
4748
  /** V1 error format. */
4602
- '$.xgafv'?: string;
4749
+ '$.xgafv'?: '1' | '2';
4603
4750
  /** OAuth access token. */
4604
4751
  access_token?: string;
4605
4752
  /** Data format for response. */
4606
- alt?: string;
4753
+ alt?: 'json' | 'media' | 'proto';
4607
4754
  /** JSONP */
4608
4755
  callback?: string;
4609
4756
  /** Selector specifying which fields to include in a partial response. */
@@ -4632,11 +4779,11 @@ declare namespace gapi.client {
4632
4779
  /** Creates a new GatewaySecurityPolicy in a given project and location. */
4633
4780
  create(request: {
4634
4781
  /** V1 error format. */
4635
- '$.xgafv'?: string;
4782
+ '$.xgafv'?: '1' | '2';
4636
4783
  /** OAuth access token. */
4637
4784
  access_token?: string;
4638
4785
  /** Data format for response. */
4639
- alt?: string;
4786
+ alt?: 'json' | 'media' | 'proto';
4640
4787
  /** JSONP */
4641
4788
  callback?: string;
4642
4789
  /** Selector specifying which fields to include in a partial response. */
@@ -4663,11 +4810,11 @@ declare namespace gapi.client {
4663
4810
  create(
4664
4811
  request: {
4665
4812
  /** V1 error format. */
4666
- '$.xgafv'?: string;
4813
+ '$.xgafv'?: '1' | '2';
4667
4814
  /** OAuth access token. */
4668
4815
  access_token?: string;
4669
4816
  /** Data format for response. */
4670
- alt?: string;
4817
+ alt?: 'json' | 'media' | 'proto';
4671
4818
  /** JSONP */
4672
4819
  callback?: string;
4673
4820
  /** Selector specifying which fields to include in a partial response. */
@@ -4694,11 +4841,11 @@ declare namespace gapi.client {
4694
4841
  /** Deletes a single GatewaySecurityPolicy. */
4695
4842
  delete(request?: {
4696
4843
  /** V1 error format. */
4697
- '$.xgafv'?: string;
4844
+ '$.xgafv'?: '1' | '2';
4698
4845
  /** OAuth access token. */
4699
4846
  access_token?: string;
4700
4847
  /** Data format for response. */
4701
- alt?: string;
4848
+ alt?: 'json' | 'media' | 'proto';
4702
4849
  /** JSONP */
4703
4850
  callback?: string;
4704
4851
  /** Selector specifying which fields to include in a partial response. */
@@ -4721,11 +4868,11 @@ declare namespace gapi.client {
4721
4868
  /** Gets details of a single GatewaySecurityPolicy. */
4722
4869
  get(request?: {
4723
4870
  /** V1 error format. */
4724
- '$.xgafv'?: string;
4871
+ '$.xgafv'?: '1' | '2';
4725
4872
  /** OAuth access token. */
4726
4873
  access_token?: string;
4727
4874
  /** Data format for response. */
4728
- alt?: string;
4875
+ alt?: 'json' | 'media' | 'proto';
4729
4876
  /** JSONP */
4730
4877
  callback?: string;
4731
4878
  /** Selector specifying which fields to include in a partial response. */
@@ -4748,11 +4895,11 @@ declare namespace gapi.client {
4748
4895
  /** Lists GatewaySecurityPolicies in a given project and location. */
4749
4896
  list(request?: {
4750
4897
  /** V1 error format. */
4751
- '$.xgafv'?: string;
4898
+ '$.xgafv'?: '1' | '2';
4752
4899
  /** OAuth access token. */
4753
4900
  access_token?: string;
4754
4901
  /** Data format for response. */
4755
- alt?: string;
4902
+ alt?: 'json' | 'media' | 'proto';
4756
4903
  /** JSONP */
4757
4904
  callback?: string;
4758
4905
  /** Selector specifying which fields to include in a partial response. */
@@ -4779,11 +4926,11 @@ declare namespace gapi.client {
4779
4926
  /** Updates the parameters of a single GatewaySecurityPolicy. */
4780
4927
  patch(request: {
4781
4928
  /** V1 error format. */
4782
- '$.xgafv'?: string;
4929
+ '$.xgafv'?: '1' | '2';
4783
4930
  /** OAuth access token. */
4784
4931
  access_token?: string;
4785
4932
  /** Data format for response. */
4786
- alt?: string;
4933
+ alt?: 'json' | 'media' | 'proto';
4787
4934
  /** JSONP */
4788
4935
  callback?: string;
4789
4936
  /** Selector specifying which fields to include in a partial response. */
@@ -4810,11 +4957,11 @@ declare namespace gapi.client {
4810
4957
  patch(
4811
4958
  request: {
4812
4959
  /** V1 error format. */
4813
- '$.xgafv'?: string;
4960
+ '$.xgafv'?: '1' | '2';
4814
4961
  /** OAuth access token. */
4815
4962
  access_token?: string;
4816
4963
  /** Data format for response. */
4817
- alt?: string;
4964
+ alt?: 'json' | 'media' | 'proto';
4818
4965
  /** JSONP */
4819
4966
  callback?: string;
4820
4967
  /** Selector specifying which fields to include in a partial response. */
@@ -4844,11 +4991,11 @@ declare namespace gapi.client {
4844
4991
  /** Creates a deployment group in a given project and location. See https://google.aip.dev/133. */
4845
4992
  create(request: {
4846
4993
  /** V1 error format. */
4847
- '$.xgafv'?: string;
4994
+ '$.xgafv'?: '1' | '2';
4848
4995
  /** OAuth access token. */
4849
4996
  access_token?: string;
4850
4997
  /** Data format for response. */
4851
- alt?: string;
4998
+ alt?: 'json' | 'media' | 'proto';
4852
4999
  /** JSONP */
4853
5000
  callback?: string;
4854
5001
  /** Selector specifying which fields to include in a partial response. */
@@ -4877,11 +5024,11 @@ declare namespace gapi.client {
4877
5024
  create(
4878
5025
  request: {
4879
5026
  /** V1 error format. */
4880
- '$.xgafv'?: string;
5027
+ '$.xgafv'?: '1' | '2';
4881
5028
  /** OAuth access token. */
4882
5029
  access_token?: string;
4883
5030
  /** Data format for response. */
4884
- alt?: string;
5031
+ alt?: 'json' | 'media' | 'proto';
4885
5032
  /** JSONP */
4886
5033
  callback?: string;
4887
5034
  /** Selector specifying which fields to include in a partial response. */
@@ -4910,11 +5057,11 @@ declare namespace gapi.client {
4910
5057
  /** Deletes a deployment group. See https://google.aip.dev/135. */
4911
5058
  delete(request?: {
4912
5059
  /** V1 error format. */
4913
- '$.xgafv'?: string;
5060
+ '$.xgafv'?: '1' | '2';
4914
5061
  /** OAuth access token. */
4915
5062
  access_token?: string;
4916
5063
  /** Data format for response. */
4917
- alt?: string;
5064
+ alt?: 'json' | 'media' | 'proto';
4918
5065
  /** JSONP */
4919
5066
  callback?: string;
4920
5067
  /** Selector specifying which fields to include in a partial response. */
@@ -4939,11 +5086,11 @@ declare namespace gapi.client {
4939
5086
  /** Gets a specific deployment group. See https://google.aip.dev/131. */
4940
5087
  get(request?: {
4941
5088
  /** V1 error format. */
4942
- '$.xgafv'?: string;
5089
+ '$.xgafv'?: '1' | '2';
4943
5090
  /** OAuth access token. */
4944
5091
  access_token?: string;
4945
5092
  /** Data format for response. */
4946
- alt?: string;
5093
+ alt?: 'json' | 'media' | 'proto';
4947
5094
  /** JSONP */
4948
5095
  callback?: string;
4949
5096
  /** Selector specifying which fields to include in a partial response. */
@@ -4966,11 +5113,11 @@ declare namespace gapi.client {
4966
5113
  /** Lists deployment groups in a given project and location. See https://google.aip.dev/132. */
4967
5114
  list(request?: {
4968
5115
  /** V1 error format. */
4969
- '$.xgafv'?: string;
5116
+ '$.xgafv'?: '1' | '2';
4970
5117
  /** OAuth access token. */
4971
5118
  access_token?: string;
4972
5119
  /** Data format for response. */
4973
- alt?: string;
5120
+ alt?: 'json' | 'media' | 'proto';
4974
5121
  /** JSONP */
4975
5122
  callback?: string;
4976
5123
  /** Selector specifying which fields to include in a partial response. */
@@ -5001,11 +5148,11 @@ declare namespace gapi.client {
5001
5148
  /** Updates a deployment group. See https://google.aip.dev/134. */
5002
5149
  patch(request: {
5003
5150
  /** V1 error format. */
5004
- '$.xgafv'?: string;
5151
+ '$.xgafv'?: '1' | '2';
5005
5152
  /** OAuth access token. */
5006
5153
  access_token?: string;
5007
5154
  /** Data format for response. */
5008
- alt?: string;
5155
+ alt?: 'json' | 'media' | 'proto';
5009
5156
  /** JSONP */
5010
5157
  callback?: string;
5011
5158
  /** Selector specifying which fields to include in a partial response. */
@@ -5034,11 +5181,11 @@ declare namespace gapi.client {
5034
5181
  patch(
5035
5182
  request: {
5036
5183
  /** V1 error format. */
5037
- '$.xgafv'?: string;
5184
+ '$.xgafv'?: '1' | '2';
5038
5185
  /** OAuth access token. */
5039
5186
  access_token?: string;
5040
5187
  /** Data format for response. */
5041
- alt?: string;
5188
+ alt?: 'json' | 'media' | 'proto';
5042
5189
  /** JSONP */
5043
5190
  callback?: string;
5044
5191
  /** Selector specifying which fields to include in a partial response. */
@@ -5069,11 +5216,11 @@ declare namespace gapi.client {
5069
5216
  /** Creates a deployment in a given project and location. See https://google.aip.dev/133. */
5070
5217
  create(request: {
5071
5218
  /** V1 error format. */
5072
- '$.xgafv'?: string;
5219
+ '$.xgafv'?: '1' | '2';
5073
5220
  /** OAuth access token. */
5074
5221
  access_token?: string;
5075
5222
  /** Data format for response. */
5076
- alt?: string;
5223
+ alt?: 'json' | 'media' | 'proto';
5077
5224
  /** JSONP */
5078
5225
  callback?: string;
5079
5226
  /** Selector specifying which fields to include in a partial response. */
@@ -5102,11 +5249,11 @@ declare namespace gapi.client {
5102
5249
  create(
5103
5250
  request: {
5104
5251
  /** V1 error format. */
5105
- '$.xgafv'?: string;
5252
+ '$.xgafv'?: '1' | '2';
5106
5253
  /** OAuth access token. */
5107
5254
  access_token?: string;
5108
5255
  /** Data format for response. */
5109
- alt?: string;
5256
+ alt?: 'json' | 'media' | 'proto';
5110
5257
  /** JSONP */
5111
5258
  callback?: string;
5112
5259
  /** Selector specifying which fields to include in a partial response. */
@@ -5135,11 +5282,11 @@ declare namespace gapi.client {
5135
5282
  /** Deletes a deployment. See https://google.aip.dev/135. */
5136
5283
  delete(request?: {
5137
5284
  /** V1 error format. */
5138
- '$.xgafv'?: string;
5285
+ '$.xgafv'?: '1' | '2';
5139
5286
  /** OAuth access token. */
5140
5287
  access_token?: string;
5141
5288
  /** Data format for response. */
5142
- alt?: string;
5289
+ alt?: 'json' | 'media' | 'proto';
5143
5290
  /** JSONP */
5144
5291
  callback?: string;
5145
5292
  /** Selector specifying which fields to include in a partial response. */
@@ -5164,11 +5311,11 @@ declare namespace gapi.client {
5164
5311
  /** Gets a specific deployment. See https://google.aip.dev/131. */
5165
5312
  get(request?: {
5166
5313
  /** V1 error format. */
5167
- '$.xgafv'?: string;
5314
+ '$.xgafv'?: '1' | '2';
5168
5315
  /** OAuth access token. */
5169
5316
  access_token?: string;
5170
5317
  /** Data format for response. */
5171
- alt?: string;
5318
+ alt?: 'json' | 'media' | 'proto';
5172
5319
  /** JSONP */
5173
5320
  callback?: string;
5174
5321
  /** Selector specifying which fields to include in a partial response. */
@@ -5191,11 +5338,11 @@ declare namespace gapi.client {
5191
5338
  /** Lists deployments in a given project and location. See https://google.aip.dev/132. */
5192
5339
  list(request?: {
5193
5340
  /** V1 error format. */
5194
- '$.xgafv'?: string;
5341
+ '$.xgafv'?: '1' | '2';
5195
5342
  /** OAuth access token. */
5196
5343
  access_token?: string;
5197
5344
  /** Data format for response. */
5198
- alt?: string;
5345
+ alt?: 'json' | 'media' | 'proto';
5199
5346
  /** JSONP */
5200
5347
  callback?: string;
5201
5348
  /** Selector specifying which fields to include in a partial response. */
@@ -5226,11 +5373,11 @@ declare namespace gapi.client {
5226
5373
  /** Updates a deployment. See https://google.aip.dev/134. */
5227
5374
  patch(request: {
5228
5375
  /** V1 error format. */
5229
- '$.xgafv'?: string;
5376
+ '$.xgafv'?: '1' | '2';
5230
5377
  /** OAuth access token. */
5231
5378
  access_token?: string;
5232
5379
  /** Data format for response. */
5233
- alt?: string;
5380
+ alt?: 'json' | 'media' | 'proto';
5234
5381
  /** JSONP */
5235
5382
  callback?: string;
5236
5383
  /** Selector specifying which fields to include in a partial response. */
@@ -5259,11 +5406,11 @@ declare namespace gapi.client {
5259
5406
  patch(
5260
5407
  request: {
5261
5408
  /** V1 error format. */
5262
- '$.xgafv'?: string;
5409
+ '$.xgafv'?: '1' | '2';
5263
5410
  /** OAuth access token. */
5264
5411
  access_token?: string;
5265
5412
  /** Data format for response. */
5266
- alt?: string;
5413
+ alt?: 'json' | 'media' | 'proto';
5267
5414
  /** JSONP */
5268
5415
  callback?: string;
5269
5416
  /** Selector specifying which fields to include in a partial response. */
@@ -5294,11 +5441,11 @@ declare namespace gapi.client {
5294
5441
  /** Creates an association in a given project and location. See https://google.aip.dev/133. */
5295
5442
  create(request: {
5296
5443
  /** V1 error format. */
5297
- '$.xgafv'?: string;
5444
+ '$.xgafv'?: '1' | '2';
5298
5445
  /** OAuth access token. */
5299
5446
  access_token?: string;
5300
5447
  /** Data format for response. */
5301
- alt?: string;
5448
+ alt?: 'json' | 'media' | 'proto';
5302
5449
  /** JSONP */
5303
5450
  callback?: string;
5304
5451
  /** Selector specifying which fields to include in a partial response. */
@@ -5327,11 +5474,11 @@ declare namespace gapi.client {
5327
5474
  create(
5328
5475
  request: {
5329
5476
  /** V1 error format. */
5330
- '$.xgafv'?: string;
5477
+ '$.xgafv'?: '1' | '2';
5331
5478
  /** OAuth access token. */
5332
5479
  access_token?: string;
5333
5480
  /** Data format for response. */
5334
- alt?: string;
5481
+ alt?: 'json' | 'media' | 'proto';
5335
5482
  /** JSONP */
5336
5483
  callback?: string;
5337
5484
  /** Selector specifying which fields to include in a partial response. */
@@ -5360,11 +5507,11 @@ declare namespace gapi.client {
5360
5507
  /** Deletes an association. See https://google.aip.dev/135. */
5361
5508
  delete(request?: {
5362
5509
  /** V1 error format. */
5363
- '$.xgafv'?: string;
5510
+ '$.xgafv'?: '1' | '2';
5364
5511
  /** OAuth access token. */
5365
5512
  access_token?: string;
5366
5513
  /** Data format for response. */
5367
- alt?: string;
5514
+ alt?: 'json' | 'media' | 'proto';
5368
5515
  /** JSONP */
5369
5516
  callback?: string;
5370
5517
  /** Selector specifying which fields to include in a partial response. */
@@ -5389,11 +5536,11 @@ declare namespace gapi.client {
5389
5536
  /** Gets a specific association. See https://google.aip.dev/131. */
5390
5537
  get(request?: {
5391
5538
  /** V1 error format. */
5392
- '$.xgafv'?: string;
5539
+ '$.xgafv'?: '1' | '2';
5393
5540
  /** OAuth access token. */
5394
5541
  access_token?: string;
5395
5542
  /** Data format for response. */
5396
- alt?: string;
5543
+ alt?: 'json' | 'media' | 'proto';
5397
5544
  /** JSONP */
5398
5545
  callback?: string;
5399
5546
  /** Selector specifying which fields to include in a partial response. */
@@ -5416,11 +5563,11 @@ declare namespace gapi.client {
5416
5563
  /** Lists associations in a given project and location. See https://google.aip.dev/132. */
5417
5564
  list(request?: {
5418
5565
  /** V1 error format. */
5419
- '$.xgafv'?: string;
5566
+ '$.xgafv'?: '1' | '2';
5420
5567
  /** OAuth access token. */
5421
5568
  access_token?: string;
5422
5569
  /** Data format for response. */
5423
- alt?: string;
5570
+ alt?: 'json' | 'media' | 'proto';
5424
5571
  /** JSONP */
5425
5572
  callback?: string;
5426
5573
  /** Selector specifying which fields to include in a partial response. */
@@ -5451,11 +5598,11 @@ declare namespace gapi.client {
5451
5598
  /** Updates an association. See https://google.aip.dev/134. */
5452
5599
  patch(request: {
5453
5600
  /** V1 error format. */
5454
- '$.xgafv'?: string;
5601
+ '$.xgafv'?: '1' | '2';
5455
5602
  /** OAuth access token. */
5456
5603
  access_token?: string;
5457
5604
  /** Data format for response. */
5458
- alt?: string;
5605
+ alt?: 'json' | 'media' | 'proto';
5459
5606
  /** JSONP */
5460
5607
  callback?: string;
5461
5608
  /** Selector specifying which fields to include in a partial response. */
@@ -5484,11 +5631,11 @@ declare namespace gapi.client {
5484
5631
  patch(
5485
5632
  request: {
5486
5633
  /** V1 error format. */
5487
- '$.xgafv'?: string;
5634
+ '$.xgafv'?: '1' | '2';
5488
5635
  /** OAuth access token. */
5489
5636
  access_token?: string;
5490
5637
  /** Data format for response. */
5491
- alt?: string;
5638
+ alt?: 'json' | 'media' | 'proto';
5492
5639
  /** JSONP */
5493
5640
  callback?: string;
5494
5641
  /** Selector specifying which fields to include in a partial response. */
@@ -5519,11 +5666,11 @@ declare namespace gapi.client {
5519
5666
  /** Creates an endpoint group in a given project and location. See https://google.aip.dev/133. */
5520
5667
  create(request: {
5521
5668
  /** V1 error format. */
5522
- '$.xgafv'?: string;
5669
+ '$.xgafv'?: '1' | '2';
5523
5670
  /** OAuth access token. */
5524
5671
  access_token?: string;
5525
5672
  /** Data format for response. */
5526
- alt?: string;
5673
+ alt?: 'json' | 'media' | 'proto';
5527
5674
  /** JSONP */
5528
5675
  callback?: string;
5529
5676
  /** Selector specifying which fields to include in a partial response. */
@@ -5552,11 +5699,11 @@ declare namespace gapi.client {
5552
5699
  create(
5553
5700
  request: {
5554
5701
  /** V1 error format. */
5555
- '$.xgafv'?: string;
5702
+ '$.xgafv'?: '1' | '2';
5556
5703
  /** OAuth access token. */
5557
5704
  access_token?: string;
5558
5705
  /** Data format for response. */
5559
- alt?: string;
5706
+ alt?: 'json' | 'media' | 'proto';
5560
5707
  /** JSONP */
5561
5708
  callback?: string;
5562
5709
  /** Selector specifying which fields to include in a partial response. */
@@ -5585,11 +5732,11 @@ declare namespace gapi.client {
5585
5732
  /** Deletes an endpoint group. See https://google.aip.dev/135. */
5586
5733
  delete(request?: {
5587
5734
  /** V1 error format. */
5588
- '$.xgafv'?: string;
5735
+ '$.xgafv'?: '1' | '2';
5589
5736
  /** OAuth access token. */
5590
5737
  access_token?: string;
5591
5738
  /** Data format for response. */
5592
- alt?: string;
5739
+ alt?: 'json' | 'media' | 'proto';
5593
5740
  /** JSONP */
5594
5741
  callback?: string;
5595
5742
  /** Selector specifying which fields to include in a partial response. */
@@ -5614,11 +5761,11 @@ declare namespace gapi.client {
5614
5761
  /** Gets a specific endpoint group. See https://google.aip.dev/131. */
5615
5762
  get(request?: {
5616
5763
  /** V1 error format. */
5617
- '$.xgafv'?: string;
5764
+ '$.xgafv'?: '1' | '2';
5618
5765
  /** OAuth access token. */
5619
5766
  access_token?: string;
5620
5767
  /** Data format for response. */
5621
- alt?: string;
5768
+ alt?: 'json' | 'media' | 'proto';
5622
5769
  /** JSONP */
5623
5770
  callback?: string;
5624
5771
  /** Selector specifying which fields to include in a partial response. */
@@ -5641,11 +5788,11 @@ declare namespace gapi.client {
5641
5788
  /** Lists endpoint groups in a given project and location. See https://google.aip.dev/132. */
5642
5789
  list(request?: {
5643
5790
  /** V1 error format. */
5644
- '$.xgafv'?: string;
5791
+ '$.xgafv'?: '1' | '2';
5645
5792
  /** OAuth access token. */
5646
5793
  access_token?: string;
5647
5794
  /** Data format for response. */
5648
- alt?: string;
5795
+ alt?: 'json' | 'media' | 'proto';
5649
5796
  /** JSONP */
5650
5797
  callback?: string;
5651
5798
  /** Selector specifying which fields to include in a partial response. */
@@ -5676,11 +5823,11 @@ declare namespace gapi.client {
5676
5823
  /** Updates an endpoint group. See https://google.aip.dev/134. */
5677
5824
  patch(request: {
5678
5825
  /** V1 error format. */
5679
- '$.xgafv'?: string;
5826
+ '$.xgafv'?: '1' | '2';
5680
5827
  /** OAuth access token. */
5681
5828
  access_token?: string;
5682
5829
  /** Data format for response. */
5683
- alt?: string;
5830
+ alt?: 'json' | 'media' | 'proto';
5684
5831
  /** JSONP */
5685
5832
  callback?: string;
5686
5833
  /** Selector specifying which fields to include in a partial response. */
@@ -5709,11 +5856,11 @@ declare namespace gapi.client {
5709
5856
  patch(
5710
5857
  request: {
5711
5858
  /** V1 error format. */
5712
- '$.xgafv'?: string;
5859
+ '$.xgafv'?: '1' | '2';
5713
5860
  /** OAuth access token. */
5714
5861
  access_token?: string;
5715
5862
  /** Data format for response. */
5716
- alt?: string;
5863
+ alt?: 'json' | 'media' | 'proto';
5717
5864
  /** JSONP */
5718
5865
  callback?: string;
5719
5866
  /** Selector specifying which fields to include in a partial response. */
@@ -5744,11 +5891,11 @@ declare namespace gapi.client {
5744
5891
  /** Creates a deployment group in a given project and location. See https://google.aip.dev/133. */
5745
5892
  create(request: {
5746
5893
  /** V1 error format. */
5747
- '$.xgafv'?: string;
5894
+ '$.xgafv'?: '1' | '2';
5748
5895
  /** OAuth access token. */
5749
5896
  access_token?: string;
5750
5897
  /** Data format for response. */
5751
- alt?: string;
5898
+ alt?: 'json' | 'media' | 'proto';
5752
5899
  /** JSONP */
5753
5900
  callback?: string;
5754
5901
  /** Selector specifying which fields to include in a partial response. */
@@ -5777,11 +5924,11 @@ declare namespace gapi.client {
5777
5924
  create(
5778
5925
  request: {
5779
5926
  /** V1 error format. */
5780
- '$.xgafv'?: string;
5927
+ '$.xgafv'?: '1' | '2';
5781
5928
  /** OAuth access token. */
5782
5929
  access_token?: string;
5783
5930
  /** Data format for response. */
5784
- alt?: string;
5931
+ alt?: 'json' | 'media' | 'proto';
5785
5932
  /** JSONP */
5786
5933
  callback?: string;
5787
5934
  /** Selector specifying which fields to include in a partial response. */
@@ -5810,11 +5957,11 @@ declare namespace gapi.client {
5810
5957
  /** Deletes a deployment group. See https://google.aip.dev/135. */
5811
5958
  delete(request?: {
5812
5959
  /** V1 error format. */
5813
- '$.xgafv'?: string;
5960
+ '$.xgafv'?: '1' | '2';
5814
5961
  /** OAuth access token. */
5815
5962
  access_token?: string;
5816
5963
  /** Data format for response. */
5817
- alt?: string;
5964
+ alt?: 'json' | 'media' | 'proto';
5818
5965
  /** JSONP */
5819
5966
  callback?: string;
5820
5967
  /** Selector specifying which fields to include in a partial response. */
@@ -5839,11 +5986,11 @@ declare namespace gapi.client {
5839
5986
  /** Gets a specific deployment group. See https://google.aip.dev/131. */
5840
5987
  get(request?: {
5841
5988
  /** V1 error format. */
5842
- '$.xgafv'?: string;
5989
+ '$.xgafv'?: '1' | '2';
5843
5990
  /** OAuth access token. */
5844
5991
  access_token?: string;
5845
5992
  /** Data format for response. */
5846
- alt?: string;
5993
+ alt?: 'json' | 'media' | 'proto';
5847
5994
  /** JSONP */
5848
5995
  callback?: string;
5849
5996
  /** Selector specifying which fields to include in a partial response. */
@@ -5866,11 +6013,11 @@ declare namespace gapi.client {
5866
6013
  /** Lists deployment groups in a given project and location. See https://google.aip.dev/132. */
5867
6014
  list(request?: {
5868
6015
  /** V1 error format. */
5869
- '$.xgafv'?: string;
6016
+ '$.xgafv'?: '1' | '2';
5870
6017
  /** OAuth access token. */
5871
6018
  access_token?: string;
5872
6019
  /** Data format for response. */
5873
- alt?: string;
6020
+ alt?: 'json' | 'media' | 'proto';
5874
6021
  /** JSONP */
5875
6022
  callback?: string;
5876
6023
  /** Selector specifying which fields to include in a partial response. */
@@ -5901,11 +6048,11 @@ declare namespace gapi.client {
5901
6048
  /** Updates a deployment group. See https://google.aip.dev/134. */
5902
6049
  patch(request: {
5903
6050
  /** V1 error format. */
5904
- '$.xgafv'?: string;
6051
+ '$.xgafv'?: '1' | '2';
5905
6052
  /** OAuth access token. */
5906
6053
  access_token?: string;
5907
6054
  /** Data format for response. */
5908
- alt?: string;
6055
+ alt?: 'json' | 'media' | 'proto';
5909
6056
  /** JSONP */
5910
6057
  callback?: string;
5911
6058
  /** Selector specifying which fields to include in a partial response. */
@@ -5934,11 +6081,11 @@ declare namespace gapi.client {
5934
6081
  patch(
5935
6082
  request: {
5936
6083
  /** V1 error format. */
5937
- '$.xgafv'?: string;
6084
+ '$.xgafv'?: '1' | '2';
5938
6085
  /** OAuth access token. */
5939
6086
  access_token?: string;
5940
6087
  /** Data format for response. */
5941
- alt?: string;
6088
+ alt?: 'json' | 'media' | 'proto';
5942
6089
  /** JSONP */
5943
6090
  callback?: string;
5944
6091
  /** Selector specifying which fields to include in a partial response. */
@@ -5969,11 +6116,11 @@ declare namespace gapi.client {
5969
6116
  /** Creates a deployment in a given project and location. See https://google.aip.dev/133. */
5970
6117
  create(request: {
5971
6118
  /** V1 error format. */
5972
- '$.xgafv'?: string;
6119
+ '$.xgafv'?: '1' | '2';
5973
6120
  /** OAuth access token. */
5974
6121
  access_token?: string;
5975
6122
  /** Data format for response. */
5976
- alt?: string;
6123
+ alt?: 'json' | 'media' | 'proto';
5977
6124
  /** JSONP */
5978
6125
  callback?: string;
5979
6126
  /** Selector specifying which fields to include in a partial response. */
@@ -6002,11 +6149,11 @@ declare namespace gapi.client {
6002
6149
  create(
6003
6150
  request: {
6004
6151
  /** V1 error format. */
6005
- '$.xgafv'?: string;
6152
+ '$.xgafv'?: '1' | '2';
6006
6153
  /** OAuth access token. */
6007
6154
  access_token?: string;
6008
6155
  /** Data format for response. */
6009
- alt?: string;
6156
+ alt?: 'json' | 'media' | 'proto';
6010
6157
  /** JSONP */
6011
6158
  callback?: string;
6012
6159
  /** Selector specifying which fields to include in a partial response. */
@@ -6035,11 +6182,11 @@ declare namespace gapi.client {
6035
6182
  /** Deletes a deployment. See https://google.aip.dev/135. */
6036
6183
  delete(request?: {
6037
6184
  /** V1 error format. */
6038
- '$.xgafv'?: string;
6185
+ '$.xgafv'?: '1' | '2';
6039
6186
  /** OAuth access token. */
6040
6187
  access_token?: string;
6041
6188
  /** Data format for response. */
6042
- alt?: string;
6189
+ alt?: 'json' | 'media' | 'proto';
6043
6190
  /** JSONP */
6044
6191
  callback?: string;
6045
6192
  /** Selector specifying which fields to include in a partial response. */
@@ -6064,11 +6211,11 @@ declare namespace gapi.client {
6064
6211
  /** Gets a specific deployment. See https://google.aip.dev/131. */
6065
6212
  get(request?: {
6066
6213
  /** V1 error format. */
6067
- '$.xgafv'?: string;
6214
+ '$.xgafv'?: '1' | '2';
6068
6215
  /** OAuth access token. */
6069
6216
  access_token?: string;
6070
6217
  /** Data format for response. */
6071
- alt?: string;
6218
+ alt?: 'json' | 'media' | 'proto';
6072
6219
  /** JSONP */
6073
6220
  callback?: string;
6074
6221
  /** Selector specifying which fields to include in a partial response. */
@@ -6091,11 +6238,11 @@ declare namespace gapi.client {
6091
6238
  /** Lists deployments in a given project and location. See https://google.aip.dev/132. */
6092
6239
  list(request?: {
6093
6240
  /** V1 error format. */
6094
- '$.xgafv'?: string;
6241
+ '$.xgafv'?: '1' | '2';
6095
6242
  /** OAuth access token. */
6096
6243
  access_token?: string;
6097
6244
  /** Data format for response. */
6098
- alt?: string;
6245
+ alt?: 'json' | 'media' | 'proto';
6099
6246
  /** JSONP */
6100
6247
  callback?: string;
6101
6248
  /** Selector specifying which fields to include in a partial response. */
@@ -6126,11 +6273,11 @@ declare namespace gapi.client {
6126
6273
  /** Updates a deployment. See https://google.aip.dev/134. */
6127
6274
  patch(request: {
6128
6275
  /** V1 error format. */
6129
- '$.xgafv'?: string;
6276
+ '$.xgafv'?: '1' | '2';
6130
6277
  /** OAuth access token. */
6131
6278
  access_token?: string;
6132
6279
  /** Data format for response. */
6133
- alt?: string;
6280
+ alt?: 'json' | 'media' | 'proto';
6134
6281
  /** JSONP */
6135
6282
  callback?: string;
6136
6283
  /** Selector specifying which fields to include in a partial response. */
@@ -6159,11 +6306,11 @@ declare namespace gapi.client {
6159
6306
  patch(
6160
6307
  request: {
6161
6308
  /** V1 error format. */
6162
- '$.xgafv'?: string;
6309
+ '$.xgafv'?: '1' | '2';
6163
6310
  /** OAuth access token. */
6164
6311
  access_token?: string;
6165
6312
  /** Data format for response. */
6166
- alt?: string;
6313
+ alt?: 'json' | 'media' | 'proto';
6167
6314
  /** JSONP */
6168
6315
  callback?: string;
6169
6316
  /** Selector specifying which fields to include in a partial response. */
@@ -6194,11 +6341,11 @@ declare namespace gapi.client {
6194
6341
  /** Creates an association in a given project and location. See https://google.aip.dev/133. */
6195
6342
  create(request: {
6196
6343
  /** V1 error format. */
6197
- '$.xgafv'?: string;
6344
+ '$.xgafv'?: '1' | '2';
6198
6345
  /** OAuth access token. */
6199
6346
  access_token?: string;
6200
6347
  /** Data format for response. */
6201
- alt?: string;
6348
+ alt?: 'json' | 'media' | 'proto';
6202
6349
  /** JSONP */
6203
6350
  callback?: string;
6204
6351
  /** Selector specifying which fields to include in a partial response. */
@@ -6227,11 +6374,11 @@ declare namespace gapi.client {
6227
6374
  create(
6228
6375
  request: {
6229
6376
  /** V1 error format. */
6230
- '$.xgafv'?: string;
6377
+ '$.xgafv'?: '1' | '2';
6231
6378
  /** OAuth access token. */
6232
6379
  access_token?: string;
6233
6380
  /** Data format for response. */
6234
- alt?: string;
6381
+ alt?: 'json' | 'media' | 'proto';
6235
6382
  /** JSONP */
6236
6383
  callback?: string;
6237
6384
  /** Selector specifying which fields to include in a partial response. */
@@ -6260,11 +6407,11 @@ declare namespace gapi.client {
6260
6407
  /** Deletes an association. See https://google.aip.dev/135. */
6261
6408
  delete(request?: {
6262
6409
  /** V1 error format. */
6263
- '$.xgafv'?: string;
6410
+ '$.xgafv'?: '1' | '2';
6264
6411
  /** OAuth access token. */
6265
6412
  access_token?: string;
6266
6413
  /** Data format for response. */
6267
- alt?: string;
6414
+ alt?: 'json' | 'media' | 'proto';
6268
6415
  /** JSONP */
6269
6416
  callback?: string;
6270
6417
  /** Selector specifying which fields to include in a partial response. */
@@ -6289,11 +6436,11 @@ declare namespace gapi.client {
6289
6436
  /** Gets a specific association. See https://google.aip.dev/131. */
6290
6437
  get(request?: {
6291
6438
  /** V1 error format. */
6292
- '$.xgafv'?: string;
6439
+ '$.xgafv'?: '1' | '2';
6293
6440
  /** OAuth access token. */
6294
6441
  access_token?: string;
6295
6442
  /** Data format for response. */
6296
- alt?: string;
6443
+ alt?: 'json' | 'media' | 'proto';
6297
6444
  /** JSONP */
6298
6445
  callback?: string;
6299
6446
  /** Selector specifying which fields to include in a partial response. */
@@ -6316,11 +6463,11 @@ declare namespace gapi.client {
6316
6463
  /** Lists associations in a given project and location. See https://google.aip.dev/132. */
6317
6464
  list(request?: {
6318
6465
  /** V1 error format. */
6319
- '$.xgafv'?: string;
6466
+ '$.xgafv'?: '1' | '2';
6320
6467
  /** OAuth access token. */
6321
6468
  access_token?: string;
6322
6469
  /** Data format for response. */
6323
- alt?: string;
6470
+ alt?: 'json' | 'media' | 'proto';
6324
6471
  /** JSONP */
6325
6472
  callback?: string;
6326
6473
  /** Selector specifying which fields to include in a partial response. */
@@ -6351,11 +6498,11 @@ declare namespace gapi.client {
6351
6498
  /** Updates an association. See https://google.aip.dev/134. */
6352
6499
  patch(request: {
6353
6500
  /** V1 error format. */
6354
- '$.xgafv'?: string;
6501
+ '$.xgafv'?: '1' | '2';
6355
6502
  /** OAuth access token. */
6356
6503
  access_token?: string;
6357
6504
  /** Data format for response. */
6358
- alt?: string;
6505
+ alt?: 'json' | 'media' | 'proto';
6359
6506
  /** JSONP */
6360
6507
  callback?: string;
6361
6508
  /** Selector specifying which fields to include in a partial response. */
@@ -6384,11 +6531,11 @@ declare namespace gapi.client {
6384
6531
  patch(
6385
6532
  request: {
6386
6533
  /** V1 error format. */
6387
- '$.xgafv'?: string;
6534
+ '$.xgafv'?: '1' | '2';
6388
6535
  /** OAuth access token. */
6389
6536
  access_token?: string;
6390
6537
  /** Data format for response. */
6391
- alt?: string;
6538
+ alt?: 'json' | 'media' | 'proto';
6392
6539
  /** JSONP */
6393
6540
  callback?: string;
6394
6541
  /** Selector specifying which fields to include in a partial response. */
@@ -6419,11 +6566,11 @@ declare namespace gapi.client {
6419
6566
  /** Creates an endpoint group in a given project and location. See https://google.aip.dev/133. */
6420
6567
  create(request: {
6421
6568
  /** V1 error format. */
6422
- '$.xgafv'?: string;
6569
+ '$.xgafv'?: '1' | '2';
6423
6570
  /** OAuth access token. */
6424
6571
  access_token?: string;
6425
6572
  /** Data format for response. */
6426
- alt?: string;
6573
+ alt?: 'json' | 'media' | 'proto';
6427
6574
  /** JSONP */
6428
6575
  callback?: string;
6429
6576
  /** Selector specifying which fields to include in a partial response. */
@@ -6452,11 +6599,11 @@ declare namespace gapi.client {
6452
6599
  create(
6453
6600
  request: {
6454
6601
  /** V1 error format. */
6455
- '$.xgafv'?: string;
6602
+ '$.xgafv'?: '1' | '2';
6456
6603
  /** OAuth access token. */
6457
6604
  access_token?: string;
6458
6605
  /** Data format for response. */
6459
- alt?: string;
6606
+ alt?: 'json' | 'media' | 'proto';
6460
6607
  /** JSONP */
6461
6608
  callback?: string;
6462
6609
  /** Selector specifying which fields to include in a partial response. */
@@ -6485,11 +6632,11 @@ declare namespace gapi.client {
6485
6632
  /** Deletes an endpoint group. See https://google.aip.dev/135. */
6486
6633
  delete(request?: {
6487
6634
  /** V1 error format. */
6488
- '$.xgafv'?: string;
6635
+ '$.xgafv'?: '1' | '2';
6489
6636
  /** OAuth access token. */
6490
6637
  access_token?: string;
6491
6638
  /** Data format for response. */
6492
- alt?: string;
6639
+ alt?: 'json' | 'media' | 'proto';
6493
6640
  /** JSONP */
6494
6641
  callback?: string;
6495
6642
  /** Selector specifying which fields to include in a partial response. */
@@ -6514,11 +6661,11 @@ declare namespace gapi.client {
6514
6661
  /** Gets a specific endpoint group. See https://google.aip.dev/131. */
6515
6662
  get(request?: {
6516
6663
  /** V1 error format. */
6517
- '$.xgafv'?: string;
6664
+ '$.xgafv'?: '1' | '2';
6518
6665
  /** OAuth access token. */
6519
6666
  access_token?: string;
6520
6667
  /** Data format for response. */
6521
- alt?: string;
6668
+ alt?: 'json' | 'media' | 'proto';
6522
6669
  /** JSONP */
6523
6670
  callback?: string;
6524
6671
  /** Selector specifying which fields to include in a partial response. */
@@ -6541,11 +6688,11 @@ declare namespace gapi.client {
6541
6688
  /** Lists endpoint groups in a given project and location. See https://google.aip.dev/132. */
6542
6689
  list(request?: {
6543
6690
  /** V1 error format. */
6544
- '$.xgafv'?: string;
6691
+ '$.xgafv'?: '1' | '2';
6545
6692
  /** OAuth access token. */
6546
6693
  access_token?: string;
6547
6694
  /** Data format for response. */
6548
- alt?: string;
6695
+ alt?: 'json' | 'media' | 'proto';
6549
6696
  /** JSONP */
6550
6697
  callback?: string;
6551
6698
  /** Selector specifying which fields to include in a partial response. */
@@ -6576,11 +6723,11 @@ declare namespace gapi.client {
6576
6723
  /** Updates an endpoint group. See https://google.aip.dev/134. */
6577
6724
  patch(request: {
6578
6725
  /** V1 error format. */
6579
- '$.xgafv'?: string;
6726
+ '$.xgafv'?: '1' | '2';
6580
6727
  /** OAuth access token. */
6581
6728
  access_token?: string;
6582
6729
  /** Data format for response. */
6583
- alt?: string;
6730
+ alt?: 'json' | 'media' | 'proto';
6584
6731
  /** JSONP */
6585
6732
  callback?: string;
6586
6733
  /** Selector specifying which fields to include in a partial response. */
@@ -6609,11 +6756,11 @@ declare namespace gapi.client {
6609
6756
  patch(
6610
6757
  request: {
6611
6758
  /** V1 error format. */
6612
- '$.xgafv'?: string;
6759
+ '$.xgafv'?: '1' | '2';
6613
6760
  /** OAuth access token. */
6614
6761
  access_token?: string;
6615
6762
  /** Data format for response. */
6616
- alt?: string;
6763
+ alt?: 'json' | 'media' | 'proto';
6617
6764
  /** JSONP */
6618
6765
  callback?: string;
6619
6766
  /** Selector specifying which fields to include in a partial response. */
@@ -6644,11 +6791,11 @@ declare namespace gapi.client {
6644
6791
  /** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
6645
6792
  cancel(request: {
6646
6793
  /** V1 error format. */
6647
- '$.xgafv'?: string;
6794
+ '$.xgafv'?: '1' | '2';
6648
6795
  /** OAuth access token. */
6649
6796
  access_token?: string;
6650
6797
  /** Data format for response. */
6651
- alt?: string;
6798
+ alt?: 'json' | 'media' | 'proto';
6652
6799
  /** JSONP */
6653
6800
  callback?: string;
6654
6801
  /** Selector specifying which fields to include in a partial response. */
@@ -6673,11 +6820,11 @@ declare namespace gapi.client {
6673
6820
  cancel(
6674
6821
  request: {
6675
6822
  /** V1 error format. */
6676
- '$.xgafv'?: string;
6823
+ '$.xgafv'?: '1' | '2';
6677
6824
  /** OAuth access token. */
6678
6825
  access_token?: string;
6679
6826
  /** Data format for response. */
6680
- alt?: string;
6827
+ alt?: 'json' | 'media' | 'proto';
6681
6828
  /** JSONP */
6682
6829
  callback?: string;
6683
6830
  /** Selector specifying which fields to include in a partial response. */
@@ -6702,11 +6849,11 @@ declare namespace gapi.client {
6702
6849
  /** Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. */
6703
6850
  delete(request?: {
6704
6851
  /** V1 error format. */
6705
- '$.xgafv'?: string;
6852
+ '$.xgafv'?: '1' | '2';
6706
6853
  /** OAuth access token. */
6707
6854
  access_token?: string;
6708
6855
  /** Data format for response. */
6709
- alt?: string;
6856
+ alt?: 'json' | 'media' | 'proto';
6710
6857
  /** JSONP */
6711
6858
  callback?: string;
6712
6859
  /** Selector specifying which fields to include in a partial response. */
@@ -6729,11 +6876,11 @@ declare namespace gapi.client {
6729
6876
  /** Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service. */
6730
6877
  get(request?: {
6731
6878
  /** V1 error format. */
6732
- '$.xgafv'?: string;
6879
+ '$.xgafv'?: '1' | '2';
6733
6880
  /** OAuth access token. */
6734
6881
  access_token?: string;
6735
6882
  /** Data format for response. */
6736
- alt?: string;
6883
+ alt?: 'json' | 'media' | 'proto';
6737
6884
  /** JSONP */
6738
6885
  callback?: string;
6739
6886
  /** Selector specifying which fields to include in a partial response. */
@@ -6756,11 +6903,11 @@ declare namespace gapi.client {
6756
6903
  /** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
6757
6904
  list(request?: {
6758
6905
  /** V1 error format. */
6759
- '$.xgafv'?: string;
6906
+ '$.xgafv'?: '1' | '2';
6760
6907
  /** OAuth access token. */
6761
6908
  access_token?: string;
6762
6909
  /** Data format for response. */
6763
- alt?: string;
6910
+ alt?: 'json' | 'media' | 'proto';
6764
6911
  /** JSONP */
6765
6912
  callback?: string;
6766
6913
  /** Selector specifying which fields to include in a partial response. */
@@ -6793,11 +6940,11 @@ declare namespace gapi.client {
6793
6940
  /** Creates a new ServerTlsPolicy in a given project and location. */
6794
6941
  create(request: {
6795
6942
  /** V1 error format. */
6796
- '$.xgafv'?: string;
6943
+ '$.xgafv'?: '1' | '2';
6797
6944
  /** OAuth access token. */
6798
6945
  access_token?: string;
6799
6946
  /** Data format for response. */
6800
- alt?: string;
6947
+ alt?: 'json' | 'media' | 'proto';
6801
6948
  /** JSONP */
6802
6949
  callback?: string;
6803
6950
  /** Selector specifying which fields to include in a partial response. */
@@ -6824,11 +6971,11 @@ declare namespace gapi.client {
6824
6971
  create(
6825
6972
  request: {
6826
6973
  /** V1 error format. */
6827
- '$.xgafv'?: string;
6974
+ '$.xgafv'?: '1' | '2';
6828
6975
  /** OAuth access token. */
6829
6976
  access_token?: string;
6830
6977
  /** Data format for response. */
6831
- alt?: string;
6978
+ alt?: 'json' | 'media' | 'proto';
6832
6979
  /** JSONP */
6833
6980
  callback?: string;
6834
6981
  /** Selector specifying which fields to include in a partial response. */
@@ -6855,11 +7002,11 @@ declare namespace gapi.client {
6855
7002
  /** Deletes a single ServerTlsPolicy. */
6856
7003
  delete(request?: {
6857
7004
  /** V1 error format. */
6858
- '$.xgafv'?: string;
7005
+ '$.xgafv'?: '1' | '2';
6859
7006
  /** OAuth access token. */
6860
7007
  access_token?: string;
6861
7008
  /** Data format for response. */
6862
- alt?: string;
7009
+ alt?: 'json' | 'media' | 'proto';
6863
7010
  /** JSONP */
6864
7011
  callback?: string;
6865
7012
  /** Selector specifying which fields to include in a partial response. */
@@ -6882,11 +7029,11 @@ declare namespace gapi.client {
6882
7029
  /** Gets details of a single ServerTlsPolicy. */
6883
7030
  get(request?: {
6884
7031
  /** V1 error format. */
6885
- '$.xgafv'?: string;
7032
+ '$.xgafv'?: '1' | '2';
6886
7033
  /** OAuth access token. */
6887
7034
  access_token?: string;
6888
7035
  /** Data format for response. */
6889
- alt?: string;
7036
+ alt?: 'json' | 'media' | 'proto';
6890
7037
  /** JSONP */
6891
7038
  callback?: string;
6892
7039
  /** Selector specifying which fields to include in a partial response. */
@@ -6909,11 +7056,11 @@ declare namespace gapi.client {
6909
7056
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
6910
7057
  getIamPolicy(request?: {
6911
7058
  /** V1 error format. */
6912
- '$.xgafv'?: string;
7059
+ '$.xgafv'?: '1' | '2';
6913
7060
  /** OAuth access token. */
6914
7061
  access_token?: string;
6915
7062
  /** Data format for response. */
6916
- alt?: string;
7063
+ alt?: 'json' | 'media' | 'proto';
6917
7064
  /** JSONP */
6918
7065
  callback?: string;
6919
7066
  /** Selector specifying which fields to include in a partial response. */
@@ -6938,11 +7085,11 @@ declare namespace gapi.client {
6938
7085
  /** Lists ServerTlsPolicies in a given project and location. */
6939
7086
  list(request?: {
6940
7087
  /** V1 error format. */
6941
- '$.xgafv'?: string;
7088
+ '$.xgafv'?: '1' | '2';
6942
7089
  /** OAuth access token. */
6943
7090
  access_token?: string;
6944
7091
  /** Data format for response. */
6945
- alt?: string;
7092
+ alt?: 'json' | 'media' | 'proto';
6946
7093
  /** JSONP */
6947
7094
  callback?: string;
6948
7095
  /** Selector specifying which fields to include in a partial response. */
@@ -6971,11 +7118,11 @@ declare namespace gapi.client {
6971
7118
  /** Updates the parameters of a single ServerTlsPolicy. */
6972
7119
  patch(request: {
6973
7120
  /** V1 error format. */
6974
- '$.xgafv'?: string;
7121
+ '$.xgafv'?: '1' | '2';
6975
7122
  /** OAuth access token. */
6976
7123
  access_token?: string;
6977
7124
  /** Data format for response. */
6978
- alt?: string;
7125
+ alt?: 'json' | 'media' | 'proto';
6979
7126
  /** JSONP */
6980
7127
  callback?: string;
6981
7128
  /** Selector specifying which fields to include in a partial response. */
@@ -7002,11 +7149,11 @@ declare namespace gapi.client {
7002
7149
  patch(
7003
7150
  request: {
7004
7151
  /** V1 error format. */
7005
- '$.xgafv'?: string;
7152
+ '$.xgafv'?: '1' | '2';
7006
7153
  /** OAuth access token. */
7007
7154
  access_token?: string;
7008
7155
  /** Data format for response. */
7009
- alt?: string;
7156
+ alt?: 'json' | 'media' | 'proto';
7010
7157
  /** JSONP */
7011
7158
  callback?: string;
7012
7159
  /** Selector specifying which fields to include in a partial response. */
@@ -7034,11 +7181,11 @@ declare namespace gapi.client {
7034
7181
  setIamPolicy(
7035
7182
  request: {
7036
7183
  /** V1 error format. */
7037
- '$.xgafv'?: string;
7184
+ '$.xgafv'?: '1' | '2';
7038
7185
  /** OAuth access token. */
7039
7186
  access_token?: string;
7040
7187
  /** Data format for response. */
7041
- alt?: string;
7188
+ alt?: 'json' | 'media' | 'proto';
7042
7189
  /** JSONP */
7043
7190
  callback?: string;
7044
7191
  /** Selector specifying which fields to include in a partial response. */
@@ -7064,11 +7211,11 @@ declare namespace gapi.client {
7064
7211
  testIamPermissions(
7065
7212
  request: {
7066
7213
  /** V1 error format. */
7067
- '$.xgafv'?: string;
7214
+ '$.xgafv'?: '1' | '2';
7068
7215
  /** OAuth access token. */
7069
7216
  access_token?: string;
7070
7217
  /** Data format for response. */
7071
- alt?: string;
7218
+ alt?: 'json' | 'media' | 'proto';
7072
7219
  /** JSONP */
7073
7220
  callback?: string;
7074
7221
  /** Selector specifying which fields to include in a partial response. */
@@ -7095,11 +7242,11 @@ declare namespace gapi.client {
7095
7242
  /** Creates a new TlsInspectionPolicy in a given project and location. */
7096
7243
  create(request: {
7097
7244
  /** V1 error format. */
7098
- '$.xgafv'?: string;
7245
+ '$.xgafv'?: '1' | '2';
7099
7246
  /** OAuth access token. */
7100
7247
  access_token?: string;
7101
7248
  /** Data format for response. */
7102
- alt?: string;
7249
+ alt?: 'json' | 'media' | 'proto';
7103
7250
  /** JSONP */
7104
7251
  callback?: string;
7105
7252
  /** Selector specifying which fields to include in a partial response. */
@@ -7126,11 +7273,11 @@ declare namespace gapi.client {
7126
7273
  create(
7127
7274
  request: {
7128
7275
  /** V1 error format. */
7129
- '$.xgafv'?: string;
7276
+ '$.xgafv'?: '1' | '2';
7130
7277
  /** OAuth access token. */
7131
7278
  access_token?: string;
7132
7279
  /** Data format for response. */
7133
- alt?: string;
7280
+ alt?: 'json' | 'media' | 'proto';
7134
7281
  /** JSONP */
7135
7282
  callback?: string;
7136
7283
  /** Selector specifying which fields to include in a partial response. */
@@ -7157,11 +7304,11 @@ declare namespace gapi.client {
7157
7304
  /** Deletes a single TlsInspectionPolicy. */
7158
7305
  delete(request?: {
7159
7306
  /** V1 error format. */
7160
- '$.xgafv'?: string;
7307
+ '$.xgafv'?: '1' | '2';
7161
7308
  /** OAuth access token. */
7162
7309
  access_token?: string;
7163
7310
  /** Data format for response. */
7164
- alt?: string;
7311
+ alt?: 'json' | 'media' | 'proto';
7165
7312
  /** JSONP */
7166
7313
  callback?: string;
7167
7314
  /** Selector specifying which fields to include in a partial response. */
@@ -7186,11 +7333,11 @@ declare namespace gapi.client {
7186
7333
  /** Gets details of a single TlsInspectionPolicy. */
7187
7334
  get(request?: {
7188
7335
  /** V1 error format. */
7189
- '$.xgafv'?: string;
7336
+ '$.xgafv'?: '1' | '2';
7190
7337
  /** OAuth access token. */
7191
7338
  access_token?: string;
7192
7339
  /** Data format for response. */
7193
- alt?: string;
7340
+ alt?: 'json' | 'media' | 'proto';
7194
7341
  /** JSONP */
7195
7342
  callback?: string;
7196
7343
  /** Selector specifying which fields to include in a partial response. */
@@ -7213,11 +7360,11 @@ declare namespace gapi.client {
7213
7360
  /** Lists TlsInspectionPolicies in a given project and location. */
7214
7361
  list(request?: {
7215
7362
  /** V1 error format. */
7216
- '$.xgafv'?: string;
7363
+ '$.xgafv'?: '1' | '2';
7217
7364
  /** OAuth access token. */
7218
7365
  access_token?: string;
7219
7366
  /** Data format for response. */
7220
- alt?: string;
7367
+ alt?: 'json' | 'media' | 'proto';
7221
7368
  /** JSONP */
7222
7369
  callback?: string;
7223
7370
  /** Selector specifying which fields to include in a partial response. */
@@ -7244,11 +7391,11 @@ declare namespace gapi.client {
7244
7391
  /** Updates the parameters of a single TlsInspectionPolicy. */
7245
7392
  patch(request: {
7246
7393
  /** V1 error format. */
7247
- '$.xgafv'?: string;
7394
+ '$.xgafv'?: '1' | '2';
7248
7395
  /** OAuth access token. */
7249
7396
  access_token?: string;
7250
7397
  /** Data format for response. */
7251
- alt?: string;
7398
+ alt?: 'json' | 'media' | 'proto';
7252
7399
  /** JSONP */
7253
7400
  callback?: string;
7254
7401
  /** Selector specifying which fields to include in a partial response. */
@@ -7275,11 +7422,11 @@ declare namespace gapi.client {
7275
7422
  patch(
7276
7423
  request: {
7277
7424
  /** V1 error format. */
7278
- '$.xgafv'?: string;
7425
+ '$.xgafv'?: '1' | '2';
7279
7426
  /** OAuth access token. */
7280
7427
  access_token?: string;
7281
7428
  /** Data format for response. */
7282
- alt?: string;
7429
+ alt?: 'json' | 'media' | 'proto';
7283
7430
  /** JSONP */
7284
7431
  callback?: string;
7285
7432
  /** Selector specifying which fields to include in a partial response. */
@@ -7308,11 +7455,11 @@ declare namespace gapi.client {
7308
7455
  /** Creates a new UrlList in a given project and location. */
7309
7456
  create(request: {
7310
7457
  /** V1 error format. */
7311
- '$.xgafv'?: string;
7458
+ '$.xgafv'?: '1' | '2';
7312
7459
  /** OAuth access token. */
7313
7460
  access_token?: string;
7314
7461
  /** Data format for response. */
7315
- alt?: string;
7462
+ alt?: 'json' | 'media' | 'proto';
7316
7463
  /** JSONP */
7317
7464
  callback?: string;
7318
7465
  /** Selector specifying which fields to include in a partial response. */
@@ -7339,11 +7486,11 @@ declare namespace gapi.client {
7339
7486
  create(
7340
7487
  request: {
7341
7488
  /** V1 error format. */
7342
- '$.xgafv'?: string;
7489
+ '$.xgafv'?: '1' | '2';
7343
7490
  /** OAuth access token. */
7344
7491
  access_token?: string;
7345
7492
  /** Data format for response. */
7346
- alt?: string;
7493
+ alt?: 'json' | 'media' | 'proto';
7347
7494
  /** JSONP */
7348
7495
  callback?: string;
7349
7496
  /** Selector specifying which fields to include in a partial response. */
@@ -7370,11 +7517,11 @@ declare namespace gapi.client {
7370
7517
  /** Deletes a single UrlList. */
7371
7518
  delete(request?: {
7372
7519
  /** V1 error format. */
7373
- '$.xgafv'?: string;
7520
+ '$.xgafv'?: '1' | '2';
7374
7521
  /** OAuth access token. */
7375
7522
  access_token?: string;
7376
7523
  /** Data format for response. */
7377
- alt?: string;
7524
+ alt?: 'json' | 'media' | 'proto';
7378
7525
  /** JSONP */
7379
7526
  callback?: string;
7380
7527
  /** Selector specifying which fields to include in a partial response. */
@@ -7397,11 +7544,11 @@ declare namespace gapi.client {
7397
7544
  /** Gets details of a single UrlList. */
7398
7545
  get(request?: {
7399
7546
  /** V1 error format. */
7400
- '$.xgafv'?: string;
7547
+ '$.xgafv'?: '1' | '2';
7401
7548
  /** OAuth access token. */
7402
7549
  access_token?: string;
7403
7550
  /** Data format for response. */
7404
- alt?: string;
7551
+ alt?: 'json' | 'media' | 'proto';
7405
7552
  /** JSONP */
7406
7553
  callback?: string;
7407
7554
  /** Selector specifying which fields to include in a partial response. */
@@ -7424,11 +7571,11 @@ declare namespace gapi.client {
7424
7571
  /** Lists UrlLists in a given project and location. */
7425
7572
  list(request?: {
7426
7573
  /** V1 error format. */
7427
- '$.xgafv'?: string;
7574
+ '$.xgafv'?: '1' | '2';
7428
7575
  /** OAuth access token. */
7429
7576
  access_token?: string;
7430
7577
  /** Data format for response. */
7431
- alt?: string;
7578
+ alt?: 'json' | 'media' | 'proto';
7432
7579
  /** JSONP */
7433
7580
  callback?: string;
7434
7581
  /** Selector specifying which fields to include in a partial response. */
@@ -7455,11 +7602,11 @@ declare namespace gapi.client {
7455
7602
  /** Updates the parameters of a single UrlList. */
7456
7603
  patch(request: {
7457
7604
  /** V1 error format. */
7458
- '$.xgafv'?: string;
7605
+ '$.xgafv'?: '1' | '2';
7459
7606
  /** OAuth access token. */
7460
7607
  access_token?: string;
7461
7608
  /** Data format for response. */
7462
- alt?: string;
7609
+ alt?: 'json' | 'media' | 'proto';
7463
7610
  /** JSONP */
7464
7611
  callback?: string;
7465
7612
  /** Selector specifying which fields to include in a partial response. */
@@ -7486,11 +7633,11 @@ declare namespace gapi.client {
7486
7633
  patch(
7487
7634
  request: {
7488
7635
  /** V1 error format. */
7489
- '$.xgafv'?: string;
7636
+ '$.xgafv'?: '1' | '2';
7490
7637
  /** OAuth access token. */
7491
7638
  access_token?: string;
7492
7639
  /** Data format for response. */
7493
- alt?: string;
7640
+ alt?: 'json' | 'media' | 'proto';
7494
7641
  /** JSONP */
7495
7642
  callback?: string;
7496
7643
  /** Selector specifying which fields to include in a partial response. */
@@ -7519,11 +7666,11 @@ declare namespace gapi.client {
7519
7666
  /** Gets information about a location. */
7520
7667
  get(request?: {
7521
7668
  /** V1 error format. */
7522
- '$.xgafv'?: string;
7669
+ '$.xgafv'?: '1' | '2';
7523
7670
  /** OAuth access token. */
7524
7671
  access_token?: string;
7525
7672
  /** Data format for response. */
7526
- alt?: string;
7673
+ alt?: 'json' | 'media' | 'proto';
7527
7674
  /** JSONP */
7528
7675
  callback?: string;
7529
7676
  /** Selector specifying which fields to include in a partial response. */
@@ -7546,11 +7693,11 @@ declare namespace gapi.client {
7546
7693
  /** Lists information about the supported locations for this service. This method can be called in two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include public locations as well as private or other locations specifically visible to the project. */
7547
7694
  list(request?: {
7548
7695
  /** V1 error format. */
7549
- '$.xgafv'?: string;
7696
+ '$.xgafv'?: '1' | '2';
7550
7697
  /** OAuth access token. */
7551
7698
  access_token?: string;
7552
7699
  /** Data format for response. */
7553
- alt?: string;
7700
+ alt?: 'json' | 'media' | 'proto';
7554
7701
  /** JSONP */
7555
7702
  callback?: string;
7556
7703
  /** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented otherwise. This is primarily for internal usage. */