@maxim_mazurok/gapi.client.dns-v1beta2 0.1.20260310 → 0.2.20260310
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +146 -128
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -37,7 +37,7 @@ declare namespace gapi.client {
|
|
|
37
37
|
/** The time that this operation was started by the server (output only). This is in RFC3339 text format. */
|
|
38
38
|
startTime?: string;
|
|
39
39
|
/** Status of the operation (output only). A status of "done" means that the request to update the authoritative servers has been sent, but the servers might not be updated yet. */
|
|
40
|
-
status?:
|
|
40
|
+
status?: 'pending' | 'done';
|
|
41
41
|
}
|
|
42
42
|
interface ChangesListResponse {
|
|
43
43
|
/** The requested changes. */
|
|
@@ -49,7 +49,12 @@ declare namespace gapi.client {
|
|
|
49
49
|
}
|
|
50
50
|
interface DnsKey {
|
|
51
51
|
/** String mnemonic specifying the DNSSEC algorithm of this key. Immutable after creation time. */
|
|
52
|
-
algorithm?:
|
|
52
|
+
algorithm?:
|
|
53
|
+
| 'rsasha1'
|
|
54
|
+
| 'rsasha256'
|
|
55
|
+
| 'rsasha512'
|
|
56
|
+
| 'ecdsap256sha256'
|
|
57
|
+
| 'ecdsap384sha384';
|
|
53
58
|
/** The time that this resource was created in the control plane. This is in RFC3339 text format. Output only. */
|
|
54
59
|
creationTime?: string;
|
|
55
60
|
/** A mutable string of at most 1024 characters associated with this resource for the user's convenience. Has no effect on the resource's function. */
|
|
@@ -68,13 +73,13 @@ declare namespace gapi.client {
|
|
|
68
73
|
/** Base64 encoded public half of this key. Output only. */
|
|
69
74
|
publicKey?: string;
|
|
70
75
|
/** One of "KEY_SIGNING" or "ZONE_SIGNING". Keys of type KEY_SIGNING have the Secure Entry Point flag set and, when active, are used to sign only resource record sets of type DNSKEY. Otherwise, the Secure Entry Point flag is cleared, and this key is used to sign only resource record sets of other types. Immutable after creation time. */
|
|
71
|
-
type?:
|
|
76
|
+
type?: 'keySigning' | 'zoneSigning';
|
|
72
77
|
}
|
|
73
78
|
interface DnsKeyDigest {
|
|
74
79
|
/** The base-16 encoded bytes of this digest. Suitable for use in a DS resource record. */
|
|
75
80
|
digest?: string;
|
|
76
81
|
/** Specifies the algorithm used to calculate this digest. */
|
|
77
|
-
type?:
|
|
82
|
+
type?: 'sha1' | 'sha256' | 'sha384';
|
|
78
83
|
}
|
|
79
84
|
interface DnsKeysListResponse {
|
|
80
85
|
/** The requested resources. */
|
|
@@ -86,11 +91,16 @@ declare namespace gapi.client {
|
|
|
86
91
|
}
|
|
87
92
|
interface DnsKeySpec {
|
|
88
93
|
/** String mnemonic specifying the DNSSEC algorithm of this key. */
|
|
89
|
-
algorithm?:
|
|
94
|
+
algorithm?:
|
|
95
|
+
| 'rsasha1'
|
|
96
|
+
| 'rsasha256'
|
|
97
|
+
| 'rsasha512'
|
|
98
|
+
| 'ecdsap256sha256'
|
|
99
|
+
| 'ecdsap384sha384';
|
|
90
100
|
/** Length of the keys in bits. */
|
|
91
101
|
keyLength?: number;
|
|
92
102
|
/** Specifies whether this is a key signing key (KSK) or a zone signing key (ZSK). Key signing keys have the Secure Entry Point flag set and, when active, are only used to sign resource record sets of type DNSKEY. Zone signing keys do not have the Secure Entry Point flag set and are used to sign all other types of resource record sets. */
|
|
93
|
-
keyType?:
|
|
103
|
+
keyType?: 'keySigning' | 'zoneSigning';
|
|
94
104
|
kind?: string;
|
|
95
105
|
}
|
|
96
106
|
interface Expr {
|
|
@@ -113,7 +123,11 @@ declare namespace gapi.client {
|
|
|
113
123
|
/** Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members. */
|
|
114
124
|
exemptedMembers?: string[];
|
|
115
125
|
/** The log type that this config enables. */
|
|
116
|
-
logType?:
|
|
126
|
+
logType?:
|
|
127
|
+
| 'LOG_TYPE_UNSPECIFIED'
|
|
128
|
+
| 'ADMIN_READ'
|
|
129
|
+
| 'DATA_WRITE'
|
|
130
|
+
| 'DATA_READ';
|
|
117
131
|
}
|
|
118
132
|
interface GoogleIamV1Binding {
|
|
119
133
|
/** 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). */
|
|
@@ -187,7 +201,7 @@ declare namespace gapi.client {
|
|
|
187
201
|
/** This field links to the associated service directory namespace. Do not set this field for public zones or forwarding zones. */
|
|
188
202
|
serviceDirectoryConfig?: ManagedZoneServiceDirectoryConfig;
|
|
189
203
|
/** The zone's visibility: public zones are exposed to the Internet, while private zones are visible only to Virtual Private Cloud resources. */
|
|
190
|
-
visibility?:
|
|
204
|
+
visibility?: 'public' | 'private';
|
|
191
205
|
}
|
|
192
206
|
interface ManagedZoneCloudLoggingConfig {
|
|
193
207
|
/** If set, enable query logging for this ManagedZone. False by default, making logging opt-in. */
|
|
@@ -199,9 +213,9 @@ declare namespace gapi.client {
|
|
|
199
213
|
defaultKeySpecs?: DnsKeySpec[];
|
|
200
214
|
kind?: string;
|
|
201
215
|
/** Specifies the mechanism for authenticated denial-of-existence responses. Can only be changed while the state is OFF. */
|
|
202
|
-
nonExistence?:
|
|
216
|
+
nonExistence?: 'nsec' | 'nsec3';
|
|
203
217
|
/** Specifies whether DNSSEC is enabled, and what mode it is in. */
|
|
204
|
-
state?:
|
|
218
|
+
state?: 'off' | 'on' | 'transfer';
|
|
205
219
|
}
|
|
206
220
|
interface ManagedZoneForwardingConfig {
|
|
207
221
|
kind?: string;
|
|
@@ -212,7 +226,7 @@ declare namespace gapi.client {
|
|
|
212
226
|
/** Fully qualified domain name for the forwarding target. */
|
|
213
227
|
domainName?: string;
|
|
214
228
|
/** Forwarding path for this NameServerTarget. If unset or set to DEFAULT, Cloud DNS makes forwarding decisions based on IP address ranges; that is, RFC1918 addresses go to the VPC network, non-RFC1918 addresses go to the internet. When set to PRIVATE, Cloud DNS always sends queries through the VPC network for this target. */
|
|
215
|
-
forwardingPath?:
|
|
229
|
+
forwardingPath?: 'default' | 'private';
|
|
216
230
|
/** IPv4 address of a target name server. */
|
|
217
231
|
ipv4Address?: string;
|
|
218
232
|
/** IPv6 address of a target name server. Does not accept both fields (ipv4 & ipv6) being populated. Public preview as of November 2022. */
|
|
@@ -288,7 +302,7 @@ declare namespace gapi.client {
|
|
|
288
302
|
/** The time that this operation was started by the server. This is in RFC3339 text format (output only). */
|
|
289
303
|
startTime?: string;
|
|
290
304
|
/** Status of the operation. Can be one of the following: "PENDING" or "DONE" (output only). A status of "DONE" means that the request to update the authoritative servers has been sent, but the servers might not be updated yet. */
|
|
291
|
-
status?:
|
|
305
|
+
status?: 'pending' | 'done';
|
|
292
306
|
/** Type of the operation. Operations include insert, update, and delete (output only). */
|
|
293
307
|
type?: string;
|
|
294
308
|
/** User who requested the operation, for example: user@example.com. cloud-dns-system for operations automatically done by the system. (output only) */
|
|
@@ -348,7 +362,7 @@ declare namespace gapi.client {
|
|
|
348
362
|
}
|
|
349
363
|
interface PolicyAlternativeNameServerConfigTargetNameServer {
|
|
350
364
|
/** Forwarding path for this TargetNameServer. If unset or set to DEFAULT, Cloud DNS makes forwarding decisions based on address ranges; that is, RFC1918 addresses go to the VPC network, non-RFC1918 addresses go to the internet. When set to PRIVATE, Cloud DNS always sends queries through the VPC network for this target. */
|
|
351
|
-
forwardingPath?:
|
|
365
|
+
forwardingPath?: 'default' | 'private';
|
|
352
366
|
/** IPv4 address to forward queries to. */
|
|
353
367
|
ipv4Address?: string;
|
|
354
368
|
/** IPv6 address to forward to. Does not accept both fields (ipv4 & ipv6) being populated. Public preview as of November 2022. */
|
|
@@ -493,7 +507,7 @@ declare namespace gapi.client {
|
|
|
493
507
|
}
|
|
494
508
|
interface ResponsePolicyRule {
|
|
495
509
|
/** Answer this query with a behavior rather than DNS data. */
|
|
496
|
-
behavior?:
|
|
510
|
+
behavior?: 'behaviorUnspecified' | 'bypassResponsePolicy';
|
|
497
511
|
/** The DNS name (wildcard or exact) to apply this rule to. Must be unique within the Response Policy Rule. */
|
|
498
512
|
dnsName?: string;
|
|
499
513
|
kind?: string;
|
|
@@ -555,10 +569,14 @@ declare namespace gapi.client {
|
|
|
555
569
|
/** The frontend IP address of the load balancer to health check. */
|
|
556
570
|
ipAddress?: string;
|
|
557
571
|
/** The protocol of the load balancer to health check. */
|
|
558
|
-
ipProtocol?:
|
|
572
|
+
ipProtocol?: 'undefined' | 'tcp' | 'udp';
|
|
559
573
|
kind?: string;
|
|
560
574
|
/** The type of load balancer specified by this target. This value must match the configuration of the load balancer located at the LoadBalancerTarget's IP address, port, and region. Use the following: - *regionalL4ilb*: for a regional internal passthrough Network Load Balancer. - *regionalL7ilb*: for a regional internal Application Load Balancer. - *globalL7ilb*: for a global internal Application Load Balancer. */
|
|
561
|
-
loadBalancerType?:
|
|
575
|
+
loadBalancerType?:
|
|
576
|
+
| 'none'
|
|
577
|
+
| 'globalL7ilb'
|
|
578
|
+
| 'regionalL4ilb'
|
|
579
|
+
| 'regionalL7ilb';
|
|
562
580
|
/** The fully qualified URL of the network that the load balancer is attached to. This should be formatted like `https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}`. */
|
|
563
581
|
networkUrl?: string;
|
|
564
582
|
/** The configured port of the load balancer. */
|
|
@@ -595,11 +613,11 @@ declare namespace gapi.client {
|
|
|
595
613
|
/** Atomically updates the ResourceRecordSet collection. */
|
|
596
614
|
create(request: {
|
|
597
615
|
/** V1 error format. */
|
|
598
|
-
'$.xgafv'?:
|
|
616
|
+
'$.xgafv'?: '1' | '2';
|
|
599
617
|
/** OAuth access token. */
|
|
600
618
|
access_token?: string;
|
|
601
619
|
/** Data format for response. */
|
|
602
|
-
alt?:
|
|
620
|
+
alt?: 'json' | 'media' | 'proto';
|
|
603
621
|
/** JSONP */
|
|
604
622
|
callback?: string;
|
|
605
623
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -628,11 +646,11 @@ declare namespace gapi.client {
|
|
|
628
646
|
create(
|
|
629
647
|
request: {
|
|
630
648
|
/** V1 error format. */
|
|
631
|
-
'$.xgafv'?:
|
|
649
|
+
'$.xgafv'?: '1' | '2';
|
|
632
650
|
/** OAuth access token. */
|
|
633
651
|
access_token?: string;
|
|
634
652
|
/** Data format for response. */
|
|
635
|
-
alt?:
|
|
653
|
+
alt?: 'json' | 'media' | 'proto';
|
|
636
654
|
/** JSONP */
|
|
637
655
|
callback?: string;
|
|
638
656
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -661,11 +679,11 @@ declare namespace gapi.client {
|
|
|
661
679
|
/** Fetches the representation of an existing Change. */
|
|
662
680
|
get(request?: {
|
|
663
681
|
/** V1 error format. */
|
|
664
|
-
'$.xgafv'?:
|
|
682
|
+
'$.xgafv'?: '1' | '2';
|
|
665
683
|
/** OAuth access token. */
|
|
666
684
|
access_token?: string;
|
|
667
685
|
/** Data format for response. */
|
|
668
|
-
alt?:
|
|
686
|
+
alt?: 'json' | 'media' | 'proto';
|
|
669
687
|
/** JSONP */
|
|
670
688
|
callback?: string;
|
|
671
689
|
/** The identifier of the requested change, from a previous ResourceRecordSetsChangeResponse. */
|
|
@@ -694,11 +712,11 @@ declare namespace gapi.client {
|
|
|
694
712
|
/** Enumerates Changes to a ResourceRecordSet collection. */
|
|
695
713
|
list(request?: {
|
|
696
714
|
/** V1 error format. */
|
|
697
|
-
'$.xgafv'?:
|
|
715
|
+
'$.xgafv'?: '1' | '2';
|
|
698
716
|
/** OAuth access token. */
|
|
699
717
|
access_token?: string;
|
|
700
718
|
/** Data format for response. */
|
|
701
|
-
alt?:
|
|
719
|
+
alt?: 'json' | 'media' | 'proto';
|
|
702
720
|
/** JSONP */
|
|
703
721
|
callback?: string;
|
|
704
722
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -720,7 +738,7 @@ declare namespace gapi.client {
|
|
|
720
738
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
721
739
|
quotaUser?: string;
|
|
722
740
|
/** Sorting criterion. The only supported value is change sequence. */
|
|
723
|
-
sortBy?:
|
|
741
|
+
sortBy?: 'changeSequence';
|
|
724
742
|
/** Sorting order direction: 'ascending' or 'descending'. */
|
|
725
743
|
sortOrder?: string;
|
|
726
744
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
@@ -733,11 +751,11 @@ declare namespace gapi.client {
|
|
|
733
751
|
/** Fetches the representation of an existing DnsKey. */
|
|
734
752
|
get(request?: {
|
|
735
753
|
/** V1 error format. */
|
|
736
|
-
'$.xgafv'?:
|
|
754
|
+
'$.xgafv'?: '1' | '2';
|
|
737
755
|
/** OAuth access token. */
|
|
738
756
|
access_token?: string;
|
|
739
757
|
/** Data format for response. */
|
|
740
|
-
alt?:
|
|
758
|
+
alt?: 'json' | 'media' | 'proto';
|
|
741
759
|
/** JSONP */
|
|
742
760
|
callback?: string;
|
|
743
761
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -768,11 +786,11 @@ declare namespace gapi.client {
|
|
|
768
786
|
/** Enumerates DnsKeys to a ResourceRecordSet collection. */
|
|
769
787
|
list(request?: {
|
|
770
788
|
/** V1 error format. */
|
|
771
|
-
'$.xgafv'?:
|
|
789
|
+
'$.xgafv'?: '1' | '2';
|
|
772
790
|
/** OAuth access token. */
|
|
773
791
|
access_token?: string;
|
|
774
792
|
/** Data format for response. */
|
|
775
|
-
alt?:
|
|
793
|
+
alt?: 'json' | 'media' | 'proto';
|
|
776
794
|
/** JSONP */
|
|
777
795
|
callback?: string;
|
|
778
796
|
/** An optional comma-separated list of digest types to compute and display for key signing keys. If omitted, the recommended digest type is computed and displayed. */
|
|
@@ -805,11 +823,11 @@ declare namespace gapi.client {
|
|
|
805
823
|
/** Fetches the representation of an existing Operation. */
|
|
806
824
|
get(request?: {
|
|
807
825
|
/** V1 error format. */
|
|
808
|
-
'$.xgafv'?:
|
|
826
|
+
'$.xgafv'?: '1' | '2';
|
|
809
827
|
/** OAuth access token. */
|
|
810
828
|
access_token?: string;
|
|
811
829
|
/** Data format for response. */
|
|
812
|
-
alt?:
|
|
830
|
+
alt?: 'json' | 'media' | 'proto';
|
|
813
831
|
/** JSONP */
|
|
814
832
|
callback?: string;
|
|
815
833
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -838,11 +856,11 @@ declare namespace gapi.client {
|
|
|
838
856
|
/** Enumerates Operations for the given ManagedZone. */
|
|
839
857
|
list(request?: {
|
|
840
858
|
/** V1 error format. */
|
|
841
|
-
'$.xgafv'?:
|
|
859
|
+
'$.xgafv'?: '1' | '2';
|
|
842
860
|
/** OAuth access token. */
|
|
843
861
|
access_token?: string;
|
|
844
862
|
/** Data format for response. */
|
|
845
|
-
alt?:
|
|
863
|
+
alt?: 'json' | 'media' | 'proto';
|
|
846
864
|
/** JSONP */
|
|
847
865
|
callback?: string;
|
|
848
866
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -864,7 +882,7 @@ declare namespace gapi.client {
|
|
|
864
882
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
865
883
|
quotaUser?: string;
|
|
866
884
|
/** Sorting criterion. The only supported values are START_TIME and ID. */
|
|
867
|
-
sortBy?:
|
|
885
|
+
sortBy?: 'startTime' | 'id';
|
|
868
886
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
869
887
|
upload_protocol?: string;
|
|
870
888
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -875,11 +893,11 @@ declare namespace gapi.client {
|
|
|
875
893
|
/** Creates a new ManagedZone. */
|
|
876
894
|
create(request: {
|
|
877
895
|
/** V1 error format. */
|
|
878
|
-
'$.xgafv'?:
|
|
896
|
+
'$.xgafv'?: '1' | '2';
|
|
879
897
|
/** OAuth access token. */
|
|
880
898
|
access_token?: string;
|
|
881
899
|
/** Data format for response. */
|
|
882
|
-
alt?:
|
|
900
|
+
alt?: 'json' | 'media' | 'proto';
|
|
883
901
|
/** JSONP */
|
|
884
902
|
callback?: string;
|
|
885
903
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -906,11 +924,11 @@ declare namespace gapi.client {
|
|
|
906
924
|
create(
|
|
907
925
|
request: {
|
|
908
926
|
/** V1 error format. */
|
|
909
|
-
'$.xgafv'?:
|
|
927
|
+
'$.xgafv'?: '1' | '2';
|
|
910
928
|
/** OAuth access token. */
|
|
911
929
|
access_token?: string;
|
|
912
930
|
/** Data format for response. */
|
|
913
|
-
alt?:
|
|
931
|
+
alt?: 'json' | 'media' | 'proto';
|
|
914
932
|
/** JSONP */
|
|
915
933
|
callback?: string;
|
|
916
934
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -937,11 +955,11 @@ declare namespace gapi.client {
|
|
|
937
955
|
/** Deletes a previously created ManagedZone. */
|
|
938
956
|
delete(request?: {
|
|
939
957
|
/** V1 error format. */
|
|
940
|
-
'$.xgafv'?:
|
|
958
|
+
'$.xgafv'?: '1' | '2';
|
|
941
959
|
/** OAuth access token. */
|
|
942
960
|
access_token?: string;
|
|
943
961
|
/** Data format for response. */
|
|
944
|
-
alt?:
|
|
962
|
+
alt?: 'json' | 'media' | 'proto';
|
|
945
963
|
/** JSONP */
|
|
946
964
|
callback?: string;
|
|
947
965
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -968,11 +986,11 @@ declare namespace gapi.client {
|
|
|
968
986
|
/** Fetches the representation of an existing ManagedZone. */
|
|
969
987
|
get(request?: {
|
|
970
988
|
/** V1 error format. */
|
|
971
|
-
'$.xgafv'?:
|
|
989
|
+
'$.xgafv'?: '1' | '2';
|
|
972
990
|
/** OAuth access token. */
|
|
973
991
|
access_token?: string;
|
|
974
992
|
/** Data format for response. */
|
|
975
|
-
alt?:
|
|
993
|
+
alt?: 'json' | 'media' | 'proto';
|
|
976
994
|
/** JSONP */
|
|
977
995
|
callback?: string;
|
|
978
996
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -1000,11 +1018,11 @@ declare namespace gapi.client {
|
|
|
1000
1018
|
getIamPolicy(
|
|
1001
1019
|
request: {
|
|
1002
1020
|
/** V1 error format. */
|
|
1003
|
-
'$.xgafv'?:
|
|
1021
|
+
'$.xgafv'?: '1' | '2';
|
|
1004
1022
|
/** OAuth access token. */
|
|
1005
1023
|
access_token?: string;
|
|
1006
1024
|
/** Data format for response. */
|
|
1007
|
-
alt?:
|
|
1025
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1008
1026
|
/** JSONP */
|
|
1009
1027
|
callback?: string;
|
|
1010
1028
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1029,11 +1047,11 @@ declare namespace gapi.client {
|
|
|
1029
1047
|
/** Enumerates ManagedZones that have been created but not yet deleted. */
|
|
1030
1048
|
list(request?: {
|
|
1031
1049
|
/** V1 error format. */
|
|
1032
|
-
'$.xgafv'?:
|
|
1050
|
+
'$.xgafv'?: '1' | '2';
|
|
1033
1051
|
/** OAuth access token. */
|
|
1034
1052
|
access_token?: string;
|
|
1035
1053
|
/** Data format for response. */
|
|
1036
|
-
alt?:
|
|
1054
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1037
1055
|
/** JSONP */
|
|
1038
1056
|
callback?: string;
|
|
1039
1057
|
/** Restricts the list to return only zones with this domain name. */
|
|
@@ -1062,11 +1080,11 @@ declare namespace gapi.client {
|
|
|
1062
1080
|
/** Applies a partial update to an existing ManagedZone. */
|
|
1063
1081
|
patch(request: {
|
|
1064
1082
|
/** V1 error format. */
|
|
1065
|
-
'$.xgafv'?:
|
|
1083
|
+
'$.xgafv'?: '1' | '2';
|
|
1066
1084
|
/** OAuth access token. */
|
|
1067
1085
|
access_token?: string;
|
|
1068
1086
|
/** Data format for response. */
|
|
1069
|
-
alt?:
|
|
1087
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1070
1088
|
/** JSONP */
|
|
1071
1089
|
callback?: string;
|
|
1072
1090
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -1095,11 +1113,11 @@ declare namespace gapi.client {
|
|
|
1095
1113
|
patch(
|
|
1096
1114
|
request: {
|
|
1097
1115
|
/** V1 error format. */
|
|
1098
|
-
'$.xgafv'?:
|
|
1116
|
+
'$.xgafv'?: '1' | '2';
|
|
1099
1117
|
/** OAuth access token. */
|
|
1100
1118
|
access_token?: string;
|
|
1101
1119
|
/** Data format for response. */
|
|
1102
|
-
alt?:
|
|
1120
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1103
1121
|
/** JSONP */
|
|
1104
1122
|
callback?: string;
|
|
1105
1123
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -1129,11 +1147,11 @@ declare namespace gapi.client {
|
|
|
1129
1147
|
setIamPolicy(
|
|
1130
1148
|
request: {
|
|
1131
1149
|
/** V1 error format. */
|
|
1132
|
-
'$.xgafv'?:
|
|
1150
|
+
'$.xgafv'?: '1' | '2';
|
|
1133
1151
|
/** OAuth access token. */
|
|
1134
1152
|
access_token?: string;
|
|
1135
1153
|
/** Data format for response. */
|
|
1136
|
-
alt?:
|
|
1154
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1137
1155
|
/** JSONP */
|
|
1138
1156
|
callback?: string;
|
|
1139
1157
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1159,11 +1177,11 @@ declare namespace gapi.client {
|
|
|
1159
1177
|
testIamPermissions(
|
|
1160
1178
|
request: {
|
|
1161
1179
|
/** V1 error format. */
|
|
1162
|
-
'$.xgafv'?:
|
|
1180
|
+
'$.xgafv'?: '1' | '2';
|
|
1163
1181
|
/** OAuth access token. */
|
|
1164
1182
|
access_token?: string;
|
|
1165
1183
|
/** Data format for response. */
|
|
1166
|
-
alt?:
|
|
1184
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1167
1185
|
/** JSONP */
|
|
1168
1186
|
callback?: string;
|
|
1169
1187
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1188,11 +1206,11 @@ declare namespace gapi.client {
|
|
|
1188
1206
|
/** Updates an existing ManagedZone. */
|
|
1189
1207
|
update(request: {
|
|
1190
1208
|
/** V1 error format. */
|
|
1191
|
-
'$.xgafv'?:
|
|
1209
|
+
'$.xgafv'?: '1' | '2';
|
|
1192
1210
|
/** OAuth access token. */
|
|
1193
1211
|
access_token?: string;
|
|
1194
1212
|
/** Data format for response. */
|
|
1195
|
-
alt?:
|
|
1213
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1196
1214
|
/** JSONP */
|
|
1197
1215
|
callback?: string;
|
|
1198
1216
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -1221,11 +1239,11 @@ declare namespace gapi.client {
|
|
|
1221
1239
|
update(
|
|
1222
1240
|
request: {
|
|
1223
1241
|
/** V1 error format. */
|
|
1224
|
-
'$.xgafv'?:
|
|
1242
|
+
'$.xgafv'?: '1' | '2';
|
|
1225
1243
|
/** OAuth access token. */
|
|
1226
1244
|
access_token?: string;
|
|
1227
1245
|
/** Data format for response. */
|
|
1228
|
-
alt?:
|
|
1246
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1229
1247
|
/** JSONP */
|
|
1230
1248
|
callback?: string;
|
|
1231
1249
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -1256,11 +1274,11 @@ declare namespace gapi.client {
|
|
|
1256
1274
|
/** Creates a new policy. */
|
|
1257
1275
|
create(request: {
|
|
1258
1276
|
/** V1 error format. */
|
|
1259
|
-
'$.xgafv'?:
|
|
1277
|
+
'$.xgafv'?: '1' | '2';
|
|
1260
1278
|
/** OAuth access token. */
|
|
1261
1279
|
access_token?: string;
|
|
1262
1280
|
/** Data format for response. */
|
|
1263
|
-
alt?:
|
|
1281
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1264
1282
|
/** JSONP */
|
|
1265
1283
|
callback?: string;
|
|
1266
1284
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -1287,11 +1305,11 @@ declare namespace gapi.client {
|
|
|
1287
1305
|
create(
|
|
1288
1306
|
request: {
|
|
1289
1307
|
/** V1 error format. */
|
|
1290
|
-
'$.xgafv'?:
|
|
1308
|
+
'$.xgafv'?: '1' | '2';
|
|
1291
1309
|
/** OAuth access token. */
|
|
1292
1310
|
access_token?: string;
|
|
1293
1311
|
/** Data format for response. */
|
|
1294
|
-
alt?:
|
|
1312
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1295
1313
|
/** JSONP */
|
|
1296
1314
|
callback?: string;
|
|
1297
1315
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -1318,11 +1336,11 @@ declare namespace gapi.client {
|
|
|
1318
1336
|
/** Deletes a previously created policy. Fails if the policy is still being referenced by a network. */
|
|
1319
1337
|
delete(request?: {
|
|
1320
1338
|
/** V1 error format. */
|
|
1321
|
-
'$.xgafv'?:
|
|
1339
|
+
'$.xgafv'?: '1' | '2';
|
|
1322
1340
|
/** OAuth access token. */
|
|
1323
1341
|
access_token?: string;
|
|
1324
1342
|
/** Data format for response. */
|
|
1325
|
-
alt?:
|
|
1343
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1326
1344
|
/** JSONP */
|
|
1327
1345
|
callback?: string;
|
|
1328
1346
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -1349,11 +1367,11 @@ declare namespace gapi.client {
|
|
|
1349
1367
|
/** Fetches the representation of an existing policy. */
|
|
1350
1368
|
get(request?: {
|
|
1351
1369
|
/** V1 error format. */
|
|
1352
|
-
'$.xgafv'?:
|
|
1370
|
+
'$.xgafv'?: '1' | '2';
|
|
1353
1371
|
/** OAuth access token. */
|
|
1354
1372
|
access_token?: string;
|
|
1355
1373
|
/** Data format for response. */
|
|
1356
|
-
alt?:
|
|
1374
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1357
1375
|
/** JSONP */
|
|
1358
1376
|
callback?: string;
|
|
1359
1377
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -1380,11 +1398,11 @@ declare namespace gapi.client {
|
|
|
1380
1398
|
/** Enumerates all policies associated with a project. */
|
|
1381
1399
|
list(request?: {
|
|
1382
1400
|
/** V1 error format. */
|
|
1383
|
-
'$.xgafv'?:
|
|
1401
|
+
'$.xgafv'?: '1' | '2';
|
|
1384
1402
|
/** OAuth access token. */
|
|
1385
1403
|
access_token?: string;
|
|
1386
1404
|
/** Data format for response. */
|
|
1387
|
-
alt?:
|
|
1405
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1388
1406
|
/** JSONP */
|
|
1389
1407
|
callback?: string;
|
|
1390
1408
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1411,11 +1429,11 @@ declare namespace gapi.client {
|
|
|
1411
1429
|
/** Applies a partial update to an existing policy. */
|
|
1412
1430
|
patch(request: {
|
|
1413
1431
|
/** V1 error format. */
|
|
1414
|
-
'$.xgafv'?:
|
|
1432
|
+
'$.xgafv'?: '1' | '2';
|
|
1415
1433
|
/** OAuth access token. */
|
|
1416
1434
|
access_token?: string;
|
|
1417
1435
|
/** Data format for response. */
|
|
1418
|
-
alt?:
|
|
1436
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1419
1437
|
/** JSONP */
|
|
1420
1438
|
callback?: string;
|
|
1421
1439
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -1444,11 +1462,11 @@ declare namespace gapi.client {
|
|
|
1444
1462
|
patch(
|
|
1445
1463
|
request: {
|
|
1446
1464
|
/** V1 error format. */
|
|
1447
|
-
'$.xgafv'?:
|
|
1465
|
+
'$.xgafv'?: '1' | '2';
|
|
1448
1466
|
/** OAuth access token. */
|
|
1449
1467
|
access_token?: string;
|
|
1450
1468
|
/** Data format for response. */
|
|
1451
|
-
alt?:
|
|
1469
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1452
1470
|
/** JSONP */
|
|
1453
1471
|
callback?: string;
|
|
1454
1472
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -1477,11 +1495,11 @@ declare namespace gapi.client {
|
|
|
1477
1495
|
/** Updates an existing policy. */
|
|
1478
1496
|
update(request: {
|
|
1479
1497
|
/** V1 error format. */
|
|
1480
|
-
'$.xgafv'?:
|
|
1498
|
+
'$.xgafv'?: '1' | '2';
|
|
1481
1499
|
/** OAuth access token. */
|
|
1482
1500
|
access_token?: string;
|
|
1483
1501
|
/** Data format for response. */
|
|
1484
|
-
alt?:
|
|
1502
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1485
1503
|
/** JSONP */
|
|
1486
1504
|
callback?: string;
|
|
1487
1505
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -1510,11 +1528,11 @@ declare namespace gapi.client {
|
|
|
1510
1528
|
update(
|
|
1511
1529
|
request: {
|
|
1512
1530
|
/** V1 error format. */
|
|
1513
|
-
'$.xgafv'?:
|
|
1531
|
+
'$.xgafv'?: '1' | '2';
|
|
1514
1532
|
/** OAuth access token. */
|
|
1515
1533
|
access_token?: string;
|
|
1516
1534
|
/** Data format for response. */
|
|
1517
|
-
alt?:
|
|
1535
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1518
1536
|
/** JSONP */
|
|
1519
1537
|
callback?: string;
|
|
1520
1538
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -1545,11 +1563,11 @@ declare namespace gapi.client {
|
|
|
1545
1563
|
/** Fetches the representation of an existing Project. */
|
|
1546
1564
|
get(request?: {
|
|
1547
1565
|
/** V1 error format. */
|
|
1548
|
-
'$.xgafv'?:
|
|
1566
|
+
'$.xgafv'?: '1' | '2';
|
|
1549
1567
|
/** OAuth access token. */
|
|
1550
1568
|
access_token?: string;
|
|
1551
1569
|
/** Data format for response. */
|
|
1552
|
-
alt?:
|
|
1570
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1553
1571
|
/** JSONP */
|
|
1554
1572
|
callback?: string;
|
|
1555
1573
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -1576,11 +1594,11 @@ declare namespace gapi.client {
|
|
|
1576
1594
|
/** Creates a new ResourceRecordSet. */
|
|
1577
1595
|
create(request: {
|
|
1578
1596
|
/** V1 error format. */
|
|
1579
|
-
'$.xgafv'?:
|
|
1597
|
+
'$.xgafv'?: '1' | '2';
|
|
1580
1598
|
/** OAuth access token. */
|
|
1581
1599
|
access_token?: string;
|
|
1582
1600
|
/** Data format for response. */
|
|
1583
|
-
alt?:
|
|
1601
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1584
1602
|
/** JSONP */
|
|
1585
1603
|
callback?: string;
|
|
1586
1604
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -1609,11 +1627,11 @@ declare namespace gapi.client {
|
|
|
1609
1627
|
create(
|
|
1610
1628
|
request: {
|
|
1611
1629
|
/** V1 error format. */
|
|
1612
|
-
'$.xgafv'?:
|
|
1630
|
+
'$.xgafv'?: '1' | '2';
|
|
1613
1631
|
/** OAuth access token. */
|
|
1614
1632
|
access_token?: string;
|
|
1615
1633
|
/** Data format for response. */
|
|
1616
|
-
alt?:
|
|
1634
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1617
1635
|
/** JSONP */
|
|
1618
1636
|
callback?: string;
|
|
1619
1637
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -1642,11 +1660,11 @@ declare namespace gapi.client {
|
|
|
1642
1660
|
/** Deletes a previously created ResourceRecordSet. */
|
|
1643
1661
|
delete(request?: {
|
|
1644
1662
|
/** V1 error format. */
|
|
1645
|
-
'$.xgafv'?:
|
|
1663
|
+
'$.xgafv'?: '1' | '2';
|
|
1646
1664
|
/** OAuth access token. */
|
|
1647
1665
|
access_token?: string;
|
|
1648
1666
|
/** Data format for response. */
|
|
1649
|
-
alt?:
|
|
1667
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1650
1668
|
/** JSONP */
|
|
1651
1669
|
callback?: string;
|
|
1652
1670
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -1677,11 +1695,11 @@ declare namespace gapi.client {
|
|
|
1677
1695
|
/** Fetches the representation of an existing ResourceRecordSet. */
|
|
1678
1696
|
get(request?: {
|
|
1679
1697
|
/** V1 error format. */
|
|
1680
|
-
'$.xgafv'?:
|
|
1698
|
+
'$.xgafv'?: '1' | '2';
|
|
1681
1699
|
/** OAuth access token. */
|
|
1682
1700
|
access_token?: string;
|
|
1683
1701
|
/** Data format for response. */
|
|
1684
|
-
alt?:
|
|
1702
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1685
1703
|
/** JSONP */
|
|
1686
1704
|
callback?: string;
|
|
1687
1705
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -1712,11 +1730,11 @@ declare namespace gapi.client {
|
|
|
1712
1730
|
/** Enumerates ResourceRecordSets that you have created but not yet deleted. */
|
|
1713
1731
|
list(request?: {
|
|
1714
1732
|
/** V1 error format. */
|
|
1715
|
-
'$.xgafv'?:
|
|
1733
|
+
'$.xgafv'?: '1' | '2';
|
|
1716
1734
|
/** OAuth access token. */
|
|
1717
1735
|
access_token?: string;
|
|
1718
1736
|
/** Data format for response. */
|
|
1719
|
-
alt?:
|
|
1737
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1720
1738
|
/** JSONP */
|
|
1721
1739
|
callback?: string;
|
|
1722
1740
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1751,11 +1769,11 @@ declare namespace gapi.client {
|
|
|
1751
1769
|
/** Applies a partial update to an existing ResourceRecordSet. */
|
|
1752
1770
|
patch(request: {
|
|
1753
1771
|
/** V1 error format. */
|
|
1754
|
-
'$.xgafv'?:
|
|
1772
|
+
'$.xgafv'?: '1' | '2';
|
|
1755
1773
|
/** OAuth access token. */
|
|
1756
1774
|
access_token?: string;
|
|
1757
1775
|
/** Data format for response. */
|
|
1758
|
-
alt?:
|
|
1776
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1759
1777
|
/** JSONP */
|
|
1760
1778
|
callback?: string;
|
|
1761
1779
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -1788,11 +1806,11 @@ declare namespace gapi.client {
|
|
|
1788
1806
|
patch(
|
|
1789
1807
|
request: {
|
|
1790
1808
|
/** V1 error format. */
|
|
1791
|
-
'$.xgafv'?:
|
|
1809
|
+
'$.xgafv'?: '1' | '2';
|
|
1792
1810
|
/** OAuth access token. */
|
|
1793
1811
|
access_token?: string;
|
|
1794
1812
|
/** Data format for response. */
|
|
1795
|
-
alt?:
|
|
1813
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1796
1814
|
/** JSONP */
|
|
1797
1815
|
callback?: string;
|
|
1798
1816
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -1827,11 +1845,11 @@ declare namespace gapi.client {
|
|
|
1827
1845
|
/** Creates a new Response Policy */
|
|
1828
1846
|
create(request: {
|
|
1829
1847
|
/** V1 error format. */
|
|
1830
|
-
'$.xgafv'?:
|
|
1848
|
+
'$.xgafv'?: '1' | '2';
|
|
1831
1849
|
/** OAuth access token. */
|
|
1832
1850
|
access_token?: string;
|
|
1833
1851
|
/** Data format for response. */
|
|
1834
|
-
alt?:
|
|
1852
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1835
1853
|
/** JSONP */
|
|
1836
1854
|
callback?: string;
|
|
1837
1855
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -1858,11 +1876,11 @@ declare namespace gapi.client {
|
|
|
1858
1876
|
create(
|
|
1859
1877
|
request: {
|
|
1860
1878
|
/** V1 error format. */
|
|
1861
|
-
'$.xgafv'?:
|
|
1879
|
+
'$.xgafv'?: '1' | '2';
|
|
1862
1880
|
/** OAuth access token. */
|
|
1863
1881
|
access_token?: string;
|
|
1864
1882
|
/** Data format for response. */
|
|
1865
|
-
alt?:
|
|
1883
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1866
1884
|
/** JSONP */
|
|
1867
1885
|
callback?: string;
|
|
1868
1886
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -1889,11 +1907,11 @@ declare namespace gapi.client {
|
|
|
1889
1907
|
/** Deletes a previously created Response Policy. Fails if the response policy is non-empty or still being referenced by a network. */
|
|
1890
1908
|
delete(request?: {
|
|
1891
1909
|
/** V1 error format. */
|
|
1892
|
-
'$.xgafv'?:
|
|
1910
|
+
'$.xgafv'?: '1' | '2';
|
|
1893
1911
|
/** OAuth access token. */
|
|
1894
1912
|
access_token?: string;
|
|
1895
1913
|
/** Data format for response. */
|
|
1896
|
-
alt?:
|
|
1914
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1897
1915
|
/** JSONP */
|
|
1898
1916
|
callback?: string;
|
|
1899
1917
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -1920,11 +1938,11 @@ declare namespace gapi.client {
|
|
|
1920
1938
|
/** Fetches the representation of an existing Response Policy. */
|
|
1921
1939
|
get(request?: {
|
|
1922
1940
|
/** V1 error format. */
|
|
1923
|
-
'$.xgafv'?:
|
|
1941
|
+
'$.xgafv'?: '1' | '2';
|
|
1924
1942
|
/** OAuth access token. */
|
|
1925
1943
|
access_token?: string;
|
|
1926
1944
|
/** Data format for response. */
|
|
1927
|
-
alt?:
|
|
1945
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1928
1946
|
/** JSONP */
|
|
1929
1947
|
callback?: string;
|
|
1930
1948
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -1951,11 +1969,11 @@ declare namespace gapi.client {
|
|
|
1951
1969
|
/** Enumerates all Response Policies associated with a project. */
|
|
1952
1970
|
list(request?: {
|
|
1953
1971
|
/** V1 error format. */
|
|
1954
|
-
'$.xgafv'?:
|
|
1972
|
+
'$.xgafv'?: '1' | '2';
|
|
1955
1973
|
/** OAuth access token. */
|
|
1956
1974
|
access_token?: string;
|
|
1957
1975
|
/** Data format for response. */
|
|
1958
|
-
alt?:
|
|
1976
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1959
1977
|
/** JSONP */
|
|
1960
1978
|
callback?: string;
|
|
1961
1979
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1982,11 +2000,11 @@ declare namespace gapi.client {
|
|
|
1982
2000
|
/** Applies a partial update to an existing Response Policy. */
|
|
1983
2001
|
patch(request: {
|
|
1984
2002
|
/** V1 error format. */
|
|
1985
|
-
'$.xgafv'?:
|
|
2003
|
+
'$.xgafv'?: '1' | '2';
|
|
1986
2004
|
/** OAuth access token. */
|
|
1987
2005
|
access_token?: string;
|
|
1988
2006
|
/** Data format for response. */
|
|
1989
|
-
alt?:
|
|
2007
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1990
2008
|
/** JSONP */
|
|
1991
2009
|
callback?: string;
|
|
1992
2010
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -2015,11 +2033,11 @@ declare namespace gapi.client {
|
|
|
2015
2033
|
patch(
|
|
2016
2034
|
request: {
|
|
2017
2035
|
/** V1 error format. */
|
|
2018
|
-
'$.xgafv'?:
|
|
2036
|
+
'$.xgafv'?: '1' | '2';
|
|
2019
2037
|
/** OAuth access token. */
|
|
2020
2038
|
access_token?: string;
|
|
2021
2039
|
/** Data format for response. */
|
|
2022
|
-
alt?:
|
|
2040
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2023
2041
|
/** JSONP */
|
|
2024
2042
|
callback?: string;
|
|
2025
2043
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -2048,11 +2066,11 @@ declare namespace gapi.client {
|
|
|
2048
2066
|
/** Updates an existing Response Policy. */
|
|
2049
2067
|
update(request: {
|
|
2050
2068
|
/** V1 error format. */
|
|
2051
|
-
'$.xgafv'?:
|
|
2069
|
+
'$.xgafv'?: '1' | '2';
|
|
2052
2070
|
/** OAuth access token. */
|
|
2053
2071
|
access_token?: string;
|
|
2054
2072
|
/** Data format for response. */
|
|
2055
|
-
alt?:
|
|
2073
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2056
2074
|
/** JSONP */
|
|
2057
2075
|
callback?: string;
|
|
2058
2076
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -2081,11 +2099,11 @@ declare namespace gapi.client {
|
|
|
2081
2099
|
update(
|
|
2082
2100
|
request: {
|
|
2083
2101
|
/** V1 error format. */
|
|
2084
|
-
'$.xgafv'?:
|
|
2102
|
+
'$.xgafv'?: '1' | '2';
|
|
2085
2103
|
/** OAuth access token. */
|
|
2086
2104
|
access_token?: string;
|
|
2087
2105
|
/** Data format for response. */
|
|
2088
|
-
alt?:
|
|
2106
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2089
2107
|
/** JSONP */
|
|
2090
2108
|
callback?: string;
|
|
2091
2109
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -2116,11 +2134,11 @@ declare namespace gapi.client {
|
|
|
2116
2134
|
/** Creates a new Response Policy Rule. */
|
|
2117
2135
|
create(request: {
|
|
2118
2136
|
/** V1 error format. */
|
|
2119
|
-
'$.xgafv'?:
|
|
2137
|
+
'$.xgafv'?: '1' | '2';
|
|
2120
2138
|
/** OAuth access token. */
|
|
2121
2139
|
access_token?: string;
|
|
2122
2140
|
/** Data format for response. */
|
|
2123
|
-
alt?:
|
|
2141
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2124
2142
|
/** JSONP */
|
|
2125
2143
|
callback?: string;
|
|
2126
2144
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -2149,11 +2167,11 @@ declare namespace gapi.client {
|
|
|
2149
2167
|
create(
|
|
2150
2168
|
request: {
|
|
2151
2169
|
/** V1 error format. */
|
|
2152
|
-
'$.xgafv'?:
|
|
2170
|
+
'$.xgafv'?: '1' | '2';
|
|
2153
2171
|
/** OAuth access token. */
|
|
2154
2172
|
access_token?: string;
|
|
2155
2173
|
/** Data format for response. */
|
|
2156
|
-
alt?:
|
|
2174
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2157
2175
|
/** JSONP */
|
|
2158
2176
|
callback?: string;
|
|
2159
2177
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -2182,11 +2200,11 @@ declare namespace gapi.client {
|
|
|
2182
2200
|
/** Deletes a previously created Response Policy Rule. */
|
|
2183
2201
|
delete(request?: {
|
|
2184
2202
|
/** V1 error format. */
|
|
2185
|
-
'$.xgafv'?:
|
|
2203
|
+
'$.xgafv'?: '1' | '2';
|
|
2186
2204
|
/** OAuth access token. */
|
|
2187
2205
|
access_token?: string;
|
|
2188
2206
|
/** Data format for response. */
|
|
2189
|
-
alt?:
|
|
2207
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2190
2208
|
/** JSONP */
|
|
2191
2209
|
callback?: string;
|
|
2192
2210
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -2215,11 +2233,11 @@ declare namespace gapi.client {
|
|
|
2215
2233
|
/** Fetches the representation of an existing Response Policy Rule. */
|
|
2216
2234
|
get(request?: {
|
|
2217
2235
|
/** V1 error format. */
|
|
2218
|
-
'$.xgafv'?:
|
|
2236
|
+
'$.xgafv'?: '1' | '2';
|
|
2219
2237
|
/** OAuth access token. */
|
|
2220
2238
|
access_token?: string;
|
|
2221
2239
|
/** Data format for response. */
|
|
2222
|
-
alt?:
|
|
2240
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2223
2241
|
/** JSONP */
|
|
2224
2242
|
callback?: string;
|
|
2225
2243
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -2248,11 +2266,11 @@ declare namespace gapi.client {
|
|
|
2248
2266
|
/** Enumerates all Response Policy Rules associated with a project. */
|
|
2249
2267
|
list(request?: {
|
|
2250
2268
|
/** V1 error format. */
|
|
2251
|
-
'$.xgafv'?:
|
|
2269
|
+
'$.xgafv'?: '1' | '2';
|
|
2252
2270
|
/** OAuth access token. */
|
|
2253
2271
|
access_token?: string;
|
|
2254
2272
|
/** Data format for response. */
|
|
2255
|
-
alt?:
|
|
2273
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2256
2274
|
/** JSONP */
|
|
2257
2275
|
callback?: string;
|
|
2258
2276
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2281,11 +2299,11 @@ declare namespace gapi.client {
|
|
|
2281
2299
|
/** Applies a partial update to an existing Response Policy Rule. */
|
|
2282
2300
|
patch(request: {
|
|
2283
2301
|
/** V1 error format. */
|
|
2284
|
-
'$.xgafv'?:
|
|
2302
|
+
'$.xgafv'?: '1' | '2';
|
|
2285
2303
|
/** OAuth access token. */
|
|
2286
2304
|
access_token?: string;
|
|
2287
2305
|
/** Data format for response. */
|
|
2288
|
-
alt?:
|
|
2306
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2289
2307
|
/** JSONP */
|
|
2290
2308
|
callback?: string;
|
|
2291
2309
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -2316,11 +2334,11 @@ declare namespace gapi.client {
|
|
|
2316
2334
|
patch(
|
|
2317
2335
|
request: {
|
|
2318
2336
|
/** V1 error format. */
|
|
2319
|
-
'$.xgafv'?:
|
|
2337
|
+
'$.xgafv'?: '1' | '2';
|
|
2320
2338
|
/** OAuth access token. */
|
|
2321
2339
|
access_token?: string;
|
|
2322
2340
|
/** Data format for response. */
|
|
2323
|
-
alt?:
|
|
2341
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2324
2342
|
/** JSONP */
|
|
2325
2343
|
callback?: string;
|
|
2326
2344
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -2351,11 +2369,11 @@ declare namespace gapi.client {
|
|
|
2351
2369
|
/** Updates an existing Response Policy Rule. */
|
|
2352
2370
|
update(request: {
|
|
2353
2371
|
/** V1 error format. */
|
|
2354
|
-
'$.xgafv'?:
|
|
2372
|
+
'$.xgafv'?: '1' | '2';
|
|
2355
2373
|
/** OAuth access token. */
|
|
2356
2374
|
access_token?: string;
|
|
2357
2375
|
/** Data format for response. */
|
|
2358
|
-
alt?:
|
|
2376
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2359
2377
|
/** JSONP */
|
|
2360
2378
|
callback?: string;
|
|
2361
2379
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|
|
@@ -2386,11 +2404,11 @@ declare namespace gapi.client {
|
|
|
2386
2404
|
update(
|
|
2387
2405
|
request: {
|
|
2388
2406
|
/** V1 error format. */
|
|
2389
|
-
'$.xgafv'?:
|
|
2407
|
+
'$.xgafv'?: '1' | '2';
|
|
2390
2408
|
/** OAuth access token. */
|
|
2391
2409
|
access_token?: string;
|
|
2392
2410
|
/** Data format for response. */
|
|
2393
|
-
alt?:
|
|
2411
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2394
2412
|
/** JSONP */
|
|
2395
2413
|
callback?: string;
|
|
2396
2414
|
/** For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */
|