@maxim_mazurok/gapi.client.networksecurity-v1 0.0.20250310 → 0.0.20250416
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 +1057 -1
- 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=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250416
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -389,6 +389,130 @@ declare namespace gapi.client {
|
|
|
389
389
|
/** 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. */
|
|
390
390
|
regexMatch?: string;
|
|
391
391
|
}
|
|
392
|
+
interface InterceptDeployment {
|
|
393
|
+
/** Output only. The timestamp when the resource was created. See https://google.aip.dev/148#timestamps. */
|
|
394
|
+
createTime?: string;
|
|
395
|
+
/** Optional. User-provided description of the deployment. Used as additional context for the deployment. */
|
|
396
|
+
description?: string;
|
|
397
|
+
/** Required. Immutable. The regional forwarding rule that fronts the interceptors, for example: `projects/123456789/regions/us-central1/forwardingRules/my-rule`. See https://google.aip.dev/124. */
|
|
398
|
+
forwardingRule?: string;
|
|
399
|
+
/** Required. Immutable. The deployment group that this deployment is a part of, for example: `projects/123456789/locations/global/interceptDeploymentGroups/my-dg`. See https://google.aip.dev/124. */
|
|
400
|
+
interceptDeploymentGroup?: string;
|
|
401
|
+
/** Optional. Labels are key/value pairs that help to organize and filter resources. */
|
|
402
|
+
labels?: {[P in string]: string};
|
|
403
|
+
/** Immutable. Identifier. The resource name of this deployment, for example: `projects/123456789/locations/us-central1-a/interceptDeployments/my-dep`. See https://google.aip.dev/122 for more details. */
|
|
404
|
+
name?: string;
|
|
405
|
+
/** Output only. The current state of the resource does not match the user's intended state, and the system is working to reconcile them. This part of the normal operation (e.g. linking a new association to the parent group). See https://google.aip.dev/128. */
|
|
406
|
+
reconciling?: boolean;
|
|
407
|
+
/** Output only. The current state of the deployment. See https://google.aip.dev/216. */
|
|
408
|
+
state?: string;
|
|
409
|
+
/** Output only. The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps. */
|
|
410
|
+
updateTime?: string;
|
|
411
|
+
}
|
|
412
|
+
interface InterceptDeploymentGroup {
|
|
413
|
+
/** Output only. The list of endpoint groups that are connected to this resource. */
|
|
414
|
+
connectedEndpointGroups?: InterceptDeploymentGroupConnectedEndpointGroup[];
|
|
415
|
+
/** Output only. The timestamp when the resource was created. See https://google.aip.dev/148#timestamps. */
|
|
416
|
+
createTime?: string;
|
|
417
|
+
/** Optional. User-provided description of the deployment group. Used as additional context for the deployment group. */
|
|
418
|
+
description?: string;
|
|
419
|
+
/** Optional. Labels are key/value pairs that help to organize and filter resources. */
|
|
420
|
+
labels?: {[P in string]: string};
|
|
421
|
+
/** Output only. The list of locations where the deployment group is present. */
|
|
422
|
+
locations?: InterceptLocation[];
|
|
423
|
+
/** Immutable. Identifier. The resource name of this deployment group, for example: `projects/123456789/locations/global/interceptDeploymentGroups/my-dg`. See https://google.aip.dev/122 for more details. */
|
|
424
|
+
name?: string;
|
|
425
|
+
/** Output only. The list of Intercept Deployments that belong to this group. */
|
|
426
|
+
nestedDeployments?: InterceptDeploymentGroupDeployment[];
|
|
427
|
+
/** Required. Immutable. The network that will be used for all child deployments, for example: `projects/{project}/global/networks/{network}`. See https://google.aip.dev/124. */
|
|
428
|
+
network?: string;
|
|
429
|
+
/** Output only. The current state of the resource does not match the user's intended state, and the system is working to reconcile them. This is part of the normal operation (e.g. adding a new deployment to the group) See https://google.aip.dev/128. */
|
|
430
|
+
reconciling?: boolean;
|
|
431
|
+
/** Output only. The current state of the deployment group. See https://google.aip.dev/216. */
|
|
432
|
+
state?: string;
|
|
433
|
+
/** Output only. The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps. */
|
|
434
|
+
updateTime?: string;
|
|
435
|
+
}
|
|
436
|
+
interface InterceptDeploymentGroupConnectedEndpointGroup {
|
|
437
|
+
/** Output only. The connected endpoint group's resource name, for example: `projects/123456789/locations/global/interceptEndpointGroups/my-eg`. See https://google.aip.dev/124. */
|
|
438
|
+
name?: string;
|
|
439
|
+
}
|
|
440
|
+
interface InterceptDeploymentGroupDeployment {
|
|
441
|
+
/** Output only. The name of the Intercept Deployment, in the format: `projects/{project}/locations/{location}/interceptDeployments/{intercept_deployment}`. */
|
|
442
|
+
name?: string;
|
|
443
|
+
/** Output only. Most recent known state of the deployment. */
|
|
444
|
+
state?: string;
|
|
445
|
+
}
|
|
446
|
+
interface InterceptEndpointGroup {
|
|
447
|
+
/** Output only. List of associations to this endpoint group. */
|
|
448
|
+
associations?: InterceptEndpointGroupAssociationDetails[];
|
|
449
|
+
/** Output only. Details about the connected deployment group to this endpoint group. */
|
|
450
|
+
connectedDeploymentGroup?: InterceptEndpointGroupConnectedDeploymentGroup;
|
|
451
|
+
/** Output only. The timestamp when the resource was created. See https://google.aip.dev/148#timestamps. */
|
|
452
|
+
createTime?: string;
|
|
453
|
+
/** Optional. User-provided description of the endpoint group. Used as additional context for the endpoint group. */
|
|
454
|
+
description?: string;
|
|
455
|
+
/** Required. Immutable. The deployment group that this endpoint group is connected to, for example: `projects/123456789/locations/global/interceptDeploymentGroups/my-dg`. See https://google.aip.dev/124. */
|
|
456
|
+
interceptDeploymentGroup?: string;
|
|
457
|
+
/** Optional. Labels are key/value pairs that help to organize and filter resources. */
|
|
458
|
+
labels?: {[P in string]: string};
|
|
459
|
+
/** Immutable. Identifier. The resource name of this endpoint group, for example: `projects/123456789/locations/global/interceptEndpointGroups/my-eg`. See https://google.aip.dev/122 for more details. */
|
|
460
|
+
name?: string;
|
|
461
|
+
/** Output only. The current state of the resource does not match the user's intended state, and the system is working to reconcile them. This is part of the normal operation (e.g. adding a new association to the group). See https://google.aip.dev/128. */
|
|
462
|
+
reconciling?: boolean;
|
|
463
|
+
/** Output only. The current state of the endpoint group. See https://google.aip.dev/216. */
|
|
464
|
+
state?: string;
|
|
465
|
+
/** Output only. The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps. */
|
|
466
|
+
updateTime?: string;
|
|
467
|
+
}
|
|
468
|
+
interface InterceptEndpointGroupAssociation {
|
|
469
|
+
/** Output only. The timestamp when the resource was created. See https://google.aip.dev/148#timestamps. */
|
|
470
|
+
createTime?: string;
|
|
471
|
+
/** Required. Immutable. The endpoint group that this association is connected to, for example: `projects/123456789/locations/global/interceptEndpointGroups/my-eg`. See https://google.aip.dev/124. */
|
|
472
|
+
interceptEndpointGroup?: string;
|
|
473
|
+
/** Optional. Labels are key/value pairs that help to organize and filter resources. */
|
|
474
|
+
labels?: {[P in string]: string};
|
|
475
|
+
/** Output only. The list of locations where the association is configured. This information is retrieved from the linked endpoint group. */
|
|
476
|
+
locations?: InterceptLocation[];
|
|
477
|
+
/** Output only. The list of locations where the association is present. This information is retrieved from the linked endpoint group, and not configured as part of the association itself. */
|
|
478
|
+
locationsDetails?: InterceptEndpointGroupAssociationLocationDetails[];
|
|
479
|
+
/** Immutable. Identifier. The resource name of this endpoint group association, for example: `projects/123456789/locations/global/interceptEndpointGroupAssociations/my-eg-association`. See https://google.aip.dev/122 for more details. */
|
|
480
|
+
name?: string;
|
|
481
|
+
/** Required. Immutable. The VPC network that is associated. for example: `projects/123456789/global/networks/my-network`. See https://google.aip.dev/124. */
|
|
482
|
+
network?: string;
|
|
483
|
+
/** Output only. The current state of the resource does not match the user's intended state, and the system is working to reconcile them. This part of the normal operation (e.g. adding a new location to the target deployment group). See https://google.aip.dev/128. */
|
|
484
|
+
reconciling?: boolean;
|
|
485
|
+
/** Output only. Current state of the endpoint group association. */
|
|
486
|
+
state?: string;
|
|
487
|
+
/** Output only. The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps. */
|
|
488
|
+
updateTime?: string;
|
|
489
|
+
}
|
|
490
|
+
interface InterceptEndpointGroupAssociationDetails {
|
|
491
|
+
/** Output only. The connected association's resource name, for example: `projects/123456789/locations/global/interceptEndpointGroupAssociations/my-ega`. See https://google.aip.dev/124. */
|
|
492
|
+
name?: string;
|
|
493
|
+
/** Output only. The associated network, for example: projects/123456789/global/networks/my-network. See https://google.aip.dev/124. */
|
|
494
|
+
network?: string;
|
|
495
|
+
/** Output only. Most recent known state of the association. */
|
|
496
|
+
state?: string;
|
|
497
|
+
}
|
|
498
|
+
interface InterceptEndpointGroupAssociationLocationDetails {
|
|
499
|
+
/** Output only. The cloud location, e.g. "us-central1-a" or "asia-south1". */
|
|
500
|
+
location?: string;
|
|
501
|
+
/** Output only. The current state of the association in this location. */
|
|
502
|
+
state?: string;
|
|
503
|
+
}
|
|
504
|
+
interface InterceptEndpointGroupConnectedDeploymentGroup {
|
|
505
|
+
/** Output only. The list of locations where the deployment group is present. */
|
|
506
|
+
locations?: InterceptLocation[];
|
|
507
|
+
/** Output only. The connected deployment group's resource name, for example: `projects/123456789/locations/global/interceptDeploymentGroups/my-dg`. See https://google.aip.dev/124. */
|
|
508
|
+
name?: string;
|
|
509
|
+
}
|
|
510
|
+
interface InterceptLocation {
|
|
511
|
+
/** Output only. The cloud location, e.g. "us-central1-a" or "asia-south1". */
|
|
512
|
+
location?: string;
|
|
513
|
+
/** Output only. The current state of the association in this location. */
|
|
514
|
+
state?: string;
|
|
515
|
+
}
|
|
392
516
|
interface ListAddressGroupReferencesResponse {
|
|
393
517
|
/** A list of references that matches the specified filter in the request. */
|
|
394
518
|
addressGroupReferences?: ListAddressGroupReferencesResponseAddressGroupReference[];
|
|
@@ -463,6 +587,32 @@ declare namespace gapi.client {
|
|
|
463
587
|
/** Locations that could not be reached. */
|
|
464
588
|
unreachable?: string[];
|
|
465
589
|
}
|
|
590
|
+
interface ListInterceptDeploymentGroupsResponse {
|
|
591
|
+
/** The deployment groups from the specified parent. */
|
|
592
|
+
interceptDeploymentGroups?: InterceptDeploymentGroup[];
|
|
593
|
+
/** A token that can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. See https://google.aip.dev/158 for more details. */
|
|
594
|
+
nextPageToken?: string;
|
|
595
|
+
}
|
|
596
|
+
interface ListInterceptDeploymentsResponse {
|
|
597
|
+
/** The deployments from the specified parent. */
|
|
598
|
+
interceptDeployments?: InterceptDeployment[];
|
|
599
|
+
/** A token that can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. See https://google.aip.dev/158 for more details. */
|
|
600
|
+
nextPageToken?: string;
|
|
601
|
+
/** Locations that could not be reached. */
|
|
602
|
+
unreachable?: string[];
|
|
603
|
+
}
|
|
604
|
+
interface ListInterceptEndpointGroupAssociationsResponse {
|
|
605
|
+
/** The associations from the specified parent. */
|
|
606
|
+
interceptEndpointGroupAssociations?: InterceptEndpointGroupAssociation[];
|
|
607
|
+
/** A token that can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. See https://google.aip.dev/158 for more details. */
|
|
608
|
+
nextPageToken?: string;
|
|
609
|
+
}
|
|
610
|
+
interface ListInterceptEndpointGroupsResponse {
|
|
611
|
+
/** The endpoint groups from the specified parent. */
|
|
612
|
+
interceptEndpointGroups?: InterceptEndpointGroup[];
|
|
613
|
+
/** A token that can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. See https://google.aip.dev/158 for more details. */
|
|
614
|
+
nextPageToken?: string;
|
|
615
|
+
}
|
|
466
616
|
interface ListLocationsResponse {
|
|
467
617
|
/** A list of locations that matches the specified filter in the request. */
|
|
468
618
|
locations?: Location[];
|
|
@@ -4174,6 +4324,906 @@ declare namespace gapi.client {
|
|
|
4174
4324
|
): Request<Operation>;
|
|
4175
4325
|
rules: RulesResource;
|
|
4176
4326
|
}
|
|
4327
|
+
interface InterceptDeploymentGroupsResource {
|
|
4328
|
+
/** Creates a deployment group in a given project and location. See https://google.aip.dev/133. */
|
|
4329
|
+
create(request: {
|
|
4330
|
+
/** V1 error format. */
|
|
4331
|
+
'$.xgafv'?: string;
|
|
4332
|
+
/** OAuth access token. */
|
|
4333
|
+
access_token?: string;
|
|
4334
|
+
/** Data format for response. */
|
|
4335
|
+
alt?: string;
|
|
4336
|
+
/** JSONP */
|
|
4337
|
+
callback?: string;
|
|
4338
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4339
|
+
fields?: string;
|
|
4340
|
+
/** Required. The ID to use for the new deployment group, which will become the final component of the deployment group's resource name. */
|
|
4341
|
+
interceptDeploymentGroupId?: string;
|
|
4342
|
+
/** 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. */
|
|
4343
|
+
key?: string;
|
|
4344
|
+
/** OAuth 2.0 token for the current user. */
|
|
4345
|
+
oauth_token?: string;
|
|
4346
|
+
/** Required. The parent resource where this deployment group will be created. Format: projects/{project}/locations/{location} */
|
|
4347
|
+
parent: string;
|
|
4348
|
+
/** Returns response with indentations and line breaks. */
|
|
4349
|
+
prettyPrint?: boolean;
|
|
4350
|
+
/** 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. */
|
|
4351
|
+
quotaUser?: string;
|
|
4352
|
+
/** Optional. A unique identifier for this request. Must be a UUID4. This request is only idempotent if a `request_id` is provided. See https://google.aip.dev/155 for more details. */
|
|
4353
|
+
requestId?: string;
|
|
4354
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4355
|
+
upload_protocol?: string;
|
|
4356
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4357
|
+
uploadType?: string;
|
|
4358
|
+
/** Request body */
|
|
4359
|
+
resource: InterceptDeploymentGroup;
|
|
4360
|
+
}): Request<Operation>;
|
|
4361
|
+
create(
|
|
4362
|
+
request: {
|
|
4363
|
+
/** V1 error format. */
|
|
4364
|
+
'$.xgafv'?: string;
|
|
4365
|
+
/** OAuth access token. */
|
|
4366
|
+
access_token?: string;
|
|
4367
|
+
/** Data format for response. */
|
|
4368
|
+
alt?: string;
|
|
4369
|
+
/** JSONP */
|
|
4370
|
+
callback?: string;
|
|
4371
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4372
|
+
fields?: string;
|
|
4373
|
+
/** Required. The ID to use for the new deployment group, which will become the final component of the deployment group's resource name. */
|
|
4374
|
+
interceptDeploymentGroupId?: string;
|
|
4375
|
+
/** 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. */
|
|
4376
|
+
key?: string;
|
|
4377
|
+
/** OAuth 2.0 token for the current user. */
|
|
4378
|
+
oauth_token?: string;
|
|
4379
|
+
/** Required. The parent resource where this deployment group will be created. Format: projects/{project}/locations/{location} */
|
|
4380
|
+
parent: string;
|
|
4381
|
+
/** Returns response with indentations and line breaks. */
|
|
4382
|
+
prettyPrint?: boolean;
|
|
4383
|
+
/** 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. */
|
|
4384
|
+
quotaUser?: string;
|
|
4385
|
+
/** Optional. A unique identifier for this request. Must be a UUID4. This request is only idempotent if a `request_id` is provided. See https://google.aip.dev/155 for more details. */
|
|
4386
|
+
requestId?: string;
|
|
4387
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4388
|
+
upload_protocol?: string;
|
|
4389
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4390
|
+
uploadType?: string;
|
|
4391
|
+
},
|
|
4392
|
+
body: InterceptDeploymentGroup,
|
|
4393
|
+
): Request<Operation>;
|
|
4394
|
+
/** Deletes a deployment group. See https://google.aip.dev/135. */
|
|
4395
|
+
delete(request?: {
|
|
4396
|
+
/** V1 error format. */
|
|
4397
|
+
'$.xgafv'?: string;
|
|
4398
|
+
/** OAuth access token. */
|
|
4399
|
+
access_token?: string;
|
|
4400
|
+
/** Data format for response. */
|
|
4401
|
+
alt?: string;
|
|
4402
|
+
/** JSONP */
|
|
4403
|
+
callback?: string;
|
|
4404
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4405
|
+
fields?: string;
|
|
4406
|
+
/** 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. */
|
|
4407
|
+
key?: string;
|
|
4408
|
+
/** Required. The deployment group to delete. */
|
|
4409
|
+
name: string;
|
|
4410
|
+
/** OAuth 2.0 token for the current user. */
|
|
4411
|
+
oauth_token?: string;
|
|
4412
|
+
/** Returns response with indentations and line breaks. */
|
|
4413
|
+
prettyPrint?: boolean;
|
|
4414
|
+
/** 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. */
|
|
4415
|
+
quotaUser?: string;
|
|
4416
|
+
/** Optional. A unique identifier for this request. Must be a UUID4. This request is only idempotent if a `request_id` is provided. See https://google.aip.dev/155 for more details. */
|
|
4417
|
+
requestId?: string;
|
|
4418
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4419
|
+
upload_protocol?: string;
|
|
4420
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4421
|
+
uploadType?: string;
|
|
4422
|
+
}): Request<Operation>;
|
|
4423
|
+
/** Gets a specific deployment group. See https://google.aip.dev/131. */
|
|
4424
|
+
get(request?: {
|
|
4425
|
+
/** V1 error format. */
|
|
4426
|
+
'$.xgafv'?: string;
|
|
4427
|
+
/** OAuth access token. */
|
|
4428
|
+
access_token?: string;
|
|
4429
|
+
/** Data format for response. */
|
|
4430
|
+
alt?: string;
|
|
4431
|
+
/** JSONP */
|
|
4432
|
+
callback?: string;
|
|
4433
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4434
|
+
fields?: string;
|
|
4435
|
+
/** 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. */
|
|
4436
|
+
key?: string;
|
|
4437
|
+
/** Required. The name of the deployment group to retrieve. Format: projects/{project}/locations/{location}/interceptDeploymentGroups/{intercept_deployment_group} */
|
|
4438
|
+
name: string;
|
|
4439
|
+
/** OAuth 2.0 token for the current user. */
|
|
4440
|
+
oauth_token?: string;
|
|
4441
|
+
/** Returns response with indentations and line breaks. */
|
|
4442
|
+
prettyPrint?: boolean;
|
|
4443
|
+
/** 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. */
|
|
4444
|
+
quotaUser?: string;
|
|
4445
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4446
|
+
upload_protocol?: string;
|
|
4447
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4448
|
+
uploadType?: string;
|
|
4449
|
+
}): Request<InterceptDeploymentGroup>;
|
|
4450
|
+
/** Lists deployment groups in a given project and location. See https://google.aip.dev/132. */
|
|
4451
|
+
list(request?: {
|
|
4452
|
+
/** V1 error format. */
|
|
4453
|
+
'$.xgafv'?: string;
|
|
4454
|
+
/** OAuth access token. */
|
|
4455
|
+
access_token?: string;
|
|
4456
|
+
/** Data format for response. */
|
|
4457
|
+
alt?: string;
|
|
4458
|
+
/** JSONP */
|
|
4459
|
+
callback?: string;
|
|
4460
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4461
|
+
fields?: string;
|
|
4462
|
+
/** Optional. Filter expression. See https://google.aip.dev/160#filtering for more details. */
|
|
4463
|
+
filter?: string;
|
|
4464
|
+
/** 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. */
|
|
4465
|
+
key?: string;
|
|
4466
|
+
/** OAuth 2.0 token for the current user. */
|
|
4467
|
+
oauth_token?: string;
|
|
4468
|
+
/** Optional. Sort expression. See https://google.aip.dev/132#ordering for more details. */
|
|
4469
|
+
orderBy?: string;
|
|
4470
|
+
/** Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default. See https://google.aip.dev/158 for more details. */
|
|
4471
|
+
pageSize?: number;
|
|
4472
|
+
/** Optional. A page token, received from a previous `ListInterceptDeploymentGroups` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListInterceptDeploymentGroups` must match the call that provided the page token. See https://google.aip.dev/158 for more details. */
|
|
4473
|
+
pageToken?: string;
|
|
4474
|
+
/** Required. The parent, which owns this collection of deployment groups. Example: `projects/123456789/locations/global`. See https://google.aip.dev/132 for more details. */
|
|
4475
|
+
parent: string;
|
|
4476
|
+
/** Returns response with indentations and line breaks. */
|
|
4477
|
+
prettyPrint?: boolean;
|
|
4478
|
+
/** 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. */
|
|
4479
|
+
quotaUser?: string;
|
|
4480
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4481
|
+
upload_protocol?: string;
|
|
4482
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4483
|
+
uploadType?: string;
|
|
4484
|
+
}): Request<ListInterceptDeploymentGroupsResponse>;
|
|
4485
|
+
/** Updates a deployment group. See https://google.aip.dev/134. */
|
|
4486
|
+
patch(request: {
|
|
4487
|
+
/** V1 error format. */
|
|
4488
|
+
'$.xgafv'?: string;
|
|
4489
|
+
/** OAuth access token. */
|
|
4490
|
+
access_token?: string;
|
|
4491
|
+
/** Data format for response. */
|
|
4492
|
+
alt?: string;
|
|
4493
|
+
/** JSONP */
|
|
4494
|
+
callback?: string;
|
|
4495
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4496
|
+
fields?: string;
|
|
4497
|
+
/** 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. */
|
|
4498
|
+
key?: string;
|
|
4499
|
+
/** Immutable. Identifier. The resource name of this deployment group, for example: `projects/123456789/locations/global/interceptDeploymentGroups/my-dg`. See https://google.aip.dev/122 for more details. */
|
|
4500
|
+
name: string;
|
|
4501
|
+
/** OAuth 2.0 token for the current user. */
|
|
4502
|
+
oauth_token?: string;
|
|
4503
|
+
/** Returns response with indentations and line breaks. */
|
|
4504
|
+
prettyPrint?: boolean;
|
|
4505
|
+
/** 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. */
|
|
4506
|
+
quotaUser?: string;
|
|
4507
|
+
/** Optional. A unique identifier for this request. Must be a UUID4. This request is only idempotent if a `request_id` is provided. See https://google.aip.dev/155 for more details. */
|
|
4508
|
+
requestId?: string;
|
|
4509
|
+
/** Optional. The list of fields to update. Fields are specified relative to the deployment group (e.g. `description`; *not* `intercept_deployment_group.description`). See https://google.aip.dev/161 for more details. */
|
|
4510
|
+
updateMask?: string;
|
|
4511
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4512
|
+
upload_protocol?: string;
|
|
4513
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4514
|
+
uploadType?: string;
|
|
4515
|
+
/** Request body */
|
|
4516
|
+
resource: InterceptDeploymentGroup;
|
|
4517
|
+
}): Request<Operation>;
|
|
4518
|
+
patch(
|
|
4519
|
+
request: {
|
|
4520
|
+
/** V1 error format. */
|
|
4521
|
+
'$.xgafv'?: string;
|
|
4522
|
+
/** OAuth access token. */
|
|
4523
|
+
access_token?: string;
|
|
4524
|
+
/** Data format for response. */
|
|
4525
|
+
alt?: string;
|
|
4526
|
+
/** JSONP */
|
|
4527
|
+
callback?: string;
|
|
4528
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4529
|
+
fields?: string;
|
|
4530
|
+
/** 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. */
|
|
4531
|
+
key?: string;
|
|
4532
|
+
/** Immutable. Identifier. The resource name of this deployment group, for example: `projects/123456789/locations/global/interceptDeploymentGroups/my-dg`. See https://google.aip.dev/122 for more details. */
|
|
4533
|
+
name: string;
|
|
4534
|
+
/** OAuth 2.0 token for the current user. */
|
|
4535
|
+
oauth_token?: string;
|
|
4536
|
+
/** Returns response with indentations and line breaks. */
|
|
4537
|
+
prettyPrint?: boolean;
|
|
4538
|
+
/** 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. */
|
|
4539
|
+
quotaUser?: string;
|
|
4540
|
+
/** Optional. A unique identifier for this request. Must be a UUID4. This request is only idempotent if a `request_id` is provided. See https://google.aip.dev/155 for more details. */
|
|
4541
|
+
requestId?: string;
|
|
4542
|
+
/** Optional. The list of fields to update. Fields are specified relative to the deployment group (e.g. `description`; *not* `intercept_deployment_group.description`). See https://google.aip.dev/161 for more details. */
|
|
4543
|
+
updateMask?: string;
|
|
4544
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4545
|
+
upload_protocol?: string;
|
|
4546
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4547
|
+
uploadType?: string;
|
|
4548
|
+
},
|
|
4549
|
+
body: InterceptDeploymentGroup,
|
|
4550
|
+
): Request<Operation>;
|
|
4551
|
+
}
|
|
4552
|
+
interface InterceptDeploymentsResource {
|
|
4553
|
+
/** Creates a deployment in a given project and location. See https://google.aip.dev/133. */
|
|
4554
|
+
create(request: {
|
|
4555
|
+
/** V1 error format. */
|
|
4556
|
+
'$.xgafv'?: string;
|
|
4557
|
+
/** OAuth access token. */
|
|
4558
|
+
access_token?: string;
|
|
4559
|
+
/** Data format for response. */
|
|
4560
|
+
alt?: string;
|
|
4561
|
+
/** JSONP */
|
|
4562
|
+
callback?: string;
|
|
4563
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4564
|
+
fields?: string;
|
|
4565
|
+
/** Required. The ID to use for the new deployment, which will become the final component of the deployment's resource name. */
|
|
4566
|
+
interceptDeploymentId?: string;
|
|
4567
|
+
/** 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. */
|
|
4568
|
+
key?: string;
|
|
4569
|
+
/** OAuth 2.0 token for the current user. */
|
|
4570
|
+
oauth_token?: string;
|
|
4571
|
+
/** Required. The parent resource where this deployment will be created. Format: projects/{project}/locations/{location} */
|
|
4572
|
+
parent: string;
|
|
4573
|
+
/** Returns response with indentations and line breaks. */
|
|
4574
|
+
prettyPrint?: boolean;
|
|
4575
|
+
/** 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. */
|
|
4576
|
+
quotaUser?: string;
|
|
4577
|
+
/** Optional. A unique identifier for this request. Must be a UUID4. This request is only idempotent if a `request_id` is provided. See https://google.aip.dev/155 for more details. */
|
|
4578
|
+
requestId?: string;
|
|
4579
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4580
|
+
upload_protocol?: string;
|
|
4581
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4582
|
+
uploadType?: string;
|
|
4583
|
+
/** Request body */
|
|
4584
|
+
resource: InterceptDeployment;
|
|
4585
|
+
}): Request<Operation>;
|
|
4586
|
+
create(
|
|
4587
|
+
request: {
|
|
4588
|
+
/** V1 error format. */
|
|
4589
|
+
'$.xgafv'?: string;
|
|
4590
|
+
/** OAuth access token. */
|
|
4591
|
+
access_token?: string;
|
|
4592
|
+
/** Data format for response. */
|
|
4593
|
+
alt?: string;
|
|
4594
|
+
/** JSONP */
|
|
4595
|
+
callback?: string;
|
|
4596
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4597
|
+
fields?: string;
|
|
4598
|
+
/** Required. The ID to use for the new deployment, which will become the final component of the deployment's resource name. */
|
|
4599
|
+
interceptDeploymentId?: string;
|
|
4600
|
+
/** 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. */
|
|
4601
|
+
key?: string;
|
|
4602
|
+
/** OAuth 2.0 token for the current user. */
|
|
4603
|
+
oauth_token?: string;
|
|
4604
|
+
/** Required. The parent resource where this deployment will be created. Format: projects/{project}/locations/{location} */
|
|
4605
|
+
parent: string;
|
|
4606
|
+
/** Returns response with indentations and line breaks. */
|
|
4607
|
+
prettyPrint?: boolean;
|
|
4608
|
+
/** 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. */
|
|
4609
|
+
quotaUser?: string;
|
|
4610
|
+
/** Optional. A unique identifier for this request. Must be a UUID4. This request is only idempotent if a `request_id` is provided. See https://google.aip.dev/155 for more details. */
|
|
4611
|
+
requestId?: string;
|
|
4612
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4613
|
+
upload_protocol?: string;
|
|
4614
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4615
|
+
uploadType?: string;
|
|
4616
|
+
},
|
|
4617
|
+
body: InterceptDeployment,
|
|
4618
|
+
): Request<Operation>;
|
|
4619
|
+
/** Deletes a deployment. See https://google.aip.dev/135. */
|
|
4620
|
+
delete(request?: {
|
|
4621
|
+
/** V1 error format. */
|
|
4622
|
+
'$.xgafv'?: string;
|
|
4623
|
+
/** OAuth access token. */
|
|
4624
|
+
access_token?: string;
|
|
4625
|
+
/** Data format for response. */
|
|
4626
|
+
alt?: string;
|
|
4627
|
+
/** JSONP */
|
|
4628
|
+
callback?: string;
|
|
4629
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4630
|
+
fields?: string;
|
|
4631
|
+
/** 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. */
|
|
4632
|
+
key?: string;
|
|
4633
|
+
/** Required. Name of the resource */
|
|
4634
|
+
name: string;
|
|
4635
|
+
/** OAuth 2.0 token for the current user. */
|
|
4636
|
+
oauth_token?: string;
|
|
4637
|
+
/** Returns response with indentations and line breaks. */
|
|
4638
|
+
prettyPrint?: boolean;
|
|
4639
|
+
/** 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. */
|
|
4640
|
+
quotaUser?: string;
|
|
4641
|
+
/** Optional. A unique identifier for this request. Must be a UUID4. This request is only idempotent if a `request_id` is provided. See https://google.aip.dev/155 for more details. */
|
|
4642
|
+
requestId?: string;
|
|
4643
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4644
|
+
upload_protocol?: string;
|
|
4645
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4646
|
+
uploadType?: string;
|
|
4647
|
+
}): Request<Operation>;
|
|
4648
|
+
/** Gets a specific deployment. See https://google.aip.dev/131. */
|
|
4649
|
+
get(request?: {
|
|
4650
|
+
/** V1 error format. */
|
|
4651
|
+
'$.xgafv'?: string;
|
|
4652
|
+
/** OAuth access token. */
|
|
4653
|
+
access_token?: string;
|
|
4654
|
+
/** Data format for response. */
|
|
4655
|
+
alt?: string;
|
|
4656
|
+
/** JSONP */
|
|
4657
|
+
callback?: string;
|
|
4658
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4659
|
+
fields?: string;
|
|
4660
|
+
/** 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. */
|
|
4661
|
+
key?: string;
|
|
4662
|
+
/** Required. The name of the deployment to retrieve. Format: projects/{project}/locations/{location}/interceptDeployments/{intercept_deployment} */
|
|
4663
|
+
name: string;
|
|
4664
|
+
/** OAuth 2.0 token for the current user. */
|
|
4665
|
+
oauth_token?: string;
|
|
4666
|
+
/** Returns response with indentations and line breaks. */
|
|
4667
|
+
prettyPrint?: boolean;
|
|
4668
|
+
/** 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. */
|
|
4669
|
+
quotaUser?: string;
|
|
4670
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4671
|
+
upload_protocol?: string;
|
|
4672
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4673
|
+
uploadType?: string;
|
|
4674
|
+
}): Request<InterceptDeployment>;
|
|
4675
|
+
/** Lists deployments in a given project and location. See https://google.aip.dev/132. */
|
|
4676
|
+
list(request?: {
|
|
4677
|
+
/** V1 error format. */
|
|
4678
|
+
'$.xgafv'?: string;
|
|
4679
|
+
/** OAuth access token. */
|
|
4680
|
+
access_token?: string;
|
|
4681
|
+
/** Data format for response. */
|
|
4682
|
+
alt?: string;
|
|
4683
|
+
/** JSONP */
|
|
4684
|
+
callback?: string;
|
|
4685
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4686
|
+
fields?: string;
|
|
4687
|
+
/** Optional. Filter expression. See https://google.aip.dev/160#filtering for more details. */
|
|
4688
|
+
filter?: string;
|
|
4689
|
+
/** 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. */
|
|
4690
|
+
key?: string;
|
|
4691
|
+
/** OAuth 2.0 token for the current user. */
|
|
4692
|
+
oauth_token?: string;
|
|
4693
|
+
/** Optional. Sort expression. See https://google.aip.dev/132#ordering for more details. */
|
|
4694
|
+
orderBy?: string;
|
|
4695
|
+
/** Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default. See https://google.aip.dev/158 for more details. */
|
|
4696
|
+
pageSize?: number;
|
|
4697
|
+
/** Optional. A page token, received from a previous `ListInterceptDeployments` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListInterceptDeployments` must match the call that provided the page token. See https://google.aip.dev/158 for more details. */
|
|
4698
|
+
pageToken?: string;
|
|
4699
|
+
/** Required. The parent, which owns this collection of deployments. Example: `projects/123456789/locations/us-central1-a`. See https://google.aip.dev/132 for more details. */
|
|
4700
|
+
parent: string;
|
|
4701
|
+
/** Returns response with indentations and line breaks. */
|
|
4702
|
+
prettyPrint?: boolean;
|
|
4703
|
+
/** 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. */
|
|
4704
|
+
quotaUser?: string;
|
|
4705
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4706
|
+
upload_protocol?: string;
|
|
4707
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4708
|
+
uploadType?: string;
|
|
4709
|
+
}): Request<ListInterceptDeploymentsResponse>;
|
|
4710
|
+
/** Updates a deployment. See https://google.aip.dev/134. */
|
|
4711
|
+
patch(request: {
|
|
4712
|
+
/** V1 error format. */
|
|
4713
|
+
'$.xgafv'?: string;
|
|
4714
|
+
/** OAuth access token. */
|
|
4715
|
+
access_token?: string;
|
|
4716
|
+
/** Data format for response. */
|
|
4717
|
+
alt?: string;
|
|
4718
|
+
/** JSONP */
|
|
4719
|
+
callback?: string;
|
|
4720
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4721
|
+
fields?: string;
|
|
4722
|
+
/** 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. */
|
|
4723
|
+
key?: string;
|
|
4724
|
+
/** Immutable. Identifier. The resource name of this deployment, for example: `projects/123456789/locations/us-central1-a/interceptDeployments/my-dep`. See https://google.aip.dev/122 for more details. */
|
|
4725
|
+
name: string;
|
|
4726
|
+
/** OAuth 2.0 token for the current user. */
|
|
4727
|
+
oauth_token?: string;
|
|
4728
|
+
/** Returns response with indentations and line breaks. */
|
|
4729
|
+
prettyPrint?: boolean;
|
|
4730
|
+
/** 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. */
|
|
4731
|
+
quotaUser?: string;
|
|
4732
|
+
/** Optional. A unique identifier for this request. Must be a UUID4. This request is only idempotent if a `request_id` is provided. See https://google.aip.dev/155 for more details. */
|
|
4733
|
+
requestId?: string;
|
|
4734
|
+
/** Optional. The list of fields to update. Fields are specified relative to the deployment (e.g. `description`; *not* `intercept_deployment.description`). See https://google.aip.dev/161 for more details. */
|
|
4735
|
+
updateMask?: string;
|
|
4736
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4737
|
+
upload_protocol?: string;
|
|
4738
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4739
|
+
uploadType?: string;
|
|
4740
|
+
/** Request body */
|
|
4741
|
+
resource: InterceptDeployment;
|
|
4742
|
+
}): Request<Operation>;
|
|
4743
|
+
patch(
|
|
4744
|
+
request: {
|
|
4745
|
+
/** V1 error format. */
|
|
4746
|
+
'$.xgafv'?: string;
|
|
4747
|
+
/** OAuth access token. */
|
|
4748
|
+
access_token?: string;
|
|
4749
|
+
/** Data format for response. */
|
|
4750
|
+
alt?: string;
|
|
4751
|
+
/** JSONP */
|
|
4752
|
+
callback?: string;
|
|
4753
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4754
|
+
fields?: string;
|
|
4755
|
+
/** 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. */
|
|
4756
|
+
key?: string;
|
|
4757
|
+
/** Immutable. Identifier. The resource name of this deployment, for example: `projects/123456789/locations/us-central1-a/interceptDeployments/my-dep`. See https://google.aip.dev/122 for more details. */
|
|
4758
|
+
name: string;
|
|
4759
|
+
/** OAuth 2.0 token for the current user. */
|
|
4760
|
+
oauth_token?: string;
|
|
4761
|
+
/** Returns response with indentations and line breaks. */
|
|
4762
|
+
prettyPrint?: boolean;
|
|
4763
|
+
/** 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. */
|
|
4764
|
+
quotaUser?: string;
|
|
4765
|
+
/** Optional. A unique identifier for this request. Must be a UUID4. This request is only idempotent if a `request_id` is provided. See https://google.aip.dev/155 for more details. */
|
|
4766
|
+
requestId?: string;
|
|
4767
|
+
/** Optional. The list of fields to update. Fields are specified relative to the deployment (e.g. `description`; *not* `intercept_deployment.description`). See https://google.aip.dev/161 for more details. */
|
|
4768
|
+
updateMask?: string;
|
|
4769
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4770
|
+
upload_protocol?: string;
|
|
4771
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4772
|
+
uploadType?: string;
|
|
4773
|
+
},
|
|
4774
|
+
body: InterceptDeployment,
|
|
4775
|
+
): Request<Operation>;
|
|
4776
|
+
}
|
|
4777
|
+
interface InterceptEndpointGroupAssociationsResource {
|
|
4778
|
+
/** Creates an association in a given project and location. See https://google.aip.dev/133. */
|
|
4779
|
+
create(request: {
|
|
4780
|
+
/** V1 error format. */
|
|
4781
|
+
'$.xgafv'?: string;
|
|
4782
|
+
/** OAuth access token. */
|
|
4783
|
+
access_token?: string;
|
|
4784
|
+
/** Data format for response. */
|
|
4785
|
+
alt?: string;
|
|
4786
|
+
/** JSONP */
|
|
4787
|
+
callback?: string;
|
|
4788
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4789
|
+
fields?: string;
|
|
4790
|
+
/** Optional. The ID to use for the new association, which will become the final component of the endpoint group's resource name. If not provided, the server will generate a unique ID. */
|
|
4791
|
+
interceptEndpointGroupAssociationId?: string;
|
|
4792
|
+
/** 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. */
|
|
4793
|
+
key?: string;
|
|
4794
|
+
/** OAuth 2.0 token for the current user. */
|
|
4795
|
+
oauth_token?: string;
|
|
4796
|
+
/** Required. The parent resource where this association will be created. Format: projects/{project}/locations/{location} */
|
|
4797
|
+
parent: string;
|
|
4798
|
+
/** Returns response with indentations and line breaks. */
|
|
4799
|
+
prettyPrint?: boolean;
|
|
4800
|
+
/** 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. */
|
|
4801
|
+
quotaUser?: string;
|
|
4802
|
+
/** Optional. A unique identifier for this request. Must be a UUID4. This request is only idempotent if a `request_id` is provided. See https://google.aip.dev/155 for more details. */
|
|
4803
|
+
requestId?: string;
|
|
4804
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4805
|
+
upload_protocol?: string;
|
|
4806
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4807
|
+
uploadType?: string;
|
|
4808
|
+
/** Request body */
|
|
4809
|
+
resource: InterceptEndpointGroupAssociation;
|
|
4810
|
+
}): Request<Operation>;
|
|
4811
|
+
create(
|
|
4812
|
+
request: {
|
|
4813
|
+
/** V1 error format. */
|
|
4814
|
+
'$.xgafv'?: string;
|
|
4815
|
+
/** OAuth access token. */
|
|
4816
|
+
access_token?: string;
|
|
4817
|
+
/** Data format for response. */
|
|
4818
|
+
alt?: string;
|
|
4819
|
+
/** JSONP */
|
|
4820
|
+
callback?: string;
|
|
4821
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4822
|
+
fields?: string;
|
|
4823
|
+
/** Optional. The ID to use for the new association, which will become the final component of the endpoint group's resource name. If not provided, the server will generate a unique ID. */
|
|
4824
|
+
interceptEndpointGroupAssociationId?: string;
|
|
4825
|
+
/** 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. */
|
|
4826
|
+
key?: string;
|
|
4827
|
+
/** OAuth 2.0 token for the current user. */
|
|
4828
|
+
oauth_token?: string;
|
|
4829
|
+
/** Required. The parent resource where this association will be created. Format: projects/{project}/locations/{location} */
|
|
4830
|
+
parent: string;
|
|
4831
|
+
/** Returns response with indentations and line breaks. */
|
|
4832
|
+
prettyPrint?: boolean;
|
|
4833
|
+
/** 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. */
|
|
4834
|
+
quotaUser?: string;
|
|
4835
|
+
/** Optional. A unique identifier for this request. Must be a UUID4. This request is only idempotent if a `request_id` is provided. See https://google.aip.dev/155 for more details. */
|
|
4836
|
+
requestId?: string;
|
|
4837
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4838
|
+
upload_protocol?: string;
|
|
4839
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4840
|
+
uploadType?: string;
|
|
4841
|
+
},
|
|
4842
|
+
body: InterceptEndpointGroupAssociation,
|
|
4843
|
+
): Request<Operation>;
|
|
4844
|
+
/** Deletes an association. See https://google.aip.dev/135. */
|
|
4845
|
+
delete(request?: {
|
|
4846
|
+
/** V1 error format. */
|
|
4847
|
+
'$.xgafv'?: string;
|
|
4848
|
+
/** OAuth access token. */
|
|
4849
|
+
access_token?: string;
|
|
4850
|
+
/** Data format for response. */
|
|
4851
|
+
alt?: string;
|
|
4852
|
+
/** JSONP */
|
|
4853
|
+
callback?: string;
|
|
4854
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4855
|
+
fields?: string;
|
|
4856
|
+
/** 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. */
|
|
4857
|
+
key?: string;
|
|
4858
|
+
/** Required. The association to delete. */
|
|
4859
|
+
name: string;
|
|
4860
|
+
/** OAuth 2.0 token for the current user. */
|
|
4861
|
+
oauth_token?: string;
|
|
4862
|
+
/** Returns response with indentations and line breaks. */
|
|
4863
|
+
prettyPrint?: boolean;
|
|
4864
|
+
/** 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. */
|
|
4865
|
+
quotaUser?: string;
|
|
4866
|
+
/** Optional. A unique identifier for this request. Must be a UUID4. This request is only idempotent if a `request_id` is provided. See https://google.aip.dev/155 for more details. */
|
|
4867
|
+
requestId?: string;
|
|
4868
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4869
|
+
upload_protocol?: string;
|
|
4870
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4871
|
+
uploadType?: string;
|
|
4872
|
+
}): Request<Operation>;
|
|
4873
|
+
/** Gets a specific association. See https://google.aip.dev/131. */
|
|
4874
|
+
get(request?: {
|
|
4875
|
+
/** V1 error format. */
|
|
4876
|
+
'$.xgafv'?: string;
|
|
4877
|
+
/** OAuth access token. */
|
|
4878
|
+
access_token?: string;
|
|
4879
|
+
/** Data format for response. */
|
|
4880
|
+
alt?: string;
|
|
4881
|
+
/** JSONP */
|
|
4882
|
+
callback?: string;
|
|
4883
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4884
|
+
fields?: string;
|
|
4885
|
+
/** 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. */
|
|
4886
|
+
key?: string;
|
|
4887
|
+
/** Required. The name of the association to retrieve. Format: projects/{project}/locations/{location}/interceptEndpointGroupAssociations/{intercept_endpoint_group_association} */
|
|
4888
|
+
name: string;
|
|
4889
|
+
/** OAuth 2.0 token for the current user. */
|
|
4890
|
+
oauth_token?: string;
|
|
4891
|
+
/** Returns response with indentations and line breaks. */
|
|
4892
|
+
prettyPrint?: boolean;
|
|
4893
|
+
/** 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. */
|
|
4894
|
+
quotaUser?: string;
|
|
4895
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4896
|
+
upload_protocol?: string;
|
|
4897
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4898
|
+
uploadType?: string;
|
|
4899
|
+
}): Request<InterceptEndpointGroupAssociation>;
|
|
4900
|
+
/** Lists associations in a given project and location. See https://google.aip.dev/132. */
|
|
4901
|
+
list(request?: {
|
|
4902
|
+
/** V1 error format. */
|
|
4903
|
+
'$.xgafv'?: string;
|
|
4904
|
+
/** OAuth access token. */
|
|
4905
|
+
access_token?: string;
|
|
4906
|
+
/** Data format for response. */
|
|
4907
|
+
alt?: string;
|
|
4908
|
+
/** JSONP */
|
|
4909
|
+
callback?: string;
|
|
4910
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4911
|
+
fields?: string;
|
|
4912
|
+
/** Optional. Filter expression. See https://google.aip.dev/160#filtering for more details. */
|
|
4913
|
+
filter?: string;
|
|
4914
|
+
/** 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. */
|
|
4915
|
+
key?: string;
|
|
4916
|
+
/** OAuth 2.0 token for the current user. */
|
|
4917
|
+
oauth_token?: string;
|
|
4918
|
+
/** Optional. Sort expression. See https://google.aip.dev/132#ordering for more details. */
|
|
4919
|
+
orderBy?: string;
|
|
4920
|
+
/** Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default. See https://google.aip.dev/158 for more details. */
|
|
4921
|
+
pageSize?: number;
|
|
4922
|
+
/** Optional. A page token, received from a previous `ListInterceptEndpointGroups` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListInterceptEndpointGroups` must match the call that provided the page token. See https://google.aip.dev/158 for more details. */
|
|
4923
|
+
pageToken?: string;
|
|
4924
|
+
/** Required. The parent, which owns this collection of associations. Example: `projects/123456789/locations/global`. See https://google.aip.dev/132 for more details. */
|
|
4925
|
+
parent: string;
|
|
4926
|
+
/** Returns response with indentations and line breaks. */
|
|
4927
|
+
prettyPrint?: boolean;
|
|
4928
|
+
/** 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. */
|
|
4929
|
+
quotaUser?: string;
|
|
4930
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4931
|
+
upload_protocol?: string;
|
|
4932
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4933
|
+
uploadType?: string;
|
|
4934
|
+
}): Request<ListInterceptEndpointGroupAssociationsResponse>;
|
|
4935
|
+
/** Updates an association. See https://google.aip.dev/134. */
|
|
4936
|
+
patch(request: {
|
|
4937
|
+
/** V1 error format. */
|
|
4938
|
+
'$.xgafv'?: string;
|
|
4939
|
+
/** OAuth access token. */
|
|
4940
|
+
access_token?: string;
|
|
4941
|
+
/** Data format for response. */
|
|
4942
|
+
alt?: string;
|
|
4943
|
+
/** JSONP */
|
|
4944
|
+
callback?: string;
|
|
4945
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4946
|
+
fields?: string;
|
|
4947
|
+
/** 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. */
|
|
4948
|
+
key?: string;
|
|
4949
|
+
/** Immutable. Identifier. The resource name of this endpoint group association, for example: `projects/123456789/locations/global/interceptEndpointGroupAssociations/my-eg-association`. See https://google.aip.dev/122 for more details. */
|
|
4950
|
+
name: string;
|
|
4951
|
+
/** OAuth 2.0 token for the current user. */
|
|
4952
|
+
oauth_token?: string;
|
|
4953
|
+
/** Returns response with indentations and line breaks. */
|
|
4954
|
+
prettyPrint?: boolean;
|
|
4955
|
+
/** 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. */
|
|
4956
|
+
quotaUser?: string;
|
|
4957
|
+
/** Optional. A unique identifier for this request. Must be a UUID4. This request is only idempotent if a `request_id` is provided. See https://google.aip.dev/155 for more details. */
|
|
4958
|
+
requestId?: string;
|
|
4959
|
+
/** Optional. The list of fields to update. Fields are specified relative to the association (e.g. `description`; *not* `intercept_endpoint_group_association.description`). See https://google.aip.dev/161 for more details. */
|
|
4960
|
+
updateMask?: string;
|
|
4961
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4962
|
+
upload_protocol?: string;
|
|
4963
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4964
|
+
uploadType?: string;
|
|
4965
|
+
/** Request body */
|
|
4966
|
+
resource: InterceptEndpointGroupAssociation;
|
|
4967
|
+
}): Request<Operation>;
|
|
4968
|
+
patch(
|
|
4969
|
+
request: {
|
|
4970
|
+
/** V1 error format. */
|
|
4971
|
+
'$.xgafv'?: string;
|
|
4972
|
+
/** OAuth access token. */
|
|
4973
|
+
access_token?: string;
|
|
4974
|
+
/** Data format for response. */
|
|
4975
|
+
alt?: string;
|
|
4976
|
+
/** JSONP */
|
|
4977
|
+
callback?: string;
|
|
4978
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4979
|
+
fields?: string;
|
|
4980
|
+
/** 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. */
|
|
4981
|
+
key?: string;
|
|
4982
|
+
/** Immutable. Identifier. The resource name of this endpoint group association, for example: `projects/123456789/locations/global/interceptEndpointGroupAssociations/my-eg-association`. See https://google.aip.dev/122 for more details. */
|
|
4983
|
+
name: string;
|
|
4984
|
+
/** OAuth 2.0 token for the current user. */
|
|
4985
|
+
oauth_token?: string;
|
|
4986
|
+
/** Returns response with indentations and line breaks. */
|
|
4987
|
+
prettyPrint?: boolean;
|
|
4988
|
+
/** 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. */
|
|
4989
|
+
quotaUser?: string;
|
|
4990
|
+
/** Optional. A unique identifier for this request. Must be a UUID4. This request is only idempotent if a `request_id` is provided. See https://google.aip.dev/155 for more details. */
|
|
4991
|
+
requestId?: string;
|
|
4992
|
+
/** Optional. The list of fields to update. Fields are specified relative to the association (e.g. `description`; *not* `intercept_endpoint_group_association.description`). See https://google.aip.dev/161 for more details. */
|
|
4993
|
+
updateMask?: string;
|
|
4994
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4995
|
+
upload_protocol?: string;
|
|
4996
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4997
|
+
uploadType?: string;
|
|
4998
|
+
},
|
|
4999
|
+
body: InterceptEndpointGroupAssociation,
|
|
5000
|
+
): Request<Operation>;
|
|
5001
|
+
}
|
|
5002
|
+
interface InterceptEndpointGroupsResource {
|
|
5003
|
+
/** Creates an endpoint group in a given project and location. See https://google.aip.dev/133. */
|
|
5004
|
+
create(request: {
|
|
5005
|
+
/** V1 error format. */
|
|
5006
|
+
'$.xgafv'?: string;
|
|
5007
|
+
/** OAuth access token. */
|
|
5008
|
+
access_token?: string;
|
|
5009
|
+
/** Data format for response. */
|
|
5010
|
+
alt?: string;
|
|
5011
|
+
/** JSONP */
|
|
5012
|
+
callback?: string;
|
|
5013
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
5014
|
+
fields?: string;
|
|
5015
|
+
/** Required. The ID to use for the endpoint group, which will become the final component of the endpoint group's resource name. */
|
|
5016
|
+
interceptEndpointGroupId?: string;
|
|
5017
|
+
/** 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. */
|
|
5018
|
+
key?: string;
|
|
5019
|
+
/** OAuth 2.0 token for the current user. */
|
|
5020
|
+
oauth_token?: string;
|
|
5021
|
+
/** Required. The parent resource where this endpoint group will be created. Format: projects/{project}/locations/{location} */
|
|
5022
|
+
parent: string;
|
|
5023
|
+
/** Returns response with indentations and line breaks. */
|
|
5024
|
+
prettyPrint?: boolean;
|
|
5025
|
+
/** 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. */
|
|
5026
|
+
quotaUser?: string;
|
|
5027
|
+
/** Optional. A unique identifier for this request. Must be a UUID4. This request is only idempotent if a `request_id` is provided. See https://google.aip.dev/155 for more details. */
|
|
5028
|
+
requestId?: string;
|
|
5029
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5030
|
+
upload_protocol?: string;
|
|
5031
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5032
|
+
uploadType?: string;
|
|
5033
|
+
/** Request body */
|
|
5034
|
+
resource: InterceptEndpointGroup;
|
|
5035
|
+
}): Request<Operation>;
|
|
5036
|
+
create(
|
|
5037
|
+
request: {
|
|
5038
|
+
/** V1 error format. */
|
|
5039
|
+
'$.xgafv'?: string;
|
|
5040
|
+
/** OAuth access token. */
|
|
5041
|
+
access_token?: string;
|
|
5042
|
+
/** Data format for response. */
|
|
5043
|
+
alt?: string;
|
|
5044
|
+
/** JSONP */
|
|
5045
|
+
callback?: string;
|
|
5046
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
5047
|
+
fields?: string;
|
|
5048
|
+
/** Required. The ID to use for the endpoint group, which will become the final component of the endpoint group's resource name. */
|
|
5049
|
+
interceptEndpointGroupId?: string;
|
|
5050
|
+
/** 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. */
|
|
5051
|
+
key?: string;
|
|
5052
|
+
/** OAuth 2.0 token for the current user. */
|
|
5053
|
+
oauth_token?: string;
|
|
5054
|
+
/** Required. The parent resource where this endpoint group will be created. Format: projects/{project}/locations/{location} */
|
|
5055
|
+
parent: string;
|
|
5056
|
+
/** Returns response with indentations and line breaks. */
|
|
5057
|
+
prettyPrint?: boolean;
|
|
5058
|
+
/** 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. */
|
|
5059
|
+
quotaUser?: string;
|
|
5060
|
+
/** Optional. A unique identifier for this request. Must be a UUID4. This request is only idempotent if a `request_id` is provided. See https://google.aip.dev/155 for more details. */
|
|
5061
|
+
requestId?: string;
|
|
5062
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5063
|
+
upload_protocol?: string;
|
|
5064
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5065
|
+
uploadType?: string;
|
|
5066
|
+
},
|
|
5067
|
+
body: InterceptEndpointGroup,
|
|
5068
|
+
): Request<Operation>;
|
|
5069
|
+
/** Deletes an endpoint group. See https://google.aip.dev/135. */
|
|
5070
|
+
delete(request?: {
|
|
5071
|
+
/** V1 error format. */
|
|
5072
|
+
'$.xgafv'?: string;
|
|
5073
|
+
/** OAuth access token. */
|
|
5074
|
+
access_token?: string;
|
|
5075
|
+
/** Data format for response. */
|
|
5076
|
+
alt?: string;
|
|
5077
|
+
/** JSONP */
|
|
5078
|
+
callback?: string;
|
|
5079
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
5080
|
+
fields?: string;
|
|
5081
|
+
/** 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. */
|
|
5082
|
+
key?: string;
|
|
5083
|
+
/** Required. The endpoint group to delete. */
|
|
5084
|
+
name: string;
|
|
5085
|
+
/** OAuth 2.0 token for the current user. */
|
|
5086
|
+
oauth_token?: string;
|
|
5087
|
+
/** Returns response with indentations and line breaks. */
|
|
5088
|
+
prettyPrint?: boolean;
|
|
5089
|
+
/** 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. */
|
|
5090
|
+
quotaUser?: string;
|
|
5091
|
+
/** Optional. A unique identifier for this request. Must be a UUID4. This request is only idempotent if a `request_id` is provided. See https://google.aip.dev/155 for more details. */
|
|
5092
|
+
requestId?: string;
|
|
5093
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5094
|
+
upload_protocol?: string;
|
|
5095
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5096
|
+
uploadType?: string;
|
|
5097
|
+
}): Request<Operation>;
|
|
5098
|
+
/** Gets a specific endpoint group. See https://google.aip.dev/131. */
|
|
5099
|
+
get(request?: {
|
|
5100
|
+
/** V1 error format. */
|
|
5101
|
+
'$.xgafv'?: string;
|
|
5102
|
+
/** OAuth access token. */
|
|
5103
|
+
access_token?: string;
|
|
5104
|
+
/** Data format for response. */
|
|
5105
|
+
alt?: string;
|
|
5106
|
+
/** JSONP */
|
|
5107
|
+
callback?: string;
|
|
5108
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
5109
|
+
fields?: string;
|
|
5110
|
+
/** 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. */
|
|
5111
|
+
key?: string;
|
|
5112
|
+
/** Required. The name of the endpoint group to retrieve. Format: projects/{project}/locations/{location}/interceptEndpointGroups/{intercept_endpoint_group} */
|
|
5113
|
+
name: string;
|
|
5114
|
+
/** OAuth 2.0 token for the current user. */
|
|
5115
|
+
oauth_token?: string;
|
|
5116
|
+
/** Returns response with indentations and line breaks. */
|
|
5117
|
+
prettyPrint?: boolean;
|
|
5118
|
+
/** 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. */
|
|
5119
|
+
quotaUser?: string;
|
|
5120
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5121
|
+
upload_protocol?: string;
|
|
5122
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5123
|
+
uploadType?: string;
|
|
5124
|
+
}): Request<InterceptEndpointGroup>;
|
|
5125
|
+
/** Lists endpoint groups in a given project and location. See https://google.aip.dev/132. */
|
|
5126
|
+
list(request?: {
|
|
5127
|
+
/** V1 error format. */
|
|
5128
|
+
'$.xgafv'?: string;
|
|
5129
|
+
/** OAuth access token. */
|
|
5130
|
+
access_token?: string;
|
|
5131
|
+
/** Data format for response. */
|
|
5132
|
+
alt?: string;
|
|
5133
|
+
/** JSONP */
|
|
5134
|
+
callback?: string;
|
|
5135
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
5136
|
+
fields?: string;
|
|
5137
|
+
/** Optional. Filter expression. See https://google.aip.dev/160#filtering for more details. */
|
|
5138
|
+
filter?: string;
|
|
5139
|
+
/** 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. */
|
|
5140
|
+
key?: string;
|
|
5141
|
+
/** OAuth 2.0 token for the current user. */
|
|
5142
|
+
oauth_token?: string;
|
|
5143
|
+
/** Optional. Sort expression. See https://google.aip.dev/132#ordering for more details. */
|
|
5144
|
+
orderBy?: string;
|
|
5145
|
+
/** Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default. See https://google.aip.dev/158 for more details. */
|
|
5146
|
+
pageSize?: number;
|
|
5147
|
+
/** Optional. A page token, received from a previous `ListInterceptEndpointGroups` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListInterceptEndpointGroups` must match the call that provided the page token. See https://google.aip.dev/158 for more details. */
|
|
5148
|
+
pageToken?: string;
|
|
5149
|
+
/** Required. The parent, which owns this collection of endpoint groups. Example: `projects/123456789/locations/global`. See https://google.aip.dev/132 for more details. */
|
|
5150
|
+
parent: string;
|
|
5151
|
+
/** Returns response with indentations and line breaks. */
|
|
5152
|
+
prettyPrint?: boolean;
|
|
5153
|
+
/** 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. */
|
|
5154
|
+
quotaUser?: string;
|
|
5155
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5156
|
+
upload_protocol?: string;
|
|
5157
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5158
|
+
uploadType?: string;
|
|
5159
|
+
}): Request<ListInterceptEndpointGroupsResponse>;
|
|
5160
|
+
/** Updates an endpoint group. See https://google.aip.dev/134. */
|
|
5161
|
+
patch(request: {
|
|
5162
|
+
/** V1 error format. */
|
|
5163
|
+
'$.xgafv'?: string;
|
|
5164
|
+
/** OAuth access token. */
|
|
5165
|
+
access_token?: string;
|
|
5166
|
+
/** Data format for response. */
|
|
5167
|
+
alt?: string;
|
|
5168
|
+
/** JSONP */
|
|
5169
|
+
callback?: string;
|
|
5170
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
5171
|
+
fields?: string;
|
|
5172
|
+
/** 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. */
|
|
5173
|
+
key?: string;
|
|
5174
|
+
/** Immutable. Identifier. The resource name of this endpoint group, for example: `projects/123456789/locations/global/interceptEndpointGroups/my-eg`. See https://google.aip.dev/122 for more details. */
|
|
5175
|
+
name: string;
|
|
5176
|
+
/** OAuth 2.0 token for the current user. */
|
|
5177
|
+
oauth_token?: string;
|
|
5178
|
+
/** Returns response with indentations and line breaks. */
|
|
5179
|
+
prettyPrint?: boolean;
|
|
5180
|
+
/** 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. */
|
|
5181
|
+
quotaUser?: string;
|
|
5182
|
+
/** Optional. A unique identifier for this request. Must be a UUID4. This request is only idempotent if a `request_id` is provided. See https://google.aip.dev/155 for more details. */
|
|
5183
|
+
requestId?: string;
|
|
5184
|
+
/** Optional. The list of fields to update. Fields are specified relative to the endpoint group (e.g. `description`; *not* `intercept_endpoint_group.description`). See https://google.aip.dev/161 for more details. */
|
|
5185
|
+
updateMask?: string;
|
|
5186
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5187
|
+
upload_protocol?: string;
|
|
5188
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5189
|
+
uploadType?: string;
|
|
5190
|
+
/** Request body */
|
|
5191
|
+
resource: InterceptEndpointGroup;
|
|
5192
|
+
}): Request<Operation>;
|
|
5193
|
+
patch(
|
|
5194
|
+
request: {
|
|
5195
|
+
/** V1 error format. */
|
|
5196
|
+
'$.xgafv'?: string;
|
|
5197
|
+
/** OAuth access token. */
|
|
5198
|
+
access_token?: string;
|
|
5199
|
+
/** Data format for response. */
|
|
5200
|
+
alt?: string;
|
|
5201
|
+
/** JSONP */
|
|
5202
|
+
callback?: string;
|
|
5203
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
5204
|
+
fields?: string;
|
|
5205
|
+
/** 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. */
|
|
5206
|
+
key?: string;
|
|
5207
|
+
/** Immutable. Identifier. The resource name of this endpoint group, for example: `projects/123456789/locations/global/interceptEndpointGroups/my-eg`. See https://google.aip.dev/122 for more details. */
|
|
5208
|
+
name: string;
|
|
5209
|
+
/** OAuth 2.0 token for the current user. */
|
|
5210
|
+
oauth_token?: string;
|
|
5211
|
+
/** Returns response with indentations and line breaks. */
|
|
5212
|
+
prettyPrint?: boolean;
|
|
5213
|
+
/** 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. */
|
|
5214
|
+
quotaUser?: string;
|
|
5215
|
+
/** Optional. A unique identifier for this request. Must be a UUID4. This request is only idempotent if a `request_id` is provided. See https://google.aip.dev/155 for more details. */
|
|
5216
|
+
requestId?: string;
|
|
5217
|
+
/** Optional. The list of fields to update. Fields are specified relative to the endpoint group (e.g. `description`; *not* `intercept_endpoint_group.description`). See https://google.aip.dev/161 for more details. */
|
|
5218
|
+
updateMask?: string;
|
|
5219
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5220
|
+
upload_protocol?: string;
|
|
5221
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5222
|
+
uploadType?: string;
|
|
5223
|
+
},
|
|
5224
|
+
body: InterceptEndpointGroup,
|
|
5225
|
+
): Request<Operation>;
|
|
5226
|
+
}
|
|
4177
5227
|
interface MirroringDeploymentGroupsResource {
|
|
4178
5228
|
/** Creates a deployment group in a given project and location. See https://google.aip.dev/133. */
|
|
4179
5229
|
create(request: {
|
|
@@ -5985,6 +7035,8 @@ declare namespace gapi.client {
|
|
|
5985
7035
|
alt?: string;
|
|
5986
7036
|
/** JSONP */
|
|
5987
7037
|
callback?: string;
|
|
7038
|
+
/** Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations. */
|
|
7039
|
+
extraLocationTypes?: string | string[];
|
|
5988
7040
|
/** Selector specifying which fields to include in a partial response. */
|
|
5989
7041
|
fields?: string;
|
|
5990
7042
|
/** 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 [AIP-160](https://google.aip.dev/160). */
|
|
@@ -6014,6 +7066,10 @@ declare namespace gapi.client {
|
|
|
6014
7066
|
clientTlsPolicies: ClientTlsPoliciesResource;
|
|
6015
7067
|
firewallEndpointAssociations: FirewallEndpointAssociationsResource;
|
|
6016
7068
|
gatewaySecurityPolicies: GatewaySecurityPoliciesResource;
|
|
7069
|
+
interceptDeploymentGroups: InterceptDeploymentGroupsResource;
|
|
7070
|
+
interceptDeployments: InterceptDeploymentsResource;
|
|
7071
|
+
interceptEndpointGroupAssociations: InterceptEndpointGroupAssociationsResource;
|
|
7072
|
+
interceptEndpointGroups: InterceptEndpointGroupsResource;
|
|
6017
7073
|
mirroringDeploymentGroups: MirroringDeploymentGroupsResource;
|
|
6018
7074
|
mirroringDeployments: MirroringDeploymentsResource;
|
|
6019
7075
|
mirroringEndpointGroupAssociations: MirroringEndpointGroupAssociationsResource;
|