@maxim_mazurok/gapi.client.networksecurity-v1 0.0.20230406 → 0.0.20230420
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 +1983 -999
- package/package.json +1 -1
- package/tests.ts +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://networksecurity.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230420
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -24,22 +24,29 @@ declare namespace gapi.client {
|
|
|
24
24
|
namespace networksecurity {
|
|
25
25
|
interface AuthorizationPolicy {
|
|
26
26
|
/** Required. The action to take when a rule match is found. Possible values are "ALLOW" or "DENY". */
|
|
27
|
-
action?:
|
|
27
|
+
action?:
|
|
28
|
+
string;
|
|
28
29
|
/** Output only. The timestamp when the resource was created. */
|
|
29
|
-
createTime?:
|
|
30
|
+
createTime?:
|
|
31
|
+
string;
|
|
30
32
|
/** Optional. Free-text description of the resource. */
|
|
31
|
-
description?:
|
|
33
|
+
description?:
|
|
34
|
+
string;
|
|
32
35
|
/** Optional. Set of label tags associated with the AuthorizationPolicy resource. */
|
|
33
|
-
labels?:
|
|
36
|
+
labels?:
|
|
37
|
+
{ [P in string]: string };
|
|
34
38
|
/** Required. Name of the AuthorizationPolicy resource. It matches pattern `projects/{project}/locations/{location}/authorizationPolicies/`. */
|
|
35
|
-
name?:
|
|
39
|
+
name?:
|
|
40
|
+
string;
|
|
36
41
|
/**
|
|
37
42
|
* Optional. List of rules to match. Note that at least one of the rules must match in order for the action specified in the 'action' field to be taken. A rule is a match if there is a
|
|
38
43
|
* matching source and destination. If left blank, the action specified in the `action` field will be applied on every request.
|
|
39
44
|
*/
|
|
40
|
-
rules?:
|
|
45
|
+
rules?:
|
|
46
|
+
Rule[];
|
|
41
47
|
/** Output only. The timestamp when the resource was updated. */
|
|
42
|
-
updateTime?:
|
|
48
|
+
updateTime?:
|
|
49
|
+
string;
|
|
43
50
|
}
|
|
44
51
|
// tslint:disable-next-line:no-empty-interface
|
|
45
52
|
interface CancelOperationRequest {
|
|
@@ -49,119 +56,158 @@ declare namespace gapi.client {
|
|
|
49
56
|
* Required. Plugin instance name, used to locate and load CertificateProvider instance configuration. Set to "google_cloud_private_spiffe" to use Certificate Authority Service
|
|
50
57
|
* certificate provider instance.
|
|
51
58
|
*/
|
|
52
|
-
pluginInstance?:
|
|
59
|
+
pluginInstance?:
|
|
60
|
+
string;
|
|
53
61
|
}
|
|
54
62
|
interface ClientTlsPolicy {
|
|
55
63
|
/** Optional. Defines a mechanism to provision client identity (public and private keys) for peer to peer authentication. The presence of this dictates mTLS. */
|
|
56
|
-
clientCertificate?:
|
|
64
|
+
clientCertificate?:
|
|
65
|
+
GoogleCloudNetworksecurityV1CertificateProvider;
|
|
57
66
|
/** Output only. The timestamp when the resource was created. */
|
|
58
|
-
createTime?:
|
|
67
|
+
createTime?:
|
|
68
|
+
string;
|
|
59
69
|
/** Optional. Free-text description of the resource. */
|
|
60
|
-
description?:
|
|
70
|
+
description?:
|
|
71
|
+
string;
|
|
61
72
|
/** Optional. Set of label tags associated with the resource. */
|
|
62
|
-
labels?:
|
|
73
|
+
labels?:
|
|
74
|
+
{ [P in string]: string };
|
|
63
75
|
/** Required. Name of the ClientTlsPolicy resource. It matches the pattern `projects/*/locations/{location}/clientTlsPolicies/{client_tls_policy}` */
|
|
64
|
-
name?:
|
|
76
|
+
name?:
|
|
77
|
+
string;
|
|
65
78
|
/** Optional. Defines the mechanism to obtain the Certificate Authority certificate to validate the server certificate. If empty, client does not validate the server certificate. */
|
|
66
|
-
serverValidationCa?:
|
|
79
|
+
serverValidationCa?:
|
|
80
|
+
ValidationCA[];
|
|
67
81
|
/** Optional. Server Name Indication string to present to the server during TLS handshake. E.g: "secure.example.com". */
|
|
68
|
-
sni?:
|
|
82
|
+
sni?:
|
|
83
|
+
string;
|
|
69
84
|
/** Output only. The timestamp when the resource was updated. */
|
|
70
|
-
updateTime?:
|
|
85
|
+
updateTime?:
|
|
86
|
+
string;
|
|
71
87
|
}
|
|
72
88
|
interface Destination {
|
|
73
89
|
/**
|
|
74
90
|
* Required. List of host names to match. Matched against the ":authority" header in http requests. At least one host should match. Each host can be an exact match, or a prefix match
|
|
75
91
|
* (example "mydomain.*") or a suffix match (example "*.myorg.com") or a presence (any) match "*".
|
|
76
92
|
*/
|
|
77
|
-
hosts?:
|
|
93
|
+
hosts?:
|
|
94
|
+
string[];
|
|
78
95
|
/**
|
|
79
96
|
* Optional. Match against key:value pair in http header. Provides a flexible match based on HTTP headers, for potentially advanced use cases. At least one header should match. Avoid
|
|
80
97
|
* using header matches to make authorization decisions unless there is a strong guarantee that requests arrive through a trusted client or proxy.
|
|
81
98
|
*/
|
|
82
|
-
httpHeaderMatch?:
|
|
99
|
+
httpHeaderMatch?:
|
|
100
|
+
HttpHeaderMatch;
|
|
83
101
|
/** Optional. A list of HTTP methods to match. At least one method should match. Should not be set for gRPC services. */
|
|
84
|
-
methods?:
|
|
102
|
+
methods?:
|
|
103
|
+
string[];
|
|
85
104
|
/** Required. List of destination ports to match. At least one port should match. */
|
|
86
|
-
ports?:
|
|
105
|
+
ports?:
|
|
106
|
+
number[];
|
|
87
107
|
}
|
|
88
108
|
// tslint:disable-next-line:no-empty-interface
|
|
89
109
|
interface Empty {
|
|
90
110
|
}
|
|
91
111
|
interface Expr {
|
|
92
112
|
/** Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI. */
|
|
93
|
-
description?:
|
|
113
|
+
description?:
|
|
114
|
+
string;
|
|
94
115
|
/** Textual representation of an expression in Common Expression Language syntax. */
|
|
95
|
-
expression?:
|
|
116
|
+
expression?:
|
|
117
|
+
string;
|
|
96
118
|
/** Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file. */
|
|
97
|
-
location?:
|
|
119
|
+
location?:
|
|
120
|
+
string;
|
|
98
121
|
/** Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression. */
|
|
99
|
-
title?:
|
|
122
|
+
title?:
|
|
123
|
+
string;
|
|
100
124
|
}
|
|
101
125
|
interface GatewaySecurityPolicy {
|
|
102
126
|
/** Output only. The timestamp when the resource was created. */
|
|
103
|
-
createTime?:
|
|
127
|
+
createTime?:
|
|
128
|
+
string;
|
|
104
129
|
/** Optional. Free-text description of the resource. */
|
|
105
|
-
description?:
|
|
130
|
+
description?:
|
|
131
|
+
string;
|
|
106
132
|
/**
|
|
107
133
|
* Required. Name of the resource. Name is of the form projects/{project}/locations/{location}/gatewaySecurityPolicies/{gateway_security_policy} gateway_security_policy should match
|
|
108
134
|
* the pattern:(^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$).
|
|
109
135
|
*/
|
|
110
|
-
name?:
|
|
136
|
+
name?:
|
|
137
|
+
string;
|
|
111
138
|
/** Optional. Name of a TLS Inspection Policy resource that defines how TLS inspection will be performed for any rule(s) which enables it. */
|
|
112
|
-
tlsInspectionPolicy?:
|
|
139
|
+
tlsInspectionPolicy?:
|
|
140
|
+
string;
|
|
113
141
|
/** Output only. The timestamp when the resource was updated. */
|
|
114
|
-
updateTime?:
|
|
142
|
+
updateTime?:
|
|
143
|
+
string;
|
|
115
144
|
}
|
|
116
145
|
interface GatewaySecurityPolicyRule {
|
|
117
146
|
/** Optional. CEL expression for matching on L7/application level criteria. */
|
|
118
|
-
applicationMatcher?:
|
|
147
|
+
applicationMatcher?:
|
|
148
|
+
string;
|
|
119
149
|
/** Required. Profile which tells what the primitive action should be. */
|
|
120
|
-
basicProfile?:
|
|
150
|
+
basicProfile?:
|
|
151
|
+
string;
|
|
121
152
|
/** Output only. Time when the rule was created. */
|
|
122
|
-
createTime?:
|
|
153
|
+
createTime?:
|
|
154
|
+
string;
|
|
123
155
|
/** Optional. Free-text description of the resource. */
|
|
124
|
-
description?:
|
|
156
|
+
description?:
|
|
157
|
+
string;
|
|
125
158
|
/** Required. Whether the rule is enforced. */
|
|
126
|
-
enabled?:
|
|
159
|
+
enabled?:
|
|
160
|
+
boolean;
|
|
127
161
|
/**
|
|
128
162
|
* Required. Immutable. Name of the resource. ame is the full resource name so projects/{project}/locations/{location}/gatewaySecurityPolicies/{gateway_security_policy}/rules/{rule}
|
|
129
163
|
* rule should match the pattern: (^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$).
|
|
130
164
|
*/
|
|
131
|
-
name?:
|
|
165
|
+
name?:
|
|
166
|
+
string;
|
|
132
167
|
/** Required. Priority of the rule. Lower number corresponds to higher precedence. */
|
|
133
|
-
priority?:
|
|
168
|
+
priority?:
|
|
169
|
+
number;
|
|
134
170
|
/** Required. CEL expression for matching on session criteria. */
|
|
135
|
-
sessionMatcher?:
|
|
171
|
+
sessionMatcher?:
|
|
172
|
+
string;
|
|
136
173
|
/** Optional. Flag to enable TLS inspection of traffic matching on , can only be true if the parent GatewaySecurityPolicy references a TLSInspectionConfig. */
|
|
137
|
-
tlsInspectionEnabled?:
|
|
174
|
+
tlsInspectionEnabled?:
|
|
175
|
+
boolean;
|
|
138
176
|
/** Output only. Time when the rule was updated. */
|
|
139
|
-
updateTime?:
|
|
177
|
+
updateTime?:
|
|
178
|
+
string;
|
|
140
179
|
}
|
|
141
180
|
interface GoogleCloudNetworksecurityV1CertificateProvider {
|
|
142
181
|
/** The certificate provider instance specification that will be passed to the data plane, which will be used to load necessary credential information. */
|
|
143
|
-
certificateProviderInstance?:
|
|
182
|
+
certificateProviderInstance?:
|
|
183
|
+
CertificateProviderInstance;
|
|
144
184
|
/** gRPC specific configuration to access the gRPC server to obtain the cert and private key. */
|
|
145
|
-
grpcEndpoint?:
|
|
185
|
+
grpcEndpoint?:
|
|
186
|
+
GoogleCloudNetworksecurityV1GrpcEndpoint;
|
|
146
187
|
}
|
|
147
188
|
interface GoogleCloudNetworksecurityV1GrpcEndpoint {
|
|
148
189
|
/** Required. The target URI of the gRPC endpoint. Only UDS path is supported, and should start with "unix:". */
|
|
149
|
-
targetUri?:
|
|
190
|
+
targetUri?:
|
|
191
|
+
string;
|
|
150
192
|
}
|
|
151
193
|
interface GoogleIamV1AuditConfig {
|
|
152
194
|
/** The configuration for logging of each type of permission. */
|
|
153
|
-
auditLogConfigs?:
|
|
195
|
+
auditLogConfigs?:
|
|
196
|
+
GoogleIamV1AuditLogConfig[];
|
|
154
197
|
/**
|
|
155
198
|
* Specifies a service that will be enabled for audit logging. For example, `storage.googleapis.com`, `cloudsql.googleapis.com`. `allServices` is a special value that covers all
|
|
156
199
|
* services.
|
|
157
200
|
*/
|
|
158
|
-
service?:
|
|
201
|
+
service?:
|
|
202
|
+
string;
|
|
159
203
|
}
|
|
160
204
|
interface GoogleIamV1AuditLogConfig {
|
|
161
205
|
/** Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members. */
|
|
162
|
-
exemptedMembers?:
|
|
206
|
+
exemptedMembers?:
|
|
207
|
+
string[];
|
|
163
208
|
/** The log type that this config enables. */
|
|
164
|
-
logType?:
|
|
209
|
+
logType?:
|
|
210
|
+
string;
|
|
165
211
|
}
|
|
166
212
|
interface GoogleIamV1Binding {
|
|
167
213
|
/**
|
|
@@ -169,7 +215,8 @@ declare namespace gapi.client {
|
|
|
169
215
|
* 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
|
|
170
216
|
* resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
|
|
171
217
|
*/
|
|
172
|
-
condition?:
|
|
218
|
+
condition?:
|
|
219
|
+
Expr;
|
|
173
220
|
/**
|
|
174
221
|
* Specifies the principals requesting access for a Google Cloud resource. `members` can have the following values: * `allUsers`: A special identifier that represents anyone who is on
|
|
175
222
|
* the internet; with or without a Google account. * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service
|
|
@@ -186,20 +233,24 @@ declare namespace gapi.client {
|
|
|
186
233
|
* has been recently deleted. For example, `admins@example.com?uid=123456789012345678901`. If the group is recovered, this value reverts to `group:{emailid}` and the recovered group
|
|
187
234
|
* retains the role in the binding.
|
|
188
235
|
*/
|
|
189
|
-
members?:
|
|
236
|
+
members?:
|
|
237
|
+
string[];
|
|
190
238
|
/** Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`. */
|
|
191
|
-
role?:
|
|
239
|
+
role?:
|
|
240
|
+
string;
|
|
192
241
|
}
|
|
193
242
|
interface GoogleIamV1Policy {
|
|
194
243
|
/** Specifies cloud audit logging configuration for this policy. */
|
|
195
|
-
auditConfigs?:
|
|
244
|
+
auditConfigs?:
|
|
245
|
+
GoogleIamV1AuditConfig[];
|
|
196
246
|
/**
|
|
197
247
|
* Associates a list of `members`, or principals, with a `role`. Optionally, may specify a `condition` that determines how and when the `bindings` are applied. Each of the `bindings`
|
|
198
248
|
* must contain at least one principal. The `bindings` in a `Policy` can refer to up to 1,500 principals; up to 250 of these principals can be Google groups. Each occurrence of a
|
|
199
249
|
* principal counts towards these limits. For example, if the `bindings` grant 50 different roles to `user:alice@example.com`, and not to any other principal, then you can add another
|
|
200
250
|
* 1,450 principals to the `bindings` in the `Policy`.
|
|
201
251
|
*/
|
|
202
|
-
bindings?:
|
|
252
|
+
bindings?:
|
|
253
|
+
GoogleIamV1Binding[];
|
|
203
254
|
/**
|
|
204
255
|
* `etag` is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. It is strongly suggested that systems make
|
|
205
256
|
* use of the `etag` in the read-modify-write cycle to perform policy updates in order to avoid race conditions: An `etag` is returned in the response to `getIamPolicy`, and systems
|
|
@@ -207,7 +258,8 @@ declare namespace gapi.client {
|
|
|
207
258
|
* Conditions, you must include the `etag` field whenever you call `setIamPolicy`. If you omit this field, then IAM allows you to overwrite a version `3` policy with a version `1`
|
|
208
259
|
* policy, and all of the conditions in the version `3` policy are lost.
|
|
209
260
|
*/
|
|
210
|
-
etag?:
|
|
261
|
+
etag?:
|
|
262
|
+
string;
|
|
211
263
|
/**
|
|
212
264
|
* Specifies the format of the policy. Valid values are `0`, `1`, and `3`. Requests that specify an invalid value are rejected. Any operation that affects conditional role bindings
|
|
213
265
|
* must specify version `3`. This requirement applies to the following operations: * Getting a policy that includes a conditional role binding * Adding a conditional role binding to a
|
|
@@ -216,439 +268,573 @@ declare namespace gapi.client {
|
|
|
216
268
|
* policy, and all of the conditions in the version `3` policy are lost. If a policy does not include any conditions, operations on that policy may specify any valid version or leave
|
|
217
269
|
* the field unset. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
|
|
218
270
|
*/
|
|
219
|
-
version?:
|
|
271
|
+
version?:
|
|
272
|
+
number;
|
|
220
273
|
}
|
|
221
274
|
interface GoogleIamV1SetIamPolicyRequest {
|
|
222
275
|
/**
|
|
223
276
|
* REQUIRED: The complete policy to be applied to the `resource`. The size of the policy is limited to a few 10s of KB. An empty policy is a valid policy but certain Google Cloud
|
|
224
277
|
* services (such as Projects) might reject them.
|
|
225
278
|
*/
|
|
226
|
-
policy?:
|
|
279
|
+
policy?:
|
|
280
|
+
GoogleIamV1Policy;
|
|
227
281
|
/**
|
|
228
282
|
* OPTIONAL: A FieldMask specifying which fields of the policy to modify. Only the fields in the mask will be modified. If no mask is provided, the following default mask is used:
|
|
229
283
|
* `paths: "bindings, etag"`
|
|
230
284
|
*/
|
|
231
|
-
updateMask?:
|
|
285
|
+
updateMask?:
|
|
286
|
+
string;
|
|
232
287
|
}
|
|
233
288
|
interface GoogleIamV1TestIamPermissionsRequest {
|
|
234
289
|
/**
|
|
235
290
|
* The set of permissions to check for the `resource`. Permissions with wildcards (such as `*` or `storage.*`) are not allowed. For more information see [IAM
|
|
236
291
|
* Overview](https://cloud.google.com/iam/docs/overview#permissions).
|
|
237
292
|
*/
|
|
238
|
-
permissions?:
|
|
293
|
+
permissions?:
|
|
294
|
+
string[];
|
|
239
295
|
}
|
|
240
296
|
interface GoogleIamV1TestIamPermissionsResponse {
|
|
241
297
|
/** A subset of `TestPermissionsRequest.permissions` that the caller is allowed. */
|
|
242
|
-
permissions?:
|
|
298
|
+
permissions?:
|
|
299
|
+
string[];
|
|
243
300
|
}
|
|
244
301
|
interface HttpHeaderMatch {
|
|
245
302
|
/**
|
|
246
303
|
* Required. The name of the HTTP header to match. For matching against the HTTP request's authority, use a headerMatch with the header name ":authority". For matching a request's
|
|
247
304
|
* method, use the headerName ":method".
|
|
248
305
|
*/
|
|
249
|
-
headerName?:
|
|
306
|
+
headerName?:
|
|
307
|
+
string;
|
|
250
308
|
/**
|
|
251
309
|
* Required. The value of the header must match the regular expression specified in regexMatch. For regular expression grammar, please see: en.cppreference.com/w/cpp/regex/ecmascript
|
|
252
310
|
* For matching against a port specified in the HTTP request, use a headerMatch with headerName set to Host and a regular expression that satisfies the RFC2616 Host header's port
|
|
253
311
|
* specifier.
|
|
254
312
|
*/
|
|
255
|
-
regexMatch?:
|
|
313
|
+
regexMatch?:
|
|
314
|
+
string;
|
|
256
315
|
}
|
|
257
316
|
interface ListAuthorizationPoliciesResponse {
|
|
258
317
|
/** List of AuthorizationPolicies resources. */
|
|
259
|
-
authorizationPolicies?:
|
|
318
|
+
authorizationPolicies?:
|
|
319
|
+
AuthorizationPolicy[];
|
|
260
320
|
/**
|
|
261
321
|
* If there might be more results than those appearing in this response, then `next_page_token` is included. To get the next set of results, call this method again using the value of
|
|
262
322
|
* `next_page_token` as `page_token`.
|
|
263
323
|
*/
|
|
264
|
-
nextPageToken?:
|
|
324
|
+
nextPageToken?:
|
|
325
|
+
string;
|
|
265
326
|
}
|
|
266
327
|
interface ListClientTlsPoliciesResponse {
|
|
267
328
|
/** List of ClientTlsPolicy resources. */
|
|
268
|
-
clientTlsPolicies?:
|
|
329
|
+
clientTlsPolicies?:
|
|
330
|
+
ClientTlsPolicy[];
|
|
269
331
|
/**
|
|
270
332
|
* If there might be more results than those appearing in this response, then `next_page_token` is included. To get the next set of results, call this method again using the value of
|
|
271
333
|
* `next_page_token` as `page_token`.
|
|
272
334
|
*/
|
|
273
|
-
nextPageToken?:
|
|
335
|
+
nextPageToken?:
|
|
336
|
+
string;
|
|
274
337
|
}
|
|
275
338
|
interface ListGatewaySecurityPoliciesResponse {
|
|
276
339
|
/** List of GatewaySecurityPolicies resources. */
|
|
277
|
-
gatewaySecurityPolicies?:
|
|
340
|
+
gatewaySecurityPolicies?:
|
|
341
|
+
GatewaySecurityPolicy[];
|
|
278
342
|
/**
|
|
279
343
|
* If there might be more results than those appearing in this response, then 'next_page_token' is included. To get the next set of results, call this method again using the value of
|
|
280
344
|
* 'next_page_token' as 'page_token'.
|
|
281
345
|
*/
|
|
282
|
-
nextPageToken?:
|
|
346
|
+
nextPageToken?:
|
|
347
|
+
string;
|
|
283
348
|
/** Locations that could not be reached. */
|
|
284
|
-
unreachable?:
|
|
349
|
+
unreachable?:
|
|
350
|
+
string[];
|
|
285
351
|
}
|
|
286
352
|
interface ListGatewaySecurityPolicyRulesResponse {
|
|
287
353
|
/** List of GatewaySecurityPolicyRule resources. */
|
|
288
|
-
gatewaySecurityPolicyRules?:
|
|
354
|
+
gatewaySecurityPolicyRules?:
|
|
355
|
+
GatewaySecurityPolicyRule[];
|
|
289
356
|
/**
|
|
290
357
|
* If there might be more results than those appearing in this response, then 'next_page_token' is included. To get the next set of results, call this method again using the value of
|
|
291
358
|
* 'next_page_token' as 'page_token'.
|
|
292
359
|
*/
|
|
293
|
-
nextPageToken?:
|
|
360
|
+
nextPageToken?:
|
|
361
|
+
string;
|
|
294
362
|
/** Locations that could not be reached. */
|
|
295
|
-
unreachable?:
|
|
363
|
+
unreachable?:
|
|
364
|
+
string[];
|
|
296
365
|
}
|
|
297
366
|
interface ListLocationsResponse {
|
|
298
367
|
/** A list of locations that matches the specified filter in the request. */
|
|
299
|
-
locations?:
|
|
368
|
+
locations?:
|
|
369
|
+
Location[];
|
|
300
370
|
/** The standard List next-page token. */
|
|
301
|
-
nextPageToken?:
|
|
371
|
+
nextPageToken?:
|
|
372
|
+
string;
|
|
302
373
|
}
|
|
303
374
|
interface ListOperationsResponse {
|
|
304
375
|
/** The standard List next-page token. */
|
|
305
|
-
nextPageToken?:
|
|
376
|
+
nextPageToken?:
|
|
377
|
+
string;
|
|
306
378
|
/** A list of operations that matches the specified filter in the request. */
|
|
307
|
-
operations?:
|
|
379
|
+
operations?:
|
|
380
|
+
Operation[];
|
|
308
381
|
}
|
|
309
382
|
interface ListServerTlsPoliciesResponse {
|
|
310
383
|
/**
|
|
311
384
|
* If there might be more results than those appearing in this response, then `next_page_token` is included. To get the next set of results, call this method again using the value of
|
|
312
385
|
* `next_page_token` as `page_token`.
|
|
313
386
|
*/
|
|
314
|
-
nextPageToken?:
|
|
387
|
+
nextPageToken?:
|
|
388
|
+
string;
|
|
315
389
|
/** List of ServerTlsPolicy resources. */
|
|
316
|
-
serverTlsPolicies?:
|
|
390
|
+
serverTlsPolicies?:
|
|
391
|
+
ServerTlsPolicy[];
|
|
317
392
|
}
|
|
318
393
|
interface ListTlsInspectionPoliciesResponse {
|
|
319
394
|
/**
|
|
320
395
|
* If there might be more results than those appearing in this response, then 'next_page_token' is included. To get the next set of results, call this method again using the value of
|
|
321
396
|
* 'next_page_token' as 'page_token'.
|
|
322
397
|
*/
|
|
323
|
-
nextPageToken?:
|
|
398
|
+
nextPageToken?:
|
|
399
|
+
string;
|
|
324
400
|
/** List of TlsInspectionPolicies resources. */
|
|
325
|
-
tlsInspectionPolicies?:
|
|
401
|
+
tlsInspectionPolicies?:
|
|
402
|
+
TlsInspectionPolicy[];
|
|
326
403
|
/** Locations that could not be reached. */
|
|
327
|
-
unreachable?:
|
|
404
|
+
unreachable?:
|
|
405
|
+
string[];
|
|
328
406
|
}
|
|
329
407
|
interface ListUrlListsResponse {
|
|
330
408
|
/**
|
|
331
409
|
* If there might be more results than those appearing in this response, then `next_page_token` is included. To get the next set of results, call this method again using the value of
|
|
332
410
|
* `next_page_token` as `page_token`.
|
|
333
411
|
*/
|
|
334
|
-
nextPageToken?:
|
|
412
|
+
nextPageToken?:
|
|
413
|
+
string;
|
|
335
414
|
/** Locations that could not be reached. */
|
|
336
|
-
unreachable?:
|
|
415
|
+
unreachable?:
|
|
416
|
+
string[];
|
|
337
417
|
/** List of UrlList resources. */
|
|
338
|
-
urlLists?:
|
|
418
|
+
urlLists?:
|
|
419
|
+
UrlList[];
|
|
339
420
|
}
|
|
340
421
|
interface Location {
|
|
341
422
|
/** The friendly name for this location, typically a nearby city name. For example, "Tokyo". */
|
|
342
|
-
displayName?:
|
|
423
|
+
displayName?:
|
|
424
|
+
string;
|
|
343
425
|
/** Cross-service attributes for the location. For example {"cloud.googleapis.com/region": "us-east1"} */
|
|
344
|
-
labels?:
|
|
426
|
+
labels?:
|
|
427
|
+
{ [P in string]: string };
|
|
345
428
|
/** The canonical id for this location. For example: `"us-east1"`. */
|
|
346
|
-
locationId?:
|
|
429
|
+
locationId?:
|
|
430
|
+
string;
|
|
347
431
|
/** Service-specific metadata. For example the available capacity at the given location. */
|
|
348
|
-
metadata?:
|
|
432
|
+
metadata?:
|
|
433
|
+
{ [P in string]: any };
|
|
349
434
|
/** Resource name for the location, which may vary between implementations. For example: `"projects/example-project/locations/us-east1"` */
|
|
350
|
-
name?:
|
|
435
|
+
name?:
|
|
436
|
+
string;
|
|
351
437
|
}
|
|
352
438
|
interface MTLSPolicy {
|
|
353
439
|
/**
|
|
354
|
-
* Required if the policy is to be used with Traffic Director. For
|
|
355
|
-
* the client certificate.
|
|
440
|
+
* Required if the policy is to be used with Traffic Director. For external HTTPS load balancers it must be empty. Defines the mechanism to obtain the Certificate Authority certificate
|
|
441
|
+
* to validate the client certificate.
|
|
356
442
|
*/
|
|
357
|
-
clientValidationCa?:
|
|
443
|
+
clientValidationCa?:
|
|
444
|
+
ValidationCA[];
|
|
358
445
|
/**
|
|
359
|
-
*
|
|
360
|
-
* Traffic Director it must be empty.
|
|
446
|
+
* 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
|
|
447
|
+
* policy is to be used with the external HTTPS load balancing. For Traffic Director it must be empty.
|
|
361
448
|
*/
|
|
362
|
-
clientValidationMode?:
|
|
449
|
+
clientValidationMode?:
|
|
450
|
+
string;
|
|
363
451
|
/**
|
|
364
452
|
* Reference to the TrustConfig from certificatemanager.googleapis.com namespace. If specified, the chain validation will be performed against certificates configured in the given
|
|
365
|
-
* TrustConfig. Allowed only if the policy is to be used with
|
|
453
|
+
* TrustConfig. Allowed only if the policy is to be used with external HTTPS load balancers.
|
|
366
454
|
*/
|
|
367
|
-
clientValidationTrustConfig?:
|
|
455
|
+
clientValidationTrustConfig?:
|
|
456
|
+
string;
|
|
368
457
|
}
|
|
369
458
|
interface Operation {
|
|
370
459
|
/** If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available. */
|
|
371
|
-
done?:
|
|
460
|
+
done?:
|
|
461
|
+
boolean;
|
|
372
462
|
/** The error result of the operation in case of failure or cancellation. */
|
|
373
|
-
error?:
|
|
463
|
+
error?:
|
|
464
|
+
Status;
|
|
374
465
|
/**
|
|
375
466
|
* Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such
|
|
376
467
|
* metadata. Any method that returns a long-running operation should document the metadata type, if any.
|
|
377
468
|
*/
|
|
378
|
-
metadata?:
|
|
469
|
+
metadata?:
|
|
470
|
+
{ [P in string]: any };
|
|
379
471
|
/**
|
|
380
472
|
* The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending
|
|
381
473
|
* with `operations/{unique_id}`.
|
|
382
474
|
*/
|
|
383
|
-
name?:
|
|
475
|
+
name?:
|
|
476
|
+
string;
|
|
384
477
|
/**
|
|
385
478
|
* The normal response of the operation in case of success. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the
|
|
386
479
|
* original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the
|
|
387
480
|
* original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
|
|
388
481
|
*/
|
|
389
|
-
response?:
|
|
482
|
+
response?:
|
|
483
|
+
{ [P in string]: any };
|
|
390
484
|
}
|
|
391
485
|
interface OperationMetadata {
|
|
392
486
|
/** Output only. API version used to start the operation. */
|
|
393
|
-
apiVersion?:
|
|
487
|
+
apiVersion?:
|
|
488
|
+
string;
|
|
394
489
|
/** Output only. The time the operation was created. */
|
|
395
|
-
createTime?:
|
|
490
|
+
createTime?:
|
|
491
|
+
string;
|
|
396
492
|
/** Output only. The time the operation finished running. */
|
|
397
|
-
endTime?:
|
|
493
|
+
endTime?:
|
|
494
|
+
string;
|
|
398
495
|
/**
|
|
399
496
|
* Output only. Identifies whether the user has requested cancellation of the operation. Operations that have successfully been cancelled have Operation.error value with a
|
|
400
497
|
* google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
|
|
401
498
|
*/
|
|
402
|
-
requestedCancellation?:
|
|
499
|
+
requestedCancellation?:
|
|
500
|
+
boolean;
|
|
403
501
|
/** Output only. Human-readable status of the operation, if any. */
|
|
404
|
-
statusMessage?:
|
|
502
|
+
statusMessage?:
|
|
503
|
+
string;
|
|
405
504
|
/** Output only. Server-defined resource path for the target of the operation. */
|
|
406
|
-
target?:
|
|
505
|
+
target?:
|
|
506
|
+
string;
|
|
407
507
|
/** Output only. Name of the verb executed by the operation. */
|
|
408
|
-
verb?:
|
|
508
|
+
verb?:
|
|
509
|
+
string;
|
|
409
510
|
}
|
|
410
511
|
interface Rule {
|
|
411
512
|
/**
|
|
412
513
|
* Optional. List of attributes for the traffic destination. All of the destinations must match. A destination is a match if a request matches all the specified hosts, ports, methods
|
|
413
514
|
* and headers. If not set, the action specified in the 'action' field will be applied without any rule checks for the destination.
|
|
414
515
|
*/
|
|
415
|
-
destinations?:
|
|
516
|
+
destinations?:
|
|
517
|
+
Destination[];
|
|
416
518
|
/**
|
|
417
519
|
* Optional. List of attributes for the traffic source. All of the sources must match. A source is a match if both principals and ip_blocks match. If not set, the action specified in
|
|
418
520
|
* the 'action' field will be applied without any rule checks for the source.
|
|
419
521
|
*/
|
|
420
|
-
sources?:
|
|
522
|
+
sources?:
|
|
523
|
+
Source[];
|
|
421
524
|
}
|
|
422
525
|
interface ServerTlsPolicy {
|
|
423
526
|
/**
|
|
424
|
-
*
|
|
425
|
-
* plain text connections. By default, it is set to false. This setting is not exclusive of other encryption modes. For example, if `allow_open` and
|
|
426
|
-
* allows both plain text and mTLS connections. See documentation of other encryption modes to confirm compatibility. Consider using it if you wish to
|
|
427
|
-
* to TLS while having mixed TLS and non-TLS traffic reaching port :80.
|
|
527
|
+
* This field applies only for Traffic Director policies. It is must be set to false for external HTTPS load balancer policies. Determines if server allows plaintext connections. If
|
|
528
|
+
* set to true, server allows plain text connections. By default, it is set to false. This setting is not exclusive of other encryption modes. For example, if `allow_open` and
|
|
529
|
+
* `mtls_policy` are set, server allows both plain text and mTLS connections. See documentation of other encryption modes to confirm compatibility. Consider using it if you wish to
|
|
530
|
+
* upgrade in place your deployment to TLS while having mixed TLS and non-TLS traffic reaching port :80.
|
|
428
531
|
*/
|
|
429
|
-
allowOpen?:
|
|
532
|
+
allowOpen?:
|
|
533
|
+
boolean;
|
|
430
534
|
/** Output only. The timestamp when the resource was created. */
|
|
431
|
-
createTime?:
|
|
535
|
+
createTime?:
|
|
536
|
+
string;
|
|
432
537
|
/** Free-text description of the resource. */
|
|
433
|
-
description?:
|
|
538
|
+
description?:
|
|
539
|
+
string;
|
|
434
540
|
/** Set of label tags associated with the resource. */
|
|
435
|
-
labels?:
|
|
541
|
+
labels?:
|
|
542
|
+
{ [P in string]: string };
|
|
436
543
|
/**
|
|
437
|
-
*
|
|
438
|
-
* authentication (Mutual TLS - mTLS). If not specified, client certificate will not be requested. The connection is treated as TLS and not mTLS. If
|
|
439
|
-
* set, server allows both plain text and mTLS connections.
|
|
544
|
+
* This field is required if the policy is used with external HTTPS load balancers. This field can be empty for Traffic Director. Defines a mechanism to provision peer validation
|
|
545
|
+
* certificates for peer to peer authentication (Mutual TLS - mTLS). If not specified, client certificate will not be requested. The connection is treated as TLS and not mTLS. If
|
|
546
|
+
* `allow_open` and `mtls_policy` are set, server allows both plain text and mTLS connections.
|
|
440
547
|
*/
|
|
441
|
-
mtlsPolicy?:
|
|
548
|
+
mtlsPolicy?:
|
|
549
|
+
MTLSPolicy;
|
|
442
550
|
/** Required. Name of the ServerTlsPolicy resource. It matches the pattern `projects/*/locations/{location}/serverTlsPolicies/{server_tls_policy}` */
|
|
443
|
-
name?:
|
|
551
|
+
name?:
|
|
552
|
+
string;
|
|
444
553
|
/**
|
|
445
|
-
* Optional if policy is to be used with Traffic Director
|
|
446
|
-
* combined with `allow_open` as a permissive mode that allows both plain text and TLS is not supported.
|
|
554
|
+
* Optional if policy is to be used with Traffic Director. For external HTTPS load balancer must be empty. Defines a mechanism to provision server identity (public and private keys).
|
|
555
|
+
* Cannot be combined with `allow_open` as a permissive mode that allows both plain text and TLS is not supported.
|
|
447
556
|
*/
|
|
448
|
-
serverCertificate?:
|
|
557
|
+
serverCertificate?:
|
|
558
|
+
GoogleCloudNetworksecurityV1CertificateProvider;
|
|
449
559
|
/** Output only. The timestamp when the resource was updated. */
|
|
450
|
-
updateTime?:
|
|
560
|
+
updateTime?:
|
|
561
|
+
string;
|
|
451
562
|
}
|
|
452
563
|
interface Source {
|
|
453
564
|
/**
|
|
454
565
|
* 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.
|
|
455
566
|
* Authorization based on source IP alone should be avoided. The IP addresses of any load balancers or proxies should be considered untrusted.
|
|
456
567
|
*/
|
|
457
|
-
ipBlocks?:
|
|
568
|
+
ipBlocks?:
|
|
569
|
+
string[];
|
|
458
570
|
/**
|
|
459
571
|
* Optional. List of peer identities to match for authorization. At least one principal should match. Each peer can be an exact match, or a prefix match (example, "namespace/*") or a
|
|
460
572
|
* suffix match (example, "*/service-account") or a presence match "*". Authorization based on the principal name without certificate validation (configured by ServerTlsPolicy
|
|
461
573
|
* resource) is considered insecure.
|
|
462
574
|
*/
|
|
463
|
-
principals?:
|
|
575
|
+
principals?:
|
|
576
|
+
string[];
|
|
464
577
|
}
|
|
465
578
|
interface Status {
|
|
466
579
|
/** The status code, which should be an enum value of google.rpc.Code. */
|
|
467
|
-
code?:
|
|
580
|
+
code?:
|
|
581
|
+
number;
|
|
468
582
|
/** A list of messages that carry the error details. There is a common set of message types for APIs to use. */
|
|
469
|
-
details?:
|
|
583
|
+
details?:
|
|
584
|
+
Array<{ [P in string]: any }>;
|
|
470
585
|
/**
|
|
471
586
|
* A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the
|
|
472
587
|
* client.
|
|
473
588
|
*/
|
|
474
|
-
message?:
|
|
589
|
+
message?:
|
|
590
|
+
string;
|
|
475
591
|
}
|
|
476
592
|
interface TlsInspectionPolicy {
|
|
477
593
|
/**
|
|
478
594
|
* Required. A CA pool resource used to issue interception certificates. The CA pool string has a relative resource path following the form
|
|
479
595
|
* "projects/{project}/locations/{location}/caPools/{ca_pool}".
|
|
480
596
|
*/
|
|
481
|
-
caPool?:
|
|
597
|
+
caPool?:
|
|
598
|
+
string;
|
|
482
599
|
/** Output only. The timestamp when the resource was created. */
|
|
483
|
-
createTime?:
|
|
600
|
+
createTime?:
|
|
601
|
+
string;
|
|
484
602
|
/** Optional. Free-text description of the resource. */
|
|
485
|
-
description?:
|
|
603
|
+
description?:
|
|
604
|
+
string;
|
|
486
605
|
/**
|
|
487
606
|
* Required. Name of the resource. Name is of the form projects/{project}/locations/{location}/tlsInspectionPolicies/{tls_inspection_policy} tls_inspection_policy should match the
|
|
488
607
|
* pattern:(^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$).
|
|
489
608
|
*/
|
|
490
|
-
name?:
|
|
609
|
+
name?:
|
|
610
|
+
string;
|
|
491
611
|
/** Output only. The timestamp when the resource was updated. */
|
|
492
|
-
updateTime?:
|
|
612
|
+
updateTime?:
|
|
613
|
+
string;
|
|
493
614
|
}
|
|
494
615
|
interface UrlList {
|
|
495
616
|
/** Output only. Time when the security policy was created. */
|
|
496
|
-
createTime?:
|
|
617
|
+
createTime?:
|
|
618
|
+
string;
|
|
497
619
|
/** Optional. Free-text description of the resource. */
|
|
498
|
-
description?:
|
|
620
|
+
description?:
|
|
621
|
+
string;
|
|
499
622
|
/**
|
|
500
623
|
* Required. Name of the resource provided by the user. Name is of the form projects/{project}/locations/{location}/urlLists/{url_list} url_list should match the
|
|
501
624
|
* pattern:(^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$).
|
|
502
625
|
*/
|
|
503
|
-
name?:
|
|
626
|
+
name?:
|
|
627
|
+
string;
|
|
504
628
|
/** Output only. Time when the security policy was updated. */
|
|
505
|
-
updateTime?:
|
|
629
|
+
updateTime?:
|
|
630
|
+
string;
|
|
506
631
|
/** Required. FQDNs and URLs. */
|
|
507
|
-
values?:
|
|
632
|
+
values?:
|
|
633
|
+
string[];
|
|
508
634
|
}
|
|
509
635
|
interface ValidationCA {
|
|
510
636
|
/** The certificate provider instance specification that will be passed to the data plane, which will be used to load necessary credential information. */
|
|
511
|
-
certificateProviderInstance?:
|
|
637
|
+
certificateProviderInstance?:
|
|
638
|
+
CertificateProviderInstance;
|
|
512
639
|
/** gRPC specific configuration to access the gRPC server to obtain the CA certificate. */
|
|
513
|
-
grpcEndpoint?:
|
|
640
|
+
grpcEndpoint?:
|
|
641
|
+
GoogleCloudNetworksecurityV1GrpcEndpoint;
|
|
514
642
|
}
|
|
515
643
|
interface AuthorizationPoliciesResource {
|
|
516
644
|
/** Creates a new AuthorizationPolicy in a given project and location. */
|
|
517
645
|
create(request: {
|
|
518
646
|
/** V1 error format. */
|
|
519
|
-
"$.xgafv"?:
|
|
647
|
+
"$.xgafv"?:
|
|
648
|
+
string;
|
|
520
649
|
/** OAuth access token. */
|
|
521
|
-
access_token?:
|
|
650
|
+
access_token?:
|
|
651
|
+
string;
|
|
522
652
|
/** Data format for response. */
|
|
523
|
-
alt?:
|
|
653
|
+
alt?:
|
|
654
|
+
string;
|
|
524
655
|
/**
|
|
525
656
|
* 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,
|
|
526
657
|
* and should not start with a number. E.g. "authz_policy".
|
|
527
658
|
*/
|
|
528
|
-
authorizationPolicyId?:
|
|
659
|
+
authorizationPolicyId?:
|
|
660
|
+
string;
|
|
529
661
|
/** JSONP */
|
|
530
|
-
callback?:
|
|
662
|
+
callback?:
|
|
663
|
+
string;
|
|
531
664
|
/** Selector specifying which fields to include in a partial response. */
|
|
532
|
-
fields?:
|
|
665
|
+
fields?:
|
|
666
|
+
string;
|
|
533
667
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
534
|
-
key?:
|
|
668
|
+
key?:
|
|
669
|
+
string;
|
|
535
670
|
/** OAuth 2.0 token for the current user. */
|
|
536
|
-
oauth_token?:
|
|
671
|
+
oauth_token?:
|
|
672
|
+
string;
|
|
537
673
|
/** Required. The parent resource of the AuthorizationPolicy. Must be in the format `projects/{project}/locations/{location}`. */
|
|
538
|
-
parent:
|
|
674
|
+
parent:
|
|
675
|
+
string;
|
|
539
676
|
/** Returns response with indentations and line breaks. */
|
|
540
|
-
prettyPrint?:
|
|
677
|
+
prettyPrint?:
|
|
678
|
+
boolean;
|
|
541
679
|
/** 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. */
|
|
542
|
-
quotaUser?:
|
|
680
|
+
quotaUser?:
|
|
681
|
+
string;
|
|
543
682
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
544
|
-
upload_protocol?:
|
|
683
|
+
upload_protocol?:
|
|
684
|
+
string;
|
|
545
685
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
546
|
-
uploadType?:
|
|
686
|
+
uploadType?:
|
|
687
|
+
string;
|
|
547
688
|
/** Request body */
|
|
548
|
-
resource:
|
|
689
|
+
resource:
|
|
690
|
+
AuthorizationPolicy;
|
|
549
691
|
}): Request<Operation>;
|
|
550
692
|
create(request: {
|
|
551
693
|
/** V1 error format. */
|
|
552
|
-
"$.xgafv"?:
|
|
694
|
+
"$.xgafv"?:
|
|
695
|
+
string;
|
|
553
696
|
/** OAuth access token. */
|
|
554
|
-
access_token?:
|
|
697
|
+
access_token?:
|
|
698
|
+
string;
|
|
555
699
|
/** Data format for response. */
|
|
556
|
-
alt?:
|
|
700
|
+
alt?:
|
|
701
|
+
string;
|
|
557
702
|
/**
|
|
558
703
|
* 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,
|
|
559
704
|
* and should not start with a number. E.g. "authz_policy".
|
|
560
705
|
*/
|
|
561
|
-
authorizationPolicyId?:
|
|
706
|
+
authorizationPolicyId?:
|
|
707
|
+
string;
|
|
562
708
|
/** JSONP */
|
|
563
|
-
callback?:
|
|
709
|
+
callback?:
|
|
710
|
+
string;
|
|
564
711
|
/** Selector specifying which fields to include in a partial response. */
|
|
565
|
-
fields?:
|
|
712
|
+
fields?:
|
|
713
|
+
string;
|
|
566
714
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
567
|
-
key?:
|
|
715
|
+
key?:
|
|
716
|
+
string;
|
|
568
717
|
/** OAuth 2.0 token for the current user. */
|
|
569
|
-
oauth_token?:
|
|
718
|
+
oauth_token?:
|
|
719
|
+
string;
|
|
570
720
|
/** Required. The parent resource of the AuthorizationPolicy. Must be in the format `projects/{project}/locations/{location}`. */
|
|
571
|
-
parent:
|
|
721
|
+
parent:
|
|
722
|
+
string;
|
|
572
723
|
/** Returns response with indentations and line breaks. */
|
|
573
|
-
prettyPrint?:
|
|
724
|
+
prettyPrint?:
|
|
725
|
+
boolean;
|
|
574
726
|
/** 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. */
|
|
575
|
-
quotaUser?:
|
|
727
|
+
quotaUser?:
|
|
728
|
+
string;
|
|
576
729
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
577
|
-
upload_protocol?:
|
|
730
|
+
upload_protocol?:
|
|
731
|
+
string;
|
|
578
732
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
579
|
-
uploadType?:
|
|
733
|
+
uploadType?:
|
|
734
|
+
string;
|
|
580
735
|
},
|
|
581
736
|
body: AuthorizationPolicy): Request<Operation>;
|
|
582
737
|
/** Deletes a single AuthorizationPolicy. */
|
|
583
738
|
delete(request?: {
|
|
584
739
|
/** V1 error format. */
|
|
585
|
-
"$.xgafv"?:
|
|
740
|
+
"$.xgafv"?:
|
|
741
|
+
string;
|
|
586
742
|
/** OAuth access token. */
|
|
587
|
-
access_token?:
|
|
743
|
+
access_token?:
|
|
744
|
+
string;
|
|
588
745
|
/** Data format for response. */
|
|
589
|
-
alt?:
|
|
746
|
+
alt?:
|
|
747
|
+
string;
|
|
590
748
|
/** JSONP */
|
|
591
|
-
callback?:
|
|
749
|
+
callback?:
|
|
750
|
+
string;
|
|
592
751
|
/** Selector specifying which fields to include in a partial response. */
|
|
593
|
-
fields?:
|
|
752
|
+
fields?:
|
|
753
|
+
string;
|
|
594
754
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
595
|
-
key?:
|
|
755
|
+
key?:
|
|
756
|
+
string;
|
|
596
757
|
/** Required. A name of the AuthorizationPolicy to delete. Must be in the format `projects/{project}/locations/{location}/authorizationPolicies/*`. */
|
|
597
|
-
name:
|
|
758
|
+
name:
|
|
759
|
+
string;
|
|
598
760
|
/** OAuth 2.0 token for the current user. */
|
|
599
|
-
oauth_token?:
|
|
761
|
+
oauth_token?:
|
|
762
|
+
string;
|
|
600
763
|
/** Returns response with indentations and line breaks. */
|
|
601
|
-
prettyPrint?:
|
|
764
|
+
prettyPrint?:
|
|
765
|
+
boolean;
|
|
602
766
|
/** 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. */
|
|
603
|
-
quotaUser?:
|
|
767
|
+
quotaUser?:
|
|
768
|
+
string;
|
|
604
769
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
605
|
-
upload_protocol?:
|
|
770
|
+
upload_protocol?:
|
|
771
|
+
string;
|
|
606
772
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
607
|
-
uploadType?:
|
|
773
|
+
uploadType?:
|
|
774
|
+
string;
|
|
608
775
|
}): Request<Operation>;
|
|
609
776
|
/** Gets details of a single AuthorizationPolicy. */
|
|
610
777
|
get(request?: {
|
|
611
778
|
/** V1 error format. */
|
|
612
|
-
"$.xgafv"?:
|
|
779
|
+
"$.xgafv"?:
|
|
780
|
+
string;
|
|
613
781
|
/** OAuth access token. */
|
|
614
|
-
access_token?:
|
|
782
|
+
access_token?:
|
|
783
|
+
string;
|
|
615
784
|
/** Data format for response. */
|
|
616
|
-
alt?:
|
|
785
|
+
alt?:
|
|
786
|
+
string;
|
|
617
787
|
/** JSONP */
|
|
618
|
-
callback?:
|
|
788
|
+
callback?:
|
|
789
|
+
string;
|
|
619
790
|
/** Selector specifying which fields to include in a partial response. */
|
|
620
|
-
fields?:
|
|
791
|
+
fields?:
|
|
792
|
+
string;
|
|
621
793
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
622
|
-
key?:
|
|
794
|
+
key?:
|
|
795
|
+
string;
|
|
623
796
|
/** Required. A name of the AuthorizationPolicy to get. Must be in the format `projects/{project}/locations/{location}/authorizationPolicies/*`. */
|
|
624
|
-
name:
|
|
797
|
+
name:
|
|
798
|
+
string;
|
|
625
799
|
/** OAuth 2.0 token for the current user. */
|
|
626
|
-
oauth_token?:
|
|
800
|
+
oauth_token?:
|
|
801
|
+
string;
|
|
627
802
|
/** Returns response with indentations and line breaks. */
|
|
628
|
-
prettyPrint?:
|
|
803
|
+
prettyPrint?:
|
|
804
|
+
boolean;
|
|
629
805
|
/** 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. */
|
|
630
|
-
quotaUser?:
|
|
806
|
+
quotaUser?:
|
|
807
|
+
string;
|
|
631
808
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
632
|
-
upload_protocol?:
|
|
809
|
+
upload_protocol?:
|
|
810
|
+
string;
|
|
633
811
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
634
|
-
uploadType?:
|
|
812
|
+
uploadType?:
|
|
813
|
+
string;
|
|
635
814
|
}): Request<AuthorizationPolicy>;
|
|
636
815
|
/** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
|
|
637
816
|
getIamPolicy(request?: {
|
|
638
817
|
/** V1 error format. */
|
|
639
|
-
"$.xgafv"?:
|
|
818
|
+
"$.xgafv"?:
|
|
819
|
+
string;
|
|
640
820
|
/** OAuth access token. */
|
|
641
|
-
access_token?:
|
|
821
|
+
access_token?:
|
|
822
|
+
string;
|
|
642
823
|
/** Data format for response. */
|
|
643
|
-
alt?:
|
|
824
|
+
alt?:
|
|
825
|
+
string;
|
|
644
826
|
/** JSONP */
|
|
645
|
-
callback?:
|
|
827
|
+
callback?:
|
|
828
|
+
string;
|
|
646
829
|
/** Selector specifying which fields to include in a partial response. */
|
|
647
|
-
fields?:
|
|
830
|
+
fields?:
|
|
831
|
+
string;
|
|
648
832
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
649
|
-
key?:
|
|
833
|
+
key?:
|
|
834
|
+
string;
|
|
650
835
|
/** OAuth 2.0 token for the current user. */
|
|
651
|
-
oauth_token?:
|
|
836
|
+
oauth_token?:
|
|
837
|
+
string;
|
|
652
838
|
/**
|
|
653
839
|
* Optional. The maximum policy version that will be used to format the policy. Valid values are 0, 1, and 3. Requests specifying an invalid value will be rejected. Requests for
|
|
654
840
|
* policies with any conditional role bindings must specify version 3. Policies with no conditional role bindings may specify any valid value or leave the field unset. The policy
|
|
@@ -656,150 +842,209 @@ declare namespace gapi.client {
|
|
|
656
842
|
* role bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM
|
|
657
843
|
* documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
|
|
658
844
|
*/
|
|
659
|
-
"options.requestedPolicyVersion"?:
|
|
845
|
+
"options.requestedPolicyVersion"?:
|
|
846
|
+
number;
|
|
660
847
|
/** Returns response with indentations and line breaks. */
|
|
661
|
-
prettyPrint?:
|
|
848
|
+
prettyPrint?:
|
|
849
|
+
boolean;
|
|
662
850
|
/** 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. */
|
|
663
|
-
quotaUser?:
|
|
851
|
+
quotaUser?:
|
|
852
|
+
string;
|
|
664
853
|
/**
|
|
665
854
|
* REQUIRED: The resource for which the policy is being requested. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this
|
|
666
855
|
* field.
|
|
667
856
|
*/
|
|
668
|
-
resource:
|
|
857
|
+
resource:
|
|
858
|
+
string;
|
|
669
859
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
670
|
-
upload_protocol?:
|
|
860
|
+
upload_protocol?:
|
|
861
|
+
string;
|
|
671
862
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
672
|
-
uploadType?:
|
|
863
|
+
uploadType?:
|
|
864
|
+
string;
|
|
673
865
|
}): Request<GoogleIamV1Policy>;
|
|
674
866
|
/** Lists AuthorizationPolicies in a given project and location. */
|
|
675
867
|
list(request?: {
|
|
676
868
|
/** V1 error format. */
|
|
677
|
-
"$.xgafv"?:
|
|
869
|
+
"$.xgafv"?:
|
|
870
|
+
string;
|
|
678
871
|
/** OAuth access token. */
|
|
679
|
-
access_token?:
|
|
872
|
+
access_token?:
|
|
873
|
+
string;
|
|
680
874
|
/** Data format for response. */
|
|
681
|
-
alt?:
|
|
875
|
+
alt?:
|
|
876
|
+
string;
|
|
682
877
|
/** JSONP */
|
|
683
|
-
callback?:
|
|
878
|
+
callback?:
|
|
879
|
+
string;
|
|
684
880
|
/** Selector specifying which fields to include in a partial response. */
|
|
685
|
-
fields?:
|
|
881
|
+
fields?:
|
|
882
|
+
string;
|
|
686
883
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
687
|
-
key?:
|
|
884
|
+
key?:
|
|
885
|
+
string;
|
|
688
886
|
/** OAuth 2.0 token for the current user. */
|
|
689
|
-
oauth_token?:
|
|
887
|
+
oauth_token?:
|
|
888
|
+
string;
|
|
690
889
|
/** Maximum number of AuthorizationPolicies to return per call. */
|
|
691
|
-
pageSize?:
|
|
890
|
+
pageSize?:
|
|
891
|
+
number;
|
|
692
892
|
/**
|
|
693
893
|
* The value returned by the last `ListAuthorizationPoliciesResponse` Indicates that this is a continuation of a prior `ListAuthorizationPolicies` call, and that the system should
|
|
694
894
|
* return the next page of data.
|
|
695
895
|
*/
|
|
696
|
-
pageToken?:
|
|
896
|
+
pageToken?:
|
|
897
|
+
string;
|
|
697
898
|
/** Required. The project and location from which the AuthorizationPolicies should be listed, specified in the format `projects/{project}/locations/{location}`. */
|
|
698
|
-
parent:
|
|
899
|
+
parent:
|
|
900
|
+
string;
|
|
699
901
|
/** Returns response with indentations and line breaks. */
|
|
700
|
-
prettyPrint?:
|
|
902
|
+
prettyPrint?:
|
|
903
|
+
boolean;
|
|
701
904
|
/** 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. */
|
|
702
|
-
quotaUser?:
|
|
905
|
+
quotaUser?:
|
|
906
|
+
string;
|
|
703
907
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
704
|
-
upload_protocol?:
|
|
908
|
+
upload_protocol?:
|
|
909
|
+
string;
|
|
705
910
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
706
|
-
uploadType?:
|
|
911
|
+
uploadType?:
|
|
912
|
+
string;
|
|
707
913
|
}): Request<ListAuthorizationPoliciesResponse>;
|
|
708
914
|
/** Updates the parameters of a single AuthorizationPolicy. */
|
|
709
915
|
patch(request: {
|
|
710
916
|
/** V1 error format. */
|
|
711
|
-
"$.xgafv"?:
|
|
917
|
+
"$.xgafv"?:
|
|
918
|
+
string;
|
|
712
919
|
/** OAuth access token. */
|
|
713
|
-
access_token?:
|
|
920
|
+
access_token?:
|
|
921
|
+
string;
|
|
714
922
|
/** Data format for response. */
|
|
715
|
-
alt?:
|
|
923
|
+
alt?:
|
|
924
|
+
string;
|
|
716
925
|
/** JSONP */
|
|
717
|
-
callback?:
|
|
926
|
+
callback?:
|
|
927
|
+
string;
|
|
718
928
|
/** Selector specifying which fields to include in a partial response. */
|
|
719
|
-
fields?:
|
|
929
|
+
fields?:
|
|
930
|
+
string;
|
|
720
931
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
721
|
-
key?:
|
|
932
|
+
key?:
|
|
933
|
+
string;
|
|
722
934
|
/** Required. Name of the AuthorizationPolicy resource. It matches pattern `projects/{project}/locations/{location}/authorizationPolicies/`. */
|
|
723
|
-
name:
|
|
935
|
+
name:
|
|
936
|
+
string;
|
|
724
937
|
/** OAuth 2.0 token for the current user. */
|
|
725
|
-
oauth_token?:
|
|
938
|
+
oauth_token?:
|
|
939
|
+
string;
|
|
726
940
|
/** Returns response with indentations and line breaks. */
|
|
727
|
-
prettyPrint?:
|
|
941
|
+
prettyPrint?:
|
|
942
|
+
boolean;
|
|
728
943
|
/** 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. */
|
|
729
|
-
quotaUser?:
|
|
944
|
+
quotaUser?:
|
|
945
|
+
string;
|
|
730
946
|
/**
|
|
731
947
|
* Optional. Field mask is used to specify the fields to be overwritten in the AuthorizationPolicy resource by the update. The fields specified in the update_mask are relative to
|
|
732
948
|
* the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields will be overwritten.
|
|
733
949
|
*/
|
|
734
|
-
updateMask?:
|
|
950
|
+
updateMask?:
|
|
951
|
+
string;
|
|
735
952
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
736
|
-
upload_protocol?:
|
|
953
|
+
upload_protocol?:
|
|
954
|
+
string;
|
|
737
955
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
738
|
-
uploadType?:
|
|
956
|
+
uploadType?:
|
|
957
|
+
string;
|
|
739
958
|
/** Request body */
|
|
740
|
-
resource:
|
|
959
|
+
resource:
|
|
960
|
+
AuthorizationPolicy;
|
|
741
961
|
}): Request<Operation>;
|
|
742
962
|
patch(request: {
|
|
743
963
|
/** V1 error format. */
|
|
744
|
-
"$.xgafv"?:
|
|
964
|
+
"$.xgafv"?:
|
|
965
|
+
string;
|
|
745
966
|
/** OAuth access token. */
|
|
746
|
-
access_token?:
|
|
967
|
+
access_token?:
|
|
968
|
+
string;
|
|
747
969
|
/** Data format for response. */
|
|
748
|
-
alt?:
|
|
970
|
+
alt?:
|
|
971
|
+
string;
|
|
749
972
|
/** JSONP */
|
|
750
|
-
callback?:
|
|
973
|
+
callback?:
|
|
974
|
+
string;
|
|
751
975
|
/** Selector specifying which fields to include in a partial response. */
|
|
752
|
-
fields?:
|
|
976
|
+
fields?:
|
|
977
|
+
string;
|
|
753
978
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
754
|
-
key?:
|
|
979
|
+
key?:
|
|
980
|
+
string;
|
|
755
981
|
/** Required. Name of the AuthorizationPolicy resource. It matches pattern `projects/{project}/locations/{location}/authorizationPolicies/`. */
|
|
756
|
-
name:
|
|
982
|
+
name:
|
|
983
|
+
string;
|
|
757
984
|
/** OAuth 2.0 token for the current user. */
|
|
758
|
-
oauth_token?:
|
|
985
|
+
oauth_token?:
|
|
986
|
+
string;
|
|
759
987
|
/** Returns response with indentations and line breaks. */
|
|
760
|
-
prettyPrint?:
|
|
988
|
+
prettyPrint?:
|
|
989
|
+
boolean;
|
|
761
990
|
/** 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. */
|
|
762
|
-
quotaUser?:
|
|
991
|
+
quotaUser?:
|
|
992
|
+
string;
|
|
763
993
|
/**
|
|
764
994
|
* Optional. Field mask is used to specify the fields to be overwritten in the AuthorizationPolicy resource by the update. The fields specified in the update_mask are relative to
|
|
765
995
|
* the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields will be overwritten.
|
|
766
996
|
*/
|
|
767
|
-
updateMask?:
|
|
997
|
+
updateMask?:
|
|
998
|
+
string;
|
|
768
999
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
769
|
-
upload_protocol?:
|
|
1000
|
+
upload_protocol?:
|
|
1001
|
+
string;
|
|
770
1002
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
771
|
-
uploadType?:
|
|
1003
|
+
uploadType?:
|
|
1004
|
+
string;
|
|
772
1005
|
},
|
|
773
1006
|
body: AuthorizationPolicy): Request<Operation>;
|
|
774
1007
|
/** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
|
|
775
1008
|
setIamPolicy(request: {
|
|
776
1009
|
/** V1 error format. */
|
|
777
|
-
"$.xgafv"?:
|
|
1010
|
+
"$.xgafv"?:
|
|
1011
|
+
string;
|
|
778
1012
|
/** OAuth access token. */
|
|
779
|
-
access_token?:
|
|
1013
|
+
access_token?:
|
|
1014
|
+
string;
|
|
780
1015
|
/** Data format for response. */
|
|
781
|
-
alt?:
|
|
1016
|
+
alt?:
|
|
1017
|
+
string;
|
|
782
1018
|
/** JSONP */
|
|
783
|
-
callback?:
|
|
1019
|
+
callback?:
|
|
1020
|
+
string;
|
|
784
1021
|
/** Selector specifying which fields to include in a partial response. */
|
|
785
|
-
fields?:
|
|
1022
|
+
fields?:
|
|
1023
|
+
string;
|
|
786
1024
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
787
|
-
key?:
|
|
1025
|
+
key?:
|
|
1026
|
+
string;
|
|
788
1027
|
/** OAuth 2.0 token for the current user. */
|
|
789
|
-
oauth_token?:
|
|
1028
|
+
oauth_token?:
|
|
1029
|
+
string;
|
|
790
1030
|
/** Returns response with indentations and line breaks. */
|
|
791
|
-
prettyPrint?:
|
|
1031
|
+
prettyPrint?:
|
|
1032
|
+
boolean;
|
|
792
1033
|
/** 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. */
|
|
793
|
-
quotaUser?:
|
|
1034
|
+
quotaUser?:
|
|
1035
|
+
string;
|
|
794
1036
|
/**
|
|
795
1037
|
* REQUIRED: The resource for which the policy is being specified. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this
|
|
796
1038
|
* field.
|
|
797
1039
|
*/
|
|
798
|
-
resource:
|
|
1040
|
+
resource:
|
|
1041
|
+
string;
|
|
799
1042
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
800
|
-
upload_protocol?:
|
|
1043
|
+
upload_protocol?:
|
|
1044
|
+
string;
|
|
801
1045
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
802
|
-
uploadType?:
|
|
1046
|
+
uploadType?:
|
|
1047
|
+
string;
|
|
803
1048
|
},
|
|
804
1049
|
body: GoogleIamV1SetIamPolicyRequest): Request<GoogleIamV1Policy>;
|
|
805
1050
|
/**
|
|
@@ -808,32 +1053,44 @@ declare namespace gapi.client {
|
|
|
808
1053
|
*/
|
|
809
1054
|
testIamPermissions(request: {
|
|
810
1055
|
/** V1 error format. */
|
|
811
|
-
"$.xgafv"?:
|
|
1056
|
+
"$.xgafv"?:
|
|
1057
|
+
string;
|
|
812
1058
|
/** OAuth access token. */
|
|
813
|
-
access_token?:
|
|
1059
|
+
access_token?:
|
|
1060
|
+
string;
|
|
814
1061
|
/** Data format for response. */
|
|
815
|
-
alt?:
|
|
1062
|
+
alt?:
|
|
1063
|
+
string;
|
|
816
1064
|
/** JSONP */
|
|
817
|
-
callback?:
|
|
1065
|
+
callback?:
|
|
1066
|
+
string;
|
|
818
1067
|
/** Selector specifying which fields to include in a partial response. */
|
|
819
|
-
fields?:
|
|
1068
|
+
fields?:
|
|
1069
|
+
string;
|
|
820
1070
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
821
|
-
key?:
|
|
1071
|
+
key?:
|
|
1072
|
+
string;
|
|
822
1073
|
/** OAuth 2.0 token for the current user. */
|
|
823
|
-
oauth_token?:
|
|
1074
|
+
oauth_token?:
|
|
1075
|
+
string;
|
|
824
1076
|
/** Returns response with indentations and line breaks. */
|
|
825
|
-
prettyPrint?:
|
|
1077
|
+
prettyPrint?:
|
|
1078
|
+
boolean;
|
|
826
1079
|
/** 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. */
|
|
827
|
-
quotaUser?:
|
|
1080
|
+
quotaUser?:
|
|
1081
|
+
string;
|
|
828
1082
|
/**
|
|
829
1083
|
* REQUIRED: The resource for which the policy detail is being requested. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for
|
|
830
1084
|
* this field.
|
|
831
1085
|
*/
|
|
832
|
-
resource:
|
|
1086
|
+
resource:
|
|
1087
|
+
string;
|
|
833
1088
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
834
|
-
upload_protocol?:
|
|
1089
|
+
upload_protocol?:
|
|
1090
|
+
string;
|
|
835
1091
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
836
|
-
uploadType?:
|
|
1092
|
+
uploadType?:
|
|
1093
|
+
string;
|
|
837
1094
|
},
|
|
838
1095
|
body: GoogleIamV1TestIamPermissionsRequest): Request<GoogleIamV1TestIamPermissionsResponse>;
|
|
839
1096
|
}
|
|
@@ -841,139 +1098,197 @@ declare namespace gapi.client {
|
|
|
841
1098
|
/** Creates a new ClientTlsPolicy in a given project and location. */
|
|
842
1099
|
create(request: {
|
|
843
1100
|
/** V1 error format. */
|
|
844
|
-
"$.xgafv"?:
|
|
1101
|
+
"$.xgafv"?:
|
|
1102
|
+
string;
|
|
845
1103
|
/** OAuth access token. */
|
|
846
|
-
access_token?:
|
|
1104
|
+
access_token?:
|
|
1105
|
+
string;
|
|
847
1106
|
/** Data format for response. */
|
|
848
|
-
alt?:
|
|
1107
|
+
alt?:
|
|
1108
|
+
string;
|
|
849
1109
|
/** JSONP */
|
|
850
|
-
callback?:
|
|
1110
|
+
callback?:
|
|
1111
|
+
string;
|
|
851
1112
|
/**
|
|
852
1113
|
* 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
|
|
853
1114
|
* should not start with a number. E.g. "client_mtls_policy".
|
|
854
1115
|
*/
|
|
855
|
-
clientTlsPolicyId?:
|
|
1116
|
+
clientTlsPolicyId?:
|
|
1117
|
+
string;
|
|
856
1118
|
/** Selector specifying which fields to include in a partial response. */
|
|
857
|
-
fields?:
|
|
1119
|
+
fields?:
|
|
1120
|
+
string;
|
|
858
1121
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
859
|
-
key?:
|
|
1122
|
+
key?:
|
|
1123
|
+
string;
|
|
860
1124
|
/** OAuth 2.0 token for the current user. */
|
|
861
|
-
oauth_token?:
|
|
1125
|
+
oauth_token?:
|
|
1126
|
+
string;
|
|
862
1127
|
/** Required. The parent resource of the ClientTlsPolicy. Must be in the format `projects/*/locations/{location}`. */
|
|
863
|
-
parent:
|
|
1128
|
+
parent:
|
|
1129
|
+
string;
|
|
864
1130
|
/** Returns response with indentations and line breaks. */
|
|
865
|
-
prettyPrint?:
|
|
1131
|
+
prettyPrint?:
|
|
1132
|
+
boolean;
|
|
866
1133
|
/** 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. */
|
|
867
|
-
quotaUser?:
|
|
1134
|
+
quotaUser?:
|
|
1135
|
+
string;
|
|
868
1136
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
869
|
-
upload_protocol?:
|
|
1137
|
+
upload_protocol?:
|
|
1138
|
+
string;
|
|
870
1139
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
871
|
-
uploadType?:
|
|
1140
|
+
uploadType?:
|
|
1141
|
+
string;
|
|
872
1142
|
/** Request body */
|
|
873
|
-
resource:
|
|
1143
|
+
resource:
|
|
1144
|
+
ClientTlsPolicy;
|
|
874
1145
|
}): Request<Operation>;
|
|
875
1146
|
create(request: {
|
|
876
1147
|
/** V1 error format. */
|
|
877
|
-
"$.xgafv"?:
|
|
1148
|
+
"$.xgafv"?:
|
|
1149
|
+
string;
|
|
878
1150
|
/** OAuth access token. */
|
|
879
|
-
access_token?:
|
|
1151
|
+
access_token?:
|
|
1152
|
+
string;
|
|
880
1153
|
/** Data format for response. */
|
|
881
|
-
alt?:
|
|
1154
|
+
alt?:
|
|
1155
|
+
string;
|
|
882
1156
|
/** JSONP */
|
|
883
|
-
callback?:
|
|
1157
|
+
callback?:
|
|
1158
|
+
string;
|
|
884
1159
|
/**
|
|
885
1160
|
* 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
|
|
886
1161
|
* should not start with a number. E.g. "client_mtls_policy".
|
|
887
1162
|
*/
|
|
888
|
-
clientTlsPolicyId?:
|
|
1163
|
+
clientTlsPolicyId?:
|
|
1164
|
+
string;
|
|
889
1165
|
/** Selector specifying which fields to include in a partial response. */
|
|
890
|
-
fields?:
|
|
1166
|
+
fields?:
|
|
1167
|
+
string;
|
|
891
1168
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
892
|
-
key?:
|
|
1169
|
+
key?:
|
|
1170
|
+
string;
|
|
893
1171
|
/** OAuth 2.0 token for the current user. */
|
|
894
|
-
oauth_token?:
|
|
1172
|
+
oauth_token?:
|
|
1173
|
+
string;
|
|
895
1174
|
/** Required. The parent resource of the ClientTlsPolicy. Must be in the format `projects/*/locations/{location}`. */
|
|
896
|
-
parent:
|
|
1175
|
+
parent:
|
|
1176
|
+
string;
|
|
897
1177
|
/** Returns response with indentations and line breaks. */
|
|
898
|
-
prettyPrint?:
|
|
1178
|
+
prettyPrint?:
|
|
1179
|
+
boolean;
|
|
899
1180
|
/** 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. */
|
|
900
|
-
quotaUser?:
|
|
1181
|
+
quotaUser?:
|
|
1182
|
+
string;
|
|
901
1183
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
902
|
-
upload_protocol?:
|
|
1184
|
+
upload_protocol?:
|
|
1185
|
+
string;
|
|
903
1186
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
904
|
-
uploadType?:
|
|
1187
|
+
uploadType?:
|
|
1188
|
+
string;
|
|
905
1189
|
},
|
|
906
1190
|
body: ClientTlsPolicy): Request<Operation>;
|
|
907
1191
|
/** Deletes a single ClientTlsPolicy. */
|
|
908
1192
|
delete(request?: {
|
|
909
1193
|
/** V1 error format. */
|
|
910
|
-
"$.xgafv"?:
|
|
1194
|
+
"$.xgafv"?:
|
|
1195
|
+
string;
|
|
911
1196
|
/** OAuth access token. */
|
|
912
|
-
access_token?:
|
|
1197
|
+
access_token?:
|
|
1198
|
+
string;
|
|
913
1199
|
/** Data format for response. */
|
|
914
|
-
alt?:
|
|
1200
|
+
alt?:
|
|
1201
|
+
string;
|
|
915
1202
|
/** JSONP */
|
|
916
|
-
callback?:
|
|
1203
|
+
callback?:
|
|
1204
|
+
string;
|
|
917
1205
|
/** Selector specifying which fields to include in a partial response. */
|
|
918
|
-
fields?:
|
|
1206
|
+
fields?:
|
|
1207
|
+
string;
|
|
919
1208
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
920
|
-
key?:
|
|
1209
|
+
key?:
|
|
1210
|
+
string;
|
|
921
1211
|
/** Required. A name of the ClientTlsPolicy to delete. Must be in the format `projects/*/locations/{location}/clientTlsPolicies/*`. */
|
|
922
|
-
name:
|
|
1212
|
+
name:
|
|
1213
|
+
string;
|
|
923
1214
|
/** OAuth 2.0 token for the current user. */
|
|
924
|
-
oauth_token?:
|
|
1215
|
+
oauth_token?:
|
|
1216
|
+
string;
|
|
925
1217
|
/** Returns response with indentations and line breaks. */
|
|
926
|
-
prettyPrint?:
|
|
1218
|
+
prettyPrint?:
|
|
1219
|
+
boolean;
|
|
927
1220
|
/** 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. */
|
|
928
|
-
quotaUser?:
|
|
1221
|
+
quotaUser?:
|
|
1222
|
+
string;
|
|
929
1223
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
930
|
-
upload_protocol?:
|
|
1224
|
+
upload_protocol?:
|
|
1225
|
+
string;
|
|
931
1226
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
932
|
-
uploadType?:
|
|
1227
|
+
uploadType?:
|
|
1228
|
+
string;
|
|
933
1229
|
}): Request<Operation>;
|
|
934
1230
|
/** Gets details of a single ClientTlsPolicy. */
|
|
935
1231
|
get(request?: {
|
|
936
1232
|
/** V1 error format. */
|
|
937
|
-
"$.xgafv"?:
|
|
1233
|
+
"$.xgafv"?:
|
|
1234
|
+
string;
|
|
938
1235
|
/** OAuth access token. */
|
|
939
|
-
access_token?:
|
|
1236
|
+
access_token?:
|
|
1237
|
+
string;
|
|
940
1238
|
/** Data format for response. */
|
|
941
|
-
alt?:
|
|
1239
|
+
alt?:
|
|
1240
|
+
string;
|
|
942
1241
|
/** JSONP */
|
|
943
|
-
callback?:
|
|
1242
|
+
callback?:
|
|
1243
|
+
string;
|
|
944
1244
|
/** Selector specifying which fields to include in a partial response. */
|
|
945
|
-
fields?:
|
|
1245
|
+
fields?:
|
|
1246
|
+
string;
|
|
946
1247
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
947
|
-
key?:
|
|
1248
|
+
key?:
|
|
1249
|
+
string;
|
|
948
1250
|
/** Required. A name of the ClientTlsPolicy to get. Must be in the format `projects/*/locations/{location}/clientTlsPolicies/*`. */
|
|
949
|
-
name:
|
|
1251
|
+
name:
|
|
1252
|
+
string;
|
|
950
1253
|
/** OAuth 2.0 token for the current user. */
|
|
951
|
-
oauth_token?:
|
|
1254
|
+
oauth_token?:
|
|
1255
|
+
string;
|
|
952
1256
|
/** Returns response with indentations and line breaks. */
|
|
953
|
-
prettyPrint?:
|
|
1257
|
+
prettyPrint?:
|
|
1258
|
+
boolean;
|
|
954
1259
|
/** 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. */
|
|
955
|
-
quotaUser?:
|
|
1260
|
+
quotaUser?:
|
|
1261
|
+
string;
|
|
956
1262
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
957
|
-
upload_protocol?:
|
|
1263
|
+
upload_protocol?:
|
|
1264
|
+
string;
|
|
958
1265
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
959
|
-
uploadType?:
|
|
1266
|
+
uploadType?:
|
|
1267
|
+
string;
|
|
960
1268
|
}): Request<ClientTlsPolicy>;
|
|
961
1269
|
/** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
|
|
962
1270
|
getIamPolicy(request?: {
|
|
963
1271
|
/** V1 error format. */
|
|
964
|
-
"$.xgafv"?:
|
|
1272
|
+
"$.xgafv"?:
|
|
1273
|
+
string;
|
|
965
1274
|
/** OAuth access token. */
|
|
966
|
-
access_token?:
|
|
1275
|
+
access_token?:
|
|
1276
|
+
string;
|
|
967
1277
|
/** Data format for response. */
|
|
968
|
-
alt?:
|
|
1278
|
+
alt?:
|
|
1279
|
+
string;
|
|
969
1280
|
/** JSONP */
|
|
970
|
-
callback?:
|
|
1281
|
+
callback?:
|
|
1282
|
+
string;
|
|
971
1283
|
/** Selector specifying which fields to include in a partial response. */
|
|
972
|
-
fields?:
|
|
1284
|
+
fields?:
|
|
1285
|
+
string;
|
|
973
1286
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
974
|
-
key?:
|
|
1287
|
+
key?:
|
|
1288
|
+
string;
|
|
975
1289
|
/** OAuth 2.0 token for the current user. */
|
|
976
|
-
oauth_token?:
|
|
1290
|
+
oauth_token?:
|
|
1291
|
+
string;
|
|
977
1292
|
/**
|
|
978
1293
|
* Optional. The maximum policy version that will be used to format the policy. Valid values are 0, 1, and 3. Requests specifying an invalid value will be rejected. Requests for
|
|
979
1294
|
* policies with any conditional role bindings must specify version 3. Policies with no conditional role bindings may specify any valid value or leave the field unset. The policy
|
|
@@ -981,150 +1296,209 @@ declare namespace gapi.client {
|
|
|
981
1296
|
* role bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM
|
|
982
1297
|
* documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
|
|
983
1298
|
*/
|
|
984
|
-
"options.requestedPolicyVersion"?:
|
|
1299
|
+
"options.requestedPolicyVersion"?:
|
|
1300
|
+
number;
|
|
985
1301
|
/** Returns response with indentations and line breaks. */
|
|
986
|
-
prettyPrint?:
|
|
1302
|
+
prettyPrint?:
|
|
1303
|
+
boolean;
|
|
987
1304
|
/** 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. */
|
|
988
|
-
quotaUser?:
|
|
1305
|
+
quotaUser?:
|
|
1306
|
+
string;
|
|
989
1307
|
/**
|
|
990
1308
|
* REQUIRED: The resource for which the policy is being requested. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this
|
|
991
1309
|
* field.
|
|
992
1310
|
*/
|
|
993
|
-
resource:
|
|
1311
|
+
resource:
|
|
1312
|
+
string;
|
|
994
1313
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
995
|
-
upload_protocol?:
|
|
1314
|
+
upload_protocol?:
|
|
1315
|
+
string;
|
|
996
1316
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
997
|
-
uploadType?:
|
|
1317
|
+
uploadType?:
|
|
1318
|
+
string;
|
|
998
1319
|
}): Request<GoogleIamV1Policy>;
|
|
999
1320
|
/** Lists ClientTlsPolicies in a given project and location. */
|
|
1000
1321
|
list(request?: {
|
|
1001
1322
|
/** V1 error format. */
|
|
1002
|
-
"$.xgafv"?:
|
|
1323
|
+
"$.xgafv"?:
|
|
1324
|
+
string;
|
|
1003
1325
|
/** OAuth access token. */
|
|
1004
|
-
access_token?:
|
|
1326
|
+
access_token?:
|
|
1327
|
+
string;
|
|
1005
1328
|
/** Data format for response. */
|
|
1006
|
-
alt?:
|
|
1329
|
+
alt?:
|
|
1330
|
+
string;
|
|
1007
1331
|
/** JSONP */
|
|
1008
|
-
callback?:
|
|
1332
|
+
callback?:
|
|
1333
|
+
string;
|
|
1009
1334
|
/** Selector specifying which fields to include in a partial response. */
|
|
1010
|
-
fields?:
|
|
1335
|
+
fields?:
|
|
1336
|
+
string;
|
|
1011
1337
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1012
|
-
key?:
|
|
1338
|
+
key?:
|
|
1339
|
+
string;
|
|
1013
1340
|
/** OAuth 2.0 token for the current user. */
|
|
1014
|
-
oauth_token?:
|
|
1341
|
+
oauth_token?:
|
|
1342
|
+
string;
|
|
1015
1343
|
/** Maximum number of ClientTlsPolicies to return per call. */
|
|
1016
|
-
pageSize?:
|
|
1344
|
+
pageSize?:
|
|
1345
|
+
number;
|
|
1017
1346
|
/**
|
|
1018
1347
|
* The value returned by the last `ListClientTlsPoliciesResponse` Indicates that this is a continuation of a prior `ListClientTlsPolicies` call, and that the system should return
|
|
1019
1348
|
* the next page of data.
|
|
1020
1349
|
*/
|
|
1021
|
-
pageToken?:
|
|
1350
|
+
pageToken?:
|
|
1351
|
+
string;
|
|
1022
1352
|
/** Required. The project and location from which the ClientTlsPolicies should be listed, specified in the format `projects/*/locations/{location}`. */
|
|
1023
|
-
parent:
|
|
1353
|
+
parent:
|
|
1354
|
+
string;
|
|
1024
1355
|
/** Returns response with indentations and line breaks. */
|
|
1025
|
-
prettyPrint?:
|
|
1356
|
+
prettyPrint?:
|
|
1357
|
+
boolean;
|
|
1026
1358
|
/** 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. */
|
|
1027
|
-
quotaUser?:
|
|
1359
|
+
quotaUser?:
|
|
1360
|
+
string;
|
|
1028
1361
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1029
|
-
upload_protocol?:
|
|
1362
|
+
upload_protocol?:
|
|
1363
|
+
string;
|
|
1030
1364
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1031
|
-
uploadType?:
|
|
1365
|
+
uploadType?:
|
|
1366
|
+
string;
|
|
1032
1367
|
}): Request<ListClientTlsPoliciesResponse>;
|
|
1033
1368
|
/** Updates the parameters of a single ClientTlsPolicy. */
|
|
1034
1369
|
patch(request: {
|
|
1035
1370
|
/** V1 error format. */
|
|
1036
|
-
"$.xgafv"?:
|
|
1371
|
+
"$.xgafv"?:
|
|
1372
|
+
string;
|
|
1037
1373
|
/** OAuth access token. */
|
|
1038
|
-
access_token?:
|
|
1374
|
+
access_token?:
|
|
1375
|
+
string;
|
|
1039
1376
|
/** Data format for response. */
|
|
1040
|
-
alt?:
|
|
1377
|
+
alt?:
|
|
1378
|
+
string;
|
|
1041
1379
|
/** JSONP */
|
|
1042
|
-
callback?:
|
|
1380
|
+
callback?:
|
|
1381
|
+
string;
|
|
1043
1382
|
/** Selector specifying which fields to include in a partial response. */
|
|
1044
|
-
fields?:
|
|
1383
|
+
fields?:
|
|
1384
|
+
string;
|
|
1045
1385
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1046
|
-
key?:
|
|
1386
|
+
key?:
|
|
1387
|
+
string;
|
|
1047
1388
|
/** Required. Name of the ClientTlsPolicy resource. It matches the pattern `projects/*/locations/{location}/clientTlsPolicies/{client_tls_policy}` */
|
|
1048
|
-
name:
|
|
1389
|
+
name:
|
|
1390
|
+
string;
|
|
1049
1391
|
/** OAuth 2.0 token for the current user. */
|
|
1050
|
-
oauth_token?:
|
|
1392
|
+
oauth_token?:
|
|
1393
|
+
string;
|
|
1051
1394
|
/** Returns response with indentations and line breaks. */
|
|
1052
|
-
prettyPrint?:
|
|
1395
|
+
prettyPrint?:
|
|
1396
|
+
boolean;
|
|
1053
1397
|
/** 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. */
|
|
1054
|
-
quotaUser?:
|
|
1398
|
+
quotaUser?:
|
|
1399
|
+
string;
|
|
1055
1400
|
/**
|
|
1056
1401
|
* Optional. Field mask is used to specify the fields to be overwritten in the ClientTlsPolicy resource by the update. The fields specified in the update_mask are relative to the
|
|
1057
1402
|
* resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields will be overwritten.
|
|
1058
1403
|
*/
|
|
1059
|
-
updateMask?:
|
|
1404
|
+
updateMask?:
|
|
1405
|
+
string;
|
|
1060
1406
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1061
|
-
upload_protocol?:
|
|
1407
|
+
upload_protocol?:
|
|
1408
|
+
string;
|
|
1062
1409
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1063
|
-
uploadType?:
|
|
1410
|
+
uploadType?:
|
|
1411
|
+
string;
|
|
1064
1412
|
/** Request body */
|
|
1065
|
-
resource:
|
|
1413
|
+
resource:
|
|
1414
|
+
ClientTlsPolicy;
|
|
1066
1415
|
}): Request<Operation>;
|
|
1067
1416
|
patch(request: {
|
|
1068
1417
|
/** V1 error format. */
|
|
1069
|
-
"$.xgafv"?:
|
|
1418
|
+
"$.xgafv"?:
|
|
1419
|
+
string;
|
|
1070
1420
|
/** OAuth access token. */
|
|
1071
|
-
access_token?:
|
|
1421
|
+
access_token?:
|
|
1422
|
+
string;
|
|
1072
1423
|
/** Data format for response. */
|
|
1073
|
-
alt?:
|
|
1424
|
+
alt?:
|
|
1425
|
+
string;
|
|
1074
1426
|
/** JSONP */
|
|
1075
|
-
callback?:
|
|
1427
|
+
callback?:
|
|
1428
|
+
string;
|
|
1076
1429
|
/** Selector specifying which fields to include in a partial response. */
|
|
1077
|
-
fields?:
|
|
1430
|
+
fields?:
|
|
1431
|
+
string;
|
|
1078
1432
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1079
|
-
key?:
|
|
1433
|
+
key?:
|
|
1434
|
+
string;
|
|
1080
1435
|
/** Required. Name of the ClientTlsPolicy resource. It matches the pattern `projects/*/locations/{location}/clientTlsPolicies/{client_tls_policy}` */
|
|
1081
|
-
name:
|
|
1436
|
+
name:
|
|
1437
|
+
string;
|
|
1082
1438
|
/** OAuth 2.0 token for the current user. */
|
|
1083
|
-
oauth_token?:
|
|
1439
|
+
oauth_token?:
|
|
1440
|
+
string;
|
|
1084
1441
|
/** Returns response with indentations and line breaks. */
|
|
1085
|
-
prettyPrint?:
|
|
1442
|
+
prettyPrint?:
|
|
1443
|
+
boolean;
|
|
1086
1444
|
/** 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. */
|
|
1087
|
-
quotaUser?:
|
|
1445
|
+
quotaUser?:
|
|
1446
|
+
string;
|
|
1088
1447
|
/**
|
|
1089
1448
|
* Optional. Field mask is used to specify the fields to be overwritten in the ClientTlsPolicy resource by the update. The fields specified in the update_mask are relative to the
|
|
1090
1449
|
* resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields will be overwritten.
|
|
1091
1450
|
*/
|
|
1092
|
-
updateMask?:
|
|
1451
|
+
updateMask?:
|
|
1452
|
+
string;
|
|
1093
1453
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1094
|
-
upload_protocol?:
|
|
1454
|
+
upload_protocol?:
|
|
1455
|
+
string;
|
|
1095
1456
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1096
|
-
uploadType?:
|
|
1457
|
+
uploadType?:
|
|
1458
|
+
string;
|
|
1097
1459
|
},
|
|
1098
1460
|
body: ClientTlsPolicy): Request<Operation>;
|
|
1099
1461
|
/** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
|
|
1100
1462
|
setIamPolicy(request: {
|
|
1101
1463
|
/** V1 error format. */
|
|
1102
|
-
"$.xgafv"?:
|
|
1464
|
+
"$.xgafv"?:
|
|
1465
|
+
string;
|
|
1103
1466
|
/** OAuth access token. */
|
|
1104
|
-
access_token?:
|
|
1467
|
+
access_token?:
|
|
1468
|
+
string;
|
|
1105
1469
|
/** Data format for response. */
|
|
1106
|
-
alt?:
|
|
1470
|
+
alt?:
|
|
1471
|
+
string;
|
|
1107
1472
|
/** JSONP */
|
|
1108
|
-
callback?:
|
|
1473
|
+
callback?:
|
|
1474
|
+
string;
|
|
1109
1475
|
/** Selector specifying which fields to include in a partial response. */
|
|
1110
|
-
fields?:
|
|
1476
|
+
fields?:
|
|
1477
|
+
string;
|
|
1111
1478
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1112
|
-
key?:
|
|
1479
|
+
key?:
|
|
1480
|
+
string;
|
|
1113
1481
|
/** OAuth 2.0 token for the current user. */
|
|
1114
|
-
oauth_token?:
|
|
1482
|
+
oauth_token?:
|
|
1483
|
+
string;
|
|
1115
1484
|
/** Returns response with indentations and line breaks. */
|
|
1116
|
-
prettyPrint?:
|
|
1485
|
+
prettyPrint?:
|
|
1486
|
+
boolean;
|
|
1117
1487
|
/** 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. */
|
|
1118
|
-
quotaUser?:
|
|
1488
|
+
quotaUser?:
|
|
1489
|
+
string;
|
|
1119
1490
|
/**
|
|
1120
1491
|
* REQUIRED: The resource for which the policy is being specified. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this
|
|
1121
1492
|
* field.
|
|
1122
1493
|
*/
|
|
1123
|
-
resource:
|
|
1494
|
+
resource:
|
|
1495
|
+
string;
|
|
1124
1496
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1125
|
-
upload_protocol?:
|
|
1497
|
+
upload_protocol?:
|
|
1498
|
+
string;
|
|
1126
1499
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1127
|
-
uploadType?:
|
|
1500
|
+
uploadType?:
|
|
1501
|
+
string;
|
|
1128
1502
|
},
|
|
1129
1503
|
body: GoogleIamV1SetIamPolicyRequest): Request<GoogleIamV1Policy>;
|
|
1130
1504
|
/**
|
|
@@ -1133,32 +1507,44 @@ declare namespace gapi.client {
|
|
|
1133
1507
|
*/
|
|
1134
1508
|
testIamPermissions(request: {
|
|
1135
1509
|
/** V1 error format. */
|
|
1136
|
-
"$.xgafv"?:
|
|
1510
|
+
"$.xgafv"?:
|
|
1511
|
+
string;
|
|
1137
1512
|
/** OAuth access token. */
|
|
1138
|
-
access_token?:
|
|
1513
|
+
access_token?:
|
|
1514
|
+
string;
|
|
1139
1515
|
/** Data format for response. */
|
|
1140
|
-
alt?:
|
|
1516
|
+
alt?:
|
|
1517
|
+
string;
|
|
1141
1518
|
/** JSONP */
|
|
1142
|
-
callback?:
|
|
1519
|
+
callback?:
|
|
1520
|
+
string;
|
|
1143
1521
|
/** Selector specifying which fields to include in a partial response. */
|
|
1144
|
-
fields?:
|
|
1522
|
+
fields?:
|
|
1523
|
+
string;
|
|
1145
1524
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1146
|
-
key?:
|
|
1525
|
+
key?:
|
|
1526
|
+
string;
|
|
1147
1527
|
/** OAuth 2.0 token for the current user. */
|
|
1148
|
-
oauth_token?:
|
|
1528
|
+
oauth_token?:
|
|
1529
|
+
string;
|
|
1149
1530
|
/** Returns response with indentations and line breaks. */
|
|
1150
|
-
prettyPrint?:
|
|
1531
|
+
prettyPrint?:
|
|
1532
|
+
boolean;
|
|
1151
1533
|
/** 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. */
|
|
1152
|
-
quotaUser?:
|
|
1534
|
+
quotaUser?:
|
|
1535
|
+
string;
|
|
1153
1536
|
/**
|
|
1154
1537
|
* REQUIRED: The resource for which the policy detail is being requested. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for
|
|
1155
1538
|
* this field.
|
|
1156
1539
|
*/
|
|
1157
|
-
resource:
|
|
1540
|
+
resource:
|
|
1541
|
+
string;
|
|
1158
1542
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1159
|
-
upload_protocol?:
|
|
1543
|
+
upload_protocol?:
|
|
1544
|
+
string;
|
|
1160
1545
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1161
|
-
uploadType?:
|
|
1546
|
+
uploadType?:
|
|
1547
|
+
string;
|
|
1162
1548
|
},
|
|
1163
1549
|
body: GoogleIamV1TestIamPermissionsRequest): Request<GoogleIamV1TestIamPermissionsResponse>;
|
|
1164
1550
|
}
|
|
@@ -1166,227 +1552,319 @@ declare namespace gapi.client {
|
|
|
1166
1552
|
/** Creates a new GatewaySecurityPolicy in a given project and location. */
|
|
1167
1553
|
create(request: {
|
|
1168
1554
|
/** V1 error format. */
|
|
1169
|
-
"$.xgafv"?:
|
|
1555
|
+
"$.xgafv"?:
|
|
1556
|
+
string;
|
|
1170
1557
|
/** OAuth access token. */
|
|
1171
|
-
access_token?:
|
|
1558
|
+
access_token?:
|
|
1559
|
+
string;
|
|
1172
1560
|
/** Data format for response. */
|
|
1173
|
-
alt?:
|
|
1561
|
+
alt?:
|
|
1562
|
+
string;
|
|
1174
1563
|
/** JSONP */
|
|
1175
|
-
callback?:
|
|
1564
|
+
callback?:
|
|
1565
|
+
string;
|
|
1176
1566
|
/** Selector specifying which fields to include in a partial response. */
|
|
1177
|
-
fields?:
|
|
1567
|
+
fields?:
|
|
1568
|
+
string;
|
|
1178
1569
|
/** The ID to use for the rule, which will become the final component of the rule's resource name. This value should be 4-63 characters, and valid characters are /a-z-/. */
|
|
1179
|
-
gatewaySecurityPolicyRuleId?:
|
|
1570
|
+
gatewaySecurityPolicyRuleId?:
|
|
1571
|
+
string;
|
|
1180
1572
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1181
|
-
key?:
|
|
1573
|
+
key?:
|
|
1574
|
+
string;
|
|
1182
1575
|
/** OAuth 2.0 token for the current user. */
|
|
1183
|
-
oauth_token?:
|
|
1576
|
+
oauth_token?:
|
|
1577
|
+
string;
|
|
1184
1578
|
/** Required. The parent where this rule will be created. Format : projects/{project}/location/{location}/gatewaySecurityPolicies/* */
|
|
1185
|
-
parent:
|
|
1579
|
+
parent:
|
|
1580
|
+
string;
|
|
1186
1581
|
/** Returns response with indentations and line breaks. */
|
|
1187
|
-
prettyPrint?:
|
|
1582
|
+
prettyPrint?:
|
|
1583
|
+
boolean;
|
|
1188
1584
|
/** 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. */
|
|
1189
|
-
quotaUser?:
|
|
1585
|
+
quotaUser?:
|
|
1586
|
+
string;
|
|
1190
1587
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1191
|
-
upload_protocol?:
|
|
1588
|
+
upload_protocol?:
|
|
1589
|
+
string;
|
|
1192
1590
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1193
|
-
uploadType?:
|
|
1591
|
+
uploadType?:
|
|
1592
|
+
string;
|
|
1194
1593
|
/** Request body */
|
|
1195
|
-
resource:
|
|
1594
|
+
resource:
|
|
1595
|
+
GatewaySecurityPolicyRule;
|
|
1196
1596
|
}): Request<Operation>;
|
|
1197
1597
|
create(request: {
|
|
1198
1598
|
/** V1 error format. */
|
|
1199
|
-
"$.xgafv"?:
|
|
1599
|
+
"$.xgafv"?:
|
|
1600
|
+
string;
|
|
1200
1601
|
/** OAuth access token. */
|
|
1201
|
-
access_token?:
|
|
1602
|
+
access_token?:
|
|
1603
|
+
string;
|
|
1202
1604
|
/** Data format for response. */
|
|
1203
|
-
alt?:
|
|
1605
|
+
alt?:
|
|
1606
|
+
string;
|
|
1204
1607
|
/** JSONP */
|
|
1205
|
-
callback?:
|
|
1608
|
+
callback?:
|
|
1609
|
+
string;
|
|
1206
1610
|
/** Selector specifying which fields to include in a partial response. */
|
|
1207
|
-
fields?:
|
|
1611
|
+
fields?:
|
|
1612
|
+
string;
|
|
1208
1613
|
/** The ID to use for the rule, which will become the final component of the rule's resource name. This value should be 4-63 characters, and valid characters are /a-z-/. */
|
|
1209
|
-
gatewaySecurityPolicyRuleId?:
|
|
1614
|
+
gatewaySecurityPolicyRuleId?:
|
|
1615
|
+
string;
|
|
1210
1616
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1211
|
-
key?:
|
|
1617
|
+
key?:
|
|
1618
|
+
string;
|
|
1212
1619
|
/** OAuth 2.0 token for the current user. */
|
|
1213
|
-
oauth_token?:
|
|
1620
|
+
oauth_token?:
|
|
1621
|
+
string;
|
|
1214
1622
|
/** Required. The parent where this rule will be created. Format : projects/{project}/location/{location}/gatewaySecurityPolicies/* */
|
|
1215
|
-
parent:
|
|
1623
|
+
parent:
|
|
1624
|
+
string;
|
|
1216
1625
|
/** Returns response with indentations and line breaks. */
|
|
1217
|
-
prettyPrint?:
|
|
1626
|
+
prettyPrint?:
|
|
1627
|
+
boolean;
|
|
1218
1628
|
/** 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. */
|
|
1219
|
-
quotaUser?:
|
|
1629
|
+
quotaUser?:
|
|
1630
|
+
string;
|
|
1220
1631
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1221
|
-
upload_protocol?:
|
|
1632
|
+
upload_protocol?:
|
|
1633
|
+
string;
|
|
1222
1634
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1223
|
-
uploadType?:
|
|
1635
|
+
uploadType?:
|
|
1636
|
+
string;
|
|
1224
1637
|
},
|
|
1225
1638
|
body: GatewaySecurityPolicyRule): Request<Operation>;
|
|
1226
1639
|
/** Deletes a single GatewaySecurityPolicyRule. */
|
|
1227
1640
|
delete(request?: {
|
|
1228
1641
|
/** V1 error format. */
|
|
1229
|
-
"$.xgafv"?:
|
|
1642
|
+
"$.xgafv"?:
|
|
1643
|
+
string;
|
|
1230
1644
|
/** OAuth access token. */
|
|
1231
|
-
access_token?:
|
|
1645
|
+
access_token?:
|
|
1646
|
+
string;
|
|
1232
1647
|
/** Data format for response. */
|
|
1233
|
-
alt?:
|
|
1648
|
+
alt?:
|
|
1649
|
+
string;
|
|
1234
1650
|
/** JSONP */
|
|
1235
|
-
callback?:
|
|
1651
|
+
callback?:
|
|
1652
|
+
string;
|
|
1236
1653
|
/** Selector specifying which fields to include in a partial response. */
|
|
1237
|
-
fields?:
|
|
1654
|
+
fields?:
|
|
1655
|
+
string;
|
|
1238
1656
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1239
|
-
key?:
|
|
1657
|
+
key?:
|
|
1658
|
+
string;
|
|
1240
1659
|
/**
|
|
1241
1660
|
* Required. A name of the GatewaySecurityPolicyRule to delete. Must be in the format
|
|
1242
1661
|
* `projects/{project}/locations/{location}/gatewaySecurityPolicies/{gatewaySecurityPolicy}/rules/*`.
|
|
1243
1662
|
*/
|
|
1244
|
-
name:
|
|
1663
|
+
name:
|
|
1664
|
+
string;
|
|
1245
1665
|
/** OAuth 2.0 token for the current user. */
|
|
1246
|
-
oauth_token?:
|
|
1666
|
+
oauth_token?:
|
|
1667
|
+
string;
|
|
1247
1668
|
/** Returns response with indentations and line breaks. */
|
|
1248
|
-
prettyPrint?:
|
|
1669
|
+
prettyPrint?:
|
|
1670
|
+
boolean;
|
|
1249
1671
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1250
|
-
quotaUser?:
|
|
1672
|
+
quotaUser?:
|
|
1673
|
+
string;
|
|
1251
1674
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1252
|
-
upload_protocol?:
|
|
1675
|
+
upload_protocol?:
|
|
1676
|
+
string;
|
|
1253
1677
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1254
|
-
uploadType?:
|
|
1678
|
+
uploadType?:
|
|
1679
|
+
string;
|
|
1255
1680
|
}): Request<Operation>;
|
|
1256
1681
|
/** Gets details of a single GatewaySecurityPolicyRule. */
|
|
1257
1682
|
get(request?: {
|
|
1258
1683
|
/** V1 error format. */
|
|
1259
|
-
"$.xgafv"?:
|
|
1684
|
+
"$.xgafv"?:
|
|
1685
|
+
string;
|
|
1260
1686
|
/** OAuth access token. */
|
|
1261
|
-
access_token?:
|
|
1687
|
+
access_token?:
|
|
1688
|
+
string;
|
|
1262
1689
|
/** Data format for response. */
|
|
1263
|
-
alt?:
|
|
1690
|
+
alt?:
|
|
1691
|
+
string;
|
|
1264
1692
|
/** JSONP */
|
|
1265
|
-
callback?:
|
|
1693
|
+
callback?:
|
|
1694
|
+
string;
|
|
1266
1695
|
/** Selector specifying which fields to include in a partial response. */
|
|
1267
|
-
fields?:
|
|
1696
|
+
fields?:
|
|
1697
|
+
string;
|
|
1268
1698
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1269
|
-
key?:
|
|
1699
|
+
key?:
|
|
1700
|
+
string;
|
|
1270
1701
|
/** Required. The name of the GatewaySecurityPolicyRule to retrieve. Format: projects/{project}/location/{location}/gatewaySecurityPolicies/*/rules/* */
|
|
1271
|
-
name:
|
|
1702
|
+
name:
|
|
1703
|
+
string;
|
|
1272
1704
|
/** OAuth 2.0 token for the current user. */
|
|
1273
|
-
oauth_token?:
|
|
1705
|
+
oauth_token?:
|
|
1706
|
+
string;
|
|
1274
1707
|
/** Returns response with indentations and line breaks. */
|
|
1275
|
-
prettyPrint?:
|
|
1708
|
+
prettyPrint?:
|
|
1709
|
+
boolean;
|
|
1276
1710
|
/** 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. */
|
|
1277
|
-
quotaUser?:
|
|
1711
|
+
quotaUser?:
|
|
1712
|
+
string;
|
|
1278
1713
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1279
|
-
upload_protocol?:
|
|
1714
|
+
upload_protocol?:
|
|
1715
|
+
string;
|
|
1280
1716
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1281
|
-
uploadType?:
|
|
1717
|
+
uploadType?:
|
|
1718
|
+
string;
|
|
1282
1719
|
}): Request<GatewaySecurityPolicyRule>;
|
|
1283
1720
|
/** Lists GatewaySecurityPolicyRules in a given project and location. */
|
|
1284
1721
|
list(request?: {
|
|
1285
1722
|
/** V1 error format. */
|
|
1286
|
-
"$.xgafv"?:
|
|
1723
|
+
"$.xgafv"?:
|
|
1724
|
+
string;
|
|
1287
1725
|
/** OAuth access token. */
|
|
1288
|
-
access_token?:
|
|
1726
|
+
access_token?:
|
|
1727
|
+
string;
|
|
1289
1728
|
/** Data format for response. */
|
|
1290
|
-
alt?:
|
|
1729
|
+
alt?:
|
|
1730
|
+
string;
|
|
1291
1731
|
/** JSONP */
|
|
1292
|
-
callback?:
|
|
1732
|
+
callback?:
|
|
1733
|
+
string;
|
|
1293
1734
|
/** Selector specifying which fields to include in a partial response. */
|
|
1294
|
-
fields?:
|
|
1735
|
+
fields?:
|
|
1736
|
+
string;
|
|
1295
1737
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1296
|
-
key?:
|
|
1738
|
+
key?:
|
|
1739
|
+
string;
|
|
1297
1740
|
/** OAuth 2.0 token for the current user. */
|
|
1298
|
-
oauth_token?:
|
|
1741
|
+
oauth_token?:
|
|
1742
|
+
string;
|
|
1299
1743
|
/** Maximum number of GatewaySecurityPolicyRules to return per call. */
|
|
1300
|
-
pageSize?:
|
|
1744
|
+
pageSize?:
|
|
1745
|
+
number;
|
|
1301
1746
|
/**
|
|
1302
1747
|
* The value returned by the last 'ListGatewaySecurityPolicyRulesResponse' Indicates that this is a continuation of a prior 'ListGatewaySecurityPolicyRules' call, and that the
|
|
1303
1748
|
* system should return the next page of data.
|
|
1304
1749
|
*/
|
|
1305
|
-
pageToken?:
|
|
1750
|
+
pageToken?:
|
|
1751
|
+
string;
|
|
1306
1752
|
/**
|
|
1307
1753
|
* Required. The project, location and GatewaySecurityPolicy from which the GatewaySecurityPolicyRules should be listed, specified in the format
|
|
1308
1754
|
* `projects/{project}/locations/{location}/gatewaySecurityPolicies/{gatewaySecurityPolicy}`.
|
|
1309
1755
|
*/
|
|
1310
|
-
parent:
|
|
1756
|
+
parent:
|
|
1757
|
+
string;
|
|
1311
1758
|
/** Returns response with indentations and line breaks. */
|
|
1312
|
-
prettyPrint?:
|
|
1759
|
+
prettyPrint?:
|
|
1760
|
+
boolean;
|
|
1313
1761
|
/** 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. */
|
|
1314
|
-
quotaUser?:
|
|
1762
|
+
quotaUser?:
|
|
1763
|
+
string;
|
|
1315
1764
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1316
|
-
upload_protocol?:
|
|
1765
|
+
upload_protocol?:
|
|
1766
|
+
string;
|
|
1317
1767
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1318
|
-
uploadType?:
|
|
1768
|
+
uploadType?:
|
|
1769
|
+
string;
|
|
1319
1770
|
}): Request<ListGatewaySecurityPolicyRulesResponse>;
|
|
1320
1771
|
/** Updates the parameters of a single GatewaySecurityPolicyRule. */
|
|
1321
1772
|
patch(request: {
|
|
1322
1773
|
/** V1 error format. */
|
|
1323
|
-
"$.xgafv"?:
|
|
1774
|
+
"$.xgafv"?:
|
|
1775
|
+
string;
|
|
1324
1776
|
/** OAuth access token. */
|
|
1325
|
-
access_token?:
|
|
1777
|
+
access_token?:
|
|
1778
|
+
string;
|
|
1326
1779
|
/** Data format for response. */
|
|
1327
|
-
alt?:
|
|
1780
|
+
alt?:
|
|
1781
|
+
string;
|
|
1328
1782
|
/** JSONP */
|
|
1329
|
-
callback?:
|
|
1783
|
+
callback?:
|
|
1784
|
+
string;
|
|
1330
1785
|
/** Selector specifying which fields to include in a partial response. */
|
|
1331
|
-
fields?:
|
|
1786
|
+
fields?:
|
|
1787
|
+
string;
|
|
1332
1788
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1333
|
-
key?:
|
|
1789
|
+
key?:
|
|
1790
|
+
string;
|
|
1334
1791
|
/**
|
|
1335
1792
|
* Required. Immutable. Name of the resource. ame is the full resource name so
|
|
1336
1793
|
* projects/{project}/locations/{location}/gatewaySecurityPolicies/{gateway_security_policy}/rules/{rule} rule should match the pattern: (^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$).
|
|
1337
1794
|
*/
|
|
1338
|
-
name:
|
|
1795
|
+
name:
|
|
1796
|
+
string;
|
|
1339
1797
|
/** OAuth 2.0 token for the current user. */
|
|
1340
|
-
oauth_token?:
|
|
1798
|
+
oauth_token?:
|
|
1799
|
+
string;
|
|
1341
1800
|
/** Returns response with indentations and line breaks. */
|
|
1342
|
-
prettyPrint?:
|
|
1801
|
+
prettyPrint?:
|
|
1802
|
+
boolean;
|
|
1343
1803
|
/** 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. */
|
|
1344
|
-
quotaUser?:
|
|
1804
|
+
quotaUser?:
|
|
1805
|
+
string;
|
|
1345
1806
|
/**
|
|
1346
1807
|
* Optional. Field mask is used to specify the fields to be overwritten in the GatewaySecurityPolicy resource by the update. The fields specified in the update_mask are relative to
|
|
1347
1808
|
* the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields will be overwritten.
|
|
1348
1809
|
*/
|
|
1349
|
-
updateMask?:
|
|
1810
|
+
updateMask?:
|
|
1811
|
+
string;
|
|
1350
1812
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1351
|
-
upload_protocol?:
|
|
1813
|
+
upload_protocol?:
|
|
1814
|
+
string;
|
|
1352
1815
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1353
|
-
uploadType?:
|
|
1816
|
+
uploadType?:
|
|
1817
|
+
string;
|
|
1354
1818
|
/** Request body */
|
|
1355
|
-
resource:
|
|
1819
|
+
resource:
|
|
1820
|
+
GatewaySecurityPolicyRule;
|
|
1356
1821
|
}): Request<Operation>;
|
|
1357
1822
|
patch(request: {
|
|
1358
1823
|
/** V1 error format. */
|
|
1359
|
-
"$.xgafv"?:
|
|
1824
|
+
"$.xgafv"?:
|
|
1825
|
+
string;
|
|
1360
1826
|
/** OAuth access token. */
|
|
1361
|
-
access_token?:
|
|
1827
|
+
access_token?:
|
|
1828
|
+
string;
|
|
1362
1829
|
/** Data format for response. */
|
|
1363
|
-
alt?:
|
|
1830
|
+
alt?:
|
|
1831
|
+
string;
|
|
1364
1832
|
/** JSONP */
|
|
1365
|
-
callback?:
|
|
1833
|
+
callback?:
|
|
1834
|
+
string;
|
|
1366
1835
|
/** Selector specifying which fields to include in a partial response. */
|
|
1367
|
-
fields?:
|
|
1836
|
+
fields?:
|
|
1837
|
+
string;
|
|
1368
1838
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1369
|
-
key?:
|
|
1839
|
+
key?:
|
|
1840
|
+
string;
|
|
1370
1841
|
/**
|
|
1371
1842
|
* Required. Immutable. Name of the resource. ame is the full resource name so
|
|
1372
1843
|
* projects/{project}/locations/{location}/gatewaySecurityPolicies/{gateway_security_policy}/rules/{rule} rule should match the pattern: (^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$).
|
|
1373
1844
|
*/
|
|
1374
|
-
name:
|
|
1845
|
+
name:
|
|
1846
|
+
string;
|
|
1375
1847
|
/** OAuth 2.0 token for the current user. */
|
|
1376
|
-
oauth_token?:
|
|
1848
|
+
oauth_token?:
|
|
1849
|
+
string;
|
|
1377
1850
|
/** Returns response with indentations and line breaks. */
|
|
1378
|
-
prettyPrint?:
|
|
1851
|
+
prettyPrint?:
|
|
1852
|
+
boolean;
|
|
1379
1853
|
/** 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. */
|
|
1380
|
-
quotaUser?:
|
|
1854
|
+
quotaUser?:
|
|
1855
|
+
string;
|
|
1381
1856
|
/**
|
|
1382
1857
|
* Optional. Field mask is used to specify the fields to be overwritten in the GatewaySecurityPolicy resource by the update. The fields specified in the update_mask are relative to
|
|
1383
1858
|
* the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields will be overwritten.
|
|
1384
1859
|
*/
|
|
1385
|
-
updateMask?:
|
|
1860
|
+
updateMask?:
|
|
1861
|
+
string;
|
|
1386
1862
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1387
|
-
upload_protocol?:
|
|
1863
|
+
upload_protocol?:
|
|
1864
|
+
string;
|
|
1388
1865
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1389
|
-
uploadType?:
|
|
1866
|
+
uploadType?:
|
|
1867
|
+
string;
|
|
1390
1868
|
},
|
|
1391
1869
|
body: GatewaySecurityPolicyRule): Request<Operation>;
|
|
1392
1870
|
}
|
|
@@ -1394,230 +1872,323 @@ declare namespace gapi.client {
|
|
|
1394
1872
|
/** Creates a new GatewaySecurityPolicy in a given project and location. */
|
|
1395
1873
|
create(request: {
|
|
1396
1874
|
/** V1 error format. */
|
|
1397
|
-
"$.xgafv"?:
|
|
1875
|
+
"$.xgafv"?:
|
|
1876
|
+
string;
|
|
1398
1877
|
/** OAuth access token. */
|
|
1399
|
-
access_token?:
|
|
1878
|
+
access_token?:
|
|
1879
|
+
string;
|
|
1400
1880
|
/** Data format for response. */
|
|
1401
|
-
alt?:
|
|
1881
|
+
alt?:
|
|
1882
|
+
string;
|
|
1402
1883
|
/** JSONP */
|
|
1403
|
-
callback?:
|
|
1884
|
+
callback?:
|
|
1885
|
+
string;
|
|
1404
1886
|
/** Selector specifying which fields to include in a partial response. */
|
|
1405
|
-
fields?:
|
|
1887
|
+
fields?:
|
|
1888
|
+
string;
|
|
1406
1889
|
/**
|
|
1407
1890
|
* Required. Short name of the GatewaySecurityPolicy resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores,
|
|
1408
1891
|
* and should not start with a number. E.g. "gateway_security_policy1".
|
|
1409
1892
|
*/
|
|
1410
|
-
gatewaySecurityPolicyId?:
|
|
1893
|
+
gatewaySecurityPolicyId?:
|
|
1894
|
+
string;
|
|
1411
1895
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1412
|
-
key?:
|
|
1896
|
+
key?:
|
|
1897
|
+
string;
|
|
1413
1898
|
/** OAuth 2.0 token for the current user. */
|
|
1414
|
-
oauth_token?:
|
|
1899
|
+
oauth_token?:
|
|
1900
|
+
string;
|
|
1415
1901
|
/** Required. The parent resource of the GatewaySecurityPolicy. Must be in the format `projects/{project}/locations/{location}`. */
|
|
1416
|
-
parent:
|
|
1902
|
+
parent:
|
|
1903
|
+
string;
|
|
1417
1904
|
/** Returns response with indentations and line breaks. */
|
|
1418
|
-
prettyPrint?:
|
|
1905
|
+
prettyPrint?:
|
|
1906
|
+
boolean;
|
|
1419
1907
|
/** 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. */
|
|
1420
|
-
quotaUser?:
|
|
1908
|
+
quotaUser?:
|
|
1909
|
+
string;
|
|
1421
1910
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1422
|
-
upload_protocol?:
|
|
1911
|
+
upload_protocol?:
|
|
1912
|
+
string;
|
|
1423
1913
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1424
|
-
uploadType?:
|
|
1914
|
+
uploadType?:
|
|
1915
|
+
string;
|
|
1425
1916
|
/** Request body */
|
|
1426
|
-
resource:
|
|
1917
|
+
resource:
|
|
1918
|
+
GatewaySecurityPolicy;
|
|
1427
1919
|
}): Request<Operation>;
|
|
1428
1920
|
create(request: {
|
|
1429
1921
|
/** V1 error format. */
|
|
1430
|
-
"$.xgafv"?:
|
|
1922
|
+
"$.xgafv"?:
|
|
1923
|
+
string;
|
|
1431
1924
|
/** OAuth access token. */
|
|
1432
|
-
access_token?:
|
|
1925
|
+
access_token?:
|
|
1926
|
+
string;
|
|
1433
1927
|
/** Data format for response. */
|
|
1434
|
-
alt?:
|
|
1928
|
+
alt?:
|
|
1929
|
+
string;
|
|
1435
1930
|
/** JSONP */
|
|
1436
|
-
callback?:
|
|
1931
|
+
callback?:
|
|
1932
|
+
string;
|
|
1437
1933
|
/** Selector specifying which fields to include in a partial response. */
|
|
1438
|
-
fields?:
|
|
1934
|
+
fields?:
|
|
1935
|
+
string;
|
|
1439
1936
|
/**
|
|
1440
1937
|
* Required. Short name of the GatewaySecurityPolicy resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores,
|
|
1441
1938
|
* and should not start with a number. E.g. "gateway_security_policy1".
|
|
1442
1939
|
*/
|
|
1443
|
-
gatewaySecurityPolicyId?:
|
|
1940
|
+
gatewaySecurityPolicyId?:
|
|
1941
|
+
string;
|
|
1444
1942
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1445
|
-
key?:
|
|
1943
|
+
key?:
|
|
1944
|
+
string;
|
|
1446
1945
|
/** OAuth 2.0 token for the current user. */
|
|
1447
|
-
oauth_token?:
|
|
1946
|
+
oauth_token?:
|
|
1947
|
+
string;
|
|
1448
1948
|
/** Required. The parent resource of the GatewaySecurityPolicy. Must be in the format `projects/{project}/locations/{location}`. */
|
|
1449
|
-
parent:
|
|
1949
|
+
parent:
|
|
1950
|
+
string;
|
|
1450
1951
|
/** Returns response with indentations and line breaks. */
|
|
1451
|
-
prettyPrint?:
|
|
1952
|
+
prettyPrint?:
|
|
1953
|
+
boolean;
|
|
1452
1954
|
/** 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. */
|
|
1453
|
-
quotaUser?:
|
|
1955
|
+
quotaUser?:
|
|
1956
|
+
string;
|
|
1454
1957
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1455
|
-
upload_protocol?:
|
|
1958
|
+
upload_protocol?:
|
|
1959
|
+
string;
|
|
1456
1960
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1457
|
-
uploadType?:
|
|
1961
|
+
uploadType?:
|
|
1962
|
+
string;
|
|
1458
1963
|
},
|
|
1459
1964
|
body: GatewaySecurityPolicy): Request<Operation>;
|
|
1460
1965
|
/** Deletes a single GatewaySecurityPolicy. */
|
|
1461
1966
|
delete(request?: {
|
|
1462
1967
|
/** V1 error format. */
|
|
1463
|
-
"$.xgafv"?:
|
|
1968
|
+
"$.xgafv"?:
|
|
1969
|
+
string;
|
|
1464
1970
|
/** OAuth access token. */
|
|
1465
|
-
access_token?:
|
|
1971
|
+
access_token?:
|
|
1972
|
+
string;
|
|
1466
1973
|
/** Data format for response. */
|
|
1467
|
-
alt?:
|
|
1974
|
+
alt?:
|
|
1975
|
+
string;
|
|
1468
1976
|
/** JSONP */
|
|
1469
|
-
callback?:
|
|
1977
|
+
callback?:
|
|
1978
|
+
string;
|
|
1470
1979
|
/** Selector specifying which fields to include in a partial response. */
|
|
1471
|
-
fields?:
|
|
1980
|
+
fields?:
|
|
1981
|
+
string;
|
|
1472
1982
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1473
|
-
key?:
|
|
1983
|
+
key?:
|
|
1984
|
+
string;
|
|
1474
1985
|
/** Required. A name of the GatewaySecurityPolicy to delete. Must be in the format `projects/{project}/locations/{location}/gatewaySecurityPolicies/*`. */
|
|
1475
|
-
name:
|
|
1986
|
+
name:
|
|
1987
|
+
string;
|
|
1476
1988
|
/** OAuth 2.0 token for the current user. */
|
|
1477
|
-
oauth_token?:
|
|
1989
|
+
oauth_token?:
|
|
1990
|
+
string;
|
|
1478
1991
|
/** Returns response with indentations and line breaks. */
|
|
1479
|
-
prettyPrint?:
|
|
1992
|
+
prettyPrint?:
|
|
1993
|
+
boolean;
|
|
1480
1994
|
/** 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. */
|
|
1481
|
-
quotaUser?:
|
|
1995
|
+
quotaUser?:
|
|
1996
|
+
string;
|
|
1482
1997
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1483
|
-
upload_protocol?:
|
|
1998
|
+
upload_protocol?:
|
|
1999
|
+
string;
|
|
1484
2000
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1485
|
-
uploadType?:
|
|
2001
|
+
uploadType?:
|
|
2002
|
+
string;
|
|
1486
2003
|
}): Request<Operation>;
|
|
1487
2004
|
/** Gets details of a single GatewaySecurityPolicy. */
|
|
1488
2005
|
get(request?: {
|
|
1489
2006
|
/** V1 error format. */
|
|
1490
|
-
"$.xgafv"?:
|
|
2007
|
+
"$.xgafv"?:
|
|
2008
|
+
string;
|
|
1491
2009
|
/** OAuth access token. */
|
|
1492
|
-
access_token?:
|
|
2010
|
+
access_token?:
|
|
2011
|
+
string;
|
|
1493
2012
|
/** Data format for response. */
|
|
1494
|
-
alt?:
|
|
2013
|
+
alt?:
|
|
2014
|
+
string;
|
|
1495
2015
|
/** JSONP */
|
|
1496
|
-
callback?:
|
|
2016
|
+
callback?:
|
|
2017
|
+
string;
|
|
1497
2018
|
/** Selector specifying which fields to include in a partial response. */
|
|
1498
|
-
fields?:
|
|
2019
|
+
fields?:
|
|
2020
|
+
string;
|
|
1499
2021
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1500
|
-
key?:
|
|
2022
|
+
key?:
|
|
2023
|
+
string;
|
|
1501
2024
|
/** Required. A name of the GatewaySecurityPolicy to get. Must be in the format `projects/{project}/locations/{location}/gatewaySecurityPolicies/*`. */
|
|
1502
|
-
name:
|
|
2025
|
+
name:
|
|
2026
|
+
string;
|
|
1503
2027
|
/** OAuth 2.0 token for the current user. */
|
|
1504
|
-
oauth_token?:
|
|
2028
|
+
oauth_token?:
|
|
2029
|
+
string;
|
|
1505
2030
|
/** Returns response with indentations and line breaks. */
|
|
1506
|
-
prettyPrint?:
|
|
2031
|
+
prettyPrint?:
|
|
2032
|
+
boolean;
|
|
1507
2033
|
/** 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. */
|
|
1508
|
-
quotaUser?:
|
|
2034
|
+
quotaUser?:
|
|
2035
|
+
string;
|
|
1509
2036
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1510
|
-
upload_protocol?:
|
|
2037
|
+
upload_protocol?:
|
|
2038
|
+
string;
|
|
1511
2039
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1512
|
-
uploadType?:
|
|
2040
|
+
uploadType?:
|
|
2041
|
+
string;
|
|
1513
2042
|
}): Request<GatewaySecurityPolicy>;
|
|
1514
2043
|
/** Lists GatewaySecurityPolicies in a given project and location. */
|
|
1515
2044
|
list(request?: {
|
|
1516
2045
|
/** V1 error format. */
|
|
1517
|
-
"$.xgafv"?:
|
|
2046
|
+
"$.xgafv"?:
|
|
2047
|
+
string;
|
|
1518
2048
|
/** OAuth access token. */
|
|
1519
|
-
access_token?:
|
|
2049
|
+
access_token?:
|
|
2050
|
+
string;
|
|
1520
2051
|
/** Data format for response. */
|
|
1521
|
-
alt?:
|
|
2052
|
+
alt?:
|
|
2053
|
+
string;
|
|
1522
2054
|
/** JSONP */
|
|
1523
|
-
callback?:
|
|
2055
|
+
callback?:
|
|
2056
|
+
string;
|
|
1524
2057
|
/** Selector specifying which fields to include in a partial response. */
|
|
1525
|
-
fields?:
|
|
2058
|
+
fields?:
|
|
2059
|
+
string;
|
|
1526
2060
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1527
|
-
key?:
|
|
2061
|
+
key?:
|
|
2062
|
+
string;
|
|
1528
2063
|
/** OAuth 2.0 token for the current user. */
|
|
1529
|
-
oauth_token?:
|
|
2064
|
+
oauth_token?:
|
|
2065
|
+
string;
|
|
1530
2066
|
/** Maximum number of GatewaySecurityPolicies to return per call. */
|
|
1531
|
-
pageSize?:
|
|
2067
|
+
pageSize?:
|
|
2068
|
+
number;
|
|
1532
2069
|
/**
|
|
1533
2070
|
* The value returned by the last 'ListGatewaySecurityPoliciesResponse' Indicates that this is a continuation of a prior 'ListGatewaySecurityPolicies' call, and that the system
|
|
1534
2071
|
* should return the next page of data.
|
|
1535
2072
|
*/
|
|
1536
|
-
pageToken?:
|
|
2073
|
+
pageToken?:
|
|
2074
|
+
string;
|
|
1537
2075
|
/** Required. The project and location from which the GatewaySecurityPolicies should be listed, specified in the format `projects/{project}/locations/{location}`. */
|
|
1538
|
-
parent:
|
|
2076
|
+
parent:
|
|
2077
|
+
string;
|
|
1539
2078
|
/** Returns response with indentations and line breaks. */
|
|
1540
|
-
prettyPrint?:
|
|
2079
|
+
prettyPrint?:
|
|
2080
|
+
boolean;
|
|
1541
2081
|
/** 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. */
|
|
1542
|
-
quotaUser?:
|
|
2082
|
+
quotaUser?:
|
|
2083
|
+
string;
|
|
1543
2084
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1544
|
-
upload_protocol?:
|
|
2085
|
+
upload_protocol?:
|
|
2086
|
+
string;
|
|
1545
2087
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1546
|
-
uploadType?:
|
|
2088
|
+
uploadType?:
|
|
2089
|
+
string;
|
|
1547
2090
|
}): Request<ListGatewaySecurityPoliciesResponse>;
|
|
1548
2091
|
/** Updates the parameters of a single GatewaySecurityPolicy. */
|
|
1549
2092
|
patch(request: {
|
|
1550
2093
|
/** V1 error format. */
|
|
1551
|
-
"$.xgafv"?:
|
|
2094
|
+
"$.xgafv"?:
|
|
2095
|
+
string;
|
|
1552
2096
|
/** OAuth access token. */
|
|
1553
|
-
access_token?:
|
|
2097
|
+
access_token?:
|
|
2098
|
+
string;
|
|
1554
2099
|
/** Data format for response. */
|
|
1555
|
-
alt?:
|
|
2100
|
+
alt?:
|
|
2101
|
+
string;
|
|
1556
2102
|
/** JSONP */
|
|
1557
|
-
callback?:
|
|
2103
|
+
callback?:
|
|
2104
|
+
string;
|
|
1558
2105
|
/** Selector specifying which fields to include in a partial response. */
|
|
1559
|
-
fields?:
|
|
2106
|
+
fields?:
|
|
2107
|
+
string;
|
|
1560
2108
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1561
|
-
key?:
|
|
2109
|
+
key?:
|
|
2110
|
+
string;
|
|
1562
2111
|
/**
|
|
1563
2112
|
* Required. Name of the resource. Name is of the form projects/{project}/locations/{location}/gatewaySecurityPolicies/{gateway_security_policy} gateway_security_policy should
|
|
1564
2113
|
* match the pattern:(^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$).
|
|
1565
2114
|
*/
|
|
1566
|
-
name:
|
|
2115
|
+
name:
|
|
2116
|
+
string;
|
|
1567
2117
|
/** OAuth 2.0 token for the current user. */
|
|
1568
|
-
oauth_token?:
|
|
2118
|
+
oauth_token?:
|
|
2119
|
+
string;
|
|
1569
2120
|
/** Returns response with indentations and line breaks. */
|
|
1570
|
-
prettyPrint?:
|
|
2121
|
+
prettyPrint?:
|
|
2122
|
+
boolean;
|
|
1571
2123
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1572
|
-
quotaUser?:
|
|
2124
|
+
quotaUser?:
|
|
2125
|
+
string;
|
|
1573
2126
|
/**
|
|
1574
2127
|
* Optional. Field mask is used to specify the fields to be overwritten in the GatewaySecurityPolicy resource by the update. The fields specified in the update_mask are relative to
|
|
1575
2128
|
* the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields will be overwritten.
|
|
1576
2129
|
*/
|
|
1577
|
-
updateMask?:
|
|
2130
|
+
updateMask?:
|
|
2131
|
+
string;
|
|
1578
2132
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1579
|
-
upload_protocol?:
|
|
2133
|
+
upload_protocol?:
|
|
2134
|
+
string;
|
|
1580
2135
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1581
|
-
uploadType?:
|
|
2136
|
+
uploadType?:
|
|
2137
|
+
string;
|
|
1582
2138
|
/** Request body */
|
|
1583
|
-
resource:
|
|
2139
|
+
resource:
|
|
2140
|
+
GatewaySecurityPolicy;
|
|
1584
2141
|
}): Request<Operation>;
|
|
1585
2142
|
patch(request: {
|
|
1586
2143
|
/** V1 error format. */
|
|
1587
|
-
"$.xgafv"?:
|
|
2144
|
+
"$.xgafv"?:
|
|
2145
|
+
string;
|
|
1588
2146
|
/** OAuth access token. */
|
|
1589
|
-
access_token?:
|
|
2147
|
+
access_token?:
|
|
2148
|
+
string;
|
|
1590
2149
|
/** Data format for response. */
|
|
1591
|
-
alt?:
|
|
2150
|
+
alt?:
|
|
2151
|
+
string;
|
|
1592
2152
|
/** JSONP */
|
|
1593
|
-
callback?:
|
|
2153
|
+
callback?:
|
|
2154
|
+
string;
|
|
1594
2155
|
/** Selector specifying which fields to include in a partial response. */
|
|
1595
|
-
fields?:
|
|
2156
|
+
fields?:
|
|
2157
|
+
string;
|
|
1596
2158
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1597
|
-
key?:
|
|
2159
|
+
key?:
|
|
2160
|
+
string;
|
|
1598
2161
|
/**
|
|
1599
2162
|
* Required. Name of the resource. Name is of the form projects/{project}/locations/{location}/gatewaySecurityPolicies/{gateway_security_policy} gateway_security_policy should
|
|
1600
2163
|
* match the pattern:(^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$).
|
|
1601
2164
|
*/
|
|
1602
|
-
name:
|
|
2165
|
+
name:
|
|
2166
|
+
string;
|
|
1603
2167
|
/** OAuth 2.0 token for the current user. */
|
|
1604
|
-
oauth_token?:
|
|
2168
|
+
oauth_token?:
|
|
2169
|
+
string;
|
|
1605
2170
|
/** Returns response with indentations and line breaks. */
|
|
1606
|
-
prettyPrint?:
|
|
2171
|
+
prettyPrint?:
|
|
2172
|
+
boolean;
|
|
1607
2173
|
/** 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. */
|
|
1608
|
-
quotaUser?:
|
|
2174
|
+
quotaUser?:
|
|
2175
|
+
string;
|
|
1609
2176
|
/**
|
|
1610
2177
|
* Optional. Field mask is used to specify the fields to be overwritten in the GatewaySecurityPolicy resource by the update. The fields specified in the update_mask are relative to
|
|
1611
2178
|
* the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields will be overwritten.
|
|
1612
2179
|
*/
|
|
1613
|
-
updateMask?:
|
|
2180
|
+
updateMask?:
|
|
2181
|
+
string;
|
|
1614
2182
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1615
|
-
upload_protocol?:
|
|
2183
|
+
upload_protocol?:
|
|
2184
|
+
string;
|
|
1616
2185
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1617
|
-
uploadType?:
|
|
2186
|
+
uploadType?:
|
|
2187
|
+
string;
|
|
1618
2188
|
},
|
|
1619
2189
|
body: GatewaySecurityPolicy): Request<Operation>;
|
|
1620
|
-
rules:
|
|
2190
|
+
rules:
|
|
2191
|
+
RulesResource;
|
|
1621
2192
|
}
|
|
1622
2193
|
interface OperationsResource {
|
|
1623
2194
|
/**
|
|
@@ -1628,57 +2199,82 @@ declare namespace gapi.client {
|
|
|
1628
2199
|
*/
|
|
1629
2200
|
cancel(request: {
|
|
1630
2201
|
/** V1 error format. */
|
|
1631
|
-
"$.xgafv"?:
|
|
2202
|
+
"$.xgafv"?:
|
|
2203
|
+
string;
|
|
1632
2204
|
/** OAuth access token. */
|
|
1633
|
-
access_token?:
|
|
2205
|
+
access_token?:
|
|
2206
|
+
string;
|
|
1634
2207
|
/** Data format for response. */
|
|
1635
|
-
alt?:
|
|
2208
|
+
alt?:
|
|
2209
|
+
string;
|
|
1636
2210
|
/** JSONP */
|
|
1637
|
-
callback?:
|
|
2211
|
+
callback?:
|
|
2212
|
+
string;
|
|
1638
2213
|
/** Selector specifying which fields to include in a partial response. */
|
|
1639
|
-
fields?:
|
|
2214
|
+
fields?:
|
|
2215
|
+
string;
|
|
1640
2216
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1641
|
-
key?:
|
|
2217
|
+
key?:
|
|
2218
|
+
string;
|
|
1642
2219
|
/** The name of the operation resource to be cancelled. */
|
|
1643
|
-
name:
|
|
2220
|
+
name:
|
|
2221
|
+
string;
|
|
1644
2222
|
/** OAuth 2.0 token for the current user. */
|
|
1645
|
-
oauth_token?:
|
|
2223
|
+
oauth_token?:
|
|
2224
|
+
string;
|
|
1646
2225
|
/** Returns response with indentations and line breaks. */
|
|
1647
|
-
prettyPrint?:
|
|
2226
|
+
prettyPrint?:
|
|
2227
|
+
boolean;
|
|
1648
2228
|
/** 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. */
|
|
1649
|
-
quotaUser?:
|
|
2229
|
+
quotaUser?:
|
|
2230
|
+
string;
|
|
1650
2231
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1651
|
-
upload_protocol?:
|
|
2232
|
+
upload_protocol?:
|
|
2233
|
+
string;
|
|
1652
2234
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1653
|
-
uploadType?:
|
|
2235
|
+
uploadType?:
|
|
2236
|
+
string;
|
|
1654
2237
|
/** Request body */
|
|
1655
|
-
resource:
|
|
2238
|
+
resource:
|
|
2239
|
+
CancelOperationRequest;
|
|
1656
2240
|
}): Request<{}>;
|
|
1657
2241
|
cancel(request: {
|
|
1658
2242
|
/** V1 error format. */
|
|
1659
|
-
"$.xgafv"?:
|
|
2243
|
+
"$.xgafv"?:
|
|
2244
|
+
string;
|
|
1660
2245
|
/** OAuth access token. */
|
|
1661
|
-
access_token?:
|
|
2246
|
+
access_token?:
|
|
2247
|
+
string;
|
|
1662
2248
|
/** Data format for response. */
|
|
1663
|
-
alt?:
|
|
2249
|
+
alt?:
|
|
2250
|
+
string;
|
|
1664
2251
|
/** JSONP */
|
|
1665
|
-
callback?:
|
|
2252
|
+
callback?:
|
|
2253
|
+
string;
|
|
1666
2254
|
/** Selector specifying which fields to include in a partial response. */
|
|
1667
|
-
fields?:
|
|
2255
|
+
fields?:
|
|
2256
|
+
string;
|
|
1668
2257
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1669
|
-
key?:
|
|
2258
|
+
key?:
|
|
2259
|
+
string;
|
|
1670
2260
|
/** The name of the operation resource to be cancelled. */
|
|
1671
|
-
name:
|
|
2261
|
+
name:
|
|
2262
|
+
string;
|
|
1672
2263
|
/** OAuth 2.0 token for the current user. */
|
|
1673
|
-
oauth_token?:
|
|
2264
|
+
oauth_token?:
|
|
2265
|
+
string;
|
|
1674
2266
|
/** Returns response with indentations and line breaks. */
|
|
1675
|
-
prettyPrint?:
|
|
2267
|
+
prettyPrint?:
|
|
2268
|
+
boolean;
|
|
1676
2269
|
/** 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. */
|
|
1677
|
-
quotaUser?:
|
|
2270
|
+
quotaUser?:
|
|
2271
|
+
string;
|
|
1678
2272
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1679
|
-
upload_protocol?:
|
|
2273
|
+
upload_protocol?:
|
|
2274
|
+
string;
|
|
1680
2275
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1681
|
-
uploadType?:
|
|
2276
|
+
uploadType?:
|
|
2277
|
+
string;
|
|
1682
2278
|
},
|
|
1683
2279
|
body: CancelOperationRequest): Request<{}>;
|
|
1684
2280
|
/**
|
|
@@ -1687,228 +2283,325 @@ declare namespace gapi.client {
|
|
|
1687
2283
|
*/
|
|
1688
2284
|
delete(request?: {
|
|
1689
2285
|
/** V1 error format. */
|
|
1690
|
-
"$.xgafv"?:
|
|
2286
|
+
"$.xgafv"?:
|
|
2287
|
+
string;
|
|
1691
2288
|
/** OAuth access token. */
|
|
1692
|
-
access_token?:
|
|
2289
|
+
access_token?:
|
|
2290
|
+
string;
|
|
1693
2291
|
/** Data format for response. */
|
|
1694
|
-
alt?:
|
|
2292
|
+
alt?:
|
|
2293
|
+
string;
|
|
1695
2294
|
/** JSONP */
|
|
1696
|
-
callback?:
|
|
2295
|
+
callback?:
|
|
2296
|
+
string;
|
|
1697
2297
|
/** Selector specifying which fields to include in a partial response. */
|
|
1698
|
-
fields?:
|
|
2298
|
+
fields?:
|
|
2299
|
+
string;
|
|
1699
2300
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1700
|
-
key?:
|
|
2301
|
+
key?:
|
|
2302
|
+
string;
|
|
1701
2303
|
/** The name of the operation resource to be deleted. */
|
|
1702
|
-
name:
|
|
2304
|
+
name:
|
|
2305
|
+
string;
|
|
1703
2306
|
/** OAuth 2.0 token for the current user. */
|
|
1704
|
-
oauth_token?:
|
|
2307
|
+
oauth_token?:
|
|
2308
|
+
string;
|
|
1705
2309
|
/** Returns response with indentations and line breaks. */
|
|
1706
|
-
prettyPrint?:
|
|
2310
|
+
prettyPrint?:
|
|
2311
|
+
boolean;
|
|
1707
2312
|
/** 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. */
|
|
1708
|
-
quotaUser?:
|
|
2313
|
+
quotaUser?:
|
|
2314
|
+
string;
|
|
1709
2315
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1710
|
-
upload_protocol?:
|
|
2316
|
+
upload_protocol?:
|
|
2317
|
+
string;
|
|
1711
2318
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1712
|
-
uploadType?:
|
|
2319
|
+
uploadType?:
|
|
2320
|
+
string;
|
|
1713
2321
|
}): Request<{}>;
|
|
1714
2322
|
/** 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. */
|
|
1715
2323
|
get(request?: {
|
|
1716
2324
|
/** V1 error format. */
|
|
1717
|
-
"$.xgafv"?:
|
|
2325
|
+
"$.xgafv"?:
|
|
2326
|
+
string;
|
|
1718
2327
|
/** OAuth access token. */
|
|
1719
|
-
access_token?:
|
|
2328
|
+
access_token?:
|
|
2329
|
+
string;
|
|
1720
2330
|
/** Data format for response. */
|
|
1721
|
-
alt?:
|
|
2331
|
+
alt?:
|
|
2332
|
+
string;
|
|
1722
2333
|
/** JSONP */
|
|
1723
|
-
callback?:
|
|
2334
|
+
callback?:
|
|
2335
|
+
string;
|
|
1724
2336
|
/** Selector specifying which fields to include in a partial response. */
|
|
1725
|
-
fields?:
|
|
2337
|
+
fields?:
|
|
2338
|
+
string;
|
|
1726
2339
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1727
|
-
key?:
|
|
2340
|
+
key?:
|
|
2341
|
+
string;
|
|
1728
2342
|
/** The name of the operation resource. */
|
|
1729
|
-
name:
|
|
2343
|
+
name:
|
|
2344
|
+
string;
|
|
1730
2345
|
/** OAuth 2.0 token for the current user. */
|
|
1731
|
-
oauth_token?:
|
|
2346
|
+
oauth_token?:
|
|
2347
|
+
string;
|
|
1732
2348
|
/** Returns response with indentations and line breaks. */
|
|
1733
|
-
prettyPrint?:
|
|
2349
|
+
prettyPrint?:
|
|
2350
|
+
boolean;
|
|
1734
2351
|
/** 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. */
|
|
1735
|
-
quotaUser?:
|
|
2352
|
+
quotaUser?:
|
|
2353
|
+
string;
|
|
1736
2354
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1737
|
-
upload_protocol?:
|
|
2355
|
+
upload_protocol?:
|
|
2356
|
+
string;
|
|
1738
2357
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1739
|
-
uploadType?:
|
|
2358
|
+
uploadType?:
|
|
2359
|
+
string;
|
|
1740
2360
|
}): Request<Operation>;
|
|
1741
2361
|
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
1742
2362
|
list(request?: {
|
|
1743
2363
|
/** V1 error format. */
|
|
1744
|
-
"$.xgafv"?:
|
|
2364
|
+
"$.xgafv"?:
|
|
2365
|
+
string;
|
|
1745
2366
|
/** OAuth access token. */
|
|
1746
|
-
access_token?:
|
|
2367
|
+
access_token?:
|
|
2368
|
+
string;
|
|
1747
2369
|
/** Data format for response. */
|
|
1748
|
-
alt?:
|
|
2370
|
+
alt?:
|
|
2371
|
+
string;
|
|
1749
2372
|
/** JSONP */
|
|
1750
|
-
callback?:
|
|
2373
|
+
callback?:
|
|
2374
|
+
string;
|
|
1751
2375
|
/** Selector specifying which fields to include in a partial response. */
|
|
1752
|
-
fields?:
|
|
2376
|
+
fields?:
|
|
2377
|
+
string;
|
|
1753
2378
|
/** The standard list filter. */
|
|
1754
|
-
filter?:
|
|
2379
|
+
filter?:
|
|
2380
|
+
string;
|
|
1755
2381
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1756
|
-
key?:
|
|
2382
|
+
key?:
|
|
2383
|
+
string;
|
|
1757
2384
|
/** The name of the operation's parent resource. */
|
|
1758
|
-
name:
|
|
2385
|
+
name:
|
|
2386
|
+
string;
|
|
1759
2387
|
/** OAuth 2.0 token for the current user. */
|
|
1760
|
-
oauth_token?:
|
|
2388
|
+
oauth_token?:
|
|
2389
|
+
string;
|
|
1761
2390
|
/** The standard list page size. */
|
|
1762
|
-
pageSize?:
|
|
2391
|
+
pageSize?:
|
|
2392
|
+
number;
|
|
1763
2393
|
/** The standard list page token. */
|
|
1764
|
-
pageToken?:
|
|
2394
|
+
pageToken?:
|
|
2395
|
+
string;
|
|
1765
2396
|
/** Returns response with indentations and line breaks. */
|
|
1766
|
-
prettyPrint?:
|
|
2397
|
+
prettyPrint?:
|
|
2398
|
+
boolean;
|
|
1767
2399
|
/** 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. */
|
|
1768
|
-
quotaUser?:
|
|
2400
|
+
quotaUser?:
|
|
2401
|
+
string;
|
|
1769
2402
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1770
|
-
upload_protocol?:
|
|
2403
|
+
upload_protocol?:
|
|
2404
|
+
string;
|
|
1771
2405
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1772
|
-
uploadType?:
|
|
2406
|
+
uploadType?:
|
|
2407
|
+
string;
|
|
1773
2408
|
}): Request<ListOperationsResponse>;
|
|
1774
2409
|
}
|
|
1775
2410
|
interface ServerTlsPoliciesResource {
|
|
1776
2411
|
/** Creates a new ServerTlsPolicy in a given project and location. */
|
|
1777
2412
|
create(request: {
|
|
1778
2413
|
/** V1 error format. */
|
|
1779
|
-
"$.xgafv"?:
|
|
2414
|
+
"$.xgafv"?:
|
|
2415
|
+
string;
|
|
1780
2416
|
/** OAuth access token. */
|
|
1781
|
-
access_token?:
|
|
2417
|
+
access_token?:
|
|
2418
|
+
string;
|
|
1782
2419
|
/** Data format for response. */
|
|
1783
|
-
alt?:
|
|
2420
|
+
alt?:
|
|
2421
|
+
string;
|
|
1784
2422
|
/** JSONP */
|
|
1785
|
-
callback?:
|
|
2423
|
+
callback?:
|
|
2424
|
+
string;
|
|
1786
2425
|
/** Selector specifying which fields to include in a partial response. */
|
|
1787
|
-
fields?:
|
|
2426
|
+
fields?:
|
|
2427
|
+
string;
|
|
1788
2428
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1789
|
-
key?:
|
|
2429
|
+
key?:
|
|
2430
|
+
string;
|
|
1790
2431
|
/** OAuth 2.0 token for the current user. */
|
|
1791
|
-
oauth_token?:
|
|
2432
|
+
oauth_token?:
|
|
2433
|
+
string;
|
|
1792
2434
|
/** Required. The parent resource of the ServerTlsPolicy. Must be in the format `projects/*/locations/{location}`. */
|
|
1793
|
-
parent:
|
|
2435
|
+
parent:
|
|
2436
|
+
string;
|
|
1794
2437
|
/** Returns response with indentations and line breaks. */
|
|
1795
|
-
prettyPrint?:
|
|
2438
|
+
prettyPrint?:
|
|
2439
|
+
boolean;
|
|
1796
2440
|
/** 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. */
|
|
1797
|
-
quotaUser?:
|
|
2441
|
+
quotaUser?:
|
|
2442
|
+
string;
|
|
1798
2443
|
/**
|
|
1799
2444
|
* Required. Short name of the ServerTlsPolicy resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and
|
|
1800
2445
|
* should not start with a number. E.g. "server_mtls_policy".
|
|
1801
2446
|
*/
|
|
1802
|
-
serverTlsPolicyId?:
|
|
2447
|
+
serverTlsPolicyId?:
|
|
2448
|
+
string;
|
|
1803
2449
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1804
|
-
upload_protocol?:
|
|
2450
|
+
upload_protocol?:
|
|
2451
|
+
string;
|
|
1805
2452
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1806
|
-
uploadType?:
|
|
2453
|
+
uploadType?:
|
|
2454
|
+
string;
|
|
1807
2455
|
/** Request body */
|
|
1808
|
-
resource:
|
|
2456
|
+
resource:
|
|
2457
|
+
ServerTlsPolicy;
|
|
1809
2458
|
}): Request<Operation>;
|
|
1810
2459
|
create(request: {
|
|
1811
2460
|
/** V1 error format. */
|
|
1812
|
-
"$.xgafv"?:
|
|
2461
|
+
"$.xgafv"?:
|
|
2462
|
+
string;
|
|
1813
2463
|
/** OAuth access token. */
|
|
1814
|
-
access_token?:
|
|
2464
|
+
access_token?:
|
|
2465
|
+
string;
|
|
1815
2466
|
/** Data format for response. */
|
|
1816
|
-
alt?:
|
|
2467
|
+
alt?:
|
|
2468
|
+
string;
|
|
1817
2469
|
/** JSONP */
|
|
1818
|
-
callback?:
|
|
2470
|
+
callback?:
|
|
2471
|
+
string;
|
|
1819
2472
|
/** Selector specifying which fields to include in a partial response. */
|
|
1820
|
-
fields?:
|
|
2473
|
+
fields?:
|
|
2474
|
+
string;
|
|
1821
2475
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1822
|
-
key?:
|
|
2476
|
+
key?:
|
|
2477
|
+
string;
|
|
1823
2478
|
/** OAuth 2.0 token for the current user. */
|
|
1824
|
-
oauth_token?:
|
|
2479
|
+
oauth_token?:
|
|
2480
|
+
string;
|
|
1825
2481
|
/** Required. The parent resource of the ServerTlsPolicy. Must be in the format `projects/*/locations/{location}`. */
|
|
1826
|
-
parent:
|
|
2482
|
+
parent:
|
|
2483
|
+
string;
|
|
1827
2484
|
/** Returns response with indentations and line breaks. */
|
|
1828
|
-
prettyPrint?:
|
|
2485
|
+
prettyPrint?:
|
|
2486
|
+
boolean;
|
|
1829
2487
|
/** 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. */
|
|
1830
|
-
quotaUser?:
|
|
2488
|
+
quotaUser?:
|
|
2489
|
+
string;
|
|
1831
2490
|
/**
|
|
1832
2491
|
* Required. Short name of the ServerTlsPolicy resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and
|
|
1833
2492
|
* should not start with a number. E.g. "server_mtls_policy".
|
|
1834
2493
|
*/
|
|
1835
|
-
serverTlsPolicyId?:
|
|
2494
|
+
serverTlsPolicyId?:
|
|
2495
|
+
string;
|
|
1836
2496
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1837
|
-
upload_protocol?:
|
|
2497
|
+
upload_protocol?:
|
|
2498
|
+
string;
|
|
1838
2499
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1839
|
-
uploadType?:
|
|
2500
|
+
uploadType?:
|
|
2501
|
+
string;
|
|
1840
2502
|
},
|
|
1841
2503
|
body: ServerTlsPolicy): Request<Operation>;
|
|
1842
2504
|
/** Deletes a single ServerTlsPolicy. */
|
|
1843
2505
|
delete(request?: {
|
|
1844
2506
|
/** V1 error format. */
|
|
1845
|
-
"$.xgafv"?:
|
|
2507
|
+
"$.xgafv"?:
|
|
2508
|
+
string;
|
|
1846
2509
|
/** OAuth access token. */
|
|
1847
|
-
access_token?:
|
|
2510
|
+
access_token?:
|
|
2511
|
+
string;
|
|
1848
2512
|
/** Data format for response. */
|
|
1849
|
-
alt?:
|
|
2513
|
+
alt?:
|
|
2514
|
+
string;
|
|
1850
2515
|
/** JSONP */
|
|
1851
|
-
callback?:
|
|
2516
|
+
callback?:
|
|
2517
|
+
string;
|
|
1852
2518
|
/** Selector specifying which fields to include in a partial response. */
|
|
1853
|
-
fields?:
|
|
2519
|
+
fields?:
|
|
2520
|
+
string;
|
|
1854
2521
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1855
|
-
key?:
|
|
2522
|
+
key?:
|
|
2523
|
+
string;
|
|
1856
2524
|
/** Required. A name of the ServerTlsPolicy to delete. Must be in the format `projects/*/locations/{location}/serverTlsPolicies/*`. */
|
|
1857
|
-
name:
|
|
2525
|
+
name:
|
|
2526
|
+
string;
|
|
1858
2527
|
/** OAuth 2.0 token for the current user. */
|
|
1859
|
-
oauth_token?:
|
|
2528
|
+
oauth_token?:
|
|
2529
|
+
string;
|
|
1860
2530
|
/** Returns response with indentations and line breaks. */
|
|
1861
|
-
prettyPrint?:
|
|
2531
|
+
prettyPrint?:
|
|
2532
|
+
boolean;
|
|
1862
2533
|
/** 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. */
|
|
1863
|
-
quotaUser?:
|
|
2534
|
+
quotaUser?:
|
|
2535
|
+
string;
|
|
1864
2536
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1865
|
-
upload_protocol?:
|
|
2537
|
+
upload_protocol?:
|
|
2538
|
+
string;
|
|
1866
2539
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1867
|
-
uploadType?:
|
|
2540
|
+
uploadType?:
|
|
2541
|
+
string;
|
|
1868
2542
|
}): Request<Operation>;
|
|
1869
2543
|
/** Gets details of a single ServerTlsPolicy. */
|
|
1870
2544
|
get(request?: {
|
|
1871
2545
|
/** V1 error format. */
|
|
1872
|
-
"$.xgafv"?:
|
|
2546
|
+
"$.xgafv"?:
|
|
2547
|
+
string;
|
|
1873
2548
|
/** OAuth access token. */
|
|
1874
|
-
access_token?:
|
|
2549
|
+
access_token?:
|
|
2550
|
+
string;
|
|
1875
2551
|
/** Data format for response. */
|
|
1876
|
-
alt?:
|
|
2552
|
+
alt?:
|
|
2553
|
+
string;
|
|
1877
2554
|
/** JSONP */
|
|
1878
|
-
callback?:
|
|
2555
|
+
callback?:
|
|
2556
|
+
string;
|
|
1879
2557
|
/** Selector specifying which fields to include in a partial response. */
|
|
1880
|
-
fields?:
|
|
2558
|
+
fields?:
|
|
2559
|
+
string;
|
|
1881
2560
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1882
|
-
key?:
|
|
2561
|
+
key?:
|
|
2562
|
+
string;
|
|
1883
2563
|
/** Required. A name of the ServerTlsPolicy to get. Must be in the format `projects/*/locations/{location}/serverTlsPolicies/*`. */
|
|
1884
|
-
name:
|
|
2564
|
+
name:
|
|
2565
|
+
string;
|
|
1885
2566
|
/** OAuth 2.0 token for the current user. */
|
|
1886
|
-
oauth_token?:
|
|
2567
|
+
oauth_token?:
|
|
2568
|
+
string;
|
|
1887
2569
|
/** Returns response with indentations and line breaks. */
|
|
1888
|
-
prettyPrint?:
|
|
2570
|
+
prettyPrint?:
|
|
2571
|
+
boolean;
|
|
1889
2572
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1890
|
-
quotaUser?:
|
|
2573
|
+
quotaUser?:
|
|
2574
|
+
string;
|
|
1891
2575
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1892
|
-
upload_protocol?:
|
|
2576
|
+
upload_protocol?:
|
|
2577
|
+
string;
|
|
1893
2578
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1894
|
-
uploadType?:
|
|
2579
|
+
uploadType?:
|
|
2580
|
+
string;
|
|
1895
2581
|
}): Request<ServerTlsPolicy>;
|
|
1896
2582
|
/** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
|
|
1897
2583
|
getIamPolicy(request?: {
|
|
1898
2584
|
/** V1 error format. */
|
|
1899
|
-
"$.xgafv"?:
|
|
2585
|
+
"$.xgafv"?:
|
|
2586
|
+
string;
|
|
1900
2587
|
/** OAuth access token. */
|
|
1901
|
-
access_token?:
|
|
2588
|
+
access_token?:
|
|
2589
|
+
string;
|
|
1902
2590
|
/** Data format for response. */
|
|
1903
|
-
alt?:
|
|
2591
|
+
alt?:
|
|
2592
|
+
string;
|
|
1904
2593
|
/** JSONP */
|
|
1905
|
-
callback?:
|
|
2594
|
+
callback?:
|
|
2595
|
+
string;
|
|
1906
2596
|
/** Selector specifying which fields to include in a partial response. */
|
|
1907
|
-
fields?:
|
|
2597
|
+
fields?:
|
|
2598
|
+
string;
|
|
1908
2599
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1909
|
-
key?:
|
|
2600
|
+
key?:
|
|
2601
|
+
string;
|
|
1910
2602
|
/** OAuth 2.0 token for the current user. */
|
|
1911
|
-
oauth_token?:
|
|
2603
|
+
oauth_token?:
|
|
2604
|
+
string;
|
|
1912
2605
|
/**
|
|
1913
2606
|
* Optional. The maximum policy version that will be used to format the policy. Valid values are 0, 1, and 3. Requests specifying an invalid value will be rejected. Requests for
|
|
1914
2607
|
* policies with any conditional role bindings must specify version 3. Policies with no conditional role bindings may specify any valid value or leave the field unset. The policy
|
|
@@ -1916,150 +2609,209 @@ declare namespace gapi.client {
|
|
|
1916
2609
|
* role bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM
|
|
1917
2610
|
* documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
|
|
1918
2611
|
*/
|
|
1919
|
-
"options.requestedPolicyVersion"?:
|
|
2612
|
+
"options.requestedPolicyVersion"?:
|
|
2613
|
+
number;
|
|
1920
2614
|
/** Returns response with indentations and line breaks. */
|
|
1921
|
-
prettyPrint?:
|
|
2615
|
+
prettyPrint?:
|
|
2616
|
+
boolean;
|
|
1922
2617
|
/** 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. */
|
|
1923
|
-
quotaUser?:
|
|
2618
|
+
quotaUser?:
|
|
2619
|
+
string;
|
|
1924
2620
|
/**
|
|
1925
2621
|
* REQUIRED: The resource for which the policy is being requested. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this
|
|
1926
2622
|
* field.
|
|
1927
2623
|
*/
|
|
1928
|
-
resource:
|
|
2624
|
+
resource:
|
|
2625
|
+
string;
|
|
1929
2626
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1930
|
-
upload_protocol?:
|
|
2627
|
+
upload_protocol?:
|
|
2628
|
+
string;
|
|
1931
2629
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1932
|
-
uploadType?:
|
|
2630
|
+
uploadType?:
|
|
2631
|
+
string;
|
|
1933
2632
|
}): Request<GoogleIamV1Policy>;
|
|
1934
2633
|
/** Lists ServerTlsPolicies in a given project and location. */
|
|
1935
2634
|
list(request?: {
|
|
1936
2635
|
/** V1 error format. */
|
|
1937
|
-
"$.xgafv"?:
|
|
2636
|
+
"$.xgafv"?:
|
|
2637
|
+
string;
|
|
1938
2638
|
/** OAuth access token. */
|
|
1939
|
-
access_token?:
|
|
2639
|
+
access_token?:
|
|
2640
|
+
string;
|
|
1940
2641
|
/** Data format for response. */
|
|
1941
|
-
alt?:
|
|
2642
|
+
alt?:
|
|
2643
|
+
string;
|
|
1942
2644
|
/** JSONP */
|
|
1943
|
-
callback?:
|
|
2645
|
+
callback?:
|
|
2646
|
+
string;
|
|
1944
2647
|
/** Selector specifying which fields to include in a partial response. */
|
|
1945
|
-
fields?:
|
|
2648
|
+
fields?:
|
|
2649
|
+
string;
|
|
1946
2650
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1947
|
-
key?:
|
|
2651
|
+
key?:
|
|
2652
|
+
string;
|
|
1948
2653
|
/** OAuth 2.0 token for the current user. */
|
|
1949
|
-
oauth_token?:
|
|
2654
|
+
oauth_token?:
|
|
2655
|
+
string;
|
|
1950
2656
|
/** Maximum number of ServerTlsPolicies to return per call. */
|
|
1951
|
-
pageSize?:
|
|
2657
|
+
pageSize?:
|
|
2658
|
+
number;
|
|
1952
2659
|
/**
|
|
1953
2660
|
* The value returned by the last `ListServerTlsPoliciesResponse` Indicates that this is a continuation of a prior `ListServerTlsPolicies` call, and that the system should return
|
|
1954
2661
|
* the next page of data.
|
|
1955
2662
|
*/
|
|
1956
|
-
pageToken?:
|
|
2663
|
+
pageToken?:
|
|
2664
|
+
string;
|
|
1957
2665
|
/** Required. The project and location from which the ServerTlsPolicies should be listed, specified in the format `projects/*/locations/{location}`. */
|
|
1958
|
-
parent:
|
|
2666
|
+
parent:
|
|
2667
|
+
string;
|
|
1959
2668
|
/** Returns response with indentations and line breaks. */
|
|
1960
|
-
prettyPrint?:
|
|
2669
|
+
prettyPrint?:
|
|
2670
|
+
boolean;
|
|
1961
2671
|
/** 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. */
|
|
1962
|
-
quotaUser?:
|
|
2672
|
+
quotaUser?:
|
|
2673
|
+
string;
|
|
1963
2674
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1964
|
-
upload_protocol?:
|
|
2675
|
+
upload_protocol?:
|
|
2676
|
+
string;
|
|
1965
2677
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1966
|
-
uploadType?:
|
|
2678
|
+
uploadType?:
|
|
2679
|
+
string;
|
|
1967
2680
|
}): Request<ListServerTlsPoliciesResponse>;
|
|
1968
2681
|
/** Updates the parameters of a single ServerTlsPolicy. */
|
|
1969
2682
|
patch(request: {
|
|
1970
2683
|
/** V1 error format. */
|
|
1971
|
-
"$.xgafv"?:
|
|
2684
|
+
"$.xgafv"?:
|
|
2685
|
+
string;
|
|
1972
2686
|
/** OAuth access token. */
|
|
1973
|
-
access_token?:
|
|
2687
|
+
access_token?:
|
|
2688
|
+
string;
|
|
1974
2689
|
/** Data format for response. */
|
|
1975
|
-
alt?:
|
|
2690
|
+
alt?:
|
|
2691
|
+
string;
|
|
1976
2692
|
/** JSONP */
|
|
1977
|
-
callback?:
|
|
2693
|
+
callback?:
|
|
2694
|
+
string;
|
|
1978
2695
|
/** Selector specifying which fields to include in a partial response. */
|
|
1979
|
-
fields?:
|
|
2696
|
+
fields?:
|
|
2697
|
+
string;
|
|
1980
2698
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1981
|
-
key?:
|
|
2699
|
+
key?:
|
|
2700
|
+
string;
|
|
1982
2701
|
/** Required. Name of the ServerTlsPolicy resource. It matches the pattern `projects/*/locations/{location}/serverTlsPolicies/{server_tls_policy}` */
|
|
1983
|
-
name:
|
|
2702
|
+
name:
|
|
2703
|
+
string;
|
|
1984
2704
|
/** OAuth 2.0 token for the current user. */
|
|
1985
|
-
oauth_token?:
|
|
2705
|
+
oauth_token?:
|
|
2706
|
+
string;
|
|
1986
2707
|
/** Returns response with indentations and line breaks. */
|
|
1987
|
-
prettyPrint?:
|
|
2708
|
+
prettyPrint?:
|
|
2709
|
+
boolean;
|
|
1988
2710
|
/** 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. */
|
|
1989
|
-
quotaUser?:
|
|
2711
|
+
quotaUser?:
|
|
2712
|
+
string;
|
|
1990
2713
|
/**
|
|
1991
2714
|
* Optional. Field mask is used to specify the fields to be overwritten in the ServerTlsPolicy resource by the update. The fields specified in the update_mask are relative to the
|
|
1992
2715
|
* resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields will be overwritten.
|
|
1993
2716
|
*/
|
|
1994
|
-
updateMask?:
|
|
2717
|
+
updateMask?:
|
|
2718
|
+
string;
|
|
1995
2719
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1996
|
-
upload_protocol?:
|
|
2720
|
+
upload_protocol?:
|
|
2721
|
+
string;
|
|
1997
2722
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1998
|
-
uploadType?:
|
|
2723
|
+
uploadType?:
|
|
2724
|
+
string;
|
|
1999
2725
|
/** Request body */
|
|
2000
|
-
resource:
|
|
2726
|
+
resource:
|
|
2727
|
+
ServerTlsPolicy;
|
|
2001
2728
|
}): Request<Operation>;
|
|
2002
2729
|
patch(request: {
|
|
2003
2730
|
/** V1 error format. */
|
|
2004
|
-
"$.xgafv"?:
|
|
2731
|
+
"$.xgafv"?:
|
|
2732
|
+
string;
|
|
2005
2733
|
/** OAuth access token. */
|
|
2006
|
-
access_token?:
|
|
2734
|
+
access_token?:
|
|
2735
|
+
string;
|
|
2007
2736
|
/** Data format for response. */
|
|
2008
|
-
alt?:
|
|
2737
|
+
alt?:
|
|
2738
|
+
string;
|
|
2009
2739
|
/** JSONP */
|
|
2010
|
-
callback?:
|
|
2740
|
+
callback?:
|
|
2741
|
+
string;
|
|
2011
2742
|
/** Selector specifying which fields to include in a partial response. */
|
|
2012
|
-
fields?:
|
|
2743
|
+
fields?:
|
|
2744
|
+
string;
|
|
2013
2745
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2014
|
-
key?:
|
|
2746
|
+
key?:
|
|
2747
|
+
string;
|
|
2015
2748
|
/** Required. Name of the ServerTlsPolicy resource. It matches the pattern `projects/*/locations/{location}/serverTlsPolicies/{server_tls_policy}` */
|
|
2016
|
-
name:
|
|
2749
|
+
name:
|
|
2750
|
+
string;
|
|
2017
2751
|
/** OAuth 2.0 token for the current user. */
|
|
2018
|
-
oauth_token?:
|
|
2752
|
+
oauth_token?:
|
|
2753
|
+
string;
|
|
2019
2754
|
/** Returns response with indentations and line breaks. */
|
|
2020
|
-
prettyPrint?:
|
|
2755
|
+
prettyPrint?:
|
|
2756
|
+
boolean;
|
|
2021
2757
|
/** 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. */
|
|
2022
|
-
quotaUser?:
|
|
2758
|
+
quotaUser?:
|
|
2759
|
+
string;
|
|
2023
2760
|
/**
|
|
2024
2761
|
* Optional. Field mask is used to specify the fields to be overwritten in the ServerTlsPolicy resource by the update. The fields specified in the update_mask are relative to the
|
|
2025
2762
|
* resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields will be overwritten.
|
|
2026
2763
|
*/
|
|
2027
|
-
updateMask?:
|
|
2764
|
+
updateMask?:
|
|
2765
|
+
string;
|
|
2028
2766
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2029
|
-
upload_protocol?:
|
|
2767
|
+
upload_protocol?:
|
|
2768
|
+
string;
|
|
2030
2769
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2031
|
-
uploadType?:
|
|
2770
|
+
uploadType?:
|
|
2771
|
+
string;
|
|
2032
2772
|
},
|
|
2033
2773
|
body: ServerTlsPolicy): Request<Operation>;
|
|
2034
2774
|
/** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
|
|
2035
2775
|
setIamPolicy(request: {
|
|
2036
2776
|
/** V1 error format. */
|
|
2037
|
-
"$.xgafv"?:
|
|
2777
|
+
"$.xgafv"?:
|
|
2778
|
+
string;
|
|
2038
2779
|
/** OAuth access token. */
|
|
2039
|
-
access_token?:
|
|
2780
|
+
access_token?:
|
|
2781
|
+
string;
|
|
2040
2782
|
/** Data format for response. */
|
|
2041
|
-
alt?:
|
|
2783
|
+
alt?:
|
|
2784
|
+
string;
|
|
2042
2785
|
/** JSONP */
|
|
2043
|
-
callback?:
|
|
2786
|
+
callback?:
|
|
2787
|
+
string;
|
|
2044
2788
|
/** Selector specifying which fields to include in a partial response. */
|
|
2045
|
-
fields?:
|
|
2789
|
+
fields?:
|
|
2790
|
+
string;
|
|
2046
2791
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2047
|
-
key?:
|
|
2792
|
+
key?:
|
|
2793
|
+
string;
|
|
2048
2794
|
/** OAuth 2.0 token for the current user. */
|
|
2049
|
-
oauth_token?:
|
|
2795
|
+
oauth_token?:
|
|
2796
|
+
string;
|
|
2050
2797
|
/** Returns response with indentations and line breaks. */
|
|
2051
|
-
prettyPrint?:
|
|
2798
|
+
prettyPrint?:
|
|
2799
|
+
boolean;
|
|
2052
2800
|
/** 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. */
|
|
2053
|
-
quotaUser?:
|
|
2801
|
+
quotaUser?:
|
|
2802
|
+
string;
|
|
2054
2803
|
/**
|
|
2055
2804
|
* REQUIRED: The resource for which the policy is being specified. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this
|
|
2056
2805
|
* field.
|
|
2057
2806
|
*/
|
|
2058
|
-
resource:
|
|
2807
|
+
resource:
|
|
2808
|
+
string;
|
|
2059
2809
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2060
|
-
upload_protocol?:
|
|
2810
|
+
upload_protocol?:
|
|
2811
|
+
string;
|
|
2061
2812
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2062
|
-
uploadType?:
|
|
2813
|
+
uploadType?:
|
|
2814
|
+
string;
|
|
2063
2815
|
},
|
|
2064
2816
|
body: GoogleIamV1SetIamPolicyRequest): Request<GoogleIamV1Policy>;
|
|
2065
2817
|
/**
|
|
@@ -2068,32 +2820,44 @@ declare namespace gapi.client {
|
|
|
2068
2820
|
*/
|
|
2069
2821
|
testIamPermissions(request: {
|
|
2070
2822
|
/** V1 error format. */
|
|
2071
|
-
"$.xgafv"?:
|
|
2823
|
+
"$.xgafv"?:
|
|
2824
|
+
string;
|
|
2072
2825
|
/** OAuth access token. */
|
|
2073
|
-
access_token?:
|
|
2826
|
+
access_token?:
|
|
2827
|
+
string;
|
|
2074
2828
|
/** Data format for response. */
|
|
2075
|
-
alt?:
|
|
2829
|
+
alt?:
|
|
2830
|
+
string;
|
|
2076
2831
|
/** JSONP */
|
|
2077
|
-
callback?:
|
|
2832
|
+
callback?:
|
|
2833
|
+
string;
|
|
2078
2834
|
/** Selector specifying which fields to include in a partial response. */
|
|
2079
|
-
fields?:
|
|
2835
|
+
fields?:
|
|
2836
|
+
string;
|
|
2080
2837
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2081
|
-
key?:
|
|
2838
|
+
key?:
|
|
2839
|
+
string;
|
|
2082
2840
|
/** OAuth 2.0 token for the current user. */
|
|
2083
|
-
oauth_token?:
|
|
2841
|
+
oauth_token?:
|
|
2842
|
+
string;
|
|
2084
2843
|
/** Returns response with indentations and line breaks. */
|
|
2085
|
-
prettyPrint?:
|
|
2844
|
+
prettyPrint?:
|
|
2845
|
+
boolean;
|
|
2086
2846
|
/** 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. */
|
|
2087
|
-
quotaUser?:
|
|
2847
|
+
quotaUser?:
|
|
2848
|
+
string;
|
|
2088
2849
|
/**
|
|
2089
2850
|
* REQUIRED: The resource for which the policy detail is being requested. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for
|
|
2090
2851
|
* this field.
|
|
2091
2852
|
*/
|
|
2092
|
-
resource:
|
|
2853
|
+
resource:
|
|
2854
|
+
string;
|
|
2093
2855
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2094
|
-
upload_protocol?:
|
|
2856
|
+
upload_protocol?:
|
|
2857
|
+
string;
|
|
2095
2858
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2096
|
-
uploadType?:
|
|
2859
|
+
uploadType?:
|
|
2860
|
+
string;
|
|
2097
2861
|
},
|
|
2098
2862
|
body: GoogleIamV1TestIamPermissionsRequest): Request<GoogleIamV1TestIamPermissionsResponse>;
|
|
2099
2863
|
}
|
|
@@ -2101,229 +2865,322 @@ declare namespace gapi.client {
|
|
|
2101
2865
|
/** Creates a new TlsInspectionPolicy in a given project and location. */
|
|
2102
2866
|
create(request: {
|
|
2103
2867
|
/** V1 error format. */
|
|
2104
|
-
"$.xgafv"?:
|
|
2868
|
+
"$.xgafv"?:
|
|
2869
|
+
string;
|
|
2105
2870
|
/** OAuth access token. */
|
|
2106
|
-
access_token?:
|
|
2871
|
+
access_token?:
|
|
2872
|
+
string;
|
|
2107
2873
|
/** Data format for response. */
|
|
2108
|
-
alt?:
|
|
2874
|
+
alt?:
|
|
2875
|
+
string;
|
|
2109
2876
|
/** JSONP */
|
|
2110
|
-
callback?:
|
|
2877
|
+
callback?:
|
|
2878
|
+
string;
|
|
2111
2879
|
/** Selector specifying which fields to include in a partial response. */
|
|
2112
|
-
fields?:
|
|
2880
|
+
fields?:
|
|
2881
|
+
string;
|
|
2113
2882
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2114
|
-
key?:
|
|
2883
|
+
key?:
|
|
2884
|
+
string;
|
|
2115
2885
|
/** OAuth 2.0 token for the current user. */
|
|
2116
|
-
oauth_token?:
|
|
2886
|
+
oauth_token?:
|
|
2887
|
+
string;
|
|
2117
2888
|
/** Required. The parent resource of the TlsInspectionPolicy. Must be in the format `projects/{project}/locations/{location}`. */
|
|
2118
|
-
parent:
|
|
2889
|
+
parent:
|
|
2890
|
+
string;
|
|
2119
2891
|
/** Returns response with indentations and line breaks. */
|
|
2120
|
-
prettyPrint?:
|
|
2892
|
+
prettyPrint?:
|
|
2893
|
+
boolean;
|
|
2121
2894
|
/** 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. */
|
|
2122
|
-
quotaUser?:
|
|
2895
|
+
quotaUser?:
|
|
2896
|
+
string;
|
|
2123
2897
|
/**
|
|
2124
2898
|
* Required. Short name of the TlsInspectionPolicy resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores,
|
|
2125
2899
|
* and should not start with a number. E.g. "tls_inspection_policy1".
|
|
2126
2900
|
*/
|
|
2127
|
-
tlsInspectionPolicyId?:
|
|
2901
|
+
tlsInspectionPolicyId?:
|
|
2902
|
+
string;
|
|
2128
2903
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2129
|
-
upload_protocol?:
|
|
2904
|
+
upload_protocol?:
|
|
2905
|
+
string;
|
|
2130
2906
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2131
|
-
uploadType?:
|
|
2907
|
+
uploadType?:
|
|
2908
|
+
string;
|
|
2132
2909
|
/** Request body */
|
|
2133
|
-
resource:
|
|
2910
|
+
resource:
|
|
2911
|
+
TlsInspectionPolicy;
|
|
2134
2912
|
}): Request<Operation>;
|
|
2135
2913
|
create(request: {
|
|
2136
2914
|
/** V1 error format. */
|
|
2137
|
-
"$.xgafv"?:
|
|
2915
|
+
"$.xgafv"?:
|
|
2916
|
+
string;
|
|
2138
2917
|
/** OAuth access token. */
|
|
2139
|
-
access_token?:
|
|
2918
|
+
access_token?:
|
|
2919
|
+
string;
|
|
2140
2920
|
/** Data format for response. */
|
|
2141
|
-
alt?:
|
|
2921
|
+
alt?:
|
|
2922
|
+
string;
|
|
2142
2923
|
/** JSONP */
|
|
2143
|
-
callback?:
|
|
2924
|
+
callback?:
|
|
2925
|
+
string;
|
|
2144
2926
|
/** Selector specifying which fields to include in a partial response. */
|
|
2145
|
-
fields?:
|
|
2927
|
+
fields?:
|
|
2928
|
+
string;
|
|
2146
2929
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2147
|
-
key?:
|
|
2930
|
+
key?:
|
|
2931
|
+
string;
|
|
2148
2932
|
/** OAuth 2.0 token for the current user. */
|
|
2149
|
-
oauth_token?:
|
|
2933
|
+
oauth_token?:
|
|
2934
|
+
string;
|
|
2150
2935
|
/** Required. The parent resource of the TlsInspectionPolicy. Must be in the format `projects/{project}/locations/{location}`. */
|
|
2151
|
-
parent:
|
|
2936
|
+
parent:
|
|
2937
|
+
string;
|
|
2152
2938
|
/** Returns response with indentations and line breaks. */
|
|
2153
|
-
prettyPrint?:
|
|
2939
|
+
prettyPrint?:
|
|
2940
|
+
boolean;
|
|
2154
2941
|
/** 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. */
|
|
2155
|
-
quotaUser?:
|
|
2942
|
+
quotaUser?:
|
|
2943
|
+
string;
|
|
2156
2944
|
/**
|
|
2157
2945
|
* Required. Short name of the TlsInspectionPolicy resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores,
|
|
2158
2946
|
* and should not start with a number. E.g. "tls_inspection_policy1".
|
|
2159
2947
|
*/
|
|
2160
|
-
tlsInspectionPolicyId?:
|
|
2948
|
+
tlsInspectionPolicyId?:
|
|
2949
|
+
string;
|
|
2161
2950
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2162
|
-
upload_protocol?:
|
|
2951
|
+
upload_protocol?:
|
|
2952
|
+
string;
|
|
2163
2953
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2164
|
-
uploadType?:
|
|
2954
|
+
uploadType?:
|
|
2955
|
+
string;
|
|
2165
2956
|
},
|
|
2166
2957
|
body: TlsInspectionPolicy): Request<Operation>;
|
|
2167
2958
|
/** Deletes a single TlsInspectionPolicy. */
|
|
2168
2959
|
delete(request?: {
|
|
2169
2960
|
/** V1 error format. */
|
|
2170
|
-
"$.xgafv"?:
|
|
2961
|
+
"$.xgafv"?:
|
|
2962
|
+
string;
|
|
2171
2963
|
/** OAuth access token. */
|
|
2172
|
-
access_token?:
|
|
2964
|
+
access_token?:
|
|
2965
|
+
string;
|
|
2173
2966
|
/** Data format for response. */
|
|
2174
|
-
alt?:
|
|
2967
|
+
alt?:
|
|
2968
|
+
string;
|
|
2175
2969
|
/** JSONP */
|
|
2176
|
-
callback?:
|
|
2970
|
+
callback?:
|
|
2971
|
+
string;
|
|
2177
2972
|
/** Selector specifying which fields to include in a partial response. */
|
|
2178
|
-
fields?:
|
|
2973
|
+
fields?:
|
|
2974
|
+
string;
|
|
2179
2975
|
/** If set to true, any rules for this TlsInspectionPolicy will also be deleted. (Otherwise, the request will only work if the TlsInspectionPolicy has no rules.) */
|
|
2180
|
-
force?:
|
|
2976
|
+
force?:
|
|
2977
|
+
boolean;
|
|
2181
2978
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2182
|
-
key?:
|
|
2979
|
+
key?:
|
|
2980
|
+
string;
|
|
2183
2981
|
/** Required. A name of the TlsInspectionPolicy to delete. Must be in the format `projects/{project}/locations/{location}/tlsInspectionPolicies/{tls_inspection_policy}`. */
|
|
2184
|
-
name:
|
|
2982
|
+
name:
|
|
2983
|
+
string;
|
|
2185
2984
|
/** OAuth 2.0 token for the current user. */
|
|
2186
|
-
oauth_token?:
|
|
2985
|
+
oauth_token?:
|
|
2986
|
+
string;
|
|
2187
2987
|
/** Returns response with indentations and line breaks. */
|
|
2188
|
-
prettyPrint?:
|
|
2988
|
+
prettyPrint?:
|
|
2989
|
+
boolean;
|
|
2189
2990
|
/** 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. */
|
|
2190
|
-
quotaUser?:
|
|
2991
|
+
quotaUser?:
|
|
2992
|
+
string;
|
|
2191
2993
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2192
|
-
upload_protocol?:
|
|
2994
|
+
upload_protocol?:
|
|
2995
|
+
string;
|
|
2193
2996
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2194
|
-
uploadType?:
|
|
2997
|
+
uploadType?:
|
|
2998
|
+
string;
|
|
2195
2999
|
}): Request<Operation>;
|
|
2196
3000
|
/** Gets details of a single TlsInspectionPolicy. */
|
|
2197
3001
|
get(request?: {
|
|
2198
3002
|
/** V1 error format. */
|
|
2199
|
-
"$.xgafv"?:
|
|
3003
|
+
"$.xgafv"?:
|
|
3004
|
+
string;
|
|
2200
3005
|
/** OAuth access token. */
|
|
2201
|
-
access_token?:
|
|
3006
|
+
access_token?:
|
|
3007
|
+
string;
|
|
2202
3008
|
/** Data format for response. */
|
|
2203
|
-
alt?:
|
|
3009
|
+
alt?:
|
|
3010
|
+
string;
|
|
2204
3011
|
/** JSONP */
|
|
2205
|
-
callback?:
|
|
3012
|
+
callback?:
|
|
3013
|
+
string;
|
|
2206
3014
|
/** Selector specifying which fields to include in a partial response. */
|
|
2207
|
-
fields?:
|
|
3015
|
+
fields?:
|
|
3016
|
+
string;
|
|
2208
3017
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2209
|
-
key?:
|
|
3018
|
+
key?:
|
|
3019
|
+
string;
|
|
2210
3020
|
/** Required. A name of the TlsInspectionPolicy to get. Must be in the format `projects/{project}/locations/{location}/tlsInspectionPolicies/{tls_inspection_policy}`. */
|
|
2211
|
-
name:
|
|
3021
|
+
name:
|
|
3022
|
+
string;
|
|
2212
3023
|
/** OAuth 2.0 token for the current user. */
|
|
2213
|
-
oauth_token?:
|
|
3024
|
+
oauth_token?:
|
|
3025
|
+
string;
|
|
2214
3026
|
/** Returns response with indentations and line breaks. */
|
|
2215
|
-
prettyPrint?:
|
|
3027
|
+
prettyPrint?:
|
|
3028
|
+
boolean;
|
|
2216
3029
|
/** 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. */
|
|
2217
|
-
quotaUser?:
|
|
3030
|
+
quotaUser?:
|
|
3031
|
+
string;
|
|
2218
3032
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2219
|
-
upload_protocol?:
|
|
3033
|
+
upload_protocol?:
|
|
3034
|
+
string;
|
|
2220
3035
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2221
|
-
uploadType?:
|
|
3036
|
+
uploadType?:
|
|
3037
|
+
string;
|
|
2222
3038
|
}): Request<TlsInspectionPolicy>;
|
|
2223
3039
|
/** Lists TlsInspectionPolicies in a given project and location. */
|
|
2224
3040
|
list(request?: {
|
|
2225
3041
|
/** V1 error format. */
|
|
2226
|
-
"$.xgafv"?:
|
|
3042
|
+
"$.xgafv"?:
|
|
3043
|
+
string;
|
|
2227
3044
|
/** OAuth access token. */
|
|
2228
|
-
access_token?:
|
|
3045
|
+
access_token?:
|
|
3046
|
+
string;
|
|
2229
3047
|
/** Data format for response. */
|
|
2230
|
-
alt?:
|
|
3048
|
+
alt?:
|
|
3049
|
+
string;
|
|
2231
3050
|
/** JSONP */
|
|
2232
|
-
callback?:
|
|
3051
|
+
callback?:
|
|
3052
|
+
string;
|
|
2233
3053
|
/** Selector specifying which fields to include in a partial response. */
|
|
2234
|
-
fields?:
|
|
3054
|
+
fields?:
|
|
3055
|
+
string;
|
|
2235
3056
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2236
|
-
key?:
|
|
3057
|
+
key?:
|
|
3058
|
+
string;
|
|
2237
3059
|
/** OAuth 2.0 token for the current user. */
|
|
2238
|
-
oauth_token?:
|
|
3060
|
+
oauth_token?:
|
|
3061
|
+
string;
|
|
2239
3062
|
/** Maximum number of TlsInspectionPolicies to return per call. */
|
|
2240
|
-
pageSize?:
|
|
3063
|
+
pageSize?:
|
|
3064
|
+
number;
|
|
2241
3065
|
/**
|
|
2242
3066
|
* The value returned by the last 'ListTlsInspectionPoliciesResponse' Indicates that this is a continuation of a prior 'ListTlsInspectionPolicies' call, and that the system should
|
|
2243
3067
|
* return the next page of data.
|
|
2244
3068
|
*/
|
|
2245
|
-
pageToken?:
|
|
3069
|
+
pageToken?:
|
|
3070
|
+
string;
|
|
2246
3071
|
/** Required. The project and location from which the TlsInspectionPolicies should be listed, specified in the format `projects/{project}/locations/{location}`. */
|
|
2247
|
-
parent:
|
|
3072
|
+
parent:
|
|
3073
|
+
string;
|
|
2248
3074
|
/** Returns response with indentations and line breaks. */
|
|
2249
|
-
prettyPrint?:
|
|
3075
|
+
prettyPrint?:
|
|
3076
|
+
boolean;
|
|
2250
3077
|
/** 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. */
|
|
2251
|
-
quotaUser?:
|
|
3078
|
+
quotaUser?:
|
|
3079
|
+
string;
|
|
2252
3080
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2253
|
-
upload_protocol?:
|
|
3081
|
+
upload_protocol?:
|
|
3082
|
+
string;
|
|
2254
3083
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2255
|
-
uploadType?:
|
|
3084
|
+
uploadType?:
|
|
3085
|
+
string;
|
|
2256
3086
|
}): Request<ListTlsInspectionPoliciesResponse>;
|
|
2257
3087
|
/** Updates the parameters of a single TlsInspectionPolicy. */
|
|
2258
3088
|
patch(request: {
|
|
2259
3089
|
/** V1 error format. */
|
|
2260
|
-
"$.xgafv"?:
|
|
3090
|
+
"$.xgafv"?:
|
|
3091
|
+
string;
|
|
2261
3092
|
/** OAuth access token. */
|
|
2262
|
-
access_token?:
|
|
3093
|
+
access_token?:
|
|
3094
|
+
string;
|
|
2263
3095
|
/** Data format for response. */
|
|
2264
|
-
alt?:
|
|
3096
|
+
alt?:
|
|
3097
|
+
string;
|
|
2265
3098
|
/** JSONP */
|
|
2266
|
-
callback?:
|
|
3099
|
+
callback?:
|
|
3100
|
+
string;
|
|
2267
3101
|
/** Selector specifying which fields to include in a partial response. */
|
|
2268
|
-
fields?:
|
|
3102
|
+
fields?:
|
|
3103
|
+
string;
|
|
2269
3104
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2270
|
-
key?:
|
|
3105
|
+
key?:
|
|
3106
|
+
string;
|
|
2271
3107
|
/**
|
|
2272
3108
|
* Required. Name of the resource. Name is of the form projects/{project}/locations/{location}/tlsInspectionPolicies/{tls_inspection_policy} tls_inspection_policy should match the
|
|
2273
3109
|
* pattern:(^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$).
|
|
2274
3110
|
*/
|
|
2275
|
-
name:
|
|
3111
|
+
name:
|
|
3112
|
+
string;
|
|
2276
3113
|
/** OAuth 2.0 token for the current user. */
|
|
2277
|
-
oauth_token?:
|
|
3114
|
+
oauth_token?:
|
|
3115
|
+
string;
|
|
2278
3116
|
/** Returns response with indentations and line breaks. */
|
|
2279
|
-
prettyPrint?:
|
|
3117
|
+
prettyPrint?:
|
|
3118
|
+
boolean;
|
|
2280
3119
|
/** 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. */
|
|
2281
|
-
quotaUser?:
|
|
3120
|
+
quotaUser?:
|
|
3121
|
+
string;
|
|
2282
3122
|
/**
|
|
2283
3123
|
* Optional. Field mask is used to specify the fields to be overwritten in the TlsInspectionPolicy resource by the update. The fields specified in the update_mask are relative to
|
|
2284
3124
|
* the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields will be overwritten.
|
|
2285
3125
|
*/
|
|
2286
|
-
updateMask?:
|
|
3126
|
+
updateMask?:
|
|
3127
|
+
string;
|
|
2287
3128
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2288
|
-
upload_protocol?:
|
|
3129
|
+
upload_protocol?:
|
|
3130
|
+
string;
|
|
2289
3131
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2290
|
-
uploadType?:
|
|
3132
|
+
uploadType?:
|
|
3133
|
+
string;
|
|
2291
3134
|
/** Request body */
|
|
2292
|
-
resource:
|
|
3135
|
+
resource:
|
|
3136
|
+
TlsInspectionPolicy;
|
|
2293
3137
|
}): Request<Operation>;
|
|
2294
3138
|
patch(request: {
|
|
2295
3139
|
/** V1 error format. */
|
|
2296
|
-
"$.xgafv"?:
|
|
3140
|
+
"$.xgafv"?:
|
|
3141
|
+
string;
|
|
2297
3142
|
/** OAuth access token. */
|
|
2298
|
-
access_token?:
|
|
3143
|
+
access_token?:
|
|
3144
|
+
string;
|
|
2299
3145
|
/** Data format for response. */
|
|
2300
|
-
alt?:
|
|
3146
|
+
alt?:
|
|
3147
|
+
string;
|
|
2301
3148
|
/** JSONP */
|
|
2302
|
-
callback?:
|
|
3149
|
+
callback?:
|
|
3150
|
+
string;
|
|
2303
3151
|
/** Selector specifying which fields to include in a partial response. */
|
|
2304
|
-
fields?:
|
|
3152
|
+
fields?:
|
|
3153
|
+
string;
|
|
2305
3154
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2306
|
-
key?:
|
|
3155
|
+
key?:
|
|
3156
|
+
string;
|
|
2307
3157
|
/**
|
|
2308
3158
|
* Required. Name of the resource. Name is of the form projects/{project}/locations/{location}/tlsInspectionPolicies/{tls_inspection_policy} tls_inspection_policy should match the
|
|
2309
3159
|
* pattern:(^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$).
|
|
2310
3160
|
*/
|
|
2311
|
-
name:
|
|
3161
|
+
name:
|
|
3162
|
+
string;
|
|
2312
3163
|
/** OAuth 2.0 token for the current user. */
|
|
2313
|
-
oauth_token?:
|
|
3164
|
+
oauth_token?:
|
|
3165
|
+
string;
|
|
2314
3166
|
/** Returns response with indentations and line breaks. */
|
|
2315
|
-
prettyPrint?:
|
|
3167
|
+
prettyPrint?:
|
|
3168
|
+
boolean;
|
|
2316
3169
|
/** 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. */
|
|
2317
|
-
quotaUser?:
|
|
3170
|
+
quotaUser?:
|
|
3171
|
+
string;
|
|
2318
3172
|
/**
|
|
2319
3173
|
* Optional. Field mask is used to specify the fields to be overwritten in the TlsInspectionPolicy resource by the update. The fields specified in the update_mask are relative to
|
|
2320
3174
|
* the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields will be overwritten.
|
|
2321
3175
|
*/
|
|
2322
|
-
updateMask?:
|
|
3176
|
+
updateMask?:
|
|
3177
|
+
string;
|
|
2323
3178
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2324
|
-
upload_protocol?:
|
|
3179
|
+
upload_protocol?:
|
|
3180
|
+
string;
|
|
2325
3181
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2326
|
-
uploadType?:
|
|
3182
|
+
uploadType?:
|
|
3183
|
+
string;
|
|
2327
3184
|
},
|
|
2328
3185
|
body: TlsInspectionPolicy): Request<Operation>;
|
|
2329
3186
|
}
|
|
@@ -2331,227 +3188,319 @@ declare namespace gapi.client {
|
|
|
2331
3188
|
/** Creates a new UrlList in a given project and location. */
|
|
2332
3189
|
create(request: {
|
|
2333
3190
|
/** V1 error format. */
|
|
2334
|
-
"$.xgafv"?:
|
|
3191
|
+
"$.xgafv"?:
|
|
3192
|
+
string;
|
|
2335
3193
|
/** OAuth access token. */
|
|
2336
|
-
access_token?:
|
|
3194
|
+
access_token?:
|
|
3195
|
+
string;
|
|
2337
3196
|
/** Data format for response. */
|
|
2338
|
-
alt?:
|
|
3197
|
+
alt?:
|
|
3198
|
+
string;
|
|
2339
3199
|
/** JSONP */
|
|
2340
|
-
callback?:
|
|
3200
|
+
callback?:
|
|
3201
|
+
string;
|
|
2341
3202
|
/** Selector specifying which fields to include in a partial response. */
|
|
2342
|
-
fields?:
|
|
3203
|
+
fields?:
|
|
3204
|
+
string;
|
|
2343
3205
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2344
|
-
key?:
|
|
3206
|
+
key?:
|
|
3207
|
+
string;
|
|
2345
3208
|
/** OAuth 2.0 token for the current user. */
|
|
2346
|
-
oauth_token?:
|
|
3209
|
+
oauth_token?:
|
|
3210
|
+
string;
|
|
2347
3211
|
/** Required. The parent resource of the UrlList. Must be in the format `projects/*/locations/{location}`. */
|
|
2348
|
-
parent:
|
|
3212
|
+
parent:
|
|
3213
|
+
string;
|
|
2349
3214
|
/** Returns response with indentations and line breaks. */
|
|
2350
|
-
prettyPrint?:
|
|
3215
|
+
prettyPrint?:
|
|
3216
|
+
boolean;
|
|
2351
3217
|
/** 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. */
|
|
2352
|
-
quotaUser?:
|
|
3218
|
+
quotaUser?:
|
|
3219
|
+
string;
|
|
2353
3220
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2354
|
-
upload_protocol?:
|
|
3221
|
+
upload_protocol?:
|
|
3222
|
+
string;
|
|
2355
3223
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2356
|
-
uploadType?:
|
|
3224
|
+
uploadType?:
|
|
3225
|
+
string;
|
|
2357
3226
|
/**
|
|
2358
3227
|
* Required. Short name of the UrlList resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and should not
|
|
2359
3228
|
* start with a number. E.g. "url_list".
|
|
2360
3229
|
*/
|
|
2361
|
-
urlListId?:
|
|
3230
|
+
urlListId?:
|
|
3231
|
+
string;
|
|
2362
3232
|
/** Request body */
|
|
2363
|
-
resource:
|
|
3233
|
+
resource:
|
|
3234
|
+
UrlList;
|
|
2364
3235
|
}): Request<Operation>;
|
|
2365
3236
|
create(request: {
|
|
2366
3237
|
/** V1 error format. */
|
|
2367
|
-
"$.xgafv"?:
|
|
3238
|
+
"$.xgafv"?:
|
|
3239
|
+
string;
|
|
2368
3240
|
/** OAuth access token. */
|
|
2369
|
-
access_token?:
|
|
3241
|
+
access_token?:
|
|
3242
|
+
string;
|
|
2370
3243
|
/** Data format for response. */
|
|
2371
|
-
alt?:
|
|
3244
|
+
alt?:
|
|
3245
|
+
string;
|
|
2372
3246
|
/** JSONP */
|
|
2373
|
-
callback?:
|
|
3247
|
+
callback?:
|
|
3248
|
+
string;
|
|
2374
3249
|
/** Selector specifying which fields to include in a partial response. */
|
|
2375
|
-
fields?:
|
|
3250
|
+
fields?:
|
|
3251
|
+
string;
|
|
2376
3252
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2377
|
-
key?:
|
|
3253
|
+
key?:
|
|
3254
|
+
string;
|
|
2378
3255
|
/** OAuth 2.0 token for the current user. */
|
|
2379
|
-
oauth_token?:
|
|
3256
|
+
oauth_token?:
|
|
3257
|
+
string;
|
|
2380
3258
|
/** Required. The parent resource of the UrlList. Must be in the format `projects/*/locations/{location}`. */
|
|
2381
|
-
parent:
|
|
3259
|
+
parent:
|
|
3260
|
+
string;
|
|
2382
3261
|
/** Returns response with indentations and line breaks. */
|
|
2383
|
-
prettyPrint?:
|
|
3262
|
+
prettyPrint?:
|
|
3263
|
+
boolean;
|
|
2384
3264
|
/** 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. */
|
|
2385
|
-
quotaUser?:
|
|
3265
|
+
quotaUser?:
|
|
3266
|
+
string;
|
|
2386
3267
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2387
|
-
upload_protocol?:
|
|
3268
|
+
upload_protocol?:
|
|
3269
|
+
string;
|
|
2388
3270
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2389
|
-
uploadType?:
|
|
3271
|
+
uploadType?:
|
|
3272
|
+
string;
|
|
2390
3273
|
/**
|
|
2391
3274
|
* Required. Short name of the UrlList resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and should not
|
|
2392
3275
|
* start with a number. E.g. "url_list".
|
|
2393
3276
|
*/
|
|
2394
|
-
urlListId?:
|
|
3277
|
+
urlListId?:
|
|
3278
|
+
string;
|
|
2395
3279
|
},
|
|
2396
3280
|
body: UrlList): Request<Operation>;
|
|
2397
3281
|
/** Deletes a single UrlList. */
|
|
2398
3282
|
delete(request?: {
|
|
2399
3283
|
/** V1 error format. */
|
|
2400
|
-
"$.xgafv"?:
|
|
3284
|
+
"$.xgafv"?:
|
|
3285
|
+
string;
|
|
2401
3286
|
/** OAuth access token. */
|
|
2402
|
-
access_token?:
|
|
3287
|
+
access_token?:
|
|
3288
|
+
string;
|
|
2403
3289
|
/** Data format for response. */
|
|
2404
|
-
alt?:
|
|
3290
|
+
alt?:
|
|
3291
|
+
string;
|
|
2405
3292
|
/** JSONP */
|
|
2406
|
-
callback?:
|
|
3293
|
+
callback?:
|
|
3294
|
+
string;
|
|
2407
3295
|
/** Selector specifying which fields to include in a partial response. */
|
|
2408
|
-
fields?:
|
|
3296
|
+
fields?:
|
|
3297
|
+
string;
|
|
2409
3298
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2410
|
-
key?:
|
|
3299
|
+
key?:
|
|
3300
|
+
string;
|
|
2411
3301
|
/** Required. A name of the UrlList to delete. Must be in the format `projects/*/locations/{location}/urlLists/*`. */
|
|
2412
|
-
name:
|
|
3302
|
+
name:
|
|
3303
|
+
string;
|
|
2413
3304
|
/** OAuth 2.0 token for the current user. */
|
|
2414
|
-
oauth_token?:
|
|
3305
|
+
oauth_token?:
|
|
3306
|
+
string;
|
|
2415
3307
|
/** Returns response with indentations and line breaks. */
|
|
2416
|
-
prettyPrint?:
|
|
3308
|
+
prettyPrint?:
|
|
3309
|
+
boolean;
|
|
2417
3310
|
/** 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. */
|
|
2418
|
-
quotaUser?:
|
|
3311
|
+
quotaUser?:
|
|
3312
|
+
string;
|
|
2419
3313
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2420
|
-
upload_protocol?:
|
|
3314
|
+
upload_protocol?:
|
|
3315
|
+
string;
|
|
2421
3316
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2422
|
-
uploadType?:
|
|
3317
|
+
uploadType?:
|
|
3318
|
+
string;
|
|
2423
3319
|
}): Request<Operation>;
|
|
2424
3320
|
/** Gets details of a single UrlList. */
|
|
2425
3321
|
get(request?: {
|
|
2426
3322
|
/** V1 error format. */
|
|
2427
|
-
"$.xgafv"?:
|
|
3323
|
+
"$.xgafv"?:
|
|
3324
|
+
string;
|
|
2428
3325
|
/** OAuth access token. */
|
|
2429
|
-
access_token?:
|
|
3326
|
+
access_token?:
|
|
3327
|
+
string;
|
|
2430
3328
|
/** Data format for response. */
|
|
2431
|
-
alt?:
|
|
3329
|
+
alt?:
|
|
3330
|
+
string;
|
|
2432
3331
|
/** JSONP */
|
|
2433
|
-
callback?:
|
|
3332
|
+
callback?:
|
|
3333
|
+
string;
|
|
2434
3334
|
/** Selector specifying which fields to include in a partial response. */
|
|
2435
|
-
fields?:
|
|
3335
|
+
fields?:
|
|
3336
|
+
string;
|
|
2436
3337
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2437
|
-
key?:
|
|
3338
|
+
key?:
|
|
3339
|
+
string;
|
|
2438
3340
|
/** Required. A name of the UrlList to get. Must be in the format `projects/*/locations/{location}/urlLists/*`. */
|
|
2439
|
-
name:
|
|
3341
|
+
name:
|
|
3342
|
+
string;
|
|
2440
3343
|
/** OAuth 2.0 token for the current user. */
|
|
2441
|
-
oauth_token?:
|
|
3344
|
+
oauth_token?:
|
|
3345
|
+
string;
|
|
2442
3346
|
/** Returns response with indentations and line breaks. */
|
|
2443
|
-
prettyPrint?:
|
|
3347
|
+
prettyPrint?:
|
|
3348
|
+
boolean;
|
|
2444
3349
|
/** 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. */
|
|
2445
|
-
quotaUser?:
|
|
3350
|
+
quotaUser?:
|
|
3351
|
+
string;
|
|
2446
3352
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2447
|
-
upload_protocol?:
|
|
3353
|
+
upload_protocol?:
|
|
3354
|
+
string;
|
|
2448
3355
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2449
|
-
uploadType?:
|
|
3356
|
+
uploadType?:
|
|
3357
|
+
string;
|
|
2450
3358
|
}): Request<UrlList>;
|
|
2451
3359
|
/** Lists UrlLists in a given project and location. */
|
|
2452
3360
|
list(request?: {
|
|
2453
3361
|
/** V1 error format. */
|
|
2454
|
-
"$.xgafv"?:
|
|
3362
|
+
"$.xgafv"?:
|
|
3363
|
+
string;
|
|
2455
3364
|
/** OAuth access token. */
|
|
2456
|
-
access_token?:
|
|
3365
|
+
access_token?:
|
|
3366
|
+
string;
|
|
2457
3367
|
/** Data format for response. */
|
|
2458
|
-
alt?:
|
|
3368
|
+
alt?:
|
|
3369
|
+
string;
|
|
2459
3370
|
/** JSONP */
|
|
2460
|
-
callback?:
|
|
3371
|
+
callback?:
|
|
3372
|
+
string;
|
|
2461
3373
|
/** Selector specifying which fields to include in a partial response. */
|
|
2462
|
-
fields?:
|
|
3374
|
+
fields?:
|
|
3375
|
+
string;
|
|
2463
3376
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2464
|
-
key?:
|
|
3377
|
+
key?:
|
|
3378
|
+
string;
|
|
2465
3379
|
/** OAuth 2.0 token for the current user. */
|
|
2466
|
-
oauth_token?:
|
|
3380
|
+
oauth_token?:
|
|
3381
|
+
string;
|
|
2467
3382
|
/** Maximum number of UrlLists to return per call. */
|
|
2468
|
-
pageSize?:
|
|
3383
|
+
pageSize?:
|
|
3384
|
+
number;
|
|
2469
3385
|
/**
|
|
2470
3386
|
* The value returned by the last `ListUrlListsResponse` Indicates that this is a continuation of a prior `ListUrlLists` call, and that the system should return the next page of
|
|
2471
3387
|
* data.
|
|
2472
3388
|
*/
|
|
2473
|
-
pageToken?:
|
|
3389
|
+
pageToken?:
|
|
3390
|
+
string;
|
|
2474
3391
|
/** Required. The project and location from which the UrlLists should be listed, specified in the format `projects/{project}/locations/{location}`. */
|
|
2475
|
-
parent:
|
|
3392
|
+
parent:
|
|
3393
|
+
string;
|
|
2476
3394
|
/** Returns response with indentations and line breaks. */
|
|
2477
|
-
prettyPrint?:
|
|
3395
|
+
prettyPrint?:
|
|
3396
|
+
boolean;
|
|
2478
3397
|
/** 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. */
|
|
2479
|
-
quotaUser?:
|
|
3398
|
+
quotaUser?:
|
|
3399
|
+
string;
|
|
2480
3400
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2481
|
-
upload_protocol?:
|
|
3401
|
+
upload_protocol?:
|
|
3402
|
+
string;
|
|
2482
3403
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2483
|
-
uploadType?:
|
|
3404
|
+
uploadType?:
|
|
3405
|
+
string;
|
|
2484
3406
|
}): Request<ListUrlListsResponse>;
|
|
2485
3407
|
/** Updates the parameters of a single UrlList. */
|
|
2486
3408
|
patch(request: {
|
|
2487
3409
|
/** V1 error format. */
|
|
2488
|
-
"$.xgafv"?:
|
|
3410
|
+
"$.xgafv"?:
|
|
3411
|
+
string;
|
|
2489
3412
|
/** OAuth access token. */
|
|
2490
|
-
access_token?:
|
|
3413
|
+
access_token?:
|
|
3414
|
+
string;
|
|
2491
3415
|
/** Data format for response. */
|
|
2492
|
-
alt?:
|
|
3416
|
+
alt?:
|
|
3417
|
+
string;
|
|
2493
3418
|
/** JSONP */
|
|
2494
|
-
callback?:
|
|
3419
|
+
callback?:
|
|
3420
|
+
string;
|
|
2495
3421
|
/** Selector specifying which fields to include in a partial response. */
|
|
2496
|
-
fields?:
|
|
3422
|
+
fields?:
|
|
3423
|
+
string;
|
|
2497
3424
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2498
|
-
key?:
|
|
3425
|
+
key?:
|
|
3426
|
+
string;
|
|
2499
3427
|
/**
|
|
2500
3428
|
* Required. Name of the resource provided by the user. Name is of the form projects/{project}/locations/{location}/urlLists/{url_list} url_list should match the
|
|
2501
3429
|
* pattern:(^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$).
|
|
2502
3430
|
*/
|
|
2503
|
-
name:
|
|
3431
|
+
name:
|
|
3432
|
+
string;
|
|
2504
3433
|
/** OAuth 2.0 token for the current user. */
|
|
2505
|
-
oauth_token?:
|
|
3434
|
+
oauth_token?:
|
|
3435
|
+
string;
|
|
2506
3436
|
/** Returns response with indentations and line breaks. */
|
|
2507
|
-
prettyPrint?:
|
|
3437
|
+
prettyPrint?:
|
|
3438
|
+
boolean;
|
|
2508
3439
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2509
|
-
quotaUser?:
|
|
3440
|
+
quotaUser?:
|
|
3441
|
+
string;
|
|
2510
3442
|
/**
|
|
2511
3443
|
* Optional. Field mask is used to specify the fields to be overwritten in the UrlList resource by the update. The fields specified in the update_mask are relative to the resource,
|
|
2512
3444
|
* not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields will be overwritten.
|
|
2513
3445
|
*/
|
|
2514
|
-
updateMask?:
|
|
3446
|
+
updateMask?:
|
|
3447
|
+
string;
|
|
2515
3448
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2516
|
-
upload_protocol?:
|
|
3449
|
+
upload_protocol?:
|
|
3450
|
+
string;
|
|
2517
3451
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2518
|
-
uploadType?:
|
|
3452
|
+
uploadType?:
|
|
3453
|
+
string;
|
|
2519
3454
|
/** Request body */
|
|
2520
|
-
resource:
|
|
3455
|
+
resource:
|
|
3456
|
+
UrlList;
|
|
2521
3457
|
}): Request<Operation>;
|
|
2522
3458
|
patch(request: {
|
|
2523
3459
|
/** V1 error format. */
|
|
2524
|
-
"$.xgafv"?:
|
|
3460
|
+
"$.xgafv"?:
|
|
3461
|
+
string;
|
|
2525
3462
|
/** OAuth access token. */
|
|
2526
|
-
access_token?:
|
|
3463
|
+
access_token?:
|
|
3464
|
+
string;
|
|
2527
3465
|
/** Data format for response. */
|
|
2528
|
-
alt?:
|
|
3466
|
+
alt?:
|
|
3467
|
+
string;
|
|
2529
3468
|
/** JSONP */
|
|
2530
|
-
callback?:
|
|
3469
|
+
callback?:
|
|
3470
|
+
string;
|
|
2531
3471
|
/** Selector specifying which fields to include in a partial response. */
|
|
2532
|
-
fields?:
|
|
3472
|
+
fields?:
|
|
3473
|
+
string;
|
|
2533
3474
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2534
|
-
key?:
|
|
3475
|
+
key?:
|
|
3476
|
+
string;
|
|
2535
3477
|
/**
|
|
2536
3478
|
* Required. Name of the resource provided by the user. Name is of the form projects/{project}/locations/{location}/urlLists/{url_list} url_list should match the
|
|
2537
3479
|
* pattern:(^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$).
|
|
2538
3480
|
*/
|
|
2539
|
-
name:
|
|
3481
|
+
name:
|
|
3482
|
+
string;
|
|
2540
3483
|
/** OAuth 2.0 token for the current user. */
|
|
2541
|
-
oauth_token?:
|
|
3484
|
+
oauth_token?:
|
|
3485
|
+
string;
|
|
2542
3486
|
/** Returns response with indentations and line breaks. */
|
|
2543
|
-
prettyPrint?:
|
|
3487
|
+
prettyPrint?:
|
|
3488
|
+
boolean;
|
|
2544
3489
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2545
|
-
quotaUser?:
|
|
3490
|
+
quotaUser?:
|
|
3491
|
+
string;
|
|
2546
3492
|
/**
|
|
2547
3493
|
* Optional. Field mask is used to specify the fields to be overwritten in the UrlList resource by the update. The fields specified in the update_mask are relative to the resource,
|
|
2548
3494
|
* not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields will be overwritten.
|
|
2549
3495
|
*/
|
|
2550
|
-
updateMask?:
|
|
3496
|
+
updateMask?:
|
|
3497
|
+
string;
|
|
2551
3498
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2552
|
-
upload_protocol?:
|
|
3499
|
+
upload_protocol?:
|
|
3500
|
+
string;
|
|
2553
3501
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2554
|
-
uploadType?:
|
|
3502
|
+
uploadType?:
|
|
3503
|
+
string;
|
|
2555
3504
|
},
|
|
2556
3505
|
body: UrlList): Request<Operation>;
|
|
2557
3506
|
}
|
|
@@ -2559,76 +3508,111 @@ declare namespace gapi.client {
|
|
|
2559
3508
|
/** Gets information about a location. */
|
|
2560
3509
|
get(request?: {
|
|
2561
3510
|
/** V1 error format. */
|
|
2562
|
-
"$.xgafv"?:
|
|
3511
|
+
"$.xgafv"?:
|
|
3512
|
+
string;
|
|
2563
3513
|
/** OAuth access token. */
|
|
2564
|
-
access_token?:
|
|
3514
|
+
access_token?:
|
|
3515
|
+
string;
|
|
2565
3516
|
/** Data format for response. */
|
|
2566
|
-
alt?:
|
|
3517
|
+
alt?:
|
|
3518
|
+
string;
|
|
2567
3519
|
/** JSONP */
|
|
2568
|
-
callback?:
|
|
3520
|
+
callback?:
|
|
3521
|
+
string;
|
|
2569
3522
|
/** Selector specifying which fields to include in a partial response. */
|
|
2570
|
-
fields?:
|
|
3523
|
+
fields?:
|
|
3524
|
+
string;
|
|
2571
3525
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2572
|
-
key?:
|
|
3526
|
+
key?:
|
|
3527
|
+
string;
|
|
2573
3528
|
/** Resource name for the location. */
|
|
2574
|
-
name:
|
|
3529
|
+
name:
|
|
3530
|
+
string;
|
|
2575
3531
|
/** OAuth 2.0 token for the current user. */
|
|
2576
|
-
oauth_token?:
|
|
3532
|
+
oauth_token?:
|
|
3533
|
+
string;
|
|
2577
3534
|
/** Returns response with indentations and line breaks. */
|
|
2578
|
-
prettyPrint?:
|
|
3535
|
+
prettyPrint?:
|
|
3536
|
+
boolean;
|
|
2579
3537
|
/** 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. */
|
|
2580
|
-
quotaUser?:
|
|
3538
|
+
quotaUser?:
|
|
3539
|
+
string;
|
|
2581
3540
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2582
|
-
upload_protocol?:
|
|
3541
|
+
upload_protocol?:
|
|
3542
|
+
string;
|
|
2583
3543
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2584
|
-
uploadType?:
|
|
3544
|
+
uploadType?:
|
|
3545
|
+
string;
|
|
2585
3546
|
}): Request<Location>;
|
|
2586
3547
|
/** Lists information about the supported locations for this service. */
|
|
2587
3548
|
list(request?: {
|
|
2588
3549
|
/** V1 error format. */
|
|
2589
|
-
"$.xgafv"?:
|
|
3550
|
+
"$.xgafv"?:
|
|
3551
|
+
string;
|
|
2590
3552
|
/** OAuth access token. */
|
|
2591
|
-
access_token?:
|
|
3553
|
+
access_token?:
|
|
3554
|
+
string;
|
|
2592
3555
|
/** Data format for response. */
|
|
2593
|
-
alt?:
|
|
3556
|
+
alt?:
|
|
3557
|
+
string;
|
|
2594
3558
|
/** JSONP */
|
|
2595
|
-
callback?:
|
|
3559
|
+
callback?:
|
|
3560
|
+
string;
|
|
2596
3561
|
/** Selector specifying which fields to include in a partial response. */
|
|
2597
|
-
fields?:
|
|
3562
|
+
fields?:
|
|
3563
|
+
string;
|
|
2598
3564
|
/**
|
|
2599
3565
|
* A filter to narrow down results to a preferred subset. The filtering language accepts strings like `"displayName=tokyo"`, and is documented in more detail in
|
|
2600
3566
|
* [AIP-160](https://google.aip.dev/160).
|
|
2601
3567
|
*/
|
|
2602
|
-
filter?:
|
|
3568
|
+
filter?:
|
|
3569
|
+
string;
|
|
2603
3570
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2604
|
-
key?:
|
|
3571
|
+
key?:
|
|
3572
|
+
string;
|
|
2605
3573
|
/** The resource that owns the locations collection, if applicable. */
|
|
2606
|
-
name:
|
|
3574
|
+
name:
|
|
3575
|
+
string;
|
|
2607
3576
|
/** OAuth 2.0 token for the current user. */
|
|
2608
|
-
oauth_token?:
|
|
3577
|
+
oauth_token?:
|
|
3578
|
+
string;
|
|
2609
3579
|
/** The maximum number of results to return. If not set, the service selects a default. */
|
|
2610
|
-
pageSize?:
|
|
3580
|
+
pageSize?:
|
|
3581
|
+
number;
|
|
2611
3582
|
/** A page token received from the `next_page_token` field in the response. Send that page token to receive the subsequent page. */
|
|
2612
|
-
pageToken?:
|
|
3583
|
+
pageToken?:
|
|
3584
|
+
string;
|
|
2613
3585
|
/** Returns response with indentations and line breaks. */
|
|
2614
|
-
prettyPrint?:
|
|
3586
|
+
prettyPrint?:
|
|
3587
|
+
boolean;
|
|
2615
3588
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2616
|
-
quotaUser?:
|
|
3589
|
+
quotaUser?:
|
|
3590
|
+
string;
|
|
2617
3591
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2618
|
-
upload_protocol?:
|
|
3592
|
+
upload_protocol?:
|
|
3593
|
+
string;
|
|
2619
3594
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2620
|
-
uploadType?:
|
|
3595
|
+
uploadType?:
|
|
3596
|
+
string;
|
|
2621
3597
|
}): Request<ListLocationsResponse>;
|
|
2622
|
-
authorizationPolicies:
|
|
2623
|
-
|
|
2624
|
-
|
|
2625
|
-
|
|
2626
|
-
|
|
2627
|
-
|
|
2628
|
-
|
|
3598
|
+
authorizationPolicies:
|
|
3599
|
+
AuthorizationPoliciesResource;
|
|
3600
|
+
clientTlsPolicies:
|
|
3601
|
+
ClientTlsPoliciesResource;
|
|
3602
|
+
gatewaySecurityPolicies:
|
|
3603
|
+
GatewaySecurityPoliciesResource;
|
|
3604
|
+
operations:
|
|
3605
|
+
OperationsResource;
|
|
3606
|
+
serverTlsPolicies:
|
|
3607
|
+
ServerTlsPoliciesResource;
|
|
3608
|
+
tlsInspectionPolicies:
|
|
3609
|
+
TlsInspectionPoliciesResource;
|
|
3610
|
+
urlLists:
|
|
3611
|
+
UrlListsResource;
|
|
2629
3612
|
}
|
|
2630
3613
|
interface ProjectsResource {
|
|
2631
|
-
locations:
|
|
3614
|
+
locations:
|
|
3615
|
+
LocationsResource;
|
|
2632
3616
|
}
|
|
2633
3617
|
|
|
2634
3618
|
const projects: ProjectsResource;
|