google-apis-networkmanagement_v1beta1 0.66.0 → 0.67.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/networkmanagement_v1beta1/classes.rb +8 -0
- data/lib/google/apis/networkmanagement_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/networkmanagement_v1beta1/representations.rb +1 -0
- data/lib/google/apis/networkmanagement_v1beta1/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: 4428c34524591ee7096ad5064c84b738ed317f3802593665a7f93870edb6f58c
|
4
|
+
data.tar.gz: 4f48dba9bf9f0189311dcede1d378e858b6d1890aacfd6648ca22e7aec31e36a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a6f15603381783b8e27ba184d4729ac77e6e812dc908e6761c06bc019d188c3aad532f86a06b778e3b336166972f130ab73086af5ddbc2c6b12c463f77c8fd3c
|
7
|
+
data.tar.gz: a58523b01ced0fb829c828d2aa3a4f9ddef7dae642f3a7e185e81555796cc8e18040cd7b17c67434ae769f284605258ef977e3f74d9e9771fb1945a217acac21
|
data/CHANGELOG.md
CHANGED
@@ -1713,6 +1713,13 @@ module Google
|
|
1713
1713
|
# @return [Array<Google::Apis::NetworkmanagementV1beta1::Operation>]
|
1714
1714
|
attr_accessor :operations
|
1715
1715
|
|
1716
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
1717
|
+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
|
1718
|
+
# when attempting to list all resources across all supported locations.
|
1719
|
+
# Corresponds to the JSON property `unreachable`
|
1720
|
+
# @return [Array<String>]
|
1721
|
+
attr_accessor :unreachable
|
1722
|
+
|
1716
1723
|
def initialize(**args)
|
1717
1724
|
update!(**args)
|
1718
1725
|
end
|
@@ -1721,6 +1728,7 @@ module Google
|
|
1721
1728
|
def update!(**args)
|
1722
1729
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
1723
1730
|
@operations = args[:operations] if args.key?(:operations)
|
1731
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
1724
1732
|
end
|
1725
1733
|
end
|
1726
1734
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module NetworkmanagementV1beta1
|
18
18
|
# Version of the google-apis-networkmanagement_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.67.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
|
@@ -828,6 +828,7 @@ module Google
|
|
828
828
|
property :next_page_token, as: 'nextPageToken'
|
829
829
|
collection :operations, as: 'operations', class: Google::Apis::NetworkmanagementV1beta1::Operation, decorator: Google::Apis::NetworkmanagementV1beta1::Operation::Representation
|
830
830
|
|
831
|
+
collection :unreachable, as: 'unreachable'
|
831
832
|
end
|
832
833
|
end
|
833
834
|
|
@@ -243,6 +243,13 @@ module Google
|
|
243
243
|
# The standard list page size.
|
244
244
|
# @param [String] page_token
|
245
245
|
# The standard list page token.
|
246
|
+
# @param [Boolean] return_partial_success
|
247
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
248
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
249
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
250
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
251
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
252
|
+
# explicitly documented otherwise in service or product specific documentation.
|
246
253
|
# @param [String] fields
|
247
254
|
# Selector specifying which fields to include in a partial response.
|
248
255
|
# @param [String] quota_user
|
@@ -260,7 +267,7 @@ module Google
|
|
260
267
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
261
268
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
262
269
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
263
|
-
def list_organization_location_global_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
270
|
+
def list_organization_location_global_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
264
271
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
265
272
|
command.response_representation = Google::Apis::NetworkmanagementV1beta1::ListOperationsResponse::Representation
|
266
273
|
command.response_class = Google::Apis::NetworkmanagementV1beta1::ListOperationsResponse
|
@@ -268,6 +275,7 @@ module Google
|
|
268
275
|
command.query['filter'] = filter unless filter.nil?
|
269
276
|
command.query['pageSize'] = page_size unless page_size.nil?
|
270
277
|
command.query['pageToken'] = page_token unless page_token.nil?
|
278
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
271
279
|
command.query['fields'] = fields unless fields.nil?
|
272
280
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
273
281
|
execute_or_queue_command(command, &block)
|
@@ -1044,6 +1052,13 @@ module Google
|
|
1044
1052
|
# The standard list page size.
|
1045
1053
|
# @param [String] page_token
|
1046
1054
|
# The standard list page token.
|
1055
|
+
# @param [Boolean] return_partial_success
|
1056
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
1057
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
1058
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
1059
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
1060
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
1061
|
+
# explicitly documented otherwise in service or product specific documentation.
|
1047
1062
|
# @param [String] fields
|
1048
1063
|
# Selector specifying which fields to include in a partial response.
|
1049
1064
|
# @param [String] quota_user
|
@@ -1061,7 +1076,7 @@ module Google
|
|
1061
1076
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1062
1077
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1063
1078
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1064
|
-
def list_project_location_global_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1079
|
+
def list_project_location_global_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1065
1080
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
1066
1081
|
command.response_representation = Google::Apis::NetworkmanagementV1beta1::ListOperationsResponse::Representation
|
1067
1082
|
command.response_class = Google::Apis::NetworkmanagementV1beta1::ListOperationsResponse
|
@@ -1069,6 +1084,7 @@ module Google
|
|
1069
1084
|
command.query['filter'] = filter unless filter.nil?
|
1070
1085
|
command.query['pageSize'] = page_size unless page_size.nil?
|
1071
1086
|
command.query['pageToken'] = page_token unless page_token.nil?
|
1087
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
1072
1088
|
command.query['fields'] = fields unless fields.nil?
|
1073
1089
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1074
1090
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-networkmanagement_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.67.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-networkmanagement_v1beta1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.67.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1beta1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|