@maxim_mazurok/gapi.client.networksecurity-v1beta1 0.0.20250211 → 0.0.20250310

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.d.ts +294 -232
  2. 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: 20250211
12
+ // Revision: 20250310
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -113,7 +113,7 @@ declare namespace gapi.client {
113
113
  sources?: AuthzPolicyAuthzRuleFromRequestSource[];
114
114
  }
115
115
  interface AuthzPolicyAuthzRuleFromRequestSource {
116
- /** Optional. A list of identities derived from the client's certificate. This field will not match on a request unless mutual TLS is enabled for the Forwarding rule or Gateway. Each identity is a string whose value is matched against the URI SAN, or DNS SAN or the subject field in the client's certificate. The match can be exact, prefix, suffix or a substring match. One of exact, prefix, suffix or contains must be specified. Limited to 5 principals. */
116
+ /** Optional. A list of identities derived from the client's certificate. This field will not match on a request unless mutual TLS is enabled for the forwarding rule or Gateway. For Application Load Balancers, each identity is a string whose value is matched against the URI SAN, or DNS SAN, or SPIFFE ID, or the subject field in the client's certificate. For Cloud Service Mesh, each identity is a string whose value is matched against the URI SAN, or DNS SAN, or the subject field in the client's certificate. The match can be exact, prefix, suffix, or a substring match. One of exact, prefix, suffix, or contains must be specified. Limited to 5 principals. */
117
117
  principals?: AuthzPolicyAuthzRuleStringMatch[];
118
118
  /** Optional. A list of resources to match against the resource of the source VM of a request. Limited to 5 resources. */
119
119
  resources?: AuthzPolicyAuthzRuleRequestResource[];
@@ -410,101 +410,127 @@ declare namespace gapi.client {
410
410
  regexMatch?: string;
411
411
  }
412
412
  interface InterceptDeployment {
413
- /** Output only. [Output only] Create time stamp */
413
+ /** Output only. The timestamp when the resource was created. See https://google.aip.dev/148#timestamps. */
414
414
  createTime?: string;
415
415
  /** Optional. User-provided description of the deployment. Used as additional context for the deployment. */
416
416
  description?: string;
417
- /** Required. Immutable. The regional load balancer which the intercepted traffic should be forwarded to. Format is: projects/{project}/regions/{region}/forwardingRules/{forwardingRule} */
417
+ /** 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. */
418
418
  forwardingRule?: string;
419
- /** Required. Immutable. The Intercept Deployment Group that this resource is part of. Format is: `projects/{project}/locations/global/interceptDeploymentGroups/{interceptDeploymentGroup}` */
419
+ /** 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. */
420
420
  interceptDeploymentGroup?: string;
421
- /** Optional. Labels as key value pairs */
421
+ /** Optional. Labels are key/value pairs that help to organize and filter resources. */
422
422
  labels?: {[P in string]: string};
423
- /** Immutable. Identifier. The name of the InterceptDeployment. */
423
+ /** 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. */
424
424
  name?: string;
425
- /** Output only. Whether reconciling is in progress, recommended per https://google.aip.dev/128. */
425
+ /** 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. */
426
426
  reconciling?: boolean;
427
- /** Output only. Current state of the deployment. */
427
+ /** Output only. The current state of the deployment. See https://google.aip.dev/216. */
428
428
  state?: string;
429
- /** Output only. [Output only] Update time stamp */
429
+ /** Output only. The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps. */
430
430
  updateTime?: string;
431
431
  }
432
432
  interface InterceptDeploymentGroup {
433
- /** Output only. The list of Intercept Endpoint Groups that are connected to this resource. */
433
+ /** Output only. The list of endpoint groups that are connected to this resource. */
434
434
  connectedEndpointGroups?: InterceptDeploymentGroupConnectedEndpointGroup[];
435
- /** Output only. [Output only] Create time stamp */
435
+ /** Output only. The timestamp when the resource was created. See https://google.aip.dev/148#timestamps. */
436
436
  createTime?: string;
437
437
  /** Optional. User-provided description of the deployment group. Used as additional context for the deployment group. */
438
438
  description?: string;
439
- /** Optional. Labels as key value pairs */
439
+ /** Optional. Labels are key/value pairs that help to organize and filter resources. */
440
440
  labels?: {[P in string]: string};
441
- /** Immutable. Identifier. Then name of the InterceptDeploymentGroup. */
441
+ /** Output only. The list of locations where the deployment group is present. */
442
+ locations?: InterceptLocation[];
443
+ /** 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. */
442
444
  name?: string;
443
- /** Required. Immutable. The network that is being used for the deployment. Format is: projects/{project}/global/networks/{network}. */
445
+ /** Output only. The list of Intercept Deployments that belong to this group. */
446
+ nestedDeployments?: InterceptDeploymentGroupDeployment[];
447
+ /** 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. */
444
448
  network?: string;
445
- /** Output only. Whether reconciling is in progress, recommended per https://google.aip.dev/128. */
449
+ /** 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. */
446
450
  reconciling?: boolean;
447
- /** Output only. Current state of the deployment group. */
451
+ /** Output only. The current state of the deployment group. See https://google.aip.dev/216. */
448
452
  state?: string;
449
- /** Output only. [Output only] Update time stamp */
453
+ /** Output only. The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps. */
450
454
  updateTime?: string;
451
455
  }
452
456
  interface InterceptDeploymentGroupConnectedEndpointGroup {
453
- /** Output only. A connected intercept endpoint group. */
457
+ /** Output only. The connected endpoint group's resource name, for example: `projects/123456789/locations/global/interceptEndpointGroups/my-eg`. See https://google.aip.dev/124. */
454
458
  name?: string;
455
459
  }
460
+ interface InterceptDeploymentGroupDeployment {
461
+ /** Output only. The name of the Intercept Deployment, in the format: `projects/{project}/locations/{location}/interceptDeployments/{intercept_deployment}`. */
462
+ name?: string;
463
+ /** Output only. Most recent known state of the deployment. */
464
+ state?: string;
465
+ }
456
466
  interface InterceptEndpointGroup {
457
- /** Output only. List of Intercept Endpoint Group Associations that are associated to this endpoint group. */
467
+ /** Output only. List of associations to this endpoint group. */
458
468
  associations?: InterceptEndpointGroupAssociationDetails[];
459
- /** Output only. [Output only] Create time stamp */
469
+ /** Output only. Details about the connected deployment group to this endpoint group. */
470
+ connectedDeploymentGroup?: InterceptEndpointGroupConnectedDeploymentGroup;
471
+ /** Output only. The timestamp when the resource was created. See https://google.aip.dev/148#timestamps. */
460
472
  createTime?: string;
461
473
  /** Optional. User-provided description of the endpoint group. Used as additional context for the endpoint group. */
462
474
  description?: string;
463
- /** Required. Immutable. The Intercept Deployment Group that this resource is connected to. Format is: `projects/{project}/locations/global/interceptDeploymentGroups/{interceptDeploymentGroup}` */
475
+ /** 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. */
464
476
  interceptDeploymentGroup?: string;
465
- /** Optional. Labels as key value pairs */
477
+ /** Optional. Labels are key/value pairs that help to organize and filter resources. */
466
478
  labels?: {[P in string]: string};
467
- /** Immutable. Identifier. The name of the InterceptEndpointGroup. */
479
+ /** 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. */
468
480
  name?: string;
469
- /** Output only. Whether reconciling is in progress, recommended per https://google.aip.dev/128. */
481
+ /** 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. */
470
482
  reconciling?: boolean;
471
- /** Output only. Current state of the endpoint group. */
483
+ /** Output only. The current state of the endpoint group. See https://google.aip.dev/216. */
472
484
  state?: string;
473
- /** Output only. [Output only] Update time stamp */
485
+ /** Output only. The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps. */
474
486
  updateTime?: string;
475
487
  }
476
488
  interface InterceptEndpointGroupAssociation {
477
- /** Output only. [Output only] Create time stamp */
489
+ /** Output only. The timestamp when the resource was created. See https://google.aip.dev/148#timestamps. */
478
490
  createTime?: string;
479
- /** Required. Immutable. The Intercept Endpoint Group that this resource is connected to. Format is: `projects/{project}/locations/global/interceptEndpointGroups/{interceptEndpointGroup}` */
491
+ /** 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. */
480
492
  interceptEndpointGroup?: string;
481
- /** Optional. Labels as key value pairs */
493
+ /** Optional. Labels are key/value pairs that help to organize and filter resources. */
482
494
  labels?: {[P in string]: string};
483
- /** Output only. The list of locations that this association is in and its details. */
495
+ /** Output only. The list of locations where the association is configured. This information is retrieved from the linked endpoint group. */
496
+ locations?: InterceptLocation[];
497
+ /** 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. */
484
498
  locationsDetails?: InterceptEndpointGroupAssociationLocationDetails[];
485
- /** Immutable. Identifier. The name of the InterceptEndpointGroupAssociation. */
499
+ /** 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. */
486
500
  name?: string;
487
- /** Required. Immutable. The VPC network associated. Format: projects/{project}/global/networks/{network}. */
501
+ /** Required. Immutable. The VPC network that is associated. for example: `projects/123456789/global/networks/my-network`. See https://google.aip.dev/124. */
488
502
  network?: string;
489
- /** Output only. Whether reconciling is in progress, recommended per https://google.aip.dev/128. */
503
+ /** 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. */
490
504
  reconciling?: boolean;
491
505
  /** Output only. Current state of the endpoint group association. */
492
506
  state?: string;
493
- /** Output only. [Output only] Update time stamp */
507
+ /** Output only. The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps. */
494
508
  updateTime?: string;
495
509
  }
496
510
  interface InterceptEndpointGroupAssociationDetails {
497
- /** Output only. The resource name of the InterceptEndpointGroupAssociation. Format: projects/{project}/locations/{location}/interceptEndpointGroupAssociations/{interceptEndpointGroupAssociation} */
511
+ /** Output only. The connected association's resource name, for example: `projects/123456789/locations/global/interceptEndpointGroupAssociations/my-ega`. See https://google.aip.dev/124. */
498
512
  name?: string;
499
- /** Output only. The VPC network associated. Format: projects/{project}/global/networks/{name}. */
513
+ /** Output only. The associated network, for example: projects/123456789/global/networks/my-network. See https://google.aip.dev/124. */
500
514
  network?: string;
501
- /** Output only. Current state of the association. */
515
+ /** Output only. Most recent known state of the association. */
502
516
  state?: string;
503
517
  }
504
518
  interface InterceptEndpointGroupAssociationLocationDetails {
505
- /** Output only. The cloud location. */
519
+ /** Output only. The cloud location, e.g. "us-central1-a" or "asia-south1". */
506
520
  location?: string;
507
- /** Output only. The association state in this location. */
521
+ /** Output only. The current state of the association in this location. */
522
+ state?: string;
523
+ }
524
+ interface InterceptEndpointGroupConnectedDeploymentGroup {
525
+ /** Output only. The list of locations where the deployment group is present. */
526
+ locations?: InterceptLocation[];
527
+ /** Output only. The connected deployment group's resource name, for example: `projects/123456789/locations/global/interceptDeploymentGroups/my-dg`. See https://google.aip.dev/124. */
528
+ name?: string;
529
+ }
530
+ interface InterceptLocation {
531
+ /** Output only. The cloud location, e.g. "us-central1-a" or "asia-south1". */
532
+ location?: string;
533
+ /** Output only. The current state of the association in this location. */
508
534
  state?: string;
509
535
  }
510
536
  interface ListAddressGroupReferencesResponse {
@@ -526,6 +552,8 @@ declare namespace gapi.client {
526
552
  addressGroups?: AddressGroup[];
527
553
  /** If there might be more results than those appearing in this response, then `next_page_token` is included. To get the next set of results, call this method again using the value of `next_page_token` as `page_token`. */
528
554
  nextPageToken?: string;
555
+ /** Locations that could not be reached. */
556
+ unreachable?: string[];
529
557
  }
530
558
  interface ListAuthorizationPoliciesResponse {
531
559
  /** List of AuthorizationPolicies resources. */
@@ -588,29 +616,29 @@ declare namespace gapi.client {
588
616
  unreachable?: string[];
589
617
  }
590
618
  interface ListInterceptDeploymentGroupsResponse {
591
- /** The list of InterceptDeploymentGroup */
619
+ /** The deployment groups from the specified parent. */
592
620
  interceptDeploymentGroups?: InterceptDeploymentGroup[];
593
- /** A token identifying a page of results the server should return. */
621
+ /** 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
622
  nextPageToken?: string;
595
623
  }
596
624
  interface ListInterceptDeploymentsResponse {
597
- /** The list of InterceptDeployment */
625
+ /** The deployments from the specified parent. */
598
626
  interceptDeployments?: InterceptDeployment[];
599
- /** A token identifying a page of results the server should return. */
627
+ /** 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
628
  nextPageToken?: string;
601
629
  /** Locations that could not be reached. */
602
630
  unreachable?: string[];
603
631
  }
604
632
  interface ListInterceptEndpointGroupAssociationsResponse {
605
- /** The list of InterceptEndpointGroupAssociation */
633
+ /** The associations from the specified parent. */
606
634
  interceptEndpointGroupAssociations?: InterceptEndpointGroupAssociation[];
607
- /** A token identifying a page of results the server should return. */
635
+ /** 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
636
  nextPageToken?: string;
609
637
  }
610
638
  interface ListInterceptEndpointGroupsResponse {
611
- /** The list of InterceptEndpointGroup */
639
+ /** The endpoint groups from the specified parent. */
612
640
  interceptEndpointGroups?: InterceptEndpointGroup[];
613
- /** A token identifying a page of results the server should return. */
641
+ /** 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
642
  nextPageToken?: string;
615
643
  }
616
644
  interface ListLocationsResponse {
@@ -620,29 +648,29 @@ declare namespace gapi.client {
620
648
  nextPageToken?: string;
621
649
  }
622
650
  interface ListMirroringDeploymentGroupsResponse {
623
- /** The list of MirroringDeploymentGroup */
651
+ /** The deployment groups from the specified parent. */
624
652
  mirroringDeploymentGroups?: MirroringDeploymentGroup[];
625
- /** A token identifying a page of results the server should return. */
653
+ /** 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. */
626
654
  nextPageToken?: string;
627
655
  }
628
656
  interface ListMirroringDeploymentsResponse {
629
- /** The list of MirroringDeployment */
657
+ /** The deployments from the specified parent. */
630
658
  mirroringDeployments?: MirroringDeployment[];
631
- /** A token identifying a page of results the server should return. */
659
+ /** 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. */
632
660
  nextPageToken?: string;
633
661
  /** Locations that could not be reached. */
634
662
  unreachable?: string[];
635
663
  }
636
664
  interface ListMirroringEndpointGroupAssociationsResponse {
637
- /** The list of associations returned. */
665
+ /** The associations from the specified parent. */
638
666
  mirroringEndpointGroupAssociations?: MirroringEndpointGroupAssociation[];
639
- /** A token identifying a page of results the server should return. See https://google.aip.dev/158. */
667
+ /** 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. */
640
668
  nextPageToken?: string;
641
669
  }
642
670
  interface ListMirroringEndpointGroupsResponse {
643
- /** The list of MirroringEndpointGroup */
671
+ /** The endpoint groups from the specified parent. */
644
672
  mirroringEndpointGroups?: MirroringEndpointGroup[];
645
- /** A token identifying a page of results the server should return. */
673
+ /** 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. */
646
674
  nextPageToken?: string;
647
675
  }
648
676
  interface ListOperationsResponse {
@@ -668,6 +696,8 @@ declare namespace gapi.client {
668
696
  nextPageToken?: string;
669
697
  /** List of ServerTlsPolicy resources. */
670
698
  serverTlsPolicies?: ServerTlsPolicy[];
699
+ /** Unreachable resources. Populated when the request opts into `return_partial_success` and reading across collections e.g. when attempting to list all resources across all supported locations. */
700
+ unreachable?: string[];
671
701
  }
672
702
  interface ListTlsInspectionPoliciesResponse {
673
703
  /** If there might be more results than those appearing in this response, then 'next_page_token' is included. To get the next set of results, call this method again using the value of 'next_page_token' as 'page_token'. */
@@ -726,8 +756,12 @@ declare namespace gapi.client {
726
756
  description?: string;
727
757
  /** Optional. Labels are key/value pairs that help to organize and filter resources. */
728
758
  labels?: {[P in string]: string};
759
+ /** Output only. The list of locations where the deployment group is present. */
760
+ locations?: MirroringLocation[];
729
761
  /** Immutable. Identifier. The resource name of this deployment group, for example: `projects/123456789/locations/global/mirroringDeploymentGroups/my-dg`. See https://google.aip.dev/122 for more details. */
730
762
  name?: string;
763
+ /** Output only. The list of Mirroring Deployments that belong to this group. */
764
+ nestedDeployments?: MirroringDeploymentGroupDeployment[];
731
765
  /** 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. */
732
766
  network?: string;
733
767
  /** 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. */
@@ -741,9 +775,17 @@ declare namespace gapi.client {
741
775
  /** Output only. The connected endpoint group's resource name, for example: `projects/123456789/locations/global/mirroringEndpointGroups/my-eg`. See https://google.aip.dev/124. */
742
776
  name?: string;
743
777
  }
778
+ interface MirroringDeploymentGroupDeployment {
779
+ /** Output only. The name of the Mirroring Deployment, in the format: `projects/{project}/locations/{location}/mirroringDeployments/{mirroring_deployment}`. */
780
+ name?: string;
781
+ /** Output only. Most recent known state of the deployment. */
782
+ state?: string;
783
+ }
744
784
  interface MirroringEndpointGroup {
745
785
  /** Output only. List of associations to this endpoint group. */
746
786
  associations?: MirroringEndpointGroupAssociationDetails[];
787
+ /** Output only. List of details about the connected deployment groups to this endpoint group. */
788
+ connectedDeploymentGroups?: MirroringEndpointGroupConnectedDeploymentGroup[];
747
789
  /** Output only. The timestamp when the resource was created. See https://google.aip.dev/148#timestamps. */
748
790
  createTime?: string;
749
791
  /** Optional. User-provided description of the endpoint group. Used as additional context for the endpoint group. */
@@ -766,6 +808,8 @@ declare namespace gapi.client {
766
808
  createTime?: string;
767
809
  /** Optional. Labels are key/value pairs that help to organize and filter resources. */
768
810
  labels?: {[P in string]: string};
811
+ /** Output only. The list of locations where the association is configured. This information is retrieved from the linked endpoint group. */
812
+ locations?: MirroringLocation[];
769
813
  /** 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. */
770
814
  locationsDetails?: MirroringEndpointGroupAssociationLocationDetails[];
771
815
  /** Immutable. The endpoint group that this association is connected to, for example: `projects/123456789/locations/global/mirroringEndpointGroups/my-eg`. See https://google.aip.dev/124. */
@@ -795,6 +839,18 @@ declare namespace gapi.client {
795
839
  /** Output only. The current state of the association in this location. */
796
840
  state?: string;
797
841
  }
842
+ interface MirroringEndpointGroupConnectedDeploymentGroup {
843
+ /** Output only. The list of locations where the deployment group is present. */
844
+ locations?: MirroringLocation[];
845
+ /** Output only. The connected deployment group's resource name, for example: `projects/123456789/locations/global/mirroringDeploymentGroups/my-dg`. See https://google.aip.dev/124. */
846
+ name?: string;
847
+ }
848
+ interface MirroringLocation {
849
+ /** Output only. The cloud location, e.g. "us-central1-a" or "asia-south1". */
850
+ location?: string;
851
+ /** Output only. The current state of the association in this location. */
852
+ state?: string;
853
+ }
798
854
  interface MTLSPolicy {
799
855
  /** Required if the policy is to be used with Traffic Director. For Application Load Balancers it must be empty. Defines the mechanism to obtain the Certificate Authority certificate to validate the client certificate. */
800
856
  clientValidationCa?: ValidationCA[];
@@ -1246,6 +1302,8 @@ declare namespace gapi.client {
1246
1302
  prettyPrint?: boolean;
1247
1303
  /** 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. */
1248
1304
  quotaUser?: string;
1305
+ /** Optional. If true, allow partial responses for multi-regional Aggregated List requests. */
1306
+ returnPartialSuccess?: boolean;
1249
1307
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1250
1308
  upload_protocol?: string;
1251
1309
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -2509,6 +2567,8 @@ declare namespace gapi.client {
2509
2567
  prettyPrint?: boolean;
2510
2568
  /** 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. */
2511
2569
  quotaUser?: string;
2570
+ /** Optional. If true, allow partial responses for multi-regional Aggregated List requests. */
2571
+ returnPartialSuccess?: boolean;
2512
2572
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2513
2573
  upload_protocol?: string;
2514
2574
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -4506,7 +4566,7 @@ declare namespace gapi.client {
4506
4566
  rules: RulesResource;
4507
4567
  }
4508
4568
  interface InterceptDeploymentGroupsResource {
4509
- /** Creates a new InterceptDeploymentGroup in a given project and location. */
4569
+ /** Creates a deployment group in a given project and location. See https://google.aip.dev/133. */
4510
4570
  create(request: {
4511
4571
  /** V1 error format. */
4512
4572
  '$.xgafv'?: string;
@@ -4518,19 +4578,19 @@ declare namespace gapi.client {
4518
4578
  callback?: string;
4519
4579
  /** Selector specifying which fields to include in a partial response. */
4520
4580
  fields?: string;
4521
- /** 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 */
4581
+ /** Required. The ID to use for the new deployment group, which will become the final component of the deployment group's resource name. */
4522
4582
  interceptDeploymentGroupId?: string;
4523
4583
  /** 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. */
4524
4584
  key?: string;
4525
4585
  /** OAuth 2.0 token for the current user. */
4526
4586
  oauth_token?: string;
4527
- /** Required. Value for parent. */
4587
+ /** Required. The parent resource where this deployment group will be created. Format: projects/{project}/locations/{location} */
4528
4588
  parent: string;
4529
4589
  /** Returns response with indentations and line breaks. */
4530
4590
  prettyPrint?: boolean;
4531
4591
  /** 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. */
4532
4592
  quotaUser?: string;
4533
- /** 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). */
4593
+ /** 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. */
4534
4594
  requestId?: string;
4535
4595
  /** Upload protocol for media (e.g. "raw", "multipart"). */
4536
4596
  upload_protocol?: string;
@@ -4551,19 +4611,19 @@ declare namespace gapi.client {
4551
4611
  callback?: string;
4552
4612
  /** Selector specifying which fields to include in a partial response. */
4553
4613
  fields?: string;
4554
- /** 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 */
4614
+ /** Required. The ID to use for the new deployment group, which will become the final component of the deployment group's resource name. */
4555
4615
  interceptDeploymentGroupId?: string;
4556
4616
  /** 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. */
4557
4617
  key?: string;
4558
4618
  /** OAuth 2.0 token for the current user. */
4559
4619
  oauth_token?: string;
4560
- /** Required. Value for parent. */
4620
+ /** Required. The parent resource where this deployment group will be created. Format: projects/{project}/locations/{location} */
4561
4621
  parent: string;
4562
4622
  /** Returns response with indentations and line breaks. */
4563
4623
  prettyPrint?: boolean;
4564
4624
  /** 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. */
4565
4625
  quotaUser?: string;
4566
- /** 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). */
4626
+ /** 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. */
4567
4627
  requestId?: string;
4568
4628
  /** Upload protocol for media (e.g. "raw", "multipart"). */
4569
4629
  upload_protocol?: string;
@@ -4572,7 +4632,7 @@ declare namespace gapi.client {
4572
4632
  },
4573
4633
  body: InterceptDeploymentGroup,
4574
4634
  ): Request<Operation>;
4575
- /** Deletes a single InterceptDeploymentGroup. */
4635
+ /** Deletes a deployment group. See https://google.aip.dev/135. */
4576
4636
  delete(request?: {
4577
4637
  /** V1 error format. */
4578
4638
  '$.xgafv'?: string;
@@ -4586,7 +4646,7 @@ declare namespace gapi.client {
4586
4646
  fields?: string;
4587
4647
  /** 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. */
4588
4648
  key?: string;
4589
- /** Required. Name of the resource */
4649
+ /** Required. The deployment group to delete. */
4590
4650
  name: string;
4591
4651
  /** OAuth 2.0 token for the current user. */
4592
4652
  oauth_token?: string;
@@ -4594,14 +4654,14 @@ declare namespace gapi.client {
4594
4654
  prettyPrint?: boolean;
4595
4655
  /** 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. */
4596
4656
  quotaUser?: string;
4597
- /** 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). */
4657
+ /** 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. */
4598
4658
  requestId?: string;
4599
4659
  /** Upload protocol for media (e.g. "raw", "multipart"). */
4600
4660
  upload_protocol?: string;
4601
4661
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
4602
4662
  uploadType?: string;
4603
4663
  }): Request<Operation>;
4604
- /** Gets details of a single InterceptDeploymentGroup. */
4664
+ /** Gets a specific deployment group. See https://google.aip.dev/131. */
4605
4665
  get(request?: {
4606
4666
  /** V1 error format. */
4607
4667
  '$.xgafv'?: string;
@@ -4615,7 +4675,7 @@ declare namespace gapi.client {
4615
4675
  fields?: string;
4616
4676
  /** 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. */
4617
4677
  key?: string;
4618
- /** Required. Name of the resource */
4678
+ /** Required. The name of the deployment group to retrieve. Format: projects/{project}/locations/{location}/interceptDeploymentGroups/{intercept_deployment_group} */
4619
4679
  name: string;
4620
4680
  /** OAuth 2.0 token for the current user. */
4621
4681
  oauth_token?: string;
@@ -4628,7 +4688,7 @@ declare namespace gapi.client {
4628
4688
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
4629
4689
  uploadType?: string;
4630
4690
  }): Request<InterceptDeploymentGroup>;
4631
- /** Lists InterceptDeploymentGroups in a given project and location. */
4691
+ /** Lists deployment groups in a given project and location. See https://google.aip.dev/132. */
4632
4692
  list(request?: {
4633
4693
  /** V1 error format. */
4634
4694
  '$.xgafv'?: string;
@@ -4640,19 +4700,19 @@ declare namespace gapi.client {
4640
4700
  callback?: string;
4641
4701
  /** Selector specifying which fields to include in a partial response. */
4642
4702
  fields?: string;
4643
- /** Optional. Filtering results */
4703
+ /** Optional. Filter expression. See https://google.aip.dev/160#filtering for more details. */
4644
4704
  filter?: string;
4645
4705
  /** 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. */
4646
4706
  key?: string;
4647
4707
  /** OAuth 2.0 token for the current user. */
4648
4708
  oauth_token?: string;
4649
- /** Optional. Hint for how to order the results */
4709
+ /** Optional. Sort expression. See https://google.aip.dev/132#ordering for more details. */
4650
4710
  orderBy?: string;
4651
- /** Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default. */
4711
+ /** 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. */
4652
4712
  pageSize?: number;
4653
- /** Optional. A token identifying a page of results the server should return. */
4713
+ /** 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. */
4654
4714
  pageToken?: string;
4655
- /** Required. Parent value for ListInterceptDeploymentGroupsRequest */
4715
+ /** Required. The parent, which owns this collection of deployment groups. Example: `projects/123456789/locations/global`. See https://google.aip.dev/132 for more details. */
4656
4716
  parent: string;
4657
4717
  /** Returns response with indentations and line breaks. */
4658
4718
  prettyPrint?: boolean;
@@ -4663,7 +4723,7 @@ declare namespace gapi.client {
4663
4723
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
4664
4724
  uploadType?: string;
4665
4725
  }): Request<ListInterceptDeploymentGroupsResponse>;
4666
- /** Updates a single InterceptDeploymentGroup. */
4726
+ /** Updates a deployment group. See https://google.aip.dev/134. */
4667
4727
  patch(request: {
4668
4728
  /** V1 error format. */
4669
4729
  '$.xgafv'?: string;
@@ -4677,7 +4737,7 @@ declare namespace gapi.client {
4677
4737
  fields?: string;
4678
4738
  /** 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. */
4679
4739
  key?: string;
4680
- /** Immutable. Identifier. Then name of the InterceptDeploymentGroup. */
4740
+ /** 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. */
4681
4741
  name: string;
4682
4742
  /** OAuth 2.0 token for the current user. */
4683
4743
  oauth_token?: string;
@@ -4685,9 +4745,9 @@ declare namespace gapi.client {
4685
4745
  prettyPrint?: boolean;
4686
4746
  /** 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. */
4687
4747
  quotaUser?: string;
4688
- /** 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). */
4748
+ /** 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. */
4689
4749
  requestId?: string;
4690
- /** 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. */
4750
+ /** 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. */
4691
4751
  updateMask?: string;
4692
4752
  /** Upload protocol for media (e.g. "raw", "multipart"). */
4693
4753
  upload_protocol?: string;
@@ -4710,7 +4770,7 @@ declare namespace gapi.client {
4710
4770
  fields?: string;
4711
4771
  /** 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. */
4712
4772
  key?: string;
4713
- /** Immutable. Identifier. Then name of the InterceptDeploymentGroup. */
4773
+ /** 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. */
4714
4774
  name: string;
4715
4775
  /** OAuth 2.0 token for the current user. */
4716
4776
  oauth_token?: string;
@@ -4718,9 +4778,9 @@ declare namespace gapi.client {
4718
4778
  prettyPrint?: boolean;
4719
4779
  /** 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. */
4720
4780
  quotaUser?: string;
4721
- /** 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). */
4781
+ /** 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. */
4722
4782
  requestId?: string;
4723
- /** 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. */
4783
+ /** 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. */
4724
4784
  updateMask?: string;
4725
4785
  /** Upload protocol for media (e.g. "raw", "multipart"). */
4726
4786
  upload_protocol?: string;
@@ -4731,7 +4791,7 @@ declare namespace gapi.client {
4731
4791
  ): Request<Operation>;
4732
4792
  }
4733
4793
  interface InterceptDeploymentsResource {
4734
- /** Creates a new InterceptDeployment in a given project and location. */
4794
+ /** Creates a deployment in a given project and location. See https://google.aip.dev/133. */
4735
4795
  create(request: {
4736
4796
  /** V1 error format. */
4737
4797
  '$.xgafv'?: string;
@@ -4743,19 +4803,19 @@ declare namespace gapi.client {
4743
4803
  callback?: string;
4744
4804
  /** Selector specifying which fields to include in a partial response. */
4745
4805
  fields?: string;
4746
- /** 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 */
4806
+ /** Required. The ID to use for the new deployment, which will become the final component of the deployment's resource name. */
4747
4807
  interceptDeploymentId?: string;
4748
4808
  /** 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. */
4749
4809
  key?: string;
4750
4810
  /** OAuth 2.0 token for the current user. */
4751
4811
  oauth_token?: string;
4752
- /** Required. Value for parent. */
4812
+ /** Required. The parent resource where this deployment will be created. Format: projects/{project}/locations/{location} */
4753
4813
  parent: string;
4754
4814
  /** Returns response with indentations and line breaks. */
4755
4815
  prettyPrint?: boolean;
4756
4816
  /** 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. */
4757
4817
  quotaUser?: string;
4758
- /** 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). */
4818
+ /** 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. */
4759
4819
  requestId?: string;
4760
4820
  /** Upload protocol for media (e.g. "raw", "multipart"). */
4761
4821
  upload_protocol?: string;
@@ -4776,19 +4836,19 @@ declare namespace gapi.client {
4776
4836
  callback?: string;
4777
4837
  /** Selector specifying which fields to include in a partial response. */
4778
4838
  fields?: string;
4779
- /** 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 */
4839
+ /** Required. The ID to use for the new deployment, which will become the final component of the deployment's resource name. */
4780
4840
  interceptDeploymentId?: string;
4781
4841
  /** 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. */
4782
4842
  key?: string;
4783
4843
  /** OAuth 2.0 token for the current user. */
4784
4844
  oauth_token?: string;
4785
- /** Required. Value for parent. */
4845
+ /** Required. The parent resource where this deployment will be created. Format: projects/{project}/locations/{location} */
4786
4846
  parent: string;
4787
4847
  /** Returns response with indentations and line breaks. */
4788
4848
  prettyPrint?: boolean;
4789
4849
  /** 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. */
4790
4850
  quotaUser?: string;
4791
- /** 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). */
4851
+ /** 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. */
4792
4852
  requestId?: string;
4793
4853
  /** Upload protocol for media (e.g. "raw", "multipart"). */
4794
4854
  upload_protocol?: string;
@@ -4797,7 +4857,7 @@ declare namespace gapi.client {
4797
4857
  },
4798
4858
  body: InterceptDeployment,
4799
4859
  ): Request<Operation>;
4800
- /** Deletes a single InterceptDeployment. */
4860
+ /** Deletes a deployment. See https://google.aip.dev/135. */
4801
4861
  delete(request?: {
4802
4862
  /** V1 error format. */
4803
4863
  '$.xgafv'?: string;
@@ -4819,14 +4879,14 @@ declare namespace gapi.client {
4819
4879
  prettyPrint?: boolean;
4820
4880
  /** 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. */
4821
4881
  quotaUser?: string;
4822
- /** 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). */
4882
+ /** 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. */
4823
4883
  requestId?: string;
4824
4884
  /** Upload protocol for media (e.g. "raw", "multipart"). */
4825
4885
  upload_protocol?: string;
4826
4886
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
4827
4887
  uploadType?: string;
4828
4888
  }): Request<Operation>;
4829
- /** Gets details of a single InterceptDeployment. */
4889
+ /** Gets a specific deployment. See https://google.aip.dev/131. */
4830
4890
  get(request?: {
4831
4891
  /** V1 error format. */
4832
4892
  '$.xgafv'?: string;
@@ -4840,7 +4900,7 @@ declare namespace gapi.client {
4840
4900
  fields?: string;
4841
4901
  /** 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. */
4842
4902
  key?: string;
4843
- /** Required. Name of the resource */
4903
+ /** Required. The name of the deployment to retrieve. Format: projects/{project}/locations/{location}/interceptDeployments/{intercept_deployment} */
4844
4904
  name: string;
4845
4905
  /** OAuth 2.0 token for the current user. */
4846
4906
  oauth_token?: string;
@@ -4853,7 +4913,7 @@ declare namespace gapi.client {
4853
4913
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
4854
4914
  uploadType?: string;
4855
4915
  }): Request<InterceptDeployment>;
4856
- /** Lists InterceptDeployments in a given project and location. */
4916
+ /** Lists deployments in a given project and location. See https://google.aip.dev/132. */
4857
4917
  list(request?: {
4858
4918
  /** V1 error format. */
4859
4919
  '$.xgafv'?: string;
@@ -4865,19 +4925,19 @@ declare namespace gapi.client {
4865
4925
  callback?: string;
4866
4926
  /** Selector specifying which fields to include in a partial response. */
4867
4927
  fields?: string;
4868
- /** Optional. Filtering results */
4928
+ /** Optional. Filter expression. See https://google.aip.dev/160#filtering for more details. */
4869
4929
  filter?: string;
4870
4930
  /** 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. */
4871
4931
  key?: string;
4872
4932
  /** OAuth 2.0 token for the current user. */
4873
4933
  oauth_token?: string;
4874
- /** Optional. Hint for how to order the results */
4934
+ /** Optional. Sort expression. See https://google.aip.dev/132#ordering for more details. */
4875
4935
  orderBy?: string;
4876
- /** Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default. */
4936
+ /** 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. */
4877
4937
  pageSize?: number;
4878
- /** Optional. A token identifying a page of results the server should return. */
4938
+ /** 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. */
4879
4939
  pageToken?: string;
4880
- /** Required. Parent value for ListInterceptDeploymentsRequest */
4940
+ /** 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. */
4881
4941
  parent: string;
4882
4942
  /** Returns response with indentations and line breaks. */
4883
4943
  prettyPrint?: boolean;
@@ -4888,7 +4948,7 @@ declare namespace gapi.client {
4888
4948
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
4889
4949
  uploadType?: string;
4890
4950
  }): Request<ListInterceptDeploymentsResponse>;
4891
- /** Updates a single InterceptDeployment. */
4951
+ /** Updates a deployment. See https://google.aip.dev/134. */
4892
4952
  patch(request: {
4893
4953
  /** V1 error format. */
4894
4954
  '$.xgafv'?: string;
@@ -4902,7 +4962,7 @@ declare namespace gapi.client {
4902
4962
  fields?: string;
4903
4963
  /** 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. */
4904
4964
  key?: string;
4905
- /** Immutable. Identifier. The name of the InterceptDeployment. */
4965
+ /** 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. */
4906
4966
  name: string;
4907
4967
  /** OAuth 2.0 token for the current user. */
4908
4968
  oauth_token?: string;
@@ -4910,9 +4970,9 @@ declare namespace gapi.client {
4910
4970
  prettyPrint?: boolean;
4911
4971
  /** 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. */
4912
4972
  quotaUser?: string;
4913
- /** 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). */
4973
+ /** 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. */
4914
4974
  requestId?: string;
4915
- /** 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. */
4975
+ /** 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. */
4916
4976
  updateMask?: string;
4917
4977
  /** Upload protocol for media (e.g. "raw", "multipart"). */
4918
4978
  upload_protocol?: string;
@@ -4935,7 +4995,7 @@ declare namespace gapi.client {
4935
4995
  fields?: string;
4936
4996
  /** 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. */
4937
4997
  key?: string;
4938
- /** Immutable. Identifier. The name of the InterceptDeployment. */
4998
+ /** 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. */
4939
4999
  name: string;
4940
5000
  /** OAuth 2.0 token for the current user. */
4941
5001
  oauth_token?: string;
@@ -4943,9 +5003,9 @@ declare namespace gapi.client {
4943
5003
  prettyPrint?: boolean;
4944
5004
  /** 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. */
4945
5005
  quotaUser?: string;
4946
- /** 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). */
5006
+ /** 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. */
4947
5007
  requestId?: string;
4948
- /** 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. */
5008
+ /** 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. */
4949
5009
  updateMask?: string;
4950
5010
  /** Upload protocol for media (e.g. "raw", "multipart"). */
4951
5011
  upload_protocol?: string;
@@ -4956,7 +5016,7 @@ declare namespace gapi.client {
4956
5016
  ): Request<Operation>;
4957
5017
  }
4958
5018
  interface InterceptEndpointGroupAssociationsResource {
4959
- /** Creates a new InterceptEndpointGroupAssociation in a given project and location. */
5019
+ /** Creates an association in a given project and location. See https://google.aip.dev/133. */
4960
5020
  create(request: {
4961
5021
  /** V1 error format. */
4962
5022
  '$.xgafv'?: string;
@@ -4968,19 +5028,19 @@ declare namespace gapi.client {
4968
5028
  callback?: string;
4969
5029
  /** Selector specifying which fields to include in a partial response. */
4970
5030
  fields?: string;
4971
- /** 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 */
5031
+ /** 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. */
4972
5032
  interceptEndpointGroupAssociationId?: string;
4973
5033
  /** 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. */
4974
5034
  key?: string;
4975
5035
  /** OAuth 2.0 token for the current user. */
4976
5036
  oauth_token?: string;
4977
- /** Required. Value for parent. */
5037
+ /** Required. The parent resource where this association will be created. Format: projects/{project}/locations/{location} */
4978
5038
  parent: string;
4979
5039
  /** Returns response with indentations and line breaks. */
4980
5040
  prettyPrint?: boolean;
4981
5041
  /** 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. */
4982
5042
  quotaUser?: string;
4983
- /** 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). */
5043
+ /** 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. */
4984
5044
  requestId?: string;
4985
5045
  /** Upload protocol for media (e.g. "raw", "multipart"). */
4986
5046
  upload_protocol?: string;
@@ -5001,19 +5061,19 @@ declare namespace gapi.client {
5001
5061
  callback?: string;
5002
5062
  /** Selector specifying which fields to include in a partial response. */
5003
5063
  fields?: string;
5004
- /** 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 */
5064
+ /** 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. */
5005
5065
  interceptEndpointGroupAssociationId?: string;
5006
5066
  /** 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. */
5007
5067
  key?: string;
5008
5068
  /** OAuth 2.0 token for the current user. */
5009
5069
  oauth_token?: string;
5010
- /** Required. Value for parent. */
5070
+ /** Required. The parent resource where this association will be created. Format: projects/{project}/locations/{location} */
5011
5071
  parent: string;
5012
5072
  /** Returns response with indentations and line breaks. */
5013
5073
  prettyPrint?: boolean;
5014
5074
  /** 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. */
5015
5075
  quotaUser?: string;
5016
- /** 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). */
5076
+ /** 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. */
5017
5077
  requestId?: string;
5018
5078
  /** Upload protocol for media (e.g. "raw", "multipart"). */
5019
5079
  upload_protocol?: string;
@@ -5022,7 +5082,7 @@ declare namespace gapi.client {
5022
5082
  },
5023
5083
  body: InterceptEndpointGroupAssociation,
5024
5084
  ): Request<Operation>;
5025
- /** Deletes a single InterceptEndpointGroupAssociation. */
5085
+ /** Deletes an association. See https://google.aip.dev/135. */
5026
5086
  delete(request?: {
5027
5087
  /** V1 error format. */
5028
5088
  '$.xgafv'?: string;
@@ -5036,7 +5096,7 @@ declare namespace gapi.client {
5036
5096
  fields?: string;
5037
5097
  /** 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. */
5038
5098
  key?: string;
5039
- /** Required. Name of the resource */
5099
+ /** Required. The association to delete. */
5040
5100
  name: string;
5041
5101
  /** OAuth 2.0 token for the current user. */
5042
5102
  oauth_token?: string;
@@ -5044,14 +5104,14 @@ declare namespace gapi.client {
5044
5104
  prettyPrint?: boolean;
5045
5105
  /** 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. */
5046
5106
  quotaUser?: string;
5047
- /** 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). */
5107
+ /** 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. */
5048
5108
  requestId?: string;
5049
5109
  /** Upload protocol for media (e.g. "raw", "multipart"). */
5050
5110
  upload_protocol?: string;
5051
5111
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5052
5112
  uploadType?: string;
5053
5113
  }): Request<Operation>;
5054
- /** Gets details of a single InterceptEndpointGroupAssociation. */
5114
+ /** Gets a specific association. See https://google.aip.dev/131. */
5055
5115
  get(request?: {
5056
5116
  /** V1 error format. */
5057
5117
  '$.xgafv'?: string;
@@ -5065,7 +5125,7 @@ declare namespace gapi.client {
5065
5125
  fields?: string;
5066
5126
  /** 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. */
5067
5127
  key?: string;
5068
- /** Required. Name of the resource */
5128
+ /** Required. The name of the association to retrieve. Format: projects/{project}/locations/{location}/interceptEndpointGroupAssociations/{intercept_endpoint_group_association} */
5069
5129
  name: string;
5070
5130
  /** OAuth 2.0 token for the current user. */
5071
5131
  oauth_token?: string;
@@ -5078,7 +5138,7 @@ declare namespace gapi.client {
5078
5138
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5079
5139
  uploadType?: string;
5080
5140
  }): Request<InterceptEndpointGroupAssociation>;
5081
- /** Lists InterceptEndpointGroupAssociations in a given project and location. */
5141
+ /** Lists associations in a given project and location. See https://google.aip.dev/132. */
5082
5142
  list(request?: {
5083
5143
  /** V1 error format. */
5084
5144
  '$.xgafv'?: string;
@@ -5090,19 +5150,19 @@ declare namespace gapi.client {
5090
5150
  callback?: string;
5091
5151
  /** Selector specifying which fields to include in a partial response. */
5092
5152
  fields?: string;
5093
- /** Optional. Filtering results */
5153
+ /** Optional. Filter expression. See https://google.aip.dev/160#filtering for more details. */
5094
5154
  filter?: string;
5095
5155
  /** 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. */
5096
5156
  key?: string;
5097
5157
  /** OAuth 2.0 token for the current user. */
5098
5158
  oauth_token?: string;
5099
- /** Optional. Hint for how to order the results */
5159
+ /** Optional. Sort expression. See https://google.aip.dev/132#ordering for more details. */
5100
5160
  orderBy?: string;
5101
- /** Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default. */
5161
+ /** 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. */
5102
5162
  pageSize?: number;
5103
- /** Optional. A token identifying a page of results the server should return. */
5163
+ /** 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. */
5104
5164
  pageToken?: string;
5105
- /** Required. Parent value for ListInterceptEndpointGroupAssociationsRequest */
5165
+ /** Required. The parent, which owns this collection of associations. Example: `projects/123456789/locations/global`. See https://google.aip.dev/132 for more details. */
5106
5166
  parent: string;
5107
5167
  /** Returns response with indentations and line breaks. */
5108
5168
  prettyPrint?: boolean;
@@ -5113,7 +5173,7 @@ declare namespace gapi.client {
5113
5173
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5114
5174
  uploadType?: string;
5115
5175
  }): Request<ListInterceptEndpointGroupAssociationsResponse>;
5116
- /** Updates a single InterceptEndpointGroupAssociation. */
5176
+ /** Updates an association. See https://google.aip.dev/134. */
5117
5177
  patch(request: {
5118
5178
  /** V1 error format. */
5119
5179
  '$.xgafv'?: string;
@@ -5127,7 +5187,7 @@ declare namespace gapi.client {
5127
5187
  fields?: string;
5128
5188
  /** 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. */
5129
5189
  key?: string;
5130
- /** Immutable. Identifier. The name of the InterceptEndpointGroupAssociation. */
5190
+ /** 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. */
5131
5191
  name: string;
5132
5192
  /** OAuth 2.0 token for the current user. */
5133
5193
  oauth_token?: string;
@@ -5135,9 +5195,9 @@ declare namespace gapi.client {
5135
5195
  prettyPrint?: boolean;
5136
5196
  /** 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. */
5137
5197
  quotaUser?: string;
5138
- /** 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). */
5198
+ /** 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. */
5139
5199
  requestId?: string;
5140
- /** 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. */
5200
+ /** 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. */
5141
5201
  updateMask?: string;
5142
5202
  /** Upload protocol for media (e.g. "raw", "multipart"). */
5143
5203
  upload_protocol?: string;
@@ -5160,7 +5220,7 @@ declare namespace gapi.client {
5160
5220
  fields?: string;
5161
5221
  /** 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. */
5162
5222
  key?: string;
5163
- /** Immutable. Identifier. The name of the InterceptEndpointGroupAssociation. */
5223
+ /** 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. */
5164
5224
  name: string;
5165
5225
  /** OAuth 2.0 token for the current user. */
5166
5226
  oauth_token?: string;
@@ -5168,9 +5228,9 @@ declare namespace gapi.client {
5168
5228
  prettyPrint?: boolean;
5169
5229
  /** 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. */
5170
5230
  quotaUser?: string;
5171
- /** 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). */
5231
+ /** 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. */
5172
5232
  requestId?: string;
5173
- /** 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. */
5233
+ /** 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. */
5174
5234
  updateMask?: string;
5175
5235
  /** Upload protocol for media (e.g. "raw", "multipart"). */
5176
5236
  upload_protocol?: string;
@@ -5181,7 +5241,7 @@ declare namespace gapi.client {
5181
5241
  ): Request<Operation>;
5182
5242
  }
5183
5243
  interface InterceptEndpointGroupsResource {
5184
- /** Creates a new InterceptEndpointGroup in a given project and location. */
5244
+ /** Creates an endpoint group in a given project and location. See https://google.aip.dev/133. */
5185
5245
  create(request: {
5186
5246
  /** V1 error format. */
5187
5247
  '$.xgafv'?: string;
@@ -5193,19 +5253,19 @@ declare namespace gapi.client {
5193
5253
  callback?: string;
5194
5254
  /** Selector specifying which fields to include in a partial response. */
5195
5255
  fields?: string;
5196
- /** 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 */
5256
+ /** Required. The ID to use for the endpoint group, which will become the final component of the endpoint group's resource name. */
5197
5257
  interceptEndpointGroupId?: string;
5198
5258
  /** 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. */
5199
5259
  key?: string;
5200
5260
  /** OAuth 2.0 token for the current user. */
5201
5261
  oauth_token?: string;
5202
- /** Required. Value for parent. */
5262
+ /** Required. The parent resource where this endpoint group will be created. Format: projects/{project}/locations/{location} */
5203
5263
  parent: string;
5204
5264
  /** Returns response with indentations and line breaks. */
5205
5265
  prettyPrint?: boolean;
5206
5266
  /** 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. */
5207
5267
  quotaUser?: string;
5208
- /** 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). */
5268
+ /** 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. */
5209
5269
  requestId?: string;
5210
5270
  /** Upload protocol for media (e.g. "raw", "multipart"). */
5211
5271
  upload_protocol?: string;
@@ -5226,19 +5286,19 @@ declare namespace gapi.client {
5226
5286
  callback?: string;
5227
5287
  /** Selector specifying which fields to include in a partial response. */
5228
5288
  fields?: string;
5229
- /** 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 */
5289
+ /** Required. The ID to use for the endpoint group, which will become the final component of the endpoint group's resource name. */
5230
5290
  interceptEndpointGroupId?: string;
5231
5291
  /** 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. */
5232
5292
  key?: string;
5233
5293
  /** OAuth 2.0 token for the current user. */
5234
5294
  oauth_token?: string;
5235
- /** Required. Value for parent. */
5295
+ /** Required. The parent resource where this endpoint group will be created. Format: projects/{project}/locations/{location} */
5236
5296
  parent: string;
5237
5297
  /** Returns response with indentations and line breaks. */
5238
5298
  prettyPrint?: boolean;
5239
5299
  /** 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. */
5240
5300
  quotaUser?: string;
5241
- /** 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). */
5301
+ /** 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. */
5242
5302
  requestId?: string;
5243
5303
  /** Upload protocol for media (e.g. "raw", "multipart"). */
5244
5304
  upload_protocol?: string;
@@ -5247,7 +5307,7 @@ declare namespace gapi.client {
5247
5307
  },
5248
5308
  body: InterceptEndpointGroup,
5249
5309
  ): Request<Operation>;
5250
- /** Deletes a single InterceptEndpointGroup. */
5310
+ /** Deletes an endpoint group. See https://google.aip.dev/135. */
5251
5311
  delete(request?: {
5252
5312
  /** V1 error format. */
5253
5313
  '$.xgafv'?: string;
@@ -5261,7 +5321,7 @@ declare namespace gapi.client {
5261
5321
  fields?: string;
5262
5322
  /** 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. */
5263
5323
  key?: string;
5264
- /** Required. Name of the resource */
5324
+ /** Required. The endpoint group to delete. */
5265
5325
  name: string;
5266
5326
  /** OAuth 2.0 token for the current user. */
5267
5327
  oauth_token?: string;
@@ -5269,14 +5329,14 @@ declare namespace gapi.client {
5269
5329
  prettyPrint?: boolean;
5270
5330
  /** 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. */
5271
5331
  quotaUser?: string;
5272
- /** 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). */
5332
+ /** 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. */
5273
5333
  requestId?: string;
5274
5334
  /** Upload protocol for media (e.g. "raw", "multipart"). */
5275
5335
  upload_protocol?: string;
5276
5336
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5277
5337
  uploadType?: string;
5278
5338
  }): Request<Operation>;
5279
- /** Gets details of a single InterceptEndpointGroup. */
5339
+ /** Gets a specific endpoint group. See https://google.aip.dev/131. */
5280
5340
  get(request?: {
5281
5341
  /** V1 error format. */
5282
5342
  '$.xgafv'?: string;
@@ -5290,7 +5350,7 @@ declare namespace gapi.client {
5290
5350
  fields?: string;
5291
5351
  /** 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. */
5292
5352
  key?: string;
5293
- /** Required. Name of the resource */
5353
+ /** Required. The name of the endpoint group to retrieve. Format: projects/{project}/locations/{location}/interceptEndpointGroups/{intercept_endpoint_group} */
5294
5354
  name: string;
5295
5355
  /** OAuth 2.0 token for the current user. */
5296
5356
  oauth_token?: string;
@@ -5303,7 +5363,7 @@ declare namespace gapi.client {
5303
5363
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5304
5364
  uploadType?: string;
5305
5365
  }): Request<InterceptEndpointGroup>;
5306
- /** Lists InterceptEndpointGroups in a given project and location. */
5366
+ /** Lists endpoint groups in a given project and location. See https://google.aip.dev/132. */
5307
5367
  list(request?: {
5308
5368
  /** V1 error format. */
5309
5369
  '$.xgafv'?: string;
@@ -5315,19 +5375,19 @@ declare namespace gapi.client {
5315
5375
  callback?: string;
5316
5376
  /** Selector specifying which fields to include in a partial response. */
5317
5377
  fields?: string;
5318
- /** Optional. Filtering results */
5378
+ /** Optional. Filter expression. See https://google.aip.dev/160#filtering for more details. */
5319
5379
  filter?: string;
5320
5380
  /** 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. */
5321
5381
  key?: string;
5322
5382
  /** OAuth 2.0 token for the current user. */
5323
5383
  oauth_token?: string;
5324
- /** Optional. Hint for how to order the results */
5384
+ /** Optional. Sort expression. See https://google.aip.dev/132#ordering for more details. */
5325
5385
  orderBy?: string;
5326
- /** Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default. */
5386
+ /** 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. */
5327
5387
  pageSize?: number;
5328
- /** Optional. A token identifying a page of results the server should return. */
5388
+ /** 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. */
5329
5389
  pageToken?: string;
5330
- /** Required. Parent value for ListInterceptEndpointGroupsRequest */
5390
+ /** Required. The parent, which owns this collection of endpoint groups. Example: `projects/123456789/locations/global`. See https://google.aip.dev/132 for more details. */
5331
5391
  parent: string;
5332
5392
  /** Returns response with indentations and line breaks. */
5333
5393
  prettyPrint?: boolean;
@@ -5338,7 +5398,7 @@ declare namespace gapi.client {
5338
5398
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5339
5399
  uploadType?: string;
5340
5400
  }): Request<ListInterceptEndpointGroupsResponse>;
5341
- /** Updates a single InterceptEndpointGroup. */
5401
+ /** Updates an endpoint group. See https://google.aip.dev/134. */
5342
5402
  patch(request: {
5343
5403
  /** V1 error format. */
5344
5404
  '$.xgafv'?: string;
@@ -5352,7 +5412,7 @@ declare namespace gapi.client {
5352
5412
  fields?: string;
5353
5413
  /** 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. */
5354
5414
  key?: string;
5355
- /** Immutable. Identifier. The name of the InterceptEndpointGroup. */
5415
+ /** 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. */
5356
5416
  name: string;
5357
5417
  /** OAuth 2.0 token for the current user. */
5358
5418
  oauth_token?: string;
@@ -5360,9 +5420,9 @@ declare namespace gapi.client {
5360
5420
  prettyPrint?: boolean;
5361
5421
  /** 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. */
5362
5422
  quotaUser?: string;
5363
- /** 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). */
5423
+ /** 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. */
5364
5424
  requestId?: string;
5365
- /** 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. */
5425
+ /** 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. */
5366
5426
  updateMask?: string;
5367
5427
  /** Upload protocol for media (e.g. "raw", "multipart"). */
5368
5428
  upload_protocol?: string;
@@ -5385,7 +5445,7 @@ declare namespace gapi.client {
5385
5445
  fields?: string;
5386
5446
  /** 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. */
5387
5447
  key?: string;
5388
- /** Immutable. Identifier. The name of the InterceptEndpointGroup. */
5448
+ /** 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. */
5389
5449
  name: string;
5390
5450
  /** OAuth 2.0 token for the current user. */
5391
5451
  oauth_token?: string;
@@ -5393,9 +5453,9 @@ declare namespace gapi.client {
5393
5453
  prettyPrint?: boolean;
5394
5454
  /** 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. */
5395
5455
  quotaUser?: string;
5396
- /** 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). */
5456
+ /** 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. */
5397
5457
  requestId?: string;
5398
- /** 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. */
5458
+ /** 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. */
5399
5459
  updateMask?: string;
5400
5460
  /** Upload protocol for media (e.g. "raw", "multipart"). */
5401
5461
  upload_protocol?: string;
@@ -5406,7 +5466,7 @@ declare namespace gapi.client {
5406
5466
  ): Request<Operation>;
5407
5467
  }
5408
5468
  interface MirroringDeploymentGroupsResource {
5409
- /** Creates a new MirroringDeploymentGroup in a given project and location. */
5469
+ /** Creates a deployment group in a given project and location. See https://google.aip.dev/133. */
5410
5470
  create(request: {
5411
5471
  /** V1 error format. */
5412
5472
  '$.xgafv'?: string;
@@ -5420,17 +5480,17 @@ declare namespace gapi.client {
5420
5480
  fields?: string;
5421
5481
  /** 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. */
5422
5482
  key?: string;
5423
- /** Required. Id of the requesting object If auto-generating Id server-side, remove this field and mirroring_deployment_group_id from the method_signature of Create RPC */
5483
+ /** Required. The ID to use for the new deployment group, which will become the final component of the deployment group's resource name. */
5424
5484
  mirroringDeploymentGroupId?: string;
5425
5485
  /** OAuth 2.0 token for the current user. */
5426
5486
  oauth_token?: string;
5427
- /** Required. Value for parent. */
5487
+ /** Required. The parent resource where this deployment group will be created. Format: projects/{project}/locations/{location} */
5428
5488
  parent: string;
5429
5489
  /** Returns response with indentations and line breaks. */
5430
5490
  prettyPrint?: boolean;
5431
5491
  /** 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. */
5432
5492
  quotaUser?: string;
5433
- /** 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). */
5493
+ /** 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. */
5434
5494
  requestId?: string;
5435
5495
  /** Upload protocol for media (e.g. "raw", "multipart"). */
5436
5496
  upload_protocol?: string;
@@ -5453,17 +5513,17 @@ declare namespace gapi.client {
5453
5513
  fields?: string;
5454
5514
  /** 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. */
5455
5515
  key?: string;
5456
- /** Required. Id of the requesting object If auto-generating Id server-side, remove this field and mirroring_deployment_group_id from the method_signature of Create RPC */
5516
+ /** Required. The ID to use for the new deployment group, which will become the final component of the deployment group's resource name. */
5457
5517
  mirroringDeploymentGroupId?: string;
5458
5518
  /** OAuth 2.0 token for the current user. */
5459
5519
  oauth_token?: string;
5460
- /** Required. Value for parent. */
5520
+ /** Required. The parent resource where this deployment group will be created. Format: projects/{project}/locations/{location} */
5461
5521
  parent: string;
5462
5522
  /** Returns response with indentations and line breaks. */
5463
5523
  prettyPrint?: boolean;
5464
5524
  /** 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. */
5465
5525
  quotaUser?: string;
5466
- /** 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). */
5526
+ /** 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. */
5467
5527
  requestId?: string;
5468
5528
  /** Upload protocol for media (e.g. "raw", "multipart"). */
5469
5529
  upload_protocol?: string;
@@ -5472,7 +5532,7 @@ declare namespace gapi.client {
5472
5532
  },
5473
5533
  body: MirroringDeploymentGroup,
5474
5534
  ): Request<Operation>;
5475
- /** Deletes a single MirroringDeploymentGroup. */
5535
+ /** Deletes a deployment group. See https://google.aip.dev/135. */
5476
5536
  delete(request?: {
5477
5537
  /** V1 error format. */
5478
5538
  '$.xgafv'?: string;
@@ -5486,7 +5546,7 @@ declare namespace gapi.client {
5486
5546
  fields?: string;
5487
5547
  /** 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. */
5488
5548
  key?: string;
5489
- /** Required. Name of the resource */
5549
+ /** Required. The deployment group to delete. */
5490
5550
  name: string;
5491
5551
  /** OAuth 2.0 token for the current user. */
5492
5552
  oauth_token?: string;
@@ -5494,14 +5554,14 @@ declare namespace gapi.client {
5494
5554
  prettyPrint?: boolean;
5495
5555
  /** 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. */
5496
5556
  quotaUser?: string;
5497
- /** 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). */
5557
+ /** 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. */
5498
5558
  requestId?: string;
5499
5559
  /** Upload protocol for media (e.g. "raw", "multipart"). */
5500
5560
  upload_protocol?: string;
5501
5561
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5502
5562
  uploadType?: string;
5503
5563
  }): Request<Operation>;
5504
- /** Gets details of a single MirroringDeploymentGroup. */
5564
+ /** Gets a specific deployment group. See https://google.aip.dev/131. */
5505
5565
  get(request?: {
5506
5566
  /** V1 error format. */
5507
5567
  '$.xgafv'?: string;
@@ -5515,7 +5575,7 @@ declare namespace gapi.client {
5515
5575
  fields?: string;
5516
5576
  /** 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. */
5517
5577
  key?: string;
5518
- /** Required. Name of the resource */
5578
+ /** Required. The name of the deployment group to retrieve. Format: projects/{project}/locations/{location}/mirroringDeploymentGroups/{mirroring_deployment_group} */
5519
5579
  name: string;
5520
5580
  /** OAuth 2.0 token for the current user. */
5521
5581
  oauth_token?: string;
@@ -5528,7 +5588,7 @@ declare namespace gapi.client {
5528
5588
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5529
5589
  uploadType?: string;
5530
5590
  }): Request<MirroringDeploymentGroup>;
5531
- /** Lists MirroringDeploymentGroups in a given project and location. */
5591
+ /** Lists deployment groups in a given project and location. See https://google.aip.dev/132. */
5532
5592
  list(request?: {
5533
5593
  /** V1 error format. */
5534
5594
  '$.xgafv'?: string;
@@ -5540,19 +5600,19 @@ declare namespace gapi.client {
5540
5600
  callback?: string;
5541
5601
  /** Selector specifying which fields to include in a partial response. */
5542
5602
  fields?: string;
5543
- /** Optional. Filtering results */
5603
+ /** Optional. Filter expression. See https://google.aip.dev/160#filtering for more details. */
5544
5604
  filter?: string;
5545
5605
  /** 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. */
5546
5606
  key?: string;
5547
5607
  /** OAuth 2.0 token for the current user. */
5548
5608
  oauth_token?: string;
5549
- /** Optional. Hint for how to order the results */
5609
+ /** Optional. Sort expression. See https://google.aip.dev/132#ordering for more details. */
5550
5610
  orderBy?: string;
5551
- /** Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default. */
5611
+ /** 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. */
5552
5612
  pageSize?: number;
5553
- /** Optional. A token identifying a page of results the server should return. */
5613
+ /** Optional. A page token, received from a previous `ListMirroringDeploymentGroups` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListMirroringDeploymentGroups` must match the call that provided the page token. See https://google.aip.dev/158 for more details. */
5554
5614
  pageToken?: string;
5555
- /** Required. Parent value for ListMirroringDeploymentGroupsRequest */
5615
+ /** Required. The parent, which owns this collection of deployment groups. Example: `projects/123456789/locations/global`. See https://google.aip.dev/132 for more details. */
5556
5616
  parent: string;
5557
5617
  /** Returns response with indentations and line breaks. */
5558
5618
  prettyPrint?: boolean;
@@ -5563,7 +5623,7 @@ declare namespace gapi.client {
5563
5623
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5564
5624
  uploadType?: string;
5565
5625
  }): Request<ListMirroringDeploymentGroupsResponse>;
5566
- /** Updates a single MirroringDeploymentGroup. */
5626
+ /** Updates a deployment group. See https://google.aip.dev/134. */
5567
5627
  patch(request: {
5568
5628
  /** V1 error format. */
5569
5629
  '$.xgafv'?: string;
@@ -5585,9 +5645,9 @@ declare namespace gapi.client {
5585
5645
  prettyPrint?: boolean;
5586
5646
  /** 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. */
5587
5647
  quotaUser?: string;
5588
- /** 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). */
5648
+ /** 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. */
5589
5649
  requestId?: string;
5590
- /** Required. Field mask is used to specify the fields to be overwritten in the MirroringDeploymentGroup 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. */
5650
+ /** Optional. The list of fields to update. Fields are specified relative to the deployment group (e.g. `description`; *not* `mirroring_deployment_group.description`). See https://google.aip.dev/161 for more details. */
5591
5651
  updateMask?: string;
5592
5652
  /** Upload protocol for media (e.g. "raw", "multipart"). */
5593
5653
  upload_protocol?: string;
@@ -5618,9 +5678,9 @@ declare namespace gapi.client {
5618
5678
  prettyPrint?: boolean;
5619
5679
  /** 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. */
5620
5680
  quotaUser?: string;
5621
- /** 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). */
5681
+ /** 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. */
5622
5682
  requestId?: string;
5623
- /** Required. Field mask is used to specify the fields to be overwritten in the MirroringDeploymentGroup 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. */
5683
+ /** Optional. The list of fields to update. Fields are specified relative to the deployment group (e.g. `description`; *not* `mirroring_deployment_group.description`). See https://google.aip.dev/161 for more details. */
5624
5684
  updateMask?: string;
5625
5685
  /** Upload protocol for media (e.g. "raw", "multipart"). */
5626
5686
  upload_protocol?: string;
@@ -5645,17 +5705,17 @@ declare namespace gapi.client {
5645
5705
  fields?: string;
5646
5706
  /** 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. */
5647
5707
  key?: string;
5648
- /** Required. Id of the requesting object If auto-generating Id server-side, remove this field and mirroring_deployment_id from the method_signature of Create RPC */
5708
+ /** Required. The ID to use for the new deployment, which will become the final component of the deployment's resource name. */
5649
5709
  mirroringDeploymentId?: string;
5650
5710
  /** OAuth 2.0 token for the current user. */
5651
5711
  oauth_token?: string;
5652
- /** Required. Value for parent. */
5712
+ /** Required. The parent resource where this deployment will be created. Format: projects/{project}/locations/{location} */
5653
5713
  parent: string;
5654
5714
  /** Returns response with indentations and line breaks. */
5655
5715
  prettyPrint?: boolean;
5656
5716
  /** 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. */
5657
5717
  quotaUser?: string;
5658
- /** 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). */
5718
+ /** 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. */
5659
5719
  requestId?: string;
5660
5720
  /** Upload protocol for media (e.g. "raw", "multipart"). */
5661
5721
  upload_protocol?: string;
@@ -5678,17 +5738,17 @@ declare namespace gapi.client {
5678
5738
  fields?: string;
5679
5739
  /** 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. */
5680
5740
  key?: string;
5681
- /** Required. Id of the requesting object If auto-generating Id server-side, remove this field and mirroring_deployment_id from the method_signature of Create RPC */
5741
+ /** Required. The ID to use for the new deployment, which will become the final component of the deployment's resource name. */
5682
5742
  mirroringDeploymentId?: string;
5683
5743
  /** OAuth 2.0 token for the current user. */
5684
5744
  oauth_token?: string;
5685
- /** Required. Value for parent. */
5745
+ /** Required. The parent resource where this deployment will be created. Format: projects/{project}/locations/{location} */
5686
5746
  parent: string;
5687
5747
  /** Returns response with indentations and line breaks. */
5688
5748
  prettyPrint?: boolean;
5689
5749
  /** 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. */
5690
5750
  quotaUser?: string;
5691
- /** 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). */
5751
+ /** 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. */
5692
5752
  requestId?: string;
5693
5753
  /** Upload protocol for media (e.g. "raw", "multipart"). */
5694
5754
  upload_protocol?: string;
@@ -5719,7 +5779,7 @@ declare namespace gapi.client {
5719
5779
  prettyPrint?: boolean;
5720
5780
  /** 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. */
5721
5781
  quotaUser?: string;
5722
- /** 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). */
5782
+ /** 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. */
5723
5783
  requestId?: string;
5724
5784
  /** Upload protocol for media (e.g. "raw", "multipart"). */
5725
5785
  upload_protocol?: string;
@@ -5740,7 +5800,7 @@ declare namespace gapi.client {
5740
5800
  fields?: string;
5741
5801
  /** 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. */
5742
5802
  key?: string;
5743
- /** Required. Name of the resource */
5803
+ /** Required. The name of the deployment to retrieve. Format: projects/{project}/locations/{location}/mirroringDeployments/{mirroring_deployment} */
5744
5804
  name: string;
5745
5805
  /** OAuth 2.0 token for the current user. */
5746
5806
  oauth_token?: string;
@@ -5765,19 +5825,19 @@ declare namespace gapi.client {
5765
5825
  callback?: string;
5766
5826
  /** Selector specifying which fields to include in a partial response. */
5767
5827
  fields?: string;
5768
- /** Optional. Filtering results */
5828
+ /** Optional. Filter expression. See https://google.aip.dev/160#filtering for more details. */
5769
5829
  filter?: string;
5770
5830
  /** 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. */
5771
5831
  key?: string;
5772
5832
  /** OAuth 2.0 token for the current user. */
5773
5833
  oauth_token?: string;
5774
- /** Optional. Hint for how to order the results */
5834
+ /** Optional. Sort expression. See https://google.aip.dev/132#ordering for more details. */
5775
5835
  orderBy?: string;
5776
- /** Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default. */
5836
+ /** 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. */
5777
5837
  pageSize?: number;
5778
- /** Optional. A token identifying a page of results the server should return. */
5838
+ /** Optional. A page token, received from a previous `ListMirroringDeployments` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListMirroringDeployments` must match the call that provided the page token. See https://google.aip.dev/158 for more details. */
5779
5839
  pageToken?: string;
5780
- /** Required. Parent value for ListMirroringDeploymentsRequest */
5840
+ /** 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. */
5781
5841
  parent: string;
5782
5842
  /** Returns response with indentations and line breaks. */
5783
5843
  prettyPrint?: boolean;
@@ -5810,9 +5870,9 @@ declare namespace gapi.client {
5810
5870
  prettyPrint?: boolean;
5811
5871
  /** 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. */
5812
5872
  quotaUser?: string;
5813
- /** 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). */
5873
+ /** 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. */
5814
5874
  requestId?: string;
5815
- /** Required. Field mask is used to specify the fields to be overwritten in the MirroringDeployment 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. */
5875
+ /** Optional. The list of fields to update. Fields are specified relative to the deployment (e.g. `description`; *not* `mirroring_deployment.description`). See https://google.aip.dev/161 for more details. */
5816
5876
  updateMask?: string;
5817
5877
  /** Upload protocol for media (e.g. "raw", "multipart"). */
5818
5878
  upload_protocol?: string;
@@ -5843,9 +5903,9 @@ declare namespace gapi.client {
5843
5903
  prettyPrint?: boolean;
5844
5904
  /** 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. */
5845
5905
  quotaUser?: string;
5846
- /** 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). */
5906
+ /** 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. */
5847
5907
  requestId?: string;
5848
- /** Required. Field mask is used to specify the fields to be overwritten in the MirroringDeployment 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. */
5908
+ /** Optional. The list of fields to update. Fields are specified relative to the deployment (e.g. `description`; *not* `mirroring_deployment.description`). See https://google.aip.dev/161 for more details. */
5849
5909
  updateMask?: string;
5850
5910
  /** Upload protocol for media (e.g. "raw", "multipart"). */
5851
5911
  upload_protocol?: string;
@@ -5870,17 +5930,17 @@ declare namespace gapi.client {
5870
5930
  fields?: string;
5871
5931
  /** 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. */
5872
5932
  key?: string;
5873
- /** Optional. ID for the new association. If not provided, the server will generate a unique ID. The ID must be a valid RFC 1035 resource name. The ID must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?`. The first character must be a lowercase letter, and all following characters (except for the last character) must be a dash, lowercase letter, or digit. The last character must be a */
5933
+ /** 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. */
5874
5934
  mirroringEndpointGroupAssociationId?: string;
5875
5935
  /** OAuth 2.0 token for the current user. */
5876
5936
  oauth_token?: string;
5877
- /** Required. Container (project and location) where the association will be created, e.g. `projects/123456789/locations/global`. */
5937
+ /** Required. The parent resource where this association will be created. Format: projects/{project}/locations/{location} */
5878
5938
  parent: string;
5879
5939
  /** Returns response with indentations and line breaks. */
5880
5940
  prettyPrint?: boolean;
5881
5941
  /** 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. */
5882
5942
  quotaUser?: string;
5883
- /** 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). */
5943
+ /** 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. */
5884
5944
  requestId?: string;
5885
5945
  /** Upload protocol for media (e.g. "raw", "multipart"). */
5886
5946
  upload_protocol?: string;
@@ -5903,17 +5963,17 @@ declare namespace gapi.client {
5903
5963
  fields?: string;
5904
5964
  /** 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. */
5905
5965
  key?: string;
5906
- /** Optional. ID for the new association. If not provided, the server will generate a unique ID. The ID must be a valid RFC 1035 resource name. The ID must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?`. The first character must be a lowercase letter, and all following characters (except for the last character) must be a dash, lowercase letter, or digit. The last character must be a */
5966
+ /** 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. */
5907
5967
  mirroringEndpointGroupAssociationId?: string;
5908
5968
  /** OAuth 2.0 token for the current user. */
5909
5969
  oauth_token?: string;
5910
- /** Required. Container (project and location) where the association will be created, e.g. `projects/123456789/locations/global`. */
5970
+ /** Required. The parent resource where this association will be created. Format: projects/{project}/locations/{location} */
5911
5971
  parent: string;
5912
5972
  /** Returns response with indentations and line breaks. */
5913
5973
  prettyPrint?: boolean;
5914
5974
  /** 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. */
5915
5975
  quotaUser?: string;
5916
- /** 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). */
5976
+ /** 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. */
5917
5977
  requestId?: string;
5918
5978
  /** Upload protocol for media (e.g. "raw", "multipart"). */
5919
5979
  upload_protocol?: string;
@@ -5922,7 +5982,7 @@ declare namespace gapi.client {
5922
5982
  },
5923
5983
  body: MirroringEndpointGroupAssociation,
5924
5984
  ): Request<Operation>;
5925
- /** Deletes a single association. See https://google.aip.dev/135. */
5985
+ /** Deletes an association. See https://google.aip.dev/135. */
5926
5986
  delete(request?: {
5927
5987
  /** V1 error format. */
5928
5988
  '$.xgafv'?: string;
@@ -5936,7 +5996,7 @@ declare namespace gapi.client {
5936
5996
  fields?: string;
5937
5997
  /** 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. */
5938
5998
  key?: string;
5939
- /** Required. Full resource name of the association to delete, e.g. projects/123456789/locations/global/mirroringEndpointGroupAssociations/my-eg-association. */
5999
+ /** Required. The association to delete. */
5940
6000
  name: string;
5941
6001
  /** OAuth 2.0 token for the current user. */
5942
6002
  oauth_token?: string;
@@ -5944,7 +6004,7 @@ declare namespace gapi.client {
5944
6004
  prettyPrint?: boolean;
5945
6005
  /** 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. */
5946
6006
  quotaUser?: string;
5947
- /** 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). */
6007
+ /** 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. */
5948
6008
  requestId?: string;
5949
6009
  /** Upload protocol for media (e.g. "raw", "multipart"). */
5950
6010
  upload_protocol?: string;
@@ -5965,7 +6025,7 @@ declare namespace gapi.client {
5965
6025
  fields?: string;
5966
6026
  /** 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. */
5967
6027
  key?: string;
5968
- /** Required. Full resource name of the association to get, e.g. projects/123456789/locations/global/mirroringEndpointGroupAssociations/my-eg-association. */
6028
+ /** Required. The name of the association to retrieve. Format: projects/{project}/locations/{location}/mirroringEndpointGroupAssociations/{mirroring_endpoint_group_association} */
5969
6029
  name: string;
5970
6030
  /** OAuth 2.0 token for the current user. */
5971
6031
  oauth_token?: string;
@@ -5990,19 +6050,19 @@ declare namespace gapi.client {
5990
6050
  callback?: string;
5991
6051
  /** Selector specifying which fields to include in a partial response. */
5992
6052
  fields?: string;
5993
- /** Optional. A filter expression that filters the results listed in the response. See https://google.aip.dev/160. */
6053
+ /** Optional. Filter expression. See https://google.aip.dev/160#filtering for more details. */
5994
6054
  filter?: string;
5995
6055
  /** 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. */
5996
6056
  key?: string;
5997
6057
  /** OAuth 2.0 token for the current user. */
5998
6058
  oauth_token?: string;
5999
- /** Optional. Hint for how to order the results */
6059
+ /** Optional. Sort expression. See https://google.aip.dev/132#ordering for more details. */
6000
6060
  orderBy?: string;
6001
- /** 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. */
6061
+ /** 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. */
6002
6062
  pageSize?: number;
6003
- /** Optional. A token identifying a page of results the server should return. See https://google.aip.dev/158. */
6063
+ /** Optional. A page token, received from a previous `ListMirroringEndpointGroups` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListMirroringEndpointGroups` must match the call that provided the page token. See https://google.aip.dev/158 for more details. */
6004
6064
  pageToken?: string;
6005
- /** Required. Parent container (project and location) of the associations to list, e.g. `projects/123456789/locations/global`. */
6065
+ /** Required. The parent, which owns this collection of associations. Example: `projects/123456789/locations/global`. See https://google.aip.dev/132 for more details. */
6006
6066
  parent: string;
6007
6067
  /** Returns response with indentations and line breaks. */
6008
6068
  prettyPrint?: boolean;
@@ -6035,9 +6095,9 @@ declare namespace gapi.client {
6035
6095
  prettyPrint?: boolean;
6036
6096
  /** 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. */
6037
6097
  quotaUser?: string;
6038
- /** 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). */
6098
+ /** 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. */
6039
6099
  requestId?: string;
6040
- /** Optional. Field mask is used to specify the fields to be overwritten in the association by the update. See https://google.aip.dev/161. */
6100
+ /** Optional. The list of fields to update. Fields are specified relative to the association (e.g. `description`; *not* `mirroring_endpoint_group_association.description`). See https://google.aip.dev/161 for more details. */
6041
6101
  updateMask?: string;
6042
6102
  /** Upload protocol for media (e.g. "raw", "multipart"). */
6043
6103
  upload_protocol?: string;
@@ -6068,9 +6128,9 @@ declare namespace gapi.client {
6068
6128
  prettyPrint?: boolean;
6069
6129
  /** 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. */
6070
6130
  quotaUser?: string;
6071
- /** 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). */
6131
+ /** 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. */
6072
6132
  requestId?: string;
6073
- /** Optional. Field mask is used to specify the fields to be overwritten in the association by the update. See https://google.aip.dev/161. */
6133
+ /** Optional. The list of fields to update. Fields are specified relative to the association (e.g. `description`; *not* `mirroring_endpoint_group_association.description`). See https://google.aip.dev/161 for more details. */
6074
6134
  updateMask?: string;
6075
6135
  /** Upload protocol for media (e.g. "raw", "multipart"). */
6076
6136
  upload_protocol?: string;
@@ -6095,17 +6155,17 @@ declare namespace gapi.client {
6095
6155
  fields?: string;
6096
6156
  /** 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. */
6097
6157
  key?: string;
6098
- /** Required. Id of the requesting object If auto-generating Id server-side, remove this field and mirroring_endpoint_group_id from the method_signature of Create RPC */
6158
+ /** Required. The ID to use for the endpoint group, which will become the final component of the endpoint group's resource name. */
6099
6159
  mirroringEndpointGroupId?: string;
6100
6160
  /** OAuth 2.0 token for the current user. */
6101
6161
  oauth_token?: string;
6102
- /** Required. Value for parent. */
6162
+ /** Required. The parent resource where this endpoint group will be created. Format: projects/{project}/locations/{location} */
6103
6163
  parent: string;
6104
6164
  /** Returns response with indentations and line breaks. */
6105
6165
  prettyPrint?: boolean;
6106
6166
  /** 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. */
6107
6167
  quotaUser?: string;
6108
- /** 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). */
6168
+ /** 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. */
6109
6169
  requestId?: string;
6110
6170
  /** Upload protocol for media (e.g. "raw", "multipart"). */
6111
6171
  upload_protocol?: string;
@@ -6128,17 +6188,17 @@ declare namespace gapi.client {
6128
6188
  fields?: string;
6129
6189
  /** 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. */
6130
6190
  key?: string;
6131
- /** Required. Id of the requesting object If auto-generating Id server-side, remove this field and mirroring_endpoint_group_id from the method_signature of Create RPC */
6191
+ /** Required. The ID to use for the endpoint group, which will become the final component of the endpoint group's resource name. */
6132
6192
  mirroringEndpointGroupId?: string;
6133
6193
  /** OAuth 2.0 token for the current user. */
6134
6194
  oauth_token?: string;
6135
- /** Required. Value for parent. */
6195
+ /** Required. The parent resource where this endpoint group will be created. Format: projects/{project}/locations/{location} */
6136
6196
  parent: string;
6137
6197
  /** Returns response with indentations and line breaks. */
6138
6198
  prettyPrint?: boolean;
6139
6199
  /** 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. */
6140
6200
  quotaUser?: string;
6141
- /** 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). */
6201
+ /** 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. */
6142
6202
  requestId?: string;
6143
6203
  /** Upload protocol for media (e.g. "raw", "multipart"). */
6144
6204
  upload_protocol?: string;
@@ -6161,7 +6221,7 @@ declare namespace gapi.client {
6161
6221
  fields?: string;
6162
6222
  /** 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. */
6163
6223
  key?: string;
6164
- /** Required. Name of the resource */
6224
+ /** Required. The endpoint group to delete. */
6165
6225
  name: string;
6166
6226
  /** OAuth 2.0 token for the current user. */
6167
6227
  oauth_token?: string;
@@ -6169,7 +6229,7 @@ declare namespace gapi.client {
6169
6229
  prettyPrint?: boolean;
6170
6230
  /** 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. */
6171
6231
  quotaUser?: string;
6172
- /** 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). */
6232
+ /** 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. */
6173
6233
  requestId?: string;
6174
6234
  /** Upload protocol for media (e.g. "raw", "multipart"). */
6175
6235
  upload_protocol?: string;
@@ -6190,7 +6250,7 @@ declare namespace gapi.client {
6190
6250
  fields?: string;
6191
6251
  /** 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. */
6192
6252
  key?: string;
6193
- /** Required. Name of the resource */
6253
+ /** Required. The name of the endpoint group to retrieve. Format: projects/{project}/locations/{location}/mirroringEndpointGroups/{mirroring_endpoint_group} */
6194
6254
  name: string;
6195
6255
  /** OAuth 2.0 token for the current user. */
6196
6256
  oauth_token?: string;
@@ -6215,19 +6275,19 @@ declare namespace gapi.client {
6215
6275
  callback?: string;
6216
6276
  /** Selector specifying which fields to include in a partial response. */
6217
6277
  fields?: string;
6218
- /** Optional. Filtering results */
6278
+ /** Optional. Filter expression. See https://google.aip.dev/160#filtering for more details. */
6219
6279
  filter?: string;
6220
6280
  /** 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. */
6221
6281
  key?: string;
6222
6282
  /** OAuth 2.0 token for the current user. */
6223
6283
  oauth_token?: string;
6224
- /** Optional. Hint for how to order the results */
6284
+ /** Optional. Sort expression. See https://google.aip.dev/132#ordering for more details. */
6225
6285
  orderBy?: string;
6226
- /** Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default. */
6286
+ /** 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. */
6227
6287
  pageSize?: number;
6228
- /** Optional. A token identifying a page of results the server should return. */
6288
+ /** Optional. A page token, received from a previous `ListMirroringEndpointGroups` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListMirroringEndpointGroups` must match the call that provided the page token. See https://google.aip.dev/158 for more details. */
6229
6289
  pageToken?: string;
6230
- /** Required. Parent value for ListMirroringEndpointGroupsRequest */
6290
+ /** Required. The parent, which owns this collection of endpoint groups. Example: `projects/123456789/locations/global`. See https://google.aip.dev/132 for more details. */
6231
6291
  parent: string;
6232
6292
  /** Returns response with indentations and line breaks. */
6233
6293
  prettyPrint?: boolean;
@@ -6260,9 +6320,9 @@ declare namespace gapi.client {
6260
6320
  prettyPrint?: boolean;
6261
6321
  /** 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. */
6262
6322
  quotaUser?: string;
6263
- /** 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). */
6323
+ /** 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. */
6264
6324
  requestId?: string;
6265
- /** Required. Field mask is used to specify the fields to be overwritten in the MirroringEndpointGroup 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. */
6325
+ /** Optional. The list of fields to update. Fields are specified relative to the endpoint group (e.g. `description`; *not* `mirroring_endpoint_group.description`). See https://google.aip.dev/161 for more details. */
6266
6326
  updateMask?: string;
6267
6327
  /** Upload protocol for media (e.g. "raw", "multipart"). */
6268
6328
  upload_protocol?: string;
@@ -6293,9 +6353,9 @@ declare namespace gapi.client {
6293
6353
  prettyPrint?: boolean;
6294
6354
  /** 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. */
6295
6355
  quotaUser?: string;
6296
- /** 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). */
6356
+ /** 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. */
6297
6357
  requestId?: string;
6298
- /** Required. Field mask is used to specify the fields to be overwritten in the MirroringEndpointGroup 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. */
6358
+ /** Optional. The list of fields to update. Fields are specified relative to the endpoint group (e.g. `description`; *not* `mirroring_endpoint_group.description`). See https://google.aip.dev/161 for more details. */
6299
6359
  updateMask?: string;
6300
6360
  /** Upload protocol for media (e.g. "raw", "multipart"). */
6301
6361
  upload_protocol?: string;
@@ -6624,6 +6684,8 @@ declare namespace gapi.client {
6624
6684
  prettyPrint?: boolean;
6625
6685
  /** 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. */
6626
6686
  quotaUser?: string;
6687
+ /** Optional. Setting this field to `true` will opt the request into returning the resources that are reachable, and into including the names of those that were unreachable in the [ListServerTlsPoliciesResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. */
6688
+ returnPartialSuccess?: boolean;
6627
6689
  /** Upload protocol for media (e.g. "raw", "multipart"). */
6628
6690
  upload_protocol?: string;
6629
6691
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */