@maxim_mazurok/gapi.client.networksecurity-v1beta1 0.0.20240919 → 0.0.20241202
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 +1042 -10
- package/package.json +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=v1beta1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20241202
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -93,9 +93,9 @@ declare namespace gapi.client {
|
|
|
93
93
|
updateTime?: string;
|
|
94
94
|
}
|
|
95
95
|
interface AuthzPolicyAuthzRule {
|
|
96
|
-
/** Optional. Describes properties of
|
|
96
|
+
/** Optional. Describes properties of a source of a request. */
|
|
97
97
|
from?: AuthzPolicyAuthzRuleFrom;
|
|
98
|
-
/** Optional. Describes properties of
|
|
98
|
+
/** Optional. Describes properties of a target of a request. */
|
|
99
99
|
to?: AuthzPolicyAuthzRuleTo;
|
|
100
100
|
/** Optional. CEL expression that describes the conditions to be satisfied for the action. The result of the CEL expression is ANDed with the from and to. Refer to the CEL language reference for a list of available attributes. */
|
|
101
101
|
when?: string;
|
|
@@ -103,7 +103,7 @@ declare namespace gapi.client {
|
|
|
103
103
|
interface AuthzPolicyAuthzRuleFrom {
|
|
104
104
|
/** Optional. Describes the negated properties of request sources. Matches requests from sources that do not match the criteria specified in this field. At least one of sources or notSources must be specified. */
|
|
105
105
|
notSources?: AuthzPolicyAuthzRuleFromRequestSource[];
|
|
106
|
-
/** Optional. Describes the properties of a request's sources. At least one of sources or notSources must be specified. Limited to
|
|
106
|
+
/** Optional. Describes the properties of a request's sources. At least one of sources or notSources must be specified. Limited to 1 source. A match occurs when ANY source (in sources or notSources) matches the request. Within a single source, the match follows AND semantics across fields and OR semantics within a single field, i.e. a match occurs when ANY principal matches AND ANY ipBlocks match. */
|
|
107
107
|
sources?: AuthzPolicyAuthzRuleFromRequestSource[];
|
|
108
108
|
}
|
|
109
109
|
interface AuthzPolicyAuthzRuleFromRequestSource {
|
|
@@ -143,7 +143,7 @@ declare namespace gapi.client {
|
|
|
143
143
|
interface AuthzPolicyAuthzRuleTo {
|
|
144
144
|
/** Optional. Describes the negated properties of the targets of a request. Matches requests for operations that do not match the criteria specified in this field. At least one of operations or notOperations must be specified. */
|
|
145
145
|
notOperations?: AuthzPolicyAuthzRuleToRequestOperation[];
|
|
146
|
-
/** Optional. Describes properties of one or more targets of a request. At least one of operations or notOperations must be specified. Limited to
|
|
146
|
+
/** Optional. Describes properties of one or more targets of a request. At least one of operations or notOperations must be specified. Limited to 1 operation. A match occurs when ANY operation (in operations or notOperations) matches. Within an operation, the match follows AND semantics across fields and OR semantics within a field, i.e. a match occurs when ANY path matches AND ANY header matches and ANY method matches. */
|
|
147
147
|
operations?: AuthzPolicyAuthzRuleToRequestOperation[];
|
|
148
148
|
}
|
|
149
149
|
interface AuthzPolicyAuthzRuleToRequestOperation {
|
|
@@ -206,6 +206,10 @@ declare namespace gapi.client {
|
|
|
206
206
|
/** Required. Source address group to clone items from. */
|
|
207
207
|
sourceAddressGroup?: string;
|
|
208
208
|
}
|
|
209
|
+
interface CustomInterceptProfile {
|
|
210
|
+
/** Required. The InterceptEndpointGroup to which traffic associated with the SP should be mirrored. */
|
|
211
|
+
interceptEndpointGroup?: string;
|
|
212
|
+
}
|
|
209
213
|
interface CustomMirroringProfile {
|
|
210
214
|
/** Required. The MirroringEndpointGroup to which traffic associated with the SP should be mirrored. */
|
|
211
215
|
mirroringEndpointGroup?: string;
|
|
@@ -375,6 +379,100 @@ declare namespace gapi.client {
|
|
|
375
379
|
/** 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 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 specifier. */
|
|
376
380
|
regexMatch?: string;
|
|
377
381
|
}
|
|
382
|
+
interface InterceptDeployment {
|
|
383
|
+
/** Output only. [Output only] Create time stamp */
|
|
384
|
+
createTime?: string;
|
|
385
|
+
/** Required. Immutable. The regional load balancer which the intercepted traffic should be forwarded to. Format is: projects/{project}/regions/{region}/forwardingRules/{forwardingRule} */
|
|
386
|
+
forwardingRule?: string;
|
|
387
|
+
/** Required. Immutable. The Intercept Deployment Group that this resource is part of. Format is: `projects/{project}/locations/global/interceptDeploymentGroups/{interceptDeploymentGroup}` */
|
|
388
|
+
interceptDeploymentGroup?: string;
|
|
389
|
+
/** Optional. Labels as key value pairs */
|
|
390
|
+
labels?: {[P in string]: string};
|
|
391
|
+
/** Immutable. Identifier. The name of the InterceptDeployment. */
|
|
392
|
+
name?: string;
|
|
393
|
+
/** Output only. Whether reconciling is in progress, recommended per https://google.aip.dev/128. */
|
|
394
|
+
reconciling?: boolean;
|
|
395
|
+
/** Output only. Current state of the deployment. */
|
|
396
|
+
state?: string;
|
|
397
|
+
/** Output only. [Output only] Update time stamp */
|
|
398
|
+
updateTime?: string;
|
|
399
|
+
}
|
|
400
|
+
interface InterceptDeploymentGroup {
|
|
401
|
+
/** Output only. The list of Intercept Endpoint Groups that are connected to this resource. */
|
|
402
|
+
connectedEndpointGroups?: InterceptDeploymentGroupConnectedEndpointGroup[];
|
|
403
|
+
/** Output only. [Output only] Create time stamp */
|
|
404
|
+
createTime?: string;
|
|
405
|
+
/** Optional. Labels as key value pairs */
|
|
406
|
+
labels?: {[P in string]: string};
|
|
407
|
+
/** Immutable. Identifier. Then name of the InterceptDeploymentGroup. */
|
|
408
|
+
name?: string;
|
|
409
|
+
/** Required. Immutable. The network that is being used for the deployment. Format is: projects/{project}/global/networks/{network}. */
|
|
410
|
+
network?: string;
|
|
411
|
+
/** Output only. Whether reconciling is in progress, recommended per https://google.aip.dev/128. */
|
|
412
|
+
reconciling?: boolean;
|
|
413
|
+
/** Output only. Current state of the deployment group. */
|
|
414
|
+
state?: string;
|
|
415
|
+
/** Output only. [Output only] Update time stamp */
|
|
416
|
+
updateTime?: string;
|
|
417
|
+
}
|
|
418
|
+
interface InterceptDeploymentGroupConnectedEndpointGroup {
|
|
419
|
+
/** Output only. A connected intercept endpoint group. */
|
|
420
|
+
name?: string;
|
|
421
|
+
}
|
|
422
|
+
interface InterceptEndpointGroup {
|
|
423
|
+
/** Output only. List of Intercept Endpoint Group Associations that are associated to this endpoint group. */
|
|
424
|
+
associations?: InterceptEndpointGroupAssociationDetails[];
|
|
425
|
+
/** Output only. [Output only] Create time stamp */
|
|
426
|
+
createTime?: string;
|
|
427
|
+
/** Optional. User-provided description of the endpoint group. Used as additional context for the endpoint group. */
|
|
428
|
+
description?: string;
|
|
429
|
+
/** Required. Immutable. The Intercept Deployment Group that this resource is connected to. Format is: `projects/{project}/locations/global/interceptDeploymentGroups/{interceptDeploymentGroup}` */
|
|
430
|
+
interceptDeploymentGroup?: string;
|
|
431
|
+
/** Optional. Labels as key value pairs */
|
|
432
|
+
labels?: {[P in string]: string};
|
|
433
|
+
/** Immutable. Identifier. The name of the InterceptEndpointGroup. */
|
|
434
|
+
name?: string;
|
|
435
|
+
/** Output only. Whether reconciling is in progress, recommended per https://google.aip.dev/128. */
|
|
436
|
+
reconciling?: boolean;
|
|
437
|
+
/** Output only. Current state of the endpoint group. */
|
|
438
|
+
state?: string;
|
|
439
|
+
/** Output only. [Output only] Update time stamp */
|
|
440
|
+
updateTime?: string;
|
|
441
|
+
}
|
|
442
|
+
interface InterceptEndpointGroupAssociation {
|
|
443
|
+
/** Output only. [Output only] Create time stamp */
|
|
444
|
+
createTime?: string;
|
|
445
|
+
/** Required. Immutable. The Intercept Endpoint Group that this resource is connected to. Format is: `projects/{project}/locations/global/interceptEndpointGroups/{interceptEndpointGroup}` */
|
|
446
|
+
interceptEndpointGroup?: string;
|
|
447
|
+
/** Optional. Labels as key value pairs */
|
|
448
|
+
labels?: {[P in string]: string};
|
|
449
|
+
/** Output only. The list of locations that this association is in and its details. */
|
|
450
|
+
locationsDetails?: InterceptEndpointGroupAssociationLocationDetails[];
|
|
451
|
+
/** Immutable. Identifier. The name of the InterceptEndpointGroupAssociation. */
|
|
452
|
+
name?: string;
|
|
453
|
+
/** Required. Immutable. The VPC network associated. Format: projects/{project}/global/networks/{network}. */
|
|
454
|
+
network?: string;
|
|
455
|
+
/** Output only. Whether reconciling is in progress, recommended per https://google.aip.dev/128. */
|
|
456
|
+
reconciling?: boolean;
|
|
457
|
+
/** Output only. Current state of the endpoint group association. */
|
|
458
|
+
state?: string;
|
|
459
|
+
/** Output only. [Output only] Update time stamp */
|
|
460
|
+
updateTime?: string;
|
|
461
|
+
}
|
|
462
|
+
interface InterceptEndpointGroupAssociationDetails {
|
|
463
|
+
/** Output only. The resource name of the InterceptEndpointGroupAssociation. Format: projects/{project}/locations/{location}/interceptEndpointGroupAssociations/{interceptEndpointGroupAssociation} */
|
|
464
|
+
name?: string;
|
|
465
|
+
/** Output only. The VPC network associated. Format: projects/{project}/global/networks/{name}. */
|
|
466
|
+
network?: string;
|
|
467
|
+
/** Output only. Current state of the association. */
|
|
468
|
+
state?: string;
|
|
469
|
+
}
|
|
470
|
+
interface InterceptEndpointGroupAssociationLocationDetails {
|
|
471
|
+
/** Output only. The cloud location. */
|
|
472
|
+
location?: string;
|
|
473
|
+
/** Output only. The association state in this location. */
|
|
474
|
+
state?: string;
|
|
475
|
+
}
|
|
378
476
|
interface ListAddressGroupReferencesResponse {
|
|
379
477
|
/** A list of references that matches the specified filter in the request. */
|
|
380
478
|
addressGroupReferences?: ListAddressGroupReferencesResponseAddressGroupReference[];
|
|
@@ -447,6 +545,32 @@ declare namespace gapi.client {
|
|
|
447
545
|
/** Locations that could not be reached. */
|
|
448
546
|
unreachable?: string[];
|
|
449
547
|
}
|
|
548
|
+
interface ListInterceptDeploymentGroupsResponse {
|
|
549
|
+
/** The list of InterceptDeploymentGroup */
|
|
550
|
+
interceptDeploymentGroups?: InterceptDeploymentGroup[];
|
|
551
|
+
/** A token identifying a page of results the server should return. */
|
|
552
|
+
nextPageToken?: string;
|
|
553
|
+
}
|
|
554
|
+
interface ListInterceptDeploymentsResponse {
|
|
555
|
+
/** The list of InterceptDeployment */
|
|
556
|
+
interceptDeployments?: InterceptDeployment[];
|
|
557
|
+
/** A token identifying a page of results the server should return. */
|
|
558
|
+
nextPageToken?: string;
|
|
559
|
+
/** Locations that could not be reached. */
|
|
560
|
+
unreachable?: string[];
|
|
561
|
+
}
|
|
562
|
+
interface ListInterceptEndpointGroupAssociationsResponse {
|
|
563
|
+
/** The list of InterceptEndpointGroupAssociation */
|
|
564
|
+
interceptEndpointGroupAssociations?: InterceptEndpointGroupAssociation[];
|
|
565
|
+
/** A token identifying a page of results the server should return. */
|
|
566
|
+
nextPageToken?: string;
|
|
567
|
+
}
|
|
568
|
+
interface ListInterceptEndpointGroupsResponse {
|
|
569
|
+
/** The list of InterceptEndpointGroup */
|
|
570
|
+
interceptEndpointGroups?: InterceptEndpointGroup[];
|
|
571
|
+
/** A token identifying a page of results the server should return. */
|
|
572
|
+
nextPageToken?: string;
|
|
573
|
+
}
|
|
450
574
|
interface ListLocationsResponse {
|
|
451
575
|
/** A list of locations that matches the specified filter in the request. */
|
|
452
576
|
locations?: Location[];
|
|
@@ -578,7 +702,7 @@ declare namespace gapi.client {
|
|
|
578
702
|
labels?: {[P in string]: string};
|
|
579
703
|
/** Required. Immutable. The Mirroring Deployment Group that this resource is connected to. Format is: `projects/{project}/locations/global/mirroringDeploymentGroups/{mirroringDeploymentGroup}` */
|
|
580
704
|
mirroringDeploymentGroup?: string;
|
|
581
|
-
/** Immutable. Identifier. The name of the MirroringEndpointGroup. */
|
|
705
|
+
/** Immutable. Identifier. Next ID: 11 The name of the MirroringEndpointGroup. */
|
|
582
706
|
name?: string;
|
|
583
707
|
/** Output only. Whether reconciling is in progress, recommended per https://google.aip.dev/128. */
|
|
584
708
|
reconciling?: boolean;
|
|
@@ -664,6 +788,8 @@ declare namespace gapi.client {
|
|
|
664
788
|
interface SecurityProfile {
|
|
665
789
|
/** Output only. Resource creation timestamp. */
|
|
666
790
|
createTime?: string;
|
|
791
|
+
/** The custom TPPI configuration for the SecurityProfile. */
|
|
792
|
+
customInterceptProfile?: CustomInterceptProfile;
|
|
667
793
|
/** The custom Packet Mirroring v2 configuration for the SecurityProfile. */
|
|
668
794
|
customMirroringProfile?: CustomMirroringProfile;
|
|
669
795
|
/** Optional. An optional description of the profile. Max length 512 characters. */
|
|
@@ -684,6 +810,8 @@ declare namespace gapi.client {
|
|
|
684
810
|
interface SecurityProfileGroup {
|
|
685
811
|
/** Output only. Resource creation timestamp. */
|
|
686
812
|
createTime?: string;
|
|
813
|
+
/** Optional. Reference to a SecurityProfile with the CustomIntercept configuration. */
|
|
814
|
+
customInterceptProfile?: string;
|
|
687
815
|
/** Optional. Reference to a SecurityProfile with the CustomMirroring configuration. */
|
|
688
816
|
customMirroringProfile?: string;
|
|
689
817
|
/** Optional. An optional description of the profile group. Max length 2048 characters. */
|
|
@@ -1443,7 +1571,7 @@ declare namespace gapi.client {
|
|
|
1443
1571
|
): Request<Operation>;
|
|
1444
1572
|
}
|
|
1445
1573
|
interface OperationsResource {
|
|
1446
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
1574
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
1447
1575
|
cancel(request: {
|
|
1448
1576
|
/** V1 error format. */
|
|
1449
1577
|
'$.xgafv'?: string;
|
|
@@ -4102,6 +4230,906 @@ declare namespace gapi.client {
|
|
|
4102
4230
|
): Request<Operation>;
|
|
4103
4231
|
rules: RulesResource;
|
|
4104
4232
|
}
|
|
4233
|
+
interface InterceptDeploymentGroupsResource {
|
|
4234
|
+
/** Creates a new InterceptDeploymentGroup in a given project and location. */
|
|
4235
|
+
create(request: {
|
|
4236
|
+
/** V1 error format. */
|
|
4237
|
+
'$.xgafv'?: string;
|
|
4238
|
+
/** OAuth access token. */
|
|
4239
|
+
access_token?: string;
|
|
4240
|
+
/** Data format for response. */
|
|
4241
|
+
alt?: string;
|
|
4242
|
+
/** JSONP */
|
|
4243
|
+
callback?: string;
|
|
4244
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4245
|
+
fields?: string;
|
|
4246
|
+
/** Required. Id of the requesting object If auto-generating Id server-side, remove this field and intercept_deployment_group_id from the method_signature of Create RPC */
|
|
4247
|
+
interceptDeploymentGroupId?: string;
|
|
4248
|
+
/** 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. */
|
|
4249
|
+
key?: string;
|
|
4250
|
+
/** OAuth 2.0 token for the current user. */
|
|
4251
|
+
oauth_token?: string;
|
|
4252
|
+
/** Required. Value for parent. */
|
|
4253
|
+
parent: string;
|
|
4254
|
+
/** Returns response with indentations and line breaks. */
|
|
4255
|
+
prettyPrint?: boolean;
|
|
4256
|
+
/** 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. */
|
|
4257
|
+
quotaUser?: string;
|
|
4258
|
+
/** Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
4259
|
+
requestId?: string;
|
|
4260
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4261
|
+
upload_protocol?: string;
|
|
4262
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4263
|
+
uploadType?: string;
|
|
4264
|
+
/** Request body */
|
|
4265
|
+
resource: InterceptDeploymentGroup;
|
|
4266
|
+
}): Request<Operation>;
|
|
4267
|
+
create(
|
|
4268
|
+
request: {
|
|
4269
|
+
/** V1 error format. */
|
|
4270
|
+
'$.xgafv'?: string;
|
|
4271
|
+
/** OAuth access token. */
|
|
4272
|
+
access_token?: string;
|
|
4273
|
+
/** Data format for response. */
|
|
4274
|
+
alt?: string;
|
|
4275
|
+
/** JSONP */
|
|
4276
|
+
callback?: string;
|
|
4277
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4278
|
+
fields?: string;
|
|
4279
|
+
/** Required. Id of the requesting object If auto-generating Id server-side, remove this field and intercept_deployment_group_id from the method_signature of Create RPC */
|
|
4280
|
+
interceptDeploymentGroupId?: string;
|
|
4281
|
+
/** 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. */
|
|
4282
|
+
key?: string;
|
|
4283
|
+
/** OAuth 2.0 token for the current user. */
|
|
4284
|
+
oauth_token?: string;
|
|
4285
|
+
/** Required. Value for parent. */
|
|
4286
|
+
parent: string;
|
|
4287
|
+
/** Returns response with indentations and line breaks. */
|
|
4288
|
+
prettyPrint?: boolean;
|
|
4289
|
+
/** 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. */
|
|
4290
|
+
quotaUser?: string;
|
|
4291
|
+
/** Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
4292
|
+
requestId?: string;
|
|
4293
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4294
|
+
upload_protocol?: string;
|
|
4295
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4296
|
+
uploadType?: string;
|
|
4297
|
+
},
|
|
4298
|
+
body: InterceptDeploymentGroup
|
|
4299
|
+
): Request<Operation>;
|
|
4300
|
+
/** Deletes a single InterceptDeploymentGroup. */
|
|
4301
|
+
delete(request?: {
|
|
4302
|
+
/** V1 error format. */
|
|
4303
|
+
'$.xgafv'?: string;
|
|
4304
|
+
/** OAuth access token. */
|
|
4305
|
+
access_token?: string;
|
|
4306
|
+
/** Data format for response. */
|
|
4307
|
+
alt?: string;
|
|
4308
|
+
/** JSONP */
|
|
4309
|
+
callback?: string;
|
|
4310
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4311
|
+
fields?: string;
|
|
4312
|
+
/** 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. */
|
|
4313
|
+
key?: string;
|
|
4314
|
+
/** Required. Name of the resource */
|
|
4315
|
+
name: string;
|
|
4316
|
+
/** OAuth 2.0 token for the current user. */
|
|
4317
|
+
oauth_token?: string;
|
|
4318
|
+
/** Returns response with indentations and line breaks. */
|
|
4319
|
+
prettyPrint?: boolean;
|
|
4320
|
+
/** 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. */
|
|
4321
|
+
quotaUser?: string;
|
|
4322
|
+
/** Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
4323
|
+
requestId?: string;
|
|
4324
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4325
|
+
upload_protocol?: string;
|
|
4326
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4327
|
+
uploadType?: string;
|
|
4328
|
+
}): Request<Operation>;
|
|
4329
|
+
/** Gets details of a single InterceptDeploymentGroup. */
|
|
4330
|
+
get(request?: {
|
|
4331
|
+
/** V1 error format. */
|
|
4332
|
+
'$.xgafv'?: string;
|
|
4333
|
+
/** OAuth access token. */
|
|
4334
|
+
access_token?: string;
|
|
4335
|
+
/** Data format for response. */
|
|
4336
|
+
alt?: string;
|
|
4337
|
+
/** JSONP */
|
|
4338
|
+
callback?: string;
|
|
4339
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4340
|
+
fields?: string;
|
|
4341
|
+
/** 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. */
|
|
4342
|
+
key?: string;
|
|
4343
|
+
/** Required. Name of the resource */
|
|
4344
|
+
name: string;
|
|
4345
|
+
/** OAuth 2.0 token for the current user. */
|
|
4346
|
+
oauth_token?: string;
|
|
4347
|
+
/** Returns response with indentations and line breaks. */
|
|
4348
|
+
prettyPrint?: boolean;
|
|
4349
|
+
/** 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. */
|
|
4350
|
+
quotaUser?: string;
|
|
4351
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4352
|
+
upload_protocol?: string;
|
|
4353
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4354
|
+
uploadType?: string;
|
|
4355
|
+
}): Request<InterceptDeploymentGroup>;
|
|
4356
|
+
/** Lists InterceptDeploymentGroups in a given project and location. */
|
|
4357
|
+
list(request?: {
|
|
4358
|
+
/** V1 error format. */
|
|
4359
|
+
'$.xgafv'?: string;
|
|
4360
|
+
/** OAuth access token. */
|
|
4361
|
+
access_token?: string;
|
|
4362
|
+
/** Data format for response. */
|
|
4363
|
+
alt?: string;
|
|
4364
|
+
/** JSONP */
|
|
4365
|
+
callback?: string;
|
|
4366
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4367
|
+
fields?: string;
|
|
4368
|
+
/** Optional. Filtering results */
|
|
4369
|
+
filter?: string;
|
|
4370
|
+
/** 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. */
|
|
4371
|
+
key?: string;
|
|
4372
|
+
/** OAuth 2.0 token for the current user. */
|
|
4373
|
+
oauth_token?: string;
|
|
4374
|
+
/** Optional. Hint for how to order the results */
|
|
4375
|
+
orderBy?: string;
|
|
4376
|
+
/** Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default. */
|
|
4377
|
+
pageSize?: number;
|
|
4378
|
+
/** Optional. A token identifying a page of results the server should return. */
|
|
4379
|
+
pageToken?: string;
|
|
4380
|
+
/** Required. Parent value for ListInterceptDeploymentGroupsRequest */
|
|
4381
|
+
parent: string;
|
|
4382
|
+
/** Returns response with indentations and line breaks. */
|
|
4383
|
+
prettyPrint?: boolean;
|
|
4384
|
+
/** 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. */
|
|
4385
|
+
quotaUser?: string;
|
|
4386
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4387
|
+
upload_protocol?: string;
|
|
4388
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4389
|
+
uploadType?: string;
|
|
4390
|
+
}): Request<ListInterceptDeploymentGroupsResponse>;
|
|
4391
|
+
/** Updates a single InterceptDeploymentGroup. */
|
|
4392
|
+
patch(request: {
|
|
4393
|
+
/** V1 error format. */
|
|
4394
|
+
'$.xgafv'?: string;
|
|
4395
|
+
/** OAuth access token. */
|
|
4396
|
+
access_token?: string;
|
|
4397
|
+
/** Data format for response. */
|
|
4398
|
+
alt?: string;
|
|
4399
|
+
/** JSONP */
|
|
4400
|
+
callback?: string;
|
|
4401
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4402
|
+
fields?: string;
|
|
4403
|
+
/** 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. */
|
|
4404
|
+
key?: string;
|
|
4405
|
+
/** Immutable. Identifier. Then name of the InterceptDeploymentGroup. */
|
|
4406
|
+
name: string;
|
|
4407
|
+
/** OAuth 2.0 token for the current user. */
|
|
4408
|
+
oauth_token?: string;
|
|
4409
|
+
/** Returns response with indentations and line breaks. */
|
|
4410
|
+
prettyPrint?: boolean;
|
|
4411
|
+
/** 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. */
|
|
4412
|
+
quotaUser?: string;
|
|
4413
|
+
/** Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
4414
|
+
requestId?: string;
|
|
4415
|
+
/** Required. Field mask is used to specify the fields to be overwritten in the InterceptDeploymentGroup resource by the update. The fields specified in the update_mask are relative to 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. */
|
|
4416
|
+
updateMask?: string;
|
|
4417
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4418
|
+
upload_protocol?: string;
|
|
4419
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4420
|
+
uploadType?: string;
|
|
4421
|
+
/** Request body */
|
|
4422
|
+
resource: InterceptDeploymentGroup;
|
|
4423
|
+
}): Request<Operation>;
|
|
4424
|
+
patch(
|
|
4425
|
+
request: {
|
|
4426
|
+
/** V1 error format. */
|
|
4427
|
+
'$.xgafv'?: string;
|
|
4428
|
+
/** OAuth access token. */
|
|
4429
|
+
access_token?: string;
|
|
4430
|
+
/** Data format for response. */
|
|
4431
|
+
alt?: string;
|
|
4432
|
+
/** JSONP */
|
|
4433
|
+
callback?: string;
|
|
4434
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4435
|
+
fields?: string;
|
|
4436
|
+
/** 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. */
|
|
4437
|
+
key?: string;
|
|
4438
|
+
/** Immutable. Identifier. Then name of the InterceptDeploymentGroup. */
|
|
4439
|
+
name: string;
|
|
4440
|
+
/** OAuth 2.0 token for the current user. */
|
|
4441
|
+
oauth_token?: string;
|
|
4442
|
+
/** Returns response with indentations and line breaks. */
|
|
4443
|
+
prettyPrint?: boolean;
|
|
4444
|
+
/** 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. */
|
|
4445
|
+
quotaUser?: string;
|
|
4446
|
+
/** Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
4447
|
+
requestId?: string;
|
|
4448
|
+
/** Required. Field mask is used to specify the fields to be overwritten in the InterceptDeploymentGroup resource by the update. The fields specified in the update_mask are relative to 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. */
|
|
4449
|
+
updateMask?: string;
|
|
4450
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4451
|
+
upload_protocol?: string;
|
|
4452
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4453
|
+
uploadType?: string;
|
|
4454
|
+
},
|
|
4455
|
+
body: InterceptDeploymentGroup
|
|
4456
|
+
): Request<Operation>;
|
|
4457
|
+
}
|
|
4458
|
+
interface InterceptDeploymentsResource {
|
|
4459
|
+
/** Creates a new InterceptDeployment in a given project and location. */
|
|
4460
|
+
create(request: {
|
|
4461
|
+
/** V1 error format. */
|
|
4462
|
+
'$.xgafv'?: string;
|
|
4463
|
+
/** OAuth access token. */
|
|
4464
|
+
access_token?: string;
|
|
4465
|
+
/** Data format for response. */
|
|
4466
|
+
alt?: string;
|
|
4467
|
+
/** JSONP */
|
|
4468
|
+
callback?: string;
|
|
4469
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4470
|
+
fields?: string;
|
|
4471
|
+
/** Required. Id of the requesting object If auto-generating Id server-side, remove this field and intercept_deployment_id from the method_signature of Create RPC */
|
|
4472
|
+
interceptDeploymentId?: string;
|
|
4473
|
+
/** 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. */
|
|
4474
|
+
key?: string;
|
|
4475
|
+
/** OAuth 2.0 token for the current user. */
|
|
4476
|
+
oauth_token?: string;
|
|
4477
|
+
/** Required. Value for parent. */
|
|
4478
|
+
parent: string;
|
|
4479
|
+
/** Returns response with indentations and line breaks. */
|
|
4480
|
+
prettyPrint?: boolean;
|
|
4481
|
+
/** 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. */
|
|
4482
|
+
quotaUser?: string;
|
|
4483
|
+
/** Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
4484
|
+
requestId?: string;
|
|
4485
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4486
|
+
upload_protocol?: string;
|
|
4487
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4488
|
+
uploadType?: string;
|
|
4489
|
+
/** Request body */
|
|
4490
|
+
resource: InterceptDeployment;
|
|
4491
|
+
}): Request<Operation>;
|
|
4492
|
+
create(
|
|
4493
|
+
request: {
|
|
4494
|
+
/** V1 error format. */
|
|
4495
|
+
'$.xgafv'?: string;
|
|
4496
|
+
/** OAuth access token. */
|
|
4497
|
+
access_token?: string;
|
|
4498
|
+
/** Data format for response. */
|
|
4499
|
+
alt?: string;
|
|
4500
|
+
/** JSONP */
|
|
4501
|
+
callback?: string;
|
|
4502
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4503
|
+
fields?: string;
|
|
4504
|
+
/** Required. Id of the requesting object If auto-generating Id server-side, remove this field and intercept_deployment_id from the method_signature of Create RPC */
|
|
4505
|
+
interceptDeploymentId?: string;
|
|
4506
|
+
/** 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. */
|
|
4507
|
+
key?: string;
|
|
4508
|
+
/** OAuth 2.0 token for the current user. */
|
|
4509
|
+
oauth_token?: string;
|
|
4510
|
+
/** Required. Value for parent. */
|
|
4511
|
+
parent: string;
|
|
4512
|
+
/** Returns response with indentations and line breaks. */
|
|
4513
|
+
prettyPrint?: boolean;
|
|
4514
|
+
/** 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. */
|
|
4515
|
+
quotaUser?: string;
|
|
4516
|
+
/** Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
4517
|
+
requestId?: string;
|
|
4518
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4519
|
+
upload_protocol?: string;
|
|
4520
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4521
|
+
uploadType?: string;
|
|
4522
|
+
},
|
|
4523
|
+
body: InterceptDeployment
|
|
4524
|
+
): Request<Operation>;
|
|
4525
|
+
/** Deletes a single InterceptDeployment. */
|
|
4526
|
+
delete(request?: {
|
|
4527
|
+
/** V1 error format. */
|
|
4528
|
+
'$.xgafv'?: string;
|
|
4529
|
+
/** OAuth access token. */
|
|
4530
|
+
access_token?: string;
|
|
4531
|
+
/** Data format for response. */
|
|
4532
|
+
alt?: string;
|
|
4533
|
+
/** JSONP */
|
|
4534
|
+
callback?: string;
|
|
4535
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4536
|
+
fields?: string;
|
|
4537
|
+
/** 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. */
|
|
4538
|
+
key?: string;
|
|
4539
|
+
/** Required. Name of the resource */
|
|
4540
|
+
name: string;
|
|
4541
|
+
/** OAuth 2.0 token for the current user. */
|
|
4542
|
+
oauth_token?: string;
|
|
4543
|
+
/** Returns response with indentations and line breaks. */
|
|
4544
|
+
prettyPrint?: boolean;
|
|
4545
|
+
/** 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. */
|
|
4546
|
+
quotaUser?: string;
|
|
4547
|
+
/** Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
4548
|
+
requestId?: string;
|
|
4549
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4550
|
+
upload_protocol?: string;
|
|
4551
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4552
|
+
uploadType?: string;
|
|
4553
|
+
}): Request<Operation>;
|
|
4554
|
+
/** Gets details of a single InterceptDeployment. */
|
|
4555
|
+
get(request?: {
|
|
4556
|
+
/** V1 error format. */
|
|
4557
|
+
'$.xgafv'?: string;
|
|
4558
|
+
/** OAuth access token. */
|
|
4559
|
+
access_token?: string;
|
|
4560
|
+
/** Data format for response. */
|
|
4561
|
+
alt?: string;
|
|
4562
|
+
/** JSONP */
|
|
4563
|
+
callback?: string;
|
|
4564
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4565
|
+
fields?: string;
|
|
4566
|
+
/** 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. */
|
|
4567
|
+
key?: string;
|
|
4568
|
+
/** Required. Name of the resource */
|
|
4569
|
+
name: string;
|
|
4570
|
+
/** OAuth 2.0 token for the current user. */
|
|
4571
|
+
oauth_token?: string;
|
|
4572
|
+
/** Returns response with indentations and line breaks. */
|
|
4573
|
+
prettyPrint?: boolean;
|
|
4574
|
+
/** 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. */
|
|
4575
|
+
quotaUser?: string;
|
|
4576
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4577
|
+
upload_protocol?: string;
|
|
4578
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4579
|
+
uploadType?: string;
|
|
4580
|
+
}): Request<InterceptDeployment>;
|
|
4581
|
+
/** Lists InterceptDeployments in a given project and location. */
|
|
4582
|
+
list(request?: {
|
|
4583
|
+
/** V1 error format. */
|
|
4584
|
+
'$.xgafv'?: string;
|
|
4585
|
+
/** OAuth access token. */
|
|
4586
|
+
access_token?: string;
|
|
4587
|
+
/** Data format for response. */
|
|
4588
|
+
alt?: string;
|
|
4589
|
+
/** JSONP */
|
|
4590
|
+
callback?: string;
|
|
4591
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4592
|
+
fields?: string;
|
|
4593
|
+
/** Optional. Filtering results */
|
|
4594
|
+
filter?: string;
|
|
4595
|
+
/** 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. */
|
|
4596
|
+
key?: string;
|
|
4597
|
+
/** OAuth 2.0 token for the current user. */
|
|
4598
|
+
oauth_token?: string;
|
|
4599
|
+
/** Optional. Hint for how to order the results */
|
|
4600
|
+
orderBy?: string;
|
|
4601
|
+
/** Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default. */
|
|
4602
|
+
pageSize?: number;
|
|
4603
|
+
/** Optional. A token identifying a page of results the server should return. */
|
|
4604
|
+
pageToken?: string;
|
|
4605
|
+
/** Required. Parent value for ListInterceptDeploymentsRequest */
|
|
4606
|
+
parent: string;
|
|
4607
|
+
/** Returns response with indentations and line breaks. */
|
|
4608
|
+
prettyPrint?: boolean;
|
|
4609
|
+
/** 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. */
|
|
4610
|
+
quotaUser?: string;
|
|
4611
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4612
|
+
upload_protocol?: string;
|
|
4613
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4614
|
+
uploadType?: string;
|
|
4615
|
+
}): Request<ListInterceptDeploymentsResponse>;
|
|
4616
|
+
/** Updates a single InterceptDeployment. */
|
|
4617
|
+
patch(request: {
|
|
4618
|
+
/** V1 error format. */
|
|
4619
|
+
'$.xgafv'?: string;
|
|
4620
|
+
/** OAuth access token. */
|
|
4621
|
+
access_token?: string;
|
|
4622
|
+
/** Data format for response. */
|
|
4623
|
+
alt?: string;
|
|
4624
|
+
/** JSONP */
|
|
4625
|
+
callback?: string;
|
|
4626
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4627
|
+
fields?: string;
|
|
4628
|
+
/** 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. */
|
|
4629
|
+
key?: string;
|
|
4630
|
+
/** Immutable. Identifier. The name of the InterceptDeployment. */
|
|
4631
|
+
name: string;
|
|
4632
|
+
/** OAuth 2.0 token for the current user. */
|
|
4633
|
+
oauth_token?: string;
|
|
4634
|
+
/** Returns response with indentations and line breaks. */
|
|
4635
|
+
prettyPrint?: boolean;
|
|
4636
|
+
/** 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. */
|
|
4637
|
+
quotaUser?: string;
|
|
4638
|
+
/** Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
4639
|
+
requestId?: string;
|
|
4640
|
+
/** Required. Field mask is used to specify the fields to be overwritten in the InterceptDeployment resource by the update. The fields specified in the update_mask are relative to 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. */
|
|
4641
|
+
updateMask?: string;
|
|
4642
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4643
|
+
upload_protocol?: string;
|
|
4644
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4645
|
+
uploadType?: string;
|
|
4646
|
+
/** Request body */
|
|
4647
|
+
resource: InterceptDeployment;
|
|
4648
|
+
}): Request<Operation>;
|
|
4649
|
+
patch(
|
|
4650
|
+
request: {
|
|
4651
|
+
/** V1 error format. */
|
|
4652
|
+
'$.xgafv'?: string;
|
|
4653
|
+
/** OAuth access token. */
|
|
4654
|
+
access_token?: string;
|
|
4655
|
+
/** Data format for response. */
|
|
4656
|
+
alt?: string;
|
|
4657
|
+
/** JSONP */
|
|
4658
|
+
callback?: string;
|
|
4659
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4660
|
+
fields?: string;
|
|
4661
|
+
/** 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. */
|
|
4662
|
+
key?: string;
|
|
4663
|
+
/** Immutable. Identifier. The name of the InterceptDeployment. */
|
|
4664
|
+
name: string;
|
|
4665
|
+
/** OAuth 2.0 token for the current user. */
|
|
4666
|
+
oauth_token?: string;
|
|
4667
|
+
/** Returns response with indentations and line breaks. */
|
|
4668
|
+
prettyPrint?: boolean;
|
|
4669
|
+
/** 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. */
|
|
4670
|
+
quotaUser?: string;
|
|
4671
|
+
/** Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
4672
|
+
requestId?: string;
|
|
4673
|
+
/** Required. Field mask is used to specify the fields to be overwritten in the InterceptDeployment resource by the update. The fields specified in the update_mask are relative to 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. */
|
|
4674
|
+
updateMask?: string;
|
|
4675
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4676
|
+
upload_protocol?: string;
|
|
4677
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4678
|
+
uploadType?: string;
|
|
4679
|
+
},
|
|
4680
|
+
body: InterceptDeployment
|
|
4681
|
+
): Request<Operation>;
|
|
4682
|
+
}
|
|
4683
|
+
interface InterceptEndpointGroupAssociationsResource {
|
|
4684
|
+
/** Creates a new InterceptEndpointGroupAssociation in a given project and location. */
|
|
4685
|
+
create(request: {
|
|
4686
|
+
/** V1 error format. */
|
|
4687
|
+
'$.xgafv'?: string;
|
|
4688
|
+
/** OAuth access token. */
|
|
4689
|
+
access_token?: string;
|
|
4690
|
+
/** Data format for response. */
|
|
4691
|
+
alt?: string;
|
|
4692
|
+
/** JSONP */
|
|
4693
|
+
callback?: string;
|
|
4694
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4695
|
+
fields?: string;
|
|
4696
|
+
/** Optional. Id of the requesting object If auto-generating Id server-side, remove this field and intercept_endpoint_group_association_id from the method_signature of Create RPC */
|
|
4697
|
+
interceptEndpointGroupAssociationId?: string;
|
|
4698
|
+
/** 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. */
|
|
4699
|
+
key?: string;
|
|
4700
|
+
/** OAuth 2.0 token for the current user. */
|
|
4701
|
+
oauth_token?: string;
|
|
4702
|
+
/** Required. Value for parent. */
|
|
4703
|
+
parent: string;
|
|
4704
|
+
/** Returns response with indentations and line breaks. */
|
|
4705
|
+
prettyPrint?: boolean;
|
|
4706
|
+
/** 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. */
|
|
4707
|
+
quotaUser?: string;
|
|
4708
|
+
/** Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
4709
|
+
requestId?: string;
|
|
4710
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4711
|
+
upload_protocol?: string;
|
|
4712
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4713
|
+
uploadType?: string;
|
|
4714
|
+
/** Request body */
|
|
4715
|
+
resource: InterceptEndpointGroupAssociation;
|
|
4716
|
+
}): Request<Operation>;
|
|
4717
|
+
create(
|
|
4718
|
+
request: {
|
|
4719
|
+
/** V1 error format. */
|
|
4720
|
+
'$.xgafv'?: string;
|
|
4721
|
+
/** OAuth access token. */
|
|
4722
|
+
access_token?: string;
|
|
4723
|
+
/** Data format for response. */
|
|
4724
|
+
alt?: string;
|
|
4725
|
+
/** JSONP */
|
|
4726
|
+
callback?: string;
|
|
4727
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4728
|
+
fields?: string;
|
|
4729
|
+
/** Optional. Id of the requesting object If auto-generating Id server-side, remove this field and intercept_endpoint_group_association_id from the method_signature of Create RPC */
|
|
4730
|
+
interceptEndpointGroupAssociationId?: string;
|
|
4731
|
+
/** 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. */
|
|
4732
|
+
key?: string;
|
|
4733
|
+
/** OAuth 2.0 token for the current user. */
|
|
4734
|
+
oauth_token?: string;
|
|
4735
|
+
/** Required. Value for parent. */
|
|
4736
|
+
parent: string;
|
|
4737
|
+
/** Returns response with indentations and line breaks. */
|
|
4738
|
+
prettyPrint?: boolean;
|
|
4739
|
+
/** 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. */
|
|
4740
|
+
quotaUser?: string;
|
|
4741
|
+
/** Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
4742
|
+
requestId?: string;
|
|
4743
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4744
|
+
upload_protocol?: string;
|
|
4745
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4746
|
+
uploadType?: string;
|
|
4747
|
+
},
|
|
4748
|
+
body: InterceptEndpointGroupAssociation
|
|
4749
|
+
): Request<Operation>;
|
|
4750
|
+
/** Deletes a single InterceptEndpointGroupAssociation. */
|
|
4751
|
+
delete(request?: {
|
|
4752
|
+
/** V1 error format. */
|
|
4753
|
+
'$.xgafv'?: string;
|
|
4754
|
+
/** OAuth access token. */
|
|
4755
|
+
access_token?: string;
|
|
4756
|
+
/** Data format for response. */
|
|
4757
|
+
alt?: string;
|
|
4758
|
+
/** JSONP */
|
|
4759
|
+
callback?: string;
|
|
4760
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4761
|
+
fields?: string;
|
|
4762
|
+
/** 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. */
|
|
4763
|
+
key?: string;
|
|
4764
|
+
/** Required. Name of the resource */
|
|
4765
|
+
name: string;
|
|
4766
|
+
/** OAuth 2.0 token for the current user. */
|
|
4767
|
+
oauth_token?: string;
|
|
4768
|
+
/** Returns response with indentations and line breaks. */
|
|
4769
|
+
prettyPrint?: boolean;
|
|
4770
|
+
/** 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. */
|
|
4771
|
+
quotaUser?: string;
|
|
4772
|
+
/** Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
4773
|
+
requestId?: string;
|
|
4774
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4775
|
+
upload_protocol?: string;
|
|
4776
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4777
|
+
uploadType?: string;
|
|
4778
|
+
}): Request<Operation>;
|
|
4779
|
+
/** Gets details of a single InterceptEndpointGroupAssociation. */
|
|
4780
|
+
get(request?: {
|
|
4781
|
+
/** V1 error format. */
|
|
4782
|
+
'$.xgafv'?: string;
|
|
4783
|
+
/** OAuth access token. */
|
|
4784
|
+
access_token?: string;
|
|
4785
|
+
/** Data format for response. */
|
|
4786
|
+
alt?: string;
|
|
4787
|
+
/** JSONP */
|
|
4788
|
+
callback?: string;
|
|
4789
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4790
|
+
fields?: string;
|
|
4791
|
+
/** 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. */
|
|
4792
|
+
key?: string;
|
|
4793
|
+
/** Required. Name of the resource */
|
|
4794
|
+
name: string;
|
|
4795
|
+
/** OAuth 2.0 token for the current user. */
|
|
4796
|
+
oauth_token?: string;
|
|
4797
|
+
/** Returns response with indentations and line breaks. */
|
|
4798
|
+
prettyPrint?: boolean;
|
|
4799
|
+
/** 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. */
|
|
4800
|
+
quotaUser?: string;
|
|
4801
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4802
|
+
upload_protocol?: string;
|
|
4803
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4804
|
+
uploadType?: string;
|
|
4805
|
+
}): Request<InterceptEndpointGroupAssociation>;
|
|
4806
|
+
/** Lists InterceptEndpointGroupAssociations in a given project and location. */
|
|
4807
|
+
list(request?: {
|
|
4808
|
+
/** V1 error format. */
|
|
4809
|
+
'$.xgafv'?: string;
|
|
4810
|
+
/** OAuth access token. */
|
|
4811
|
+
access_token?: string;
|
|
4812
|
+
/** Data format for response. */
|
|
4813
|
+
alt?: string;
|
|
4814
|
+
/** JSONP */
|
|
4815
|
+
callback?: string;
|
|
4816
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4817
|
+
fields?: string;
|
|
4818
|
+
/** Optional. Filtering results */
|
|
4819
|
+
filter?: string;
|
|
4820
|
+
/** 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. */
|
|
4821
|
+
key?: string;
|
|
4822
|
+
/** OAuth 2.0 token for the current user. */
|
|
4823
|
+
oauth_token?: string;
|
|
4824
|
+
/** Optional. Hint for how to order the results */
|
|
4825
|
+
orderBy?: string;
|
|
4826
|
+
/** Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default. */
|
|
4827
|
+
pageSize?: number;
|
|
4828
|
+
/** Optional. A token identifying a page of results the server should return. */
|
|
4829
|
+
pageToken?: string;
|
|
4830
|
+
/** Required. Parent value for ListInterceptEndpointGroupAssociationsRequest */
|
|
4831
|
+
parent: string;
|
|
4832
|
+
/** Returns response with indentations and line breaks. */
|
|
4833
|
+
prettyPrint?: boolean;
|
|
4834
|
+
/** 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. */
|
|
4835
|
+
quotaUser?: string;
|
|
4836
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4837
|
+
upload_protocol?: string;
|
|
4838
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4839
|
+
uploadType?: string;
|
|
4840
|
+
}): Request<ListInterceptEndpointGroupAssociationsResponse>;
|
|
4841
|
+
/** Updates a single InterceptEndpointGroupAssociation. */
|
|
4842
|
+
patch(request: {
|
|
4843
|
+
/** V1 error format. */
|
|
4844
|
+
'$.xgafv'?: string;
|
|
4845
|
+
/** OAuth access token. */
|
|
4846
|
+
access_token?: string;
|
|
4847
|
+
/** Data format for response. */
|
|
4848
|
+
alt?: string;
|
|
4849
|
+
/** JSONP */
|
|
4850
|
+
callback?: string;
|
|
4851
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4852
|
+
fields?: string;
|
|
4853
|
+
/** 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. */
|
|
4854
|
+
key?: string;
|
|
4855
|
+
/** Immutable. Identifier. The name of the InterceptEndpointGroupAssociation. */
|
|
4856
|
+
name: string;
|
|
4857
|
+
/** OAuth 2.0 token for the current user. */
|
|
4858
|
+
oauth_token?: string;
|
|
4859
|
+
/** Returns response with indentations and line breaks. */
|
|
4860
|
+
prettyPrint?: boolean;
|
|
4861
|
+
/** 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. */
|
|
4862
|
+
quotaUser?: string;
|
|
4863
|
+
/** Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
4864
|
+
requestId?: string;
|
|
4865
|
+
/** Required. Field mask is used to specify the fields to be overwritten in the InterceptEndpointGroupAssociation resource by the update. The fields specified in the update_mask are relative to 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. */
|
|
4866
|
+
updateMask?: string;
|
|
4867
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4868
|
+
upload_protocol?: string;
|
|
4869
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4870
|
+
uploadType?: string;
|
|
4871
|
+
/** Request body */
|
|
4872
|
+
resource: InterceptEndpointGroupAssociation;
|
|
4873
|
+
}): Request<Operation>;
|
|
4874
|
+
patch(
|
|
4875
|
+
request: {
|
|
4876
|
+
/** V1 error format. */
|
|
4877
|
+
'$.xgafv'?: string;
|
|
4878
|
+
/** OAuth access token. */
|
|
4879
|
+
access_token?: string;
|
|
4880
|
+
/** Data format for response. */
|
|
4881
|
+
alt?: string;
|
|
4882
|
+
/** JSONP */
|
|
4883
|
+
callback?: string;
|
|
4884
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4885
|
+
fields?: string;
|
|
4886
|
+
/** 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. */
|
|
4887
|
+
key?: string;
|
|
4888
|
+
/** Immutable. Identifier. The name of the InterceptEndpointGroupAssociation. */
|
|
4889
|
+
name: string;
|
|
4890
|
+
/** OAuth 2.0 token for the current user. */
|
|
4891
|
+
oauth_token?: string;
|
|
4892
|
+
/** Returns response with indentations and line breaks. */
|
|
4893
|
+
prettyPrint?: boolean;
|
|
4894
|
+
/** 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. */
|
|
4895
|
+
quotaUser?: string;
|
|
4896
|
+
/** Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
4897
|
+
requestId?: string;
|
|
4898
|
+
/** Required. Field mask is used to specify the fields to be overwritten in the InterceptEndpointGroupAssociation resource by the update. The fields specified in the update_mask are relative to 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. */
|
|
4899
|
+
updateMask?: string;
|
|
4900
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4901
|
+
upload_protocol?: string;
|
|
4902
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4903
|
+
uploadType?: string;
|
|
4904
|
+
},
|
|
4905
|
+
body: InterceptEndpointGroupAssociation
|
|
4906
|
+
): Request<Operation>;
|
|
4907
|
+
}
|
|
4908
|
+
interface InterceptEndpointGroupsResource {
|
|
4909
|
+
/** Creates a new InterceptEndpointGroup in a given project and location. */
|
|
4910
|
+
create(request: {
|
|
4911
|
+
/** V1 error format. */
|
|
4912
|
+
'$.xgafv'?: string;
|
|
4913
|
+
/** OAuth access token. */
|
|
4914
|
+
access_token?: string;
|
|
4915
|
+
/** Data format for response. */
|
|
4916
|
+
alt?: string;
|
|
4917
|
+
/** JSONP */
|
|
4918
|
+
callback?: string;
|
|
4919
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4920
|
+
fields?: string;
|
|
4921
|
+
/** Required. Id of the requesting object If auto-generating Id server-side, remove this field and intercept_endpoint_group_id from the method_signature of Create RPC */
|
|
4922
|
+
interceptEndpointGroupId?: string;
|
|
4923
|
+
/** 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. */
|
|
4924
|
+
key?: string;
|
|
4925
|
+
/** OAuth 2.0 token for the current user. */
|
|
4926
|
+
oauth_token?: string;
|
|
4927
|
+
/** Required. Value for parent. */
|
|
4928
|
+
parent: string;
|
|
4929
|
+
/** Returns response with indentations and line breaks. */
|
|
4930
|
+
prettyPrint?: boolean;
|
|
4931
|
+
/** 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. */
|
|
4932
|
+
quotaUser?: string;
|
|
4933
|
+
/** Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
4934
|
+
requestId?: string;
|
|
4935
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4936
|
+
upload_protocol?: string;
|
|
4937
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4938
|
+
uploadType?: string;
|
|
4939
|
+
/** Request body */
|
|
4940
|
+
resource: InterceptEndpointGroup;
|
|
4941
|
+
}): Request<Operation>;
|
|
4942
|
+
create(
|
|
4943
|
+
request: {
|
|
4944
|
+
/** V1 error format. */
|
|
4945
|
+
'$.xgafv'?: string;
|
|
4946
|
+
/** OAuth access token. */
|
|
4947
|
+
access_token?: string;
|
|
4948
|
+
/** Data format for response. */
|
|
4949
|
+
alt?: string;
|
|
4950
|
+
/** JSONP */
|
|
4951
|
+
callback?: string;
|
|
4952
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4953
|
+
fields?: string;
|
|
4954
|
+
/** Required. Id of the requesting object If auto-generating Id server-side, remove this field and intercept_endpoint_group_id from the method_signature of Create RPC */
|
|
4955
|
+
interceptEndpointGroupId?: string;
|
|
4956
|
+
/** 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. */
|
|
4957
|
+
key?: string;
|
|
4958
|
+
/** OAuth 2.0 token for the current user. */
|
|
4959
|
+
oauth_token?: string;
|
|
4960
|
+
/** Required. Value for parent. */
|
|
4961
|
+
parent: string;
|
|
4962
|
+
/** Returns response with indentations and line breaks. */
|
|
4963
|
+
prettyPrint?: boolean;
|
|
4964
|
+
/** 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. */
|
|
4965
|
+
quotaUser?: string;
|
|
4966
|
+
/** Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
4967
|
+
requestId?: string;
|
|
4968
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4969
|
+
upload_protocol?: string;
|
|
4970
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4971
|
+
uploadType?: string;
|
|
4972
|
+
},
|
|
4973
|
+
body: InterceptEndpointGroup
|
|
4974
|
+
): Request<Operation>;
|
|
4975
|
+
/** Deletes a single InterceptEndpointGroup. */
|
|
4976
|
+
delete(request?: {
|
|
4977
|
+
/** V1 error format. */
|
|
4978
|
+
'$.xgafv'?: string;
|
|
4979
|
+
/** OAuth access token. */
|
|
4980
|
+
access_token?: string;
|
|
4981
|
+
/** Data format for response. */
|
|
4982
|
+
alt?: string;
|
|
4983
|
+
/** JSONP */
|
|
4984
|
+
callback?: string;
|
|
4985
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4986
|
+
fields?: string;
|
|
4987
|
+
/** 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. */
|
|
4988
|
+
key?: string;
|
|
4989
|
+
/** Required. Name of the resource */
|
|
4990
|
+
name: string;
|
|
4991
|
+
/** OAuth 2.0 token for the current user. */
|
|
4992
|
+
oauth_token?: string;
|
|
4993
|
+
/** Returns response with indentations and line breaks. */
|
|
4994
|
+
prettyPrint?: boolean;
|
|
4995
|
+
/** 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. */
|
|
4996
|
+
quotaUser?: string;
|
|
4997
|
+
/** Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
4998
|
+
requestId?: string;
|
|
4999
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5000
|
+
upload_protocol?: string;
|
|
5001
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5002
|
+
uploadType?: string;
|
|
5003
|
+
}): Request<Operation>;
|
|
5004
|
+
/** Gets details of a single InterceptEndpointGroup. */
|
|
5005
|
+
get(request?: {
|
|
5006
|
+
/** V1 error format. */
|
|
5007
|
+
'$.xgafv'?: string;
|
|
5008
|
+
/** OAuth access token. */
|
|
5009
|
+
access_token?: string;
|
|
5010
|
+
/** Data format for response. */
|
|
5011
|
+
alt?: string;
|
|
5012
|
+
/** JSONP */
|
|
5013
|
+
callback?: string;
|
|
5014
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
5015
|
+
fields?: string;
|
|
5016
|
+
/** 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. */
|
|
5017
|
+
key?: string;
|
|
5018
|
+
/** Required. Name of the resource */
|
|
5019
|
+
name: string;
|
|
5020
|
+
/** OAuth 2.0 token for the current user. */
|
|
5021
|
+
oauth_token?: string;
|
|
5022
|
+
/** Returns response with indentations and line breaks. */
|
|
5023
|
+
prettyPrint?: boolean;
|
|
5024
|
+
/** 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. */
|
|
5025
|
+
quotaUser?: string;
|
|
5026
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5027
|
+
upload_protocol?: string;
|
|
5028
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5029
|
+
uploadType?: string;
|
|
5030
|
+
}): Request<InterceptEndpointGroup>;
|
|
5031
|
+
/** Lists InterceptEndpointGroups in a given project and location. */
|
|
5032
|
+
list(request?: {
|
|
5033
|
+
/** V1 error format. */
|
|
5034
|
+
'$.xgafv'?: string;
|
|
5035
|
+
/** OAuth access token. */
|
|
5036
|
+
access_token?: string;
|
|
5037
|
+
/** Data format for response. */
|
|
5038
|
+
alt?: string;
|
|
5039
|
+
/** JSONP */
|
|
5040
|
+
callback?: string;
|
|
5041
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
5042
|
+
fields?: string;
|
|
5043
|
+
/** Optional. Filtering results */
|
|
5044
|
+
filter?: string;
|
|
5045
|
+
/** 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. */
|
|
5046
|
+
key?: string;
|
|
5047
|
+
/** OAuth 2.0 token for the current user. */
|
|
5048
|
+
oauth_token?: string;
|
|
5049
|
+
/** Optional. Hint for how to order the results */
|
|
5050
|
+
orderBy?: string;
|
|
5051
|
+
/** Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default. */
|
|
5052
|
+
pageSize?: number;
|
|
5053
|
+
/** Optional. A token identifying a page of results the server should return. */
|
|
5054
|
+
pageToken?: string;
|
|
5055
|
+
/** Required. Parent value for ListInterceptEndpointGroupsRequest */
|
|
5056
|
+
parent: string;
|
|
5057
|
+
/** Returns response with indentations and line breaks. */
|
|
5058
|
+
prettyPrint?: boolean;
|
|
5059
|
+
/** 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. */
|
|
5060
|
+
quotaUser?: string;
|
|
5061
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5062
|
+
upload_protocol?: string;
|
|
5063
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5064
|
+
uploadType?: string;
|
|
5065
|
+
}): Request<ListInterceptEndpointGroupsResponse>;
|
|
5066
|
+
/** Updates a single InterceptEndpointGroup. */
|
|
5067
|
+
patch(request: {
|
|
5068
|
+
/** V1 error format. */
|
|
5069
|
+
'$.xgafv'?: string;
|
|
5070
|
+
/** OAuth access token. */
|
|
5071
|
+
access_token?: string;
|
|
5072
|
+
/** Data format for response. */
|
|
5073
|
+
alt?: string;
|
|
5074
|
+
/** JSONP */
|
|
5075
|
+
callback?: string;
|
|
5076
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
5077
|
+
fields?: string;
|
|
5078
|
+
/** 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. */
|
|
5079
|
+
key?: string;
|
|
5080
|
+
/** Immutable. Identifier. The name of the InterceptEndpointGroup. */
|
|
5081
|
+
name: string;
|
|
5082
|
+
/** OAuth 2.0 token for the current user. */
|
|
5083
|
+
oauth_token?: string;
|
|
5084
|
+
/** Returns response with indentations and line breaks. */
|
|
5085
|
+
prettyPrint?: boolean;
|
|
5086
|
+
/** 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. */
|
|
5087
|
+
quotaUser?: string;
|
|
5088
|
+
/** Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
5089
|
+
requestId?: string;
|
|
5090
|
+
/** Required. Field mask is used to specify the fields to be overwritten in the InterceptEndpointGroup resource by the update. The fields specified in the update_mask are relative to 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. */
|
|
5091
|
+
updateMask?: string;
|
|
5092
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5093
|
+
upload_protocol?: string;
|
|
5094
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5095
|
+
uploadType?: string;
|
|
5096
|
+
/** Request body */
|
|
5097
|
+
resource: InterceptEndpointGroup;
|
|
5098
|
+
}): Request<Operation>;
|
|
5099
|
+
patch(
|
|
5100
|
+
request: {
|
|
5101
|
+
/** V1 error format. */
|
|
5102
|
+
'$.xgafv'?: string;
|
|
5103
|
+
/** OAuth access token. */
|
|
5104
|
+
access_token?: string;
|
|
5105
|
+
/** Data format for response. */
|
|
5106
|
+
alt?: string;
|
|
5107
|
+
/** JSONP */
|
|
5108
|
+
callback?: string;
|
|
5109
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
5110
|
+
fields?: string;
|
|
5111
|
+
/** 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. */
|
|
5112
|
+
key?: string;
|
|
5113
|
+
/** Immutable. Identifier. The name of the InterceptEndpointGroup. */
|
|
5114
|
+
name: string;
|
|
5115
|
+
/** OAuth 2.0 token for the current user. */
|
|
5116
|
+
oauth_token?: string;
|
|
5117
|
+
/** Returns response with indentations and line breaks. */
|
|
5118
|
+
prettyPrint?: boolean;
|
|
5119
|
+
/** 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. */
|
|
5120
|
+
quotaUser?: string;
|
|
5121
|
+
/** Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
5122
|
+
requestId?: string;
|
|
5123
|
+
/** Required. Field mask is used to specify the fields to be overwritten in the InterceptEndpointGroup resource by the update. The fields specified in the update_mask are relative to 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. */
|
|
5124
|
+
updateMask?: string;
|
|
5125
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5126
|
+
upload_protocol?: string;
|
|
5127
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5128
|
+
uploadType?: string;
|
|
5129
|
+
},
|
|
5130
|
+
body: InterceptEndpointGroup
|
|
5131
|
+
): Request<Operation>;
|
|
5132
|
+
}
|
|
4105
5133
|
interface MirroringDeploymentGroupsResource {
|
|
4106
5134
|
/** Creates a new MirroringDeploymentGroup in a given project and location. */
|
|
4107
5135
|
create(request: {
|
|
@@ -4949,7 +5977,7 @@ declare namespace gapi.client {
|
|
|
4949
5977
|
fields?: string;
|
|
4950
5978
|
/** 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. */
|
|
4951
5979
|
key?: string;
|
|
4952
|
-
/** Immutable. Identifier. The name of the MirroringEndpointGroup. */
|
|
5980
|
+
/** Immutable. Identifier. Next ID: 11 The name of the MirroringEndpointGroup. */
|
|
4953
5981
|
name: string;
|
|
4954
5982
|
/** OAuth 2.0 token for the current user. */
|
|
4955
5983
|
oauth_token?: string;
|
|
@@ -4982,7 +6010,7 @@ declare namespace gapi.client {
|
|
|
4982
6010
|
fields?: string;
|
|
4983
6011
|
/** 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. */
|
|
4984
6012
|
key?: string;
|
|
4985
|
-
/** Immutable. Identifier. The name of the MirroringEndpointGroup. */
|
|
6013
|
+
/** Immutable. Identifier. Next ID: 11 The name of the MirroringEndpointGroup. */
|
|
4986
6014
|
name: string;
|
|
4987
6015
|
/** OAuth 2.0 token for the current user. */
|
|
4988
6016
|
oauth_token?: string;
|
|
@@ -5003,7 +6031,7 @@ declare namespace gapi.client {
|
|
|
5003
6031
|
): Request<Operation>;
|
|
5004
6032
|
}
|
|
5005
6033
|
interface OperationsResource {
|
|
5006
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
6034
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
5007
6035
|
cancel(request: {
|
|
5008
6036
|
/** V1 error format. */
|
|
5009
6037
|
'$.xgafv'?: string;
|
|
@@ -5940,6 +6968,10 @@ declare namespace gapi.client {
|
|
|
5940
6968
|
clientTlsPolicies: ClientTlsPoliciesResource;
|
|
5941
6969
|
firewallEndpointAssociations: FirewallEndpointAssociationsResource;
|
|
5942
6970
|
gatewaySecurityPolicies: GatewaySecurityPoliciesResource;
|
|
6971
|
+
interceptDeploymentGroups: InterceptDeploymentGroupsResource;
|
|
6972
|
+
interceptDeployments: InterceptDeploymentsResource;
|
|
6973
|
+
interceptEndpointGroupAssociations: InterceptEndpointGroupAssociationsResource;
|
|
6974
|
+
interceptEndpointGroups: InterceptEndpointGroupsResource;
|
|
5943
6975
|
mirroringDeploymentGroups: MirroringDeploymentGroupsResource;
|
|
5944
6976
|
mirroringDeployments: MirroringDeploymentsResource;
|
|
5945
6977
|
mirroringEndpointGroupAssociations: MirroringEndpointGroupAssociationsResource;
|