@maxim_mazurok/gapi.client.networksecurity-v1beta1 0.0.20250217 → 0.0.20250326

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 +47 -5
  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: 20250217
12
+ // Revision: 20250326
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -414,7 +414,7 @@ declare namespace gapi.client {
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 forwarding rule that fronts the intercept collectors, for example: `projects/123456789/regions/us-central1/forwardingRules/my-rule`. See https://google.aip.dev/124. */
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
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;
@@ -438,6 +438,8 @@ declare namespace gapi.client {
438
438
  description?: string;
439
439
  /** Optional. Labels are key/value pairs that help to organize and filter resources. */
440
440
  labels?: {[P in string]: string};
441
+ /** Output only. The list of locations where the deployment group is present. */
442
+ locations?: InterceptLocation[];
441
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
445
  /** Output only. The list of Intercept Deployments that belong to this group. */
@@ -464,11 +466,13 @@ declare namespace gapi.client {
464
466
  interface InterceptEndpointGroup {
465
467
  /** Output only. List of associations to this endpoint group. */
466
468
  associations?: InterceptEndpointGroupAssociationDetails[];
469
+ /** Output only. Details about the connected deployment group to this endpoint group. */
470
+ connectedDeploymentGroup?: InterceptEndpointGroupConnectedDeploymentGroup;
467
471
  /** Output only. The timestamp when the resource was created. See https://google.aip.dev/148#timestamps. */
468
472
  createTime?: string;
469
473
  /** Optional. User-provided description of the endpoint group. Used as additional context for the endpoint group. */
470
474
  description?: string;
471
- /** 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. */
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. */
472
476
  interceptDeploymentGroup?: string;
473
477
  /** Optional. Labels are key/value pairs that help to organize and filter resources. */
474
478
  labels?: {[P in string]: string};
@@ -484,15 +488,17 @@ declare namespace gapi.client {
484
488
  interface InterceptEndpointGroupAssociation {
485
489
  /** Output only. The timestamp when the resource was created. See https://google.aip.dev/148#timestamps. */
486
490
  createTime?: string;
487
- /** 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. */
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. */
488
492
  interceptEndpointGroup?: string;
489
493
  /** Optional. Labels are key/value pairs that help to organize and filter resources. */
490
494
  labels?: {[P in string]: string};
495
+ /** Output only. The list of locations where the association is configured. This information is retrieved from the linked endpoint group. */
496
+ locations?: InterceptLocation[];
491
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. */
492
498
  locationsDetails?: InterceptEndpointGroupAssociationLocationDetails[];
493
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. */
494
500
  name?: string;
495
- /** Immutable. The VPC network that is associated. for example: `projects/123456789/global/networks/my-network`. See https://google.aip.dev/124. */
501
+ /** Required. Immutable. The VPC network that is associated. for example: `projects/123456789/global/networks/my-network`. See https://google.aip.dev/124. */
496
502
  network?: string;
497
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. */
498
504
  reconciling?: boolean;
@@ -515,6 +521,18 @@ declare namespace gapi.client {
515
521
  /** Output only. The current state of the association in this location. */
516
522
  state?: string;
517
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. */
534
+ state?: string;
535
+ }
518
536
  interface ListAddressGroupReferencesResponse {
519
537
  /** A list of references that matches the specified filter in the request. */
520
538
  addressGroupReferences?: ListAddressGroupReferencesResponseAddressGroupReference[];
@@ -678,6 +696,8 @@ declare namespace gapi.client {
678
696
  nextPageToken?: string;
679
697
  /** List of ServerTlsPolicy resources. */
680
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[];
681
701
  }
682
702
  interface ListTlsInspectionPoliciesResponse {
683
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'. */
@@ -736,6 +756,8 @@ declare namespace gapi.client {
736
756
  description?: string;
737
757
  /** Optional. Labels are key/value pairs that help to organize and filter resources. */
738
758
  labels?: {[P in string]: string};
759
+ /** Output only. The list of locations where the deployment group is present. */
760
+ locations?: MirroringLocation[];
739
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. */
740
762
  name?: string;
741
763
  /** Output only. The list of Mirroring Deployments that belong to this group. */
@@ -762,6 +784,8 @@ declare namespace gapi.client {
762
784
  interface MirroringEndpointGroup {
763
785
  /** Output only. List of associations to this endpoint group. */
764
786
  associations?: MirroringEndpointGroupAssociationDetails[];
787
+ /** Output only. List of details about the connected deployment groups to this endpoint group. */
788
+ connectedDeploymentGroups?: MirroringEndpointGroupConnectedDeploymentGroup[];
765
789
  /** Output only. The timestamp when the resource was created. See https://google.aip.dev/148#timestamps. */
766
790
  createTime?: string;
767
791
  /** Optional. User-provided description of the endpoint group. Used as additional context for the endpoint group. */
@@ -784,6 +808,8 @@ declare namespace gapi.client {
784
808
  createTime?: string;
785
809
  /** Optional. Labels are key/value pairs that help to organize and filter resources. */
786
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[];
787
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. */
788
814
  locationsDetails?: MirroringEndpointGroupAssociationLocationDetails[];
789
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. */
@@ -813,6 +839,18 @@ declare namespace gapi.client {
813
839
  /** Output only. The current state of the association in this location. */
814
840
  state?: string;
815
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
+ }
816
854
  interface MTLSPolicy {
817
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. */
818
856
  clientValidationCa?: ValidationCA[];
@@ -6646,6 +6684,8 @@ declare namespace gapi.client {
6646
6684
  prettyPrint?: boolean;
6647
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. */
6648
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;
6649
6689
  /** Upload protocol for media (e.g. "raw", "multipart"). */
6650
6690
  upload_protocol?: string;
6651
6691
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -7236,6 +7276,8 @@ declare namespace gapi.client {
7236
7276
  alt?: string;
7237
7277
  /** JSONP */
7238
7278
  callback?: string;
7279
+ /** Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations. */
7280
+ extraLocationTypes?: string | string[];
7239
7281
  /** Selector specifying which fields to include in a partial response. */
7240
7282
  fields?: string;
7241
7283
  /** A filter to narrow down results to a preferred subset. The filtering language accepts strings like `"displayName=tokyo"`, and is documented in more detail in [AIP-160](https://google.aip.dev/160). */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.networksecurity-v1beta1",
3
- "version": "0.0.20250217",
3
+ "version": "0.0.20250326",
4
4
  "description": "TypeScript typings for Network Security API v1beta1",
5
5
  "repository": {
6
6
  "type": "git",