google-apis-networksecurity_v1 0.44.0 → 0.45.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/networksecurity_v1/classes.rb +12 -5
- data/lib/google/apis/networksecurity_v1/gem_version.rb +2 -2
- data/lib/google/apis/networksecurity_v1/representations.rb +1 -0
- data/lib/google/apis/networksecurity_v1/service.rb +18 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6099d0704fba4b5d80c757bc829c8eb41032fc39189cb849f649d96d392a364e
|
4
|
+
data.tar.gz: 30133c46fe61e9981e88fffae1c4548a2b9893eb3770a5811b51169ab0e82080
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e3747bb336a3181e01f5fa03c528223fa7f9102cb4fd86b58f2bfd5e7d9ef5558505475234b8adbb37a340c9921dcfd886822e1700a293d2a667f5854e449e54
|
7
|
+
data.tar.gz: ae73e04ee1801324b162003cb47c385468d504582228f27426af1dec8fe95ac32ef9aff73e705001a3b05c39ede426e1c46472de8867314e01f1b27fcc8df8d5
|
data/CHANGELOG.md
CHANGED
@@ -771,16 +771,15 @@ module Google
|
|
771
771
|
|
772
772
|
# Required. All gateways and forwarding rules referenced by this policy and
|
773
773
|
# extensions must share the same load balancing scheme. Supported values: `
|
774
|
-
# INTERNAL_MANAGED
|
775
|
-
#
|
776
|
-
#
|
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).
|
777
777
|
# Corresponds to the JSON property `loadBalancingScheme`
|
778
778
|
# @return [String]
|
779
779
|
attr_accessor :load_balancing_scheme
|
780
780
|
|
781
781
|
# Required. A list of references to the Forwarding Rules on which this policy
|
782
|
-
# will be applied.
|
783
|
-
# the Cloud Run services.
|
782
|
+
# will be applied.
|
784
783
|
# Corresponds to the JSON property `resources`
|
785
784
|
# @return [Array<String>]
|
786
785
|
attr_accessor :resources
|
@@ -3090,6 +3089,13 @@ module Google
|
|
3090
3089
|
# @return [Array<Google::Apis::NetworksecurityV1::Operation>]
|
3091
3090
|
attr_accessor :operations
|
3092
3091
|
|
3092
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
3093
|
+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
|
3094
|
+
# when attempting to list all resources across all supported locations.
|
3095
|
+
# Corresponds to the JSON property `unreachable`
|
3096
|
+
# @return [Array<String>]
|
3097
|
+
attr_accessor :unreachable
|
3098
|
+
|
3093
3099
|
def initialize(**args)
|
3094
3100
|
update!(**args)
|
3095
3101
|
end
|
@@ -3098,6 +3104,7 @@ module Google
|
|
3098
3104
|
def update!(**args)
|
3099
3105
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
3100
3106
|
@operations = args[:operations] if args.key?(:operations)
|
3107
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
3101
3108
|
end
|
3102
3109
|
end
|
3103
3110
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module NetworksecurityV1
|
18
18
|
# Version of the google-apis-networksecurity_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.45.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 = "
|
25
|
+
REVISION = "20250925"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1468,6 +1468,7 @@ module Google
|
|
1468
1468
|
property :next_page_token, as: 'nextPageToken'
|
1469
1469
|
collection :operations, as: 'operations', class: Google::Apis::NetworksecurityV1::Operation, decorator: Google::Apis::NetworksecurityV1::Operation::Representation
|
1470
1470
|
|
1471
|
+
collection :unreachable, as: 'unreachable'
|
1471
1472
|
end
|
1472
1473
|
end
|
1473
1474
|
|
@@ -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, 'v1/{+name}/operations', options)
|
767
774
|
command.response_representation = Google::Apis::NetworksecurityV1::ListOperationsResponse::Representation
|
768
775
|
command.response_class = Google::Apis::NetworksecurityV1::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)
|
@@ -5220,6 +5228,13 @@ module Google
|
|
5220
5228
|
# The standard list page size.
|
5221
5229
|
# @param [String] page_token
|
5222
5230
|
# The standard list page token.
|
5231
|
+
# @param [Boolean] return_partial_success
|
5232
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
5233
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
5234
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
5235
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
5236
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
5237
|
+
# explicitly documented otherwise in service or product specific documentation.
|
5223
5238
|
# @param [String] fields
|
5224
5239
|
# Selector specifying which fields to include in a partial response.
|
5225
5240
|
# @param [String] quota_user
|
@@ -5237,7 +5252,7 @@ module Google
|
|
5237
5252
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
5238
5253
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
5239
5254
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
5240
|
-
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
5255
|
+
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)
|
5241
5256
|
command = make_simple_command(:get, 'v1/{+name}/operations', options)
|
5242
5257
|
command.response_representation = Google::Apis::NetworksecurityV1::ListOperationsResponse::Representation
|
5243
5258
|
command.response_class = Google::Apis::NetworksecurityV1::ListOperationsResponse
|
@@ -5245,6 +5260,7 @@ module Google
|
|
5245
5260
|
command.query['filter'] = filter unless filter.nil?
|
5246
5261
|
command.query['pageSize'] = page_size unless page_size.nil?
|
5247
5262
|
command.query['pageToken'] = page_token unless page_token.nil?
|
5263
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
5248
5264
|
command.query['fields'] = fields unless fields.nil?
|
5249
5265
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
5250
5266
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-networksecurity_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.45.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_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networksecurity_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networksecurity_v1/v0.45.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networksecurity_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|