google-apis-networksecurity_v1beta1 0.56.0 → 0.58.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a2580f53fb34cb74adb81a85786c67327c5c69143b96a6bfbead45f61388672e
4
- data.tar.gz: f9fe9a03a33e6e12c4e8ec30679702ea624428c211e64be4db3b449a84562ed3
3
+ metadata.gz: 5284ec0f8643ed9181c208006a304a56c2d48063151b8863aa0d5b3b894d9479
4
+ data.tar.gz: f2717e55d6cfbf6b5cef11f87b8691e7027fa89d4f0c73e62c997b4991b9daab
5
5
  SHA512:
6
- metadata.gz: 77b155afb7e8fb971dca1f571268367d1a5130eb388cb2205af553087885d0534cb2e90e22236e211fc8433e864d149b46e58f272316b80264c988ee96328e2d
7
- data.tar.gz: 49dc17b1ad2fd467536ebb1fadc3e9d3a83dc09097e00e1d24baa46a66807902ae450ff21065f62721232e5f9635b867fb07bec9f4840e853e52fd3ea2199b43
6
+ metadata.gz: e0e56e13c6c9f49464212a952244fec0468b165dd96754937434572ca3972affdf65e0d197cccadf5f77cc0c0c1db1f5a836d926fdd66f1603cc395ff0f32235
7
+ data.tar.gz: 7a4694f9ac21f2225841fec7e5d6a949dd9a4a8deb6c5bb48ffba5c7d2d5a61f096758aeb52d62f5a052eff6fdebdfdbe7e80a7f12b6042e4d6b1c0b4d8e63c5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-networksecurity_v1beta1
2
2
 
3
+ ### v0.58.0 (2025-10-19)
4
+
5
+ * Regenerated from discovery document revision 20251001
6
+
7
+ ### v0.57.0 (2025-10-05)
8
+
9
+ * Regenerated from discovery document revision 20250925
10
+
3
11
  ### v0.56.0 (2025-09-07)
4
12
 
5
13
  * Regenerated from discovery document revision 20250903
@@ -388,11 +388,10 @@ module Google
388
388
  # successfully validated by mTLS. Each identity is a string whose value is
389
389
  # matched against a list of URI SANs, DNS Name SANs, or the common name in the
390
390
  # client's certificate. A match happens when any principal matches with the rule.
391
- # Limited to 50 principals per Authorization Policy for Regional Internal
392
- # Application Load Balancer, Regional External Application Load Balancer, Cross-
393
- # region Internal Application Load Balancer, and Cloud Service Mesh. Limited to
394
- # 25 principals per Authorization Policy for Global External Application Load
395
- # Balancer.
391
+ # Limited to 50 principals per Authorization Policy for regional internal
392
+ # Application Load Balancers, regional external Application Load Balancers,
393
+ # cross-region internal Application Load Balancers, and Cloud Service Mesh. This
394
+ # field is not supported for global external Application Load Balancers.
396
395
  # Corresponds to the JSON property `principals`
397
396
  # @return [Array<Google::Apis::NetworksecurityV1beta1::AuthzPolicyAuthzRulePrincipal>]
398
397
  attr_accessor :principals
@@ -772,16 +771,15 @@ module Google
772
771
 
773
772
  # Required. All gateways and forwarding rules referenced by this policy and
774
773
  # extensions must share the same load balancing scheme. Supported values: `
775
- # INTERNAL_MANAGED`, `INTERNAL_SELF_MANAGED`, and `EXTERNAL_MANAGED`. For more
776
- # information, refer to [Backend services overview](https://cloud.google.com/
777
- # load-balancing/docs/backend-service).
774
+ # INTERNAL_MANAGED` and `EXTERNAL_MANAGED`. For more information, refer to [
775
+ # Backend services overview](https://cloud.google.com/load-balancing/docs/
776
+ # backend-service).
778
777
  # Corresponds to the JSON property `loadBalancingScheme`
779
778
  # @return [String]
780
779
  attr_accessor :load_balancing_scheme
781
780
 
782
781
  # Required. A list of references to the Forwarding Rules on which this policy
783
- # will be applied. For policies created for Cloudrun, this field will reference
784
- # the Cloud Run services.
782
+ # will be applied.
785
783
  # Corresponds to the JSON property `resources`
786
784
  # @return [Array<String>]
787
785
  attr_accessor :resources
@@ -1441,12 +1439,20 @@ module Google
1441
1439
  class FirewallEndpointEndpointSettings
1442
1440
  include Google::Apis::Core::Hashable
1443
1441
 
1442
+ # Optional. Immutable. Indicates whether Jumbo Frames are enabled. Default value
1443
+ # is false.
1444
+ # Corresponds to the JSON property `jumboFramesEnabled`
1445
+ # @return [Boolean]
1446
+ attr_accessor :jumbo_frames_enabled
1447
+ alias_method :jumbo_frames_enabled?, :jumbo_frames_enabled
1448
+
1444
1449
  def initialize(**args)
1445
1450
  update!(**args)
1446
1451
  end
1447
1452
 
1448
1453
  # Update properties of this object
1449
1454
  def update!(**args)
1455
+ @jumbo_frames_enabled = args[:jumbo_frames_enabled] if args.key?(:jumbo_frames_enabled)
1450
1456
  end
1451
1457
  end
1452
1458
 
@@ -3176,6 +3182,13 @@ module Google
3176
3182
  # @return [Array<Google::Apis::NetworksecurityV1beta1::Operation>]
3177
3183
  attr_accessor :operations
3178
3184
 
3185
+ # Unordered list. Unreachable resources. Populated when the request sets `
3186
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
3187
+ # when attempting to list all resources across all supported locations.
3188
+ # Corresponds to the JSON property `unreachable`
3189
+ # @return [Array<String>]
3190
+ attr_accessor :unreachable
3191
+
3179
3192
  def initialize(**args)
3180
3193
  update!(**args)
3181
3194
  end
@@ -3184,6 +3197,7 @@ module Google
3184
3197
  def update!(**args)
3185
3198
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
3186
3199
  @operations = args[:operations] if args.key?(:operations)
3200
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
3187
3201
  end
3188
3202
  end
3189
3203
 
@@ -3782,6 +3796,12 @@ module Google
3782
3796
  # @return [String]
3783
3797
  attr_accessor :state
3784
3798
 
3799
+ # Immutable. The type of the endpoint group. If left unspecified, defaults to
3800
+ # DIRECT.
3801
+ # Corresponds to the JSON property `type`
3802
+ # @return [String]
3803
+ attr_accessor :type
3804
+
3785
3805
  # Output only. The timestamp when the resource was most recently updated. See
3786
3806
  # https://google.aip.dev/148#timestamps.
3787
3807
  # Corresponds to the JSON property `updateTime`
@@ -3803,6 +3823,7 @@ module Google
3803
3823
  @name = args[:name] if args.key?(:name)
3804
3824
  @reconciling = args[:reconciling] if args.key?(:reconciling)
3805
3825
  @state = args[:state] if args.key?(:state)
3826
+ @type = args[:type] if args.key?(:type)
3806
3827
  @update_time = args[:update_time] if args.key?(:update_time)
3807
3828
  end
3808
3829
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module NetworksecurityV1beta1
18
18
  # Version of the google-apis-networksecurity_v1beta1 gem
19
- GEM_VERSION = "0.56.0"
19
+ GEM_VERSION = "0.58.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250903"
25
+ REVISION = "20251001"
26
26
  end
27
27
  end
28
28
  end
@@ -1114,6 +1114,7 @@ module Google
1114
1114
  class FirewallEndpointEndpointSettings
1115
1115
  # @private
1116
1116
  class Representation < Google::Apis::Core::JsonRepresentation
1117
+ property :jumbo_frames_enabled, as: 'jumboFramesEnabled'
1117
1118
  end
1118
1119
  end
1119
1120
 
@@ -1556,6 +1557,7 @@ module Google
1556
1557
  property :next_page_token, as: 'nextPageToken'
1557
1558
  collection :operations, as: 'operations', class: Google::Apis::NetworksecurityV1beta1::Operation, decorator: Google::Apis::NetworksecurityV1beta1::Operation::Representation
1558
1559
 
1560
+ collection :unreachable, as: 'unreachable'
1559
1561
  end
1560
1562
  end
1561
1563
 
@@ -1712,6 +1714,7 @@ module Google
1712
1714
  property :name, as: 'name'
1713
1715
  property :reconciling, as: 'reconciling'
1714
1716
  property :state, as: 'state'
1717
+ property :type, as: 'type'
1715
1718
  property :update_time, as: 'updateTime'
1716
1719
  end
1717
1720
  end
@@ -745,6 +745,13 @@ module Google
745
745
  # The standard list page size.
746
746
  # @param [String] page_token
747
747
  # The standard list page token.
748
+ # @param [Boolean] return_partial_success
749
+ # When set to `true`, operations that are reachable are returned as normal, and
750
+ # those that are unreachable are returned in the [ListOperationsResponse.
751
+ # unreachable] field. This can only be `true` when reading across collections e.
752
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
753
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
754
+ # explicitly documented otherwise in service or product specific documentation.
748
755
  # @param [String] fields
749
756
  # Selector specifying which fields to include in a partial response.
750
757
  # @param [String] quota_user
@@ -762,7 +769,7 @@ module Google
762
769
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
763
770
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
764
771
  # @raise [Google::Apis::AuthorizationError] Authorization is required
765
- def list_organization_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
772
+ def list_organization_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
766
773
  command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
767
774
  command.response_representation = Google::Apis::NetworksecurityV1beta1::ListOperationsResponse::Representation
768
775
  command.response_class = Google::Apis::NetworksecurityV1beta1::ListOperationsResponse
@@ -770,6 +777,7 @@ module Google
770
777
  command.query['filter'] = filter unless filter.nil?
771
778
  command.query['pageSize'] = page_size unless page_size.nil?
772
779
  command.query['pageToken'] = page_token unless page_token.nil?
780
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
773
781
  command.query['fields'] = fields unless fields.nil?
774
782
  command.query['quotaUser'] = quota_user unless quota_user.nil?
775
783
  execute_or_queue_command(command, &block)
@@ -1186,8 +1194,8 @@ module Google
1186
1194
  # @param [String] name
1187
1195
  # The resource that owns the locations collection, if applicable.
1188
1196
  # @param [Array<String>, String] extra_location_types
1189
- # Optional. Do not use this field. It is unsupported and is ignored unless
1190
- # explicitly documented otherwise. This is primarily for internal usage.
1197
+ # Optional. Unless explicitly documented otherwise, don't use this unsupported
1198
+ # field which is primarily intended for internal usage.
1191
1199
  # @param [String] filter
1192
1200
  # A filter to narrow down results to a preferred subset. The filtering language
1193
1201
  # accepts strings like `"displayName=tokyo"`, and is documented in more detail
@@ -5395,6 +5403,13 @@ module Google
5395
5403
  # The standard list page size.
5396
5404
  # @param [String] page_token
5397
5405
  # The standard list page token.
5406
+ # @param [Boolean] return_partial_success
5407
+ # When set to `true`, operations that are reachable are returned as normal, and
5408
+ # those that are unreachable are returned in the [ListOperationsResponse.
5409
+ # unreachable] field. This can only be `true` when reading across collections e.
5410
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
5411
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
5412
+ # explicitly documented otherwise in service or product specific documentation.
5398
5413
  # @param [String] fields
5399
5414
  # Selector specifying which fields to include in a partial response.
5400
5415
  # @param [String] quota_user
@@ -5412,7 +5427,7 @@ module Google
5412
5427
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
5413
5428
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
5414
5429
  # @raise [Google::Apis::AuthorizationError] Authorization is required
5415
- def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
5430
+ def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
5416
5431
  command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
5417
5432
  command.response_representation = Google::Apis::NetworksecurityV1beta1::ListOperationsResponse::Representation
5418
5433
  command.response_class = Google::Apis::NetworksecurityV1beta1::ListOperationsResponse
@@ -5420,6 +5435,7 @@ module Google
5420
5435
  command.query['filter'] = filter unless filter.nil?
5421
5436
  command.query['pageSize'] = page_size unless page_size.nil?
5422
5437
  command.query['pageToken'] = page_token unless page_token.nil?
5438
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
5423
5439
  command.query['fields'] = fields unless fields.nil?
5424
5440
  command.query['quotaUser'] = quota_user unless quota_user.nil?
5425
5441
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-networksecurity_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.56.0
4
+ version: 0.58.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networksecurity_v1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-networksecurity_v1beta1/v0.56.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networksecurity_v1beta1/v0.58.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networksecurity_v1beta1
62
62
  rdoc_options: []
63
63
  require_paths: