google-apis-config_v1 0.13.0 → 0.14.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 418bc1b42e914cf59bbf886f55c49ba2b92ba06de6ee62410e19cadca88ed66c
|
4
|
+
data.tar.gz: 0ff2a5f08f1152e15497b714b83d0973aef3225312e1530dd4f6c83810b119e8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 530780e7e4d50410ca3d4cfe9d28b2595d661ed713d6556dd25c51191168554a51613de7b61f7af28c5b093fa595822e0fc523c67cefbe279a6fac5e51ccf87b
|
7
|
+
data.tar.gz: 993fdc2ca4abcb4427d3378a69115cd9e6b767cd09ff61a1698bc5af5764a46be045be6eef7870c20704236b0770e0efc5ee3042239b5de11557a0df94582b3e
|
data/CHANGELOG.md
CHANGED
@@ -743,6 +743,13 @@ module Google
|
|
743
743
|
# @return [Array<Google::Apis::ConfigV1::Operation>]
|
744
744
|
attr_accessor :operations
|
745
745
|
|
746
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
747
|
+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
|
748
|
+
# when attempting to list all resources across all supported locations.
|
749
|
+
# Corresponds to the JSON property `unreachable`
|
750
|
+
# @return [Array<String>]
|
751
|
+
attr_accessor :unreachable
|
752
|
+
|
746
753
|
def initialize(**args)
|
747
754
|
update!(**args)
|
748
755
|
end
|
@@ -751,6 +758,7 @@ module Google
|
|
751
758
|
def update!(**args)
|
752
759
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
753
760
|
@operations = args[:operations] if args.key?(:operations)
|
761
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
754
762
|
end
|
755
763
|
end
|
756
764
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ConfigV1
|
18
18
|
# Version of the google-apis-config_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.14.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 = "20250924"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -543,6 +543,7 @@ module Google
|
|
543
543
|
property :next_page_token, as: 'nextPageToken'
|
544
544
|
collection :operations, as: 'operations', class: Google::Apis::ConfigV1::Operation, decorator: Google::Apis::ConfigV1::Operation::Representation
|
545
545
|
|
546
|
+
collection :unreachable, as: 'unreachable'
|
546
547
|
end
|
547
548
|
end
|
548
549
|
|
@@ -1016,6 +1016,13 @@ module Google
|
|
1016
1016
|
# The standard list page size.
|
1017
1017
|
# @param [String] page_token
|
1018
1018
|
# The standard list page token.
|
1019
|
+
# @param [Boolean] return_partial_success
|
1020
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
1021
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
1022
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
1023
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
1024
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
1025
|
+
# explicitly documented otherwise in service or product specific documentation.
|
1019
1026
|
# @param [String] fields
|
1020
1027
|
# Selector specifying which fields to include in a partial response.
|
1021
1028
|
# @param [String] quota_user
|
@@ -1033,7 +1040,7 @@ module Google
|
|
1033
1040
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1034
1041
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1035
1042
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1036
|
-
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1043
|
+
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)
|
1037
1044
|
command = make_simple_command(:get, 'v1/{+name}/operations', options)
|
1038
1045
|
command.response_representation = Google::Apis::ConfigV1::ListOperationsResponse::Representation
|
1039
1046
|
command.response_class = Google::Apis::ConfigV1::ListOperationsResponse
|
@@ -1041,6 +1048,7 @@ module Google
|
|
1041
1048
|
command.query['filter'] = filter unless filter.nil?
|
1042
1049
|
command.query['pageSize'] = page_size unless page_size.nil?
|
1043
1050
|
command.query['pageToken'] = page_token unless page_token.nil?
|
1051
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
1044
1052
|
command.query['fields'] = fields unless fields.nil?
|
1045
1053
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1046
1054
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-config_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.14.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-config_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-config_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-config_v1/v0.14.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-config_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|