google-apis-looker_v1 0.20.0 → 0.21.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: 683c0cf45cc178ca92f182a00d9ad7945145bbd37b87933b5f0f12af8cffe2f5
|
4
|
+
data.tar.gz: d67092b9b093f6febe6b5baca7092a4ef2cebdfc4d8a492b197e642f64001f21
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5758bf47ef33394dbfb7fee5fa32e0036e508195a2024429acd0fd2572d7cae6e4fccc6a896333f45935a5a8e78d029e2893d9b0c4d69a1175f8f6dc1aa91a4f
|
7
|
+
data.tar.gz: 0e8cbe41c737ad830c5a3c432d0f4398978185e450ab5746873597629133ad1d6ee898bd506b328006f8abd71f428de3e87557c4f128ed7585380c0346f5822d
|
data/CHANGELOG.md
CHANGED
@@ -732,6 +732,13 @@ module Google
|
|
732
732
|
# @return [Array<Google::Apis::LookerV1::Operation>]
|
733
733
|
attr_accessor :operations
|
734
734
|
|
735
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
736
|
+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
|
737
|
+
# when attempting to list all resources across all supported locations.
|
738
|
+
# Corresponds to the JSON property `unreachable`
|
739
|
+
# @return [Array<String>]
|
740
|
+
attr_accessor :unreachable
|
741
|
+
|
735
742
|
def initialize(**args)
|
736
743
|
update!(**args)
|
737
744
|
end
|
@@ -740,6 +747,7 @@ module Google
|
|
740
747
|
def update!(**args)
|
741
748
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
742
749
|
@operations = args[:operations] if args.key?(:operations)
|
750
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
743
751
|
end
|
744
752
|
end
|
745
753
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module LookerV1
|
18
18
|
# Version of the google-apis-looker_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.21.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 = "20251001"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -404,6 +404,7 @@ module Google
|
|
404
404
|
property :next_page_token, as: 'nextPageToken'
|
405
405
|
collection :operations, as: 'operations', class: Google::Apis::LookerV1::Operation, decorator: Google::Apis::LookerV1::Operation::Representation
|
406
406
|
|
407
|
+
collection :unreachable, as: 'unreachable'
|
407
408
|
end
|
408
409
|
end
|
409
410
|
|
@@ -693,6 +693,13 @@ module Google
|
|
693
693
|
# The standard list page size.
|
694
694
|
# @param [String] page_token
|
695
695
|
# The standard list page token.
|
696
|
+
# @param [Boolean] return_partial_success
|
697
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
698
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
699
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
700
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
701
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
702
|
+
# explicitly documented otherwise in service or product specific documentation.
|
696
703
|
# @param [String] fields
|
697
704
|
# Selector specifying which fields to include in a partial response.
|
698
705
|
# @param [String] quota_user
|
@@ -710,7 +717,7 @@ module Google
|
|
710
717
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
711
718
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
712
719
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
713
|
-
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
720
|
+
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)
|
714
721
|
command = make_simple_command(:get, 'v1/{+name}/operations', options)
|
715
722
|
command.response_representation = Google::Apis::LookerV1::ListOperationsResponse::Representation
|
716
723
|
command.response_class = Google::Apis::LookerV1::ListOperationsResponse
|
@@ -718,6 +725,7 @@ module Google
|
|
718
725
|
command.query['filter'] = filter unless filter.nil?
|
719
726
|
command.query['pageSize'] = page_size unless page_size.nil?
|
720
727
|
command.query['pageToken'] = page_token unless page_token.nil?
|
728
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
721
729
|
command.query['fields'] = fields unless fields.nil?
|
722
730
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
723
731
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-looker_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.21.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-looker_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-looker_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-looker_v1/v0.21.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-looker_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|