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

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 +332 -78
  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: 20250126
12
+ // Revision: 20250211
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -56,6 +56,12 @@ declare namespace gapi.client {
56
56
  /** Output only. The timestamp when the resource was updated. */
57
57
  updateTime?: string;
58
58
  }
59
+ interface AntivirusOverride {
60
+ /** Required. Threat action override. For some threat types, only a subset of actions applies. */
61
+ action?: string;
62
+ /** Required. Protocol to match. */
63
+ protocol?: string;
64
+ }
59
65
  interface AuthorizationPolicy {
60
66
  /** Required. The action to take when a rule match is found. Possible values are "ALLOW" or "DENY". */
61
67
  action?: string;
@@ -177,6 +183,26 @@ declare namespace gapi.client {
177
183
  /** Required. A list of references to the Forwarding Rules on which this policy will be applied. */
178
184
  resources?: string[];
179
185
  }
186
+ interface BackendAuthenticationConfig {
187
+ /** Optional. A reference to a certificatemanager.googleapis.com.Certificate resource. This is a relative resource path following the form "projects/{project}/locations/{location}/certificates/{certificate}". Used by a BackendService to negotiate mTLS when the backend connection uses TLS and the backend requests a client certificate. Must have a CLIENT_AUTH scope. */
188
+ clientCertificate?: string;
189
+ /** Output only. The timestamp when the resource was created. */
190
+ createTime?: string;
191
+ /** Optional. Free-text description of the resource. */
192
+ description?: string;
193
+ /** Output only. Etag of the resource. */
194
+ etag?: string;
195
+ /** Set of label tags associated with the resource. */
196
+ labels?: {[P in string]: string};
197
+ /** Required. Name of the BackendAuthenticationConfig resource. It matches the pattern `projects/*‍/locations/{location}/backendAuthenticationConfigs/{backend_authentication_config}` */
198
+ name?: string;
199
+ /** Optional. A reference to a TrustConfig resource from the certificatemanager.googleapis.com namespace. This is a relative resource path following the form "projects/{project}/locations/{location}/trustConfigs/{trust_config}". A BackendService uses the chain of trust represented by this TrustConfig, if specified, to validate the server certificates presented by the backend. Required unless wellKnownRoots is set to PUBLIC_ROOTS. */
200
+ trustConfig?: string;
201
+ /** Output only. The timestamp when the resource was updated. */
202
+ updateTime?: string;
203
+ /** Well known roots to use for server certificate validation. */
204
+ wellKnownRoots?: string;
205
+ }
180
206
  interface CancelOperationRequest {}
181
207
  interface CertificateProviderInstance {
182
208
  /** Required. Plugin instance name, used to locate and load CertificateProvider instance configuration. Set to "google_cloud_private_spiffe" to use Certificate Authority Service certificate provider instance. */
@@ -207,11 +233,11 @@ declare namespace gapi.client {
207
233
  sourceAddressGroup?: string;
208
234
  }
209
235
  interface CustomInterceptProfile {
210
- /** Required. The InterceptEndpointGroup to which traffic associated with the SP should be mirrored. */
236
+ /** Required. The target InterceptEndpointGroup. When a firewall rule with this security profile attached matches a packet, the packet will be intercepted to the location-local target in this group. */
211
237
  interceptEndpointGroup?: string;
212
238
  }
213
239
  interface CustomMirroringProfile {
214
- /** Required. The MirroringEndpointGroup to which traffic associated with the SP should be mirrored. */
240
+ /** Required. The target MirroringEndpointGroup. When a mirroring rule with this security profile attached matches a packet, a replica will be mirrored to the location-local target in this group. */
215
241
  mirroringEndpointGroup?: string;
216
242
  }
217
243
  interface Destination {
@@ -252,6 +278,10 @@ declare namespace gapi.client {
252
278
  name?: string;
253
279
  /** Output only. Whether reconciling is in progress, recommended per https://google.aip.dev/128. */
254
280
  reconciling?: boolean;
281
+ /** Output only. [Output Only] Reserved for future use. */
282
+ satisfiesPzi?: boolean;
283
+ /** Output only. [Output Only] Reserved for future use. */
284
+ satisfiesPzs?: boolean;
255
285
  /** Output only. Current state of the endpoint. */
256
286
  state?: string;
257
287
  /** Output only. Update time stamp */
@@ -511,6 +541,14 @@ declare namespace gapi.client {
511
541
  /** Locations that could not be reached. */
512
542
  unreachable?: string[];
513
543
  }
544
+ interface ListBackendAuthenticationConfigsResponse {
545
+ /** List of BackendAuthenticationConfig resources. */
546
+ backendAuthenticationConfigs?: BackendAuthenticationConfig[];
547
+ /** 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`. */
548
+ nextPageToken?: string;
549
+ /** Locations that could not be reached. */
550
+ unreachable?: string[];
551
+ }
514
552
  interface ListClientTlsPoliciesResponse {
515
553
  /** List of ClientTlsPolicy resources. */
516
554
  clientTlsPolicies?: ClientTlsPolicy[];
@@ -596,9 +634,9 @@ declare namespace gapi.client {
596
634
  unreachable?: string[];
597
635
  }
598
636
  interface ListMirroringEndpointGroupAssociationsResponse {
599
- /** The list of MirroringEndpointGroupAssociation */
637
+ /** The list of associations returned. */
600
638
  mirroringEndpointGroupAssociations?: MirroringEndpointGroupAssociation[];
601
- /** A token identifying a page of results the server should return. */
639
+ /** A token identifying a page of results the server should return. See https://google.aip.dev/158. */
602
640
  nextPageToken?: string;
603
641
  }
604
642
  interface ListMirroringEndpointGroupsResponse {
@@ -660,101 +698,101 @@ declare namespace gapi.client {
660
698
  name?: string;
661
699
  }
662
700
  interface MirroringDeployment {
663
- /** Output only. [Output only] Create time stamp */
701
+ /** Output only. The timestamp when the resource was created. See https://google.aip.dev/148#timestamps. */
664
702
  createTime?: string;
665
703
  /** Optional. User-provided description of the deployment. Used as additional context for the deployment. */
666
704
  description?: string;
667
- /** Required. Immutable. The regional load balancer which the mirrored traffic should be forwarded to. Format is: projects/{project}/regions/{region}/forwardingRules/{forwardingRule} */
705
+ /** Required. Immutable. The regional forwarding rule that fronts the mirroring collectors, for example: `projects/123456789/regions/us-central1/forwardingRules/my-rule`. See https://google.aip.dev/124. */
668
706
  forwardingRule?: string;
669
- /** Optional. Labels as key value pairs */
707
+ /** Optional. Labels are key/value pairs that help to organize and filter resources. */
670
708
  labels?: {[P in string]: string};
671
- /** Required. Immutable. The Mirroring Deployment Group that this resource is part of. Format is: `projects/{project}/locations/global/mirroringDeploymentGroups/{mirroringDeploymentGroup}` */
709
+ /** Required. Immutable. The deployment group that this deployment is a part of, for example: `projects/123456789/locations/global/mirroringDeploymentGroups/my-dg`. See https://google.aip.dev/124. */
672
710
  mirroringDeploymentGroup?: string;
673
- /** Immutable. Identifier. The name of the MirroringDeployment. */
711
+ /** Immutable. Identifier. The resource name of this deployment, for example: `projects/123456789/locations/us-central1-a/mirroringDeployments/my-dep`. See https://google.aip.dev/122 for more details. */
674
712
  name?: string;
675
- /** Output only. Whether reconciling is in progress, recommended per https://google.aip.dev/128. */
713
+ /** 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. */
676
714
  reconciling?: boolean;
677
- /** Output only. Current state of the deployment. */
715
+ /** Output only. The current state of the deployment. See https://google.aip.dev/216. */
678
716
  state?: string;
679
- /** Output only. [Output only] Update time stamp */
717
+ /** Output only. The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps. */
680
718
  updateTime?: string;
681
719
  }
682
720
  interface MirroringDeploymentGroup {
683
- /** Output only. The list of Mirroring Endpoint Groups that are connected to this resource. */
721
+ /** Output only. The list of endpoint groups that are connected to this resource. */
684
722
  connectedEndpointGroups?: MirroringDeploymentGroupConnectedEndpointGroup[];
685
- /** Output only. [Output only] Create time stamp */
723
+ /** Output only. The timestamp when the resource was created. See https://google.aip.dev/148#timestamps. */
686
724
  createTime?: string;
687
725
  /** Optional. User-provided description of the deployment group. Used as additional context for the deployment group. */
688
726
  description?: string;
689
- /** Optional. Labels as key value pairs */
727
+ /** Optional. Labels are key/value pairs that help to organize and filter resources. */
690
728
  labels?: {[P in string]: string};
691
- /** Immutable. Identifier. Then name of the MirroringDeploymentGroup. */
729
+ /** 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. */
692
730
  name?: string;
693
- /** Required. Immutable. The network that is being used for the deployment. Format is: projects/{project}/global/networks/{network}. */
731
+ /** 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. */
694
732
  network?: string;
695
- /** Output only. Whether reconciling is in progress, recommended per https://google.aip.dev/128. */
733
+ /** 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. */
696
734
  reconciling?: boolean;
697
- /** Output only. Current state of the deployment group. */
735
+ /** Output only. The current state of the deployment group. See https://google.aip.dev/216. */
698
736
  state?: string;
699
- /** Output only. [Output only] Update time stamp */
737
+ /** Output only. The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps. */
700
738
  updateTime?: string;
701
739
  }
702
740
  interface MirroringDeploymentGroupConnectedEndpointGroup {
703
- /** Output only. A connected mirroring endpoint group. */
741
+ /** Output only. The connected endpoint group's resource name, for example: `projects/123456789/locations/global/mirroringEndpointGroups/my-eg`. See https://google.aip.dev/124. */
704
742
  name?: string;
705
743
  }
706
744
  interface MirroringEndpointGroup {
707
- /** Output only. List of Mirroring Endpoint Group Associations that are associated to this endpoint group. */
745
+ /** Output only. List of associations to this endpoint group. */
708
746
  associations?: MirroringEndpointGroupAssociationDetails[];
709
- /** Output only. [Output only] Create time stamp */
747
+ /** Output only. The timestamp when the resource was created. See https://google.aip.dev/148#timestamps. */
710
748
  createTime?: string;
711
749
  /** Optional. User-provided description of the endpoint group. Used as additional context for the endpoint group. */
712
750
  description?: string;
713
- /** Optional. Labels as key value pairs */
751
+ /** Optional. Labels are key/value pairs that help to organize and filter resources. */
714
752
  labels?: {[P in string]: string};
715
- /** Required. Immutable. The Mirroring Deployment Group that this resource is connected to. Format is: `projects/{project}/locations/global/mirroringDeploymentGroups/{mirroringDeploymentGroup}` */
753
+ /** Immutable. The deployment group that this DIRECT endpoint group is connected to, for example: `projects/123456789/locations/global/mirroringDeploymentGroups/my-dg`. See https://google.aip.dev/124. */
716
754
  mirroringDeploymentGroup?: string;
717
- /** Immutable. Identifier. Next ID: 11 The name of the MirroringEndpointGroup. */
755
+ /** Immutable. Identifier. The resource name of this endpoint group, for example: `projects/123456789/locations/global/mirroringEndpointGroups/my-eg`. See https://google.aip.dev/122 for more details. */
718
756
  name?: string;
719
- /** Output only. Whether reconciling is in progress, recommended per https://google.aip.dev/128. */
757
+ /** 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. */
720
758
  reconciling?: boolean;
721
- /** Output only. Current state of the endpoint group. */
759
+ /** Output only. The current state of the endpoint group. See https://google.aip.dev/216. */
722
760
  state?: string;
723
- /** Output only. [Output only] Update time stamp */
761
+ /** Output only. The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps. */
724
762
  updateTime?: string;
725
763
  }
726
764
  interface MirroringEndpointGroupAssociation {
727
- /** Output only. [Output only] Create time stamp */
765
+ /** Output only. The timestamp when the resource was created. See https://google.aip.dev/148#timestamps. */
728
766
  createTime?: string;
729
- /** Optional. Labels as key value pairs */
767
+ /** Optional. Labels are key/value pairs that help to organize and filter resources. */
730
768
  labels?: {[P in string]: string};
731
- /** Output only. The list of locations that this association is in and its details. */
769
+ /** 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. */
732
770
  locationsDetails?: MirroringEndpointGroupAssociationLocationDetails[];
733
- /** Required. Immutable. The Mirroring Endpoint Group that this resource is connected to. Format is: `projects/{project}/locations/global/mirroringEndpointGroups/{mirroringEndpointGroup}` */
771
+ /** 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. */
734
772
  mirroringEndpointGroup?: string;
735
- /** Immutable. Identifier. The name of the MirroringEndpointGroupAssociation. */
773
+ /** Immutable. Identifier. The resource name of this endpoint group association, for example: `projects/123456789/locations/global/mirroringEndpointGroupAssociations/my-eg-association`. See https://google.aip.dev/122 for more details. */
736
774
  name?: string;
737
- /** Required. Immutable. The VPC network associated. Format: projects/{project}/global/networks/{network}. */
775
+ /** Immutable. The VPC network that is associated. for example: `projects/123456789/global/networks/my-network`. See https://google.aip.dev/124. */
738
776
  network?: string;
739
- /** Output only. Whether reconciling is in progress, recommended per https://google.aip.dev/128. */
777
+ /** 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. */
740
778
  reconciling?: boolean;
741
779
  /** Output only. Current state of the endpoint group association. */
742
780
  state?: string;
743
- /** Output only. [Output only] Update time stamp */
781
+ /** Output only. The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps. */
744
782
  updateTime?: string;
745
783
  }
746
784
  interface MirroringEndpointGroupAssociationDetails {
747
- /** Output only. The resource name of the MirroringEndpointGroupAssociation. Format: projects/{project}/locations/{location}/mirroringEndpointGroupAssociations/{mirroringEndpointGroupAssociation} */
785
+ /** Output only. The connected association's resource name, for example: `projects/123456789/locations/global/mirroringEndpointGroupAssociations/my-ega`. See https://google.aip.dev/124. */
748
786
  name?: string;
749
- /** Output only. The VPC network associated. Format: projects/{project}/global/networks/{name}. */
787
+ /** Output only. The associated network, for example: projects/123456789/global/networks/my-network. See https://google.aip.dev/124. */
750
788
  network?: string;
751
- /** Output only. Current state of the association. */
789
+ /** Output only. Most recent known state of the association. */
752
790
  state?: string;
753
791
  }
754
792
  interface MirroringEndpointGroupAssociationLocationDetails {
755
- /** Output only. The cloud location. */
793
+ /** Output only. The cloud location, e.g. "us-central1-a" or "asia-south1". */
756
794
  location?: string;
757
- /** Output only. The association state in this location. */
795
+ /** Output only. The current state of the association in this location. */
758
796
  state?: string;
759
797
  }
760
798
  interface MTLSPolicy {
@@ -896,6 +934,8 @@ declare namespace gapi.client {
896
934
  type?: string;
897
935
  }
898
936
  interface ThreatPreventionProfile {
937
+ /** Optional. Configuration for overriding antivirus actions per protocol. */
938
+ antivirusOverrides?: AntivirusOverride[];
899
939
  /** Optional. Configuration for overriding threats actions by severity match. */
900
940
  severityOverrides?: SeverityOverride[];
901
941
  /** Optional. Configuration for overriding threats actions by threat_id match. If a threat is matched both by configuration provided in severity_overrides and threat_overrides, the threat_overrides action is applied. */
@@ -3304,6 +3344,219 @@ declare namespace gapi.client {
3304
3344
  body: GoogleIamV1TestIamPermissionsRequest,
3305
3345
  ): Request<GoogleIamV1TestIamPermissionsResponse>;
3306
3346
  }
3347
+ interface BackendAuthenticationConfigsResource {
3348
+ /** Creates a new BackendAuthenticationConfig in a given project and location. */
3349
+ create(request: {
3350
+ /** V1 error format. */
3351
+ '$.xgafv'?: string;
3352
+ /** OAuth access token. */
3353
+ access_token?: string;
3354
+ /** Data format for response. */
3355
+ alt?: string;
3356
+ /** Required. Short name of the BackendAuthenticationConfig resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and should not start with a number. E.g. "backend-auth-config". */
3357
+ backendAuthenticationConfigId?: string;
3358
+ /** JSONP */
3359
+ callback?: string;
3360
+ /** Selector specifying which fields to include in a partial response. */
3361
+ fields?: string;
3362
+ /** 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. */
3363
+ key?: string;
3364
+ /** OAuth 2.0 token for the current user. */
3365
+ oauth_token?: string;
3366
+ /** Required. The parent resource of the BackendAuthenticationConfig. Must be in the format `projects/*‍/locations/{location}`. */
3367
+ parent: string;
3368
+ /** Returns response with indentations and line breaks. */
3369
+ prettyPrint?: boolean;
3370
+ /** 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. */
3371
+ quotaUser?: string;
3372
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
3373
+ upload_protocol?: string;
3374
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3375
+ uploadType?: string;
3376
+ /** Request body */
3377
+ resource: BackendAuthenticationConfig;
3378
+ }): Request<Operation>;
3379
+ create(
3380
+ request: {
3381
+ /** V1 error format. */
3382
+ '$.xgafv'?: string;
3383
+ /** OAuth access token. */
3384
+ access_token?: string;
3385
+ /** Data format for response. */
3386
+ alt?: string;
3387
+ /** Required. Short name of the BackendAuthenticationConfig resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and should not start with a number. E.g. "backend-auth-config". */
3388
+ backendAuthenticationConfigId?: string;
3389
+ /** JSONP */
3390
+ callback?: string;
3391
+ /** Selector specifying which fields to include in a partial response. */
3392
+ fields?: string;
3393
+ /** 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. */
3394
+ key?: string;
3395
+ /** OAuth 2.0 token for the current user. */
3396
+ oauth_token?: string;
3397
+ /** Required. The parent resource of the BackendAuthenticationConfig. Must be in the format `projects/*‍/locations/{location}`. */
3398
+ parent: string;
3399
+ /** Returns response with indentations and line breaks. */
3400
+ prettyPrint?: boolean;
3401
+ /** 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. */
3402
+ quotaUser?: string;
3403
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
3404
+ upload_protocol?: string;
3405
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3406
+ uploadType?: string;
3407
+ },
3408
+ body: BackendAuthenticationConfig,
3409
+ ): Request<Operation>;
3410
+ /** Deletes a single BackendAuthenticationConfig to BackendAuthenticationConfig. */
3411
+ delete(request?: {
3412
+ /** V1 error format. */
3413
+ '$.xgafv'?: string;
3414
+ /** OAuth access token. */
3415
+ access_token?: string;
3416
+ /** Data format for response. */
3417
+ alt?: string;
3418
+ /** JSONP */
3419
+ callback?: string;
3420
+ /** Optional. Etag of the resource. If this is provided, it must match the server's etag. */
3421
+ etag?: string;
3422
+ /** Selector specifying which fields to include in a partial response. */
3423
+ fields?: string;
3424
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
3425
+ key?: string;
3426
+ /** Required. A name of the BackendAuthenticationConfig to delete. Must be in the format `projects/*‍/locations/{location}/backendAuthenticationConfigs/*`. */
3427
+ name: string;
3428
+ /** OAuth 2.0 token for the current user. */
3429
+ oauth_token?: string;
3430
+ /** Returns response with indentations and line breaks. */
3431
+ prettyPrint?: boolean;
3432
+ /** 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. */
3433
+ quotaUser?: string;
3434
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
3435
+ upload_protocol?: string;
3436
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3437
+ uploadType?: string;
3438
+ }): Request<Operation>;
3439
+ /** Gets details of a single BackendAuthenticationConfig to BackendAuthenticationConfig. */
3440
+ get(request?: {
3441
+ /** V1 error format. */
3442
+ '$.xgafv'?: string;
3443
+ /** OAuth access token. */
3444
+ access_token?: string;
3445
+ /** Data format for response. */
3446
+ alt?: string;
3447
+ /** JSONP */
3448
+ callback?: string;
3449
+ /** Selector specifying which fields to include in a partial response. */
3450
+ fields?: string;
3451
+ /** 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. */
3452
+ key?: string;
3453
+ /** Required. A name of the BackendAuthenticationConfig to get. Must be in the format `projects/*‍/locations/{location}/backendAuthenticationConfigs/*`. */
3454
+ name: string;
3455
+ /** OAuth 2.0 token for the current user. */
3456
+ oauth_token?: string;
3457
+ /** Returns response with indentations and line breaks. */
3458
+ prettyPrint?: boolean;
3459
+ /** 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. */
3460
+ quotaUser?: string;
3461
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
3462
+ upload_protocol?: string;
3463
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3464
+ uploadType?: string;
3465
+ }): Request<BackendAuthenticationConfig>;
3466
+ /** Lists BackendAuthenticationConfigs in a given project and location. */
3467
+ list(request?: {
3468
+ /** V1 error format. */
3469
+ '$.xgafv'?: string;
3470
+ /** OAuth access token. */
3471
+ access_token?: string;
3472
+ /** Data format for response. */
3473
+ alt?: string;
3474
+ /** JSONP */
3475
+ callback?: string;
3476
+ /** Selector specifying which fields to include in a partial response. */
3477
+ fields?: string;
3478
+ /** 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. */
3479
+ key?: string;
3480
+ /** OAuth 2.0 token for the current user. */
3481
+ oauth_token?: string;
3482
+ /** Maximum number of BackendAuthenticationConfigs to return per call. */
3483
+ pageSize?: number;
3484
+ /** The value returned by the last `ListBackendAuthenticationConfigsResponse` Indicates that this is a continuation of a prior `ListBackendAuthenticationConfigs` call, and that the system should return the next page of data. */
3485
+ pageToken?: string;
3486
+ /** Required. The project and location from which the BackendAuthenticationConfigs should be listed, specified in the format `projects/*‍/locations/{location}`. */
3487
+ parent: string;
3488
+ /** Returns response with indentations and line breaks. */
3489
+ prettyPrint?: boolean;
3490
+ /** 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. */
3491
+ quotaUser?: string;
3492
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
3493
+ upload_protocol?: string;
3494
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3495
+ uploadType?: string;
3496
+ }): Request<ListBackendAuthenticationConfigsResponse>;
3497
+ /** Updates the parameters of a single BackendAuthenticationConfig to BackendAuthenticationConfig. */
3498
+ patch(request: {
3499
+ /** V1 error format. */
3500
+ '$.xgafv'?: string;
3501
+ /** OAuth access token. */
3502
+ access_token?: string;
3503
+ /** Data format for response. */
3504
+ alt?: string;
3505
+ /** JSONP */
3506
+ callback?: string;
3507
+ /** Selector specifying which fields to include in a partial response. */
3508
+ fields?: string;
3509
+ /** 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. */
3510
+ key?: string;
3511
+ /** Required. Name of the BackendAuthenticationConfig resource. It matches the pattern `projects/*‍/locations/{location}/backendAuthenticationConfigs/{backend_authentication_config}` */
3512
+ name: string;
3513
+ /** OAuth 2.0 token for the current user. */
3514
+ oauth_token?: string;
3515
+ /** Returns response with indentations and line breaks. */
3516
+ prettyPrint?: boolean;
3517
+ /** 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. */
3518
+ quotaUser?: string;
3519
+ /** Optional. Field mask is used to specify the fields to be overwritten in the BackendAuthenticationConfig 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. */
3520
+ updateMask?: string;
3521
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
3522
+ upload_protocol?: string;
3523
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3524
+ uploadType?: string;
3525
+ /** Request body */
3526
+ resource: BackendAuthenticationConfig;
3527
+ }): Request<Operation>;
3528
+ patch(
3529
+ request: {
3530
+ /** V1 error format. */
3531
+ '$.xgafv'?: string;
3532
+ /** OAuth access token. */
3533
+ access_token?: string;
3534
+ /** Data format for response. */
3535
+ alt?: string;
3536
+ /** JSONP */
3537
+ callback?: string;
3538
+ /** Selector specifying which fields to include in a partial response. */
3539
+ fields?: string;
3540
+ /** 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. */
3541
+ key?: string;
3542
+ /** Required. Name of the BackendAuthenticationConfig resource. It matches the pattern `projects/*‍/locations/{location}/backendAuthenticationConfigs/{backend_authentication_config}` */
3543
+ name: string;
3544
+ /** OAuth 2.0 token for the current user. */
3545
+ oauth_token?: string;
3546
+ /** Returns response with indentations and line breaks. */
3547
+ prettyPrint?: boolean;
3548
+ /** 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. */
3549
+ quotaUser?: string;
3550
+ /** Optional. Field mask is used to specify the fields to be overwritten in the BackendAuthenticationConfig 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. */
3551
+ updateMask?: string;
3552
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
3553
+ upload_protocol?: string;
3554
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3555
+ uploadType?: string;
3556
+ },
3557
+ body: BackendAuthenticationConfig,
3558
+ ): Request<Operation>;
3559
+ }
3307
3560
  interface ClientTlsPoliciesResource {
3308
3561
  /** Creates a new ClientTlsPolicy in a given project and location. */
3309
3562
  create(request: {
@@ -5324,7 +5577,7 @@ declare namespace gapi.client {
5324
5577
  fields?: string;
5325
5578
  /** 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. */
5326
5579
  key?: string;
5327
- /** Immutable. Identifier. Then name of the MirroringDeploymentGroup. */
5580
+ /** 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. */
5328
5581
  name: string;
5329
5582
  /** OAuth 2.0 token for the current user. */
5330
5583
  oauth_token?: string;
@@ -5357,7 +5610,7 @@ declare namespace gapi.client {
5357
5610
  fields?: string;
5358
5611
  /** 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. */
5359
5612
  key?: string;
5360
- /** Immutable. Identifier. Then name of the MirroringDeploymentGroup. */
5613
+ /** 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. */
5361
5614
  name: string;
5362
5615
  /** OAuth 2.0 token for the current user. */
5363
5616
  oauth_token?: string;
@@ -5378,7 +5631,7 @@ declare namespace gapi.client {
5378
5631
  ): Request<Operation>;
5379
5632
  }
5380
5633
  interface MirroringDeploymentsResource {
5381
- /** Creates a new MirroringDeployment in a given project and location. */
5634
+ /** Creates a deployment in a given project and location. See https://google.aip.dev/133. */
5382
5635
  create(request: {
5383
5636
  /** V1 error format. */
5384
5637
  '$.xgafv'?: string;
@@ -5444,7 +5697,7 @@ declare namespace gapi.client {
5444
5697
  },
5445
5698
  body: MirroringDeployment,
5446
5699
  ): Request<Operation>;
5447
- /** Deletes a single MirroringDeployment. */
5700
+ /** Deletes a deployment. See https://google.aip.dev/135. */
5448
5701
  delete(request?: {
5449
5702
  /** V1 error format. */
5450
5703
  '$.xgafv'?: string;
@@ -5473,7 +5726,7 @@ declare namespace gapi.client {
5473
5726
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5474
5727
  uploadType?: string;
5475
5728
  }): Request<Operation>;
5476
- /** Gets details of a single MirroringDeployment. */
5729
+ /** Gets a specific deployment. See https://google.aip.dev/131. */
5477
5730
  get(request?: {
5478
5731
  /** V1 error format. */
5479
5732
  '$.xgafv'?: string;
@@ -5500,7 +5753,7 @@ declare namespace gapi.client {
5500
5753
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5501
5754
  uploadType?: string;
5502
5755
  }): Request<MirroringDeployment>;
5503
- /** Lists MirroringDeployments in a given project and location. */
5756
+ /** Lists deployments in a given project and location. See https://google.aip.dev/132. */
5504
5757
  list(request?: {
5505
5758
  /** V1 error format. */
5506
5759
  '$.xgafv'?: string;
@@ -5535,7 +5788,7 @@ declare namespace gapi.client {
5535
5788
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5536
5789
  uploadType?: string;
5537
5790
  }): Request<ListMirroringDeploymentsResponse>;
5538
- /** Updates a single MirroringDeployment. */
5791
+ /** Updates a deployment. See https://google.aip.dev/134. */
5539
5792
  patch(request: {
5540
5793
  /** V1 error format. */
5541
5794
  '$.xgafv'?: string;
@@ -5549,7 +5802,7 @@ declare namespace gapi.client {
5549
5802
  fields?: string;
5550
5803
  /** 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. */
5551
5804
  key?: string;
5552
- /** Immutable. Identifier. The name of the MirroringDeployment. */
5805
+ /** Immutable. Identifier. The resource name of this deployment, for example: `projects/123456789/locations/us-central1-a/mirroringDeployments/my-dep`. See https://google.aip.dev/122 for more details. */
5553
5806
  name: string;
5554
5807
  /** OAuth 2.0 token for the current user. */
5555
5808
  oauth_token?: string;
@@ -5582,7 +5835,7 @@ declare namespace gapi.client {
5582
5835
  fields?: string;
5583
5836
  /** 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. */
5584
5837
  key?: string;
5585
- /** Immutable. Identifier. The name of the MirroringDeployment. */
5838
+ /** Immutable. Identifier. The resource name of this deployment, for example: `projects/123456789/locations/us-central1-a/mirroringDeployments/my-dep`. See https://google.aip.dev/122 for more details. */
5586
5839
  name: string;
5587
5840
  /** OAuth 2.0 token for the current user. */
5588
5841
  oauth_token?: string;
@@ -5603,7 +5856,7 @@ declare namespace gapi.client {
5603
5856
  ): Request<Operation>;
5604
5857
  }
5605
5858
  interface MirroringEndpointGroupAssociationsResource {
5606
- /** Creates a new MirroringEndpointGroupAssociation in a given project and location. */
5859
+ /** Creates an association in a given project and location. See https://google.aip.dev/133. */
5607
5860
  create(request: {
5608
5861
  /** V1 error format. */
5609
5862
  '$.xgafv'?: string;
@@ -5617,11 +5870,11 @@ declare namespace gapi.client {
5617
5870
  fields?: string;
5618
5871
  /** 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. */
5619
5872
  key?: string;
5620
- /** Optional. Id of the requesting object If auto-generating Id server-side, remove this field and mirroring_endpoint_group_association_id from the method_signature of Create RPC */
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 */
5621
5874
  mirroringEndpointGroupAssociationId?: string;
5622
5875
  /** OAuth 2.0 token for the current user. */
5623
5876
  oauth_token?: string;
5624
- /** Required. Value for parent. */
5877
+ /** Required. Container (project and location) where the association will be created, e.g. `projects/123456789/locations/global`. */
5625
5878
  parent: string;
5626
5879
  /** Returns response with indentations and line breaks. */
5627
5880
  prettyPrint?: boolean;
@@ -5650,11 +5903,11 @@ declare namespace gapi.client {
5650
5903
  fields?: string;
5651
5904
  /** 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. */
5652
5905
  key?: string;
5653
- /** Optional. Id of the requesting object If auto-generating Id server-side, remove this field and mirroring_endpoint_group_association_id from the method_signature of Create RPC */
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 */
5654
5907
  mirroringEndpointGroupAssociationId?: string;
5655
5908
  /** OAuth 2.0 token for the current user. */
5656
5909
  oauth_token?: string;
5657
- /** Required. Value for parent. */
5910
+ /** Required. Container (project and location) where the association will be created, e.g. `projects/123456789/locations/global`. */
5658
5911
  parent: string;
5659
5912
  /** Returns response with indentations and line breaks. */
5660
5913
  prettyPrint?: boolean;
@@ -5669,7 +5922,7 @@ declare namespace gapi.client {
5669
5922
  },
5670
5923
  body: MirroringEndpointGroupAssociation,
5671
5924
  ): Request<Operation>;
5672
- /** Deletes a single MirroringEndpointGroupAssociation. */
5925
+ /** Deletes a single association. See https://google.aip.dev/135. */
5673
5926
  delete(request?: {
5674
5927
  /** V1 error format. */
5675
5928
  '$.xgafv'?: string;
@@ -5683,7 +5936,7 @@ declare namespace gapi.client {
5683
5936
  fields?: string;
5684
5937
  /** 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. */
5685
5938
  key?: string;
5686
- /** Required. Name of the resource */
5939
+ /** Required. Full resource name of the association to delete, e.g. projects/123456789/locations/global/mirroringEndpointGroupAssociations/my-eg-association. */
5687
5940
  name: string;
5688
5941
  /** OAuth 2.0 token for the current user. */
5689
5942
  oauth_token?: string;
@@ -5698,7 +5951,7 @@ declare namespace gapi.client {
5698
5951
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5699
5952
  uploadType?: string;
5700
5953
  }): Request<Operation>;
5701
- /** Gets details of a single MirroringEndpointGroupAssociation. */
5954
+ /** Gets a specific association. See https://google.aip.dev/131. */
5702
5955
  get(request?: {
5703
5956
  /** V1 error format. */
5704
5957
  '$.xgafv'?: string;
@@ -5712,7 +5965,7 @@ declare namespace gapi.client {
5712
5965
  fields?: string;
5713
5966
  /** 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. */
5714
5967
  key?: string;
5715
- /** Required. Name of the resource */
5968
+ /** Required. Full resource name of the association to get, e.g. projects/123456789/locations/global/mirroringEndpointGroupAssociations/my-eg-association. */
5716
5969
  name: string;
5717
5970
  /** OAuth 2.0 token for the current user. */
5718
5971
  oauth_token?: string;
@@ -5725,7 +5978,7 @@ declare namespace gapi.client {
5725
5978
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5726
5979
  uploadType?: string;
5727
5980
  }): Request<MirroringEndpointGroupAssociation>;
5728
- /** Lists MirroringEndpointGroupAssociations in a given project and location. */
5981
+ /** Lists associations in a given project and location. See https://google.aip.dev/132. */
5729
5982
  list(request?: {
5730
5983
  /** V1 error format. */
5731
5984
  '$.xgafv'?: string;
@@ -5737,7 +5990,7 @@ declare namespace gapi.client {
5737
5990
  callback?: string;
5738
5991
  /** Selector specifying which fields to include in a partial response. */
5739
5992
  fields?: string;
5740
- /** Optional. Filtering results */
5993
+ /** Optional. A filter expression that filters the results listed in the response. See https://google.aip.dev/160. */
5741
5994
  filter?: string;
5742
5995
  /** 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. */
5743
5996
  key?: string;
@@ -5745,11 +5998,11 @@ declare namespace gapi.client {
5745
5998
  oauth_token?: string;
5746
5999
  /** Optional. Hint for how to order the results */
5747
6000
  orderBy?: string;
5748
- /** Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default. */
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. */
5749
6002
  pageSize?: number;
5750
- /** Optional. A token identifying a page of results the server should return. */
6003
+ /** Optional. A token identifying a page of results the server should return. See https://google.aip.dev/158. */
5751
6004
  pageToken?: string;
5752
- /** Required. Parent value for ListMirroringEndpointGroupAssociationsRequest */
6005
+ /** Required. Parent container (project and location) of the associations to list, e.g. `projects/123456789/locations/global`. */
5753
6006
  parent: string;
5754
6007
  /** Returns response with indentations and line breaks. */
5755
6008
  prettyPrint?: boolean;
@@ -5760,7 +6013,7 @@ declare namespace gapi.client {
5760
6013
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5761
6014
  uploadType?: string;
5762
6015
  }): Request<ListMirroringEndpointGroupAssociationsResponse>;
5763
- /** Updates a single MirroringEndpointGroupAssociation. */
6016
+ /** Updates an association. See https://google.aip.dev/134. */
5764
6017
  patch(request: {
5765
6018
  /** V1 error format. */
5766
6019
  '$.xgafv'?: string;
@@ -5774,7 +6027,7 @@ declare namespace gapi.client {
5774
6027
  fields?: string;
5775
6028
  /** 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. */
5776
6029
  key?: string;
5777
- /** Immutable. Identifier. The name of the MirroringEndpointGroupAssociation. */
6030
+ /** Immutable. Identifier. The resource name of this endpoint group association, for example: `projects/123456789/locations/global/mirroringEndpointGroupAssociations/my-eg-association`. See https://google.aip.dev/122 for more details. */
5778
6031
  name: string;
5779
6032
  /** OAuth 2.0 token for the current user. */
5780
6033
  oauth_token?: string;
@@ -5784,7 +6037,7 @@ declare namespace gapi.client {
5784
6037
  quotaUser?: string;
5785
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). */
5786
6039
  requestId?: string;
5787
- /** Required. Field mask is used to specify the fields to be overwritten in the MirroringEndpointGroupAssociation 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. */
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. */
5788
6041
  updateMask?: string;
5789
6042
  /** Upload protocol for media (e.g. "raw", "multipart"). */
5790
6043
  upload_protocol?: string;
@@ -5807,7 +6060,7 @@ declare namespace gapi.client {
5807
6060
  fields?: string;
5808
6061
  /** 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. */
5809
6062
  key?: string;
5810
- /** Immutable. Identifier. The name of the MirroringEndpointGroupAssociation. */
6063
+ /** Immutable. Identifier. The resource name of this endpoint group association, for example: `projects/123456789/locations/global/mirroringEndpointGroupAssociations/my-eg-association`. See https://google.aip.dev/122 for more details. */
5811
6064
  name: string;
5812
6065
  /** OAuth 2.0 token for the current user. */
5813
6066
  oauth_token?: string;
@@ -5817,7 +6070,7 @@ declare namespace gapi.client {
5817
6070
  quotaUser?: string;
5818
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). */
5819
6072
  requestId?: string;
5820
- /** Required. Field mask is used to specify the fields to be overwritten in the MirroringEndpointGroupAssociation 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. */
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. */
5821
6074
  updateMask?: string;
5822
6075
  /** Upload protocol for media (e.g. "raw", "multipart"). */
5823
6076
  upload_protocol?: string;
@@ -5828,7 +6081,7 @@ declare namespace gapi.client {
5828
6081
  ): Request<Operation>;
5829
6082
  }
5830
6083
  interface MirroringEndpointGroupsResource {
5831
- /** Creates a new MirroringEndpointGroup in a given project and location. */
6084
+ /** Creates an endpoint group in a given project and location. See https://google.aip.dev/133. */
5832
6085
  create(request: {
5833
6086
  /** V1 error format. */
5834
6087
  '$.xgafv'?: string;
@@ -5894,7 +6147,7 @@ declare namespace gapi.client {
5894
6147
  },
5895
6148
  body: MirroringEndpointGroup,
5896
6149
  ): Request<Operation>;
5897
- /** Deletes a single MirroringEndpointGroup. */
6150
+ /** Deletes an endpoint group. See https://google.aip.dev/135. */
5898
6151
  delete(request?: {
5899
6152
  /** V1 error format. */
5900
6153
  '$.xgafv'?: string;
@@ -5923,7 +6176,7 @@ declare namespace gapi.client {
5923
6176
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5924
6177
  uploadType?: string;
5925
6178
  }): Request<Operation>;
5926
- /** Gets details of a single MirroringEndpointGroup. */
6179
+ /** Gets a specific endpoint group. See https://google.aip.dev/131. */
5927
6180
  get(request?: {
5928
6181
  /** V1 error format. */
5929
6182
  '$.xgafv'?: string;
@@ -5950,7 +6203,7 @@ declare namespace gapi.client {
5950
6203
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5951
6204
  uploadType?: string;
5952
6205
  }): Request<MirroringEndpointGroup>;
5953
- /** Lists MirroringEndpointGroups in a given project and location. */
6206
+ /** Lists endpoint groups in a given project and location. See https://google.aip.dev/132. */
5954
6207
  list(request?: {
5955
6208
  /** V1 error format. */
5956
6209
  '$.xgafv'?: string;
@@ -5985,7 +6238,7 @@ declare namespace gapi.client {
5985
6238
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5986
6239
  uploadType?: string;
5987
6240
  }): Request<ListMirroringEndpointGroupsResponse>;
5988
- /** Updates a single MirroringEndpointGroup. */
6241
+ /** Updates an endpoint group. See https://google.aip.dev/134. */
5989
6242
  patch(request: {
5990
6243
  /** V1 error format. */
5991
6244
  '$.xgafv'?: string;
@@ -5999,7 +6252,7 @@ declare namespace gapi.client {
5999
6252
  fields?: string;
6000
6253
  /** 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. */
6001
6254
  key?: string;
6002
- /** Immutable. Identifier. Next ID: 11 The name of the MirroringEndpointGroup. */
6255
+ /** Immutable. Identifier. The resource name of this endpoint group, for example: `projects/123456789/locations/global/mirroringEndpointGroups/my-eg`. See https://google.aip.dev/122 for more details. */
6003
6256
  name: string;
6004
6257
  /** OAuth 2.0 token for the current user. */
6005
6258
  oauth_token?: string;
@@ -6032,7 +6285,7 @@ declare namespace gapi.client {
6032
6285
  fields?: string;
6033
6286
  /** 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. */
6034
6287
  key?: string;
6035
- /** Immutable. Identifier. Next ID: 11 The name of the MirroringEndpointGroup. */
6288
+ /** Immutable. Identifier. The resource name of this endpoint group, for example: `projects/123456789/locations/global/mirroringEndpointGroups/my-eg`. See https://google.aip.dev/122 for more details. */
6036
6289
  name: string;
6037
6290
  /** OAuth 2.0 token for the current user. */
6038
6291
  oauth_token?: string;
@@ -6987,6 +7240,7 @@ declare namespace gapi.client {
6987
7240
  addressGroups: AddressGroupsResource;
6988
7241
  authorizationPolicies: AuthorizationPoliciesResource;
6989
7242
  authzPolicies: AuthzPoliciesResource;
7243
+ backendAuthenticationConfigs: BackendAuthenticationConfigsResource;
6990
7244
  clientTlsPolicies: ClientTlsPoliciesResource;
6991
7245
  firewallEndpointAssociations: FirewallEndpointAssociationsResource;
6992
7246
  gatewaySecurityPolicies: GatewaySecurityPoliciesResource;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.networksecurity-v1beta1",
3
- "version": "0.0.20250126",
3
+ "version": "0.0.20250211",
4
4
  "description": "TypeScript typings for Network Security API v1beta1",
5
5
  "repository": {
6
6
  "type": "git",