google-apis-networkservices_v1beta1 0.59.0 → 0.60.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/networkservices_v1beta1/classes.rb +8 -0
- data/lib/google/apis/networkservices_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/networkservices_v1beta1/representations.rb +1 -0
- data/lib/google/apis/networkservices_v1beta1/service.rb +11 -3
- 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: 95fc5b9dd78196c74dae1e514d6f40d608ae0e755273a97a3e643ed0f33179f4
|
|
4
|
+
data.tar.gz: da44c5425c0203084b4192997413f9c3059a71b90d5740fed73128c1d62d8f57
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a580bbdba5cb2a9be3637f4070abd842a29b0d9df196d8d9ffd44c4802778a8e9ba135ca5ef4b8811a647e485eac1e08cf8cd31c8b1c216be0bddde1171c1af6
|
|
7
|
+
data.tar.gz: 902695058b7f8f93b3420162cc9b261083a85e802e452a39040cfe269153c5a0dace036dc8cfb485b554331e95f93a36f731c74def4374878d46da89798c86d5
|
data/CHANGELOG.md
CHANGED
|
@@ -2874,6 +2874,13 @@ module Google
|
|
|
2874
2874
|
# @return [Array<Google::Apis::NetworkservicesV1beta1::Operation>]
|
|
2875
2875
|
attr_accessor :operations
|
|
2876
2876
|
|
|
2877
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
2878
|
+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
|
|
2879
|
+
# when attempting to list all resources across all supported locations.
|
|
2880
|
+
# Corresponds to the JSON property `unreachable`
|
|
2881
|
+
# @return [Array<String>]
|
|
2882
|
+
attr_accessor :unreachable
|
|
2883
|
+
|
|
2877
2884
|
def initialize(**args)
|
|
2878
2885
|
update!(**args)
|
|
2879
2886
|
end
|
|
@@ -2882,6 +2889,7 @@ module Google
|
|
|
2882
2889
|
def update!(**args)
|
|
2883
2890
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
2884
2891
|
@operations = args[:operations] if args.key?(:operations)
|
|
2892
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
|
2885
2893
|
end
|
|
2886
2894
|
end
|
|
2887
2895
|
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module NetworkservicesV1beta1
|
|
18
18
|
# Version of the google-apis-networkservices_v1beta1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.60.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 = "20251017"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1265,6 +1265,7 @@ module Google
|
|
|
1265
1265
|
property :next_page_token, as: 'nextPageToken'
|
|
1266
1266
|
collection :operations, as: 'operations', class: Google::Apis::NetworkservicesV1beta1::Operation, decorator: Google::Apis::NetworkservicesV1beta1::Operation::Representation
|
|
1267
1267
|
|
|
1268
|
+
collection :unreachable, as: 'unreachable'
|
|
1268
1269
|
end
|
|
1269
1270
|
end
|
|
1270
1271
|
|
|
@@ -85,8 +85,8 @@ module Google
|
|
|
85
85
|
# @param [String] name
|
|
86
86
|
# The resource that owns the locations collection, if applicable.
|
|
87
87
|
# @param [Array<String>, String] extra_location_types
|
|
88
|
-
# Optional.
|
|
89
|
-
#
|
|
88
|
+
# Optional. Unless explicitly documented otherwise, don't use this unsupported
|
|
89
|
+
# field which is primarily intended for internal usage.
|
|
90
90
|
# @param [String] filter
|
|
91
91
|
# A filter to narrow down results to a preferred subset. The filtering language
|
|
92
92
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
|
@@ -2404,6 +2404,13 @@ module Google
|
|
|
2404
2404
|
# The standard list page size.
|
|
2405
2405
|
# @param [String] page_token
|
|
2406
2406
|
# The standard list page token.
|
|
2407
|
+
# @param [Boolean] return_partial_success
|
|
2408
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
|
2409
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
|
2410
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
|
2411
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
|
2412
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
|
2413
|
+
# explicitly documented otherwise in service or product specific documentation.
|
|
2407
2414
|
# @param [String] fields
|
|
2408
2415
|
# Selector specifying which fields to include in a partial response.
|
|
2409
2416
|
# @param [String] quota_user
|
|
@@ -2421,7 +2428,7 @@ module Google
|
|
|
2421
2428
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
2422
2429
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
2423
2430
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
2424
|
-
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
2431
|
+
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)
|
|
2425
2432
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
|
2426
2433
|
command.response_representation = Google::Apis::NetworkservicesV1beta1::ListOperationsResponse::Representation
|
|
2427
2434
|
command.response_class = Google::Apis::NetworkservicesV1beta1::ListOperationsResponse
|
|
@@ -2429,6 +2436,7 @@ module Google
|
|
|
2429
2436
|
command.query['filter'] = filter unless filter.nil?
|
|
2430
2437
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
2431
2438
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
2439
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
2432
2440
|
command.query['fields'] = fields unless fields.nil?
|
|
2433
2441
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
2434
2442
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-networkservices_v1beta1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.60.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-networkservices_v1beta1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1beta1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1beta1/v0.60.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkservices_v1beta1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|