google-apis-looker_v1 0.20.0 → 0.22.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: fb98965a8cd64ec9e1a7f2e1962925a3124c070fa96cd29b4a3070ff9867678a
|
|
4
|
+
data.tar.gz: 496c6de5355e2e2561fe480df5220c3984fc904879fe728da4b137b4fc7ef6f8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b74ecdf09a1774a169d114385a317ad822cc2c4f8c88a95d95b2f2185388c41d70c9859f2e16ef81dbd710460fdbc11df03723872b5410d578cb9e954d39044b
|
|
7
|
+
data.tar.gz: 78d781dccce2c1ece2d77a3bdb2d4a09f101558074c6a612454b13e3ccc879178db13b2a4ea4ad3d0a9b3e696e2e80a99d7ed3ac1d6dc9a269f4ae457fd2d3db
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-looker_v1
|
|
2
2
|
|
|
3
|
+
### v0.22.0 (2025-10-26)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251017
|
|
6
|
+
|
|
7
|
+
### v0.21.0 (2025-10-19)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251001
|
|
10
|
+
|
|
3
11
|
### v0.20.0 (2025-09-21)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20250906
|
|
@@ -54,6 +54,33 @@ module Google
|
|
|
54
54
|
end
|
|
55
55
|
end
|
|
56
56
|
|
|
57
|
+
# Controlled egress configuration.
|
|
58
|
+
class ControlledEgressConfig
|
|
59
|
+
include Google::Apis::Core::Hashable
|
|
60
|
+
|
|
61
|
+
# Optional. List of fully qualified domain names to be added to the allowlist
|
|
62
|
+
# for outbound traffic.
|
|
63
|
+
# Corresponds to the JSON property `egressFqdns`
|
|
64
|
+
# @return [Array<String>]
|
|
65
|
+
attr_accessor :egress_fqdns
|
|
66
|
+
|
|
67
|
+
# Optional. Whether marketplace is enabled.
|
|
68
|
+
# Corresponds to the JSON property `marketplaceEnabled`
|
|
69
|
+
# @return [Boolean]
|
|
70
|
+
attr_accessor :marketplace_enabled
|
|
71
|
+
alias_method :marketplace_enabled?, :marketplace_enabled
|
|
72
|
+
|
|
73
|
+
def initialize(**args)
|
|
74
|
+
update!(**args)
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
# Update properties of this object
|
|
78
|
+
def update!(**args)
|
|
79
|
+
@egress_fqdns = args[:egress_fqdns] if args.key?(:egress_fqdns)
|
|
80
|
+
@marketplace_enabled = args[:marketplace_enabled] if args.key?(:marketplace_enabled)
|
|
81
|
+
end
|
|
82
|
+
end
|
|
83
|
+
|
|
57
84
|
# Custom domain information.
|
|
58
85
|
class CustomDomain
|
|
59
86
|
include Google::Apis::Core::Hashable
|
|
@@ -388,6 +415,17 @@ module Google
|
|
|
388
415
|
# @return [String]
|
|
389
416
|
attr_accessor :consumer_network
|
|
390
417
|
|
|
418
|
+
# Controlled egress configuration.
|
|
419
|
+
# Corresponds to the JSON property `controlledEgressConfig`
|
|
420
|
+
# @return [Google::Apis::LookerV1::ControlledEgressConfig]
|
|
421
|
+
attr_accessor :controlled_egress_config
|
|
422
|
+
|
|
423
|
+
# Optional. Whether controlled egress is enabled on the Looker instance.
|
|
424
|
+
# Corresponds to the JSON property `controlledEgressEnabled`
|
|
425
|
+
# @return [Boolean]
|
|
426
|
+
attr_accessor :controlled_egress_enabled
|
|
427
|
+
alias_method :controlled_egress_enabled?, :controlled_egress_enabled
|
|
428
|
+
|
|
391
429
|
# Output only. The time when the Looker instance provisioning was first
|
|
392
430
|
# requested.
|
|
393
431
|
# Corresponds to the JSON property `createTime`
|
|
@@ -551,6 +589,8 @@ module Google
|
|
|
551
589
|
@admin_settings = args[:admin_settings] if args.key?(:admin_settings)
|
|
552
590
|
@class_type = args[:class_type] if args.key?(:class_type)
|
|
553
591
|
@consumer_network = args[:consumer_network] if args.key?(:consumer_network)
|
|
592
|
+
@controlled_egress_config = args[:controlled_egress_config] if args.key?(:controlled_egress_config)
|
|
593
|
+
@controlled_egress_enabled = args[:controlled_egress_enabled] if args.key?(:controlled_egress_enabled)
|
|
554
594
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
555
595
|
@custom_domain = args[:custom_domain] if args.key?(:custom_domain)
|
|
556
596
|
@deny_maintenance_period = args[:deny_maintenance_period] if args.key?(:deny_maintenance_period)
|
|
@@ -732,6 +772,13 @@ module Google
|
|
|
732
772
|
# @return [Array<Google::Apis::LookerV1::Operation>]
|
|
733
773
|
attr_accessor :operations
|
|
734
774
|
|
|
775
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
776
|
+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
|
|
777
|
+
# when attempting to list all resources across all supported locations.
|
|
778
|
+
# Corresponds to the JSON property `unreachable`
|
|
779
|
+
# @return [Array<String>]
|
|
780
|
+
attr_accessor :unreachable
|
|
781
|
+
|
|
735
782
|
def initialize(**args)
|
|
736
783
|
update!(**args)
|
|
737
784
|
end
|
|
@@ -740,6 +787,7 @@ module Google
|
|
|
740
787
|
def update!(**args)
|
|
741
788
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
742
789
|
@operations = args[:operations] if args.key?(:operations)
|
|
790
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
|
743
791
|
end
|
|
744
792
|
end
|
|
745
793
|
|
|
@@ -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.22.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
|
|
@@ -34,6 +34,12 @@ module Google
|
|
|
34
34
|
include Google::Apis::Core::JsonObjectSupport
|
|
35
35
|
end
|
|
36
36
|
|
|
37
|
+
class ControlledEgressConfig
|
|
38
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
39
|
+
|
|
40
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
41
|
+
end
|
|
42
|
+
|
|
37
43
|
class CustomDomain
|
|
38
44
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
39
45
|
|
|
@@ -221,6 +227,14 @@ module Google
|
|
|
221
227
|
end
|
|
222
228
|
end
|
|
223
229
|
|
|
230
|
+
class ControlledEgressConfig
|
|
231
|
+
# @private
|
|
232
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
233
|
+
collection :egress_fqdns, as: 'egressFqdns'
|
|
234
|
+
property :marketplace_enabled, as: 'marketplaceEnabled'
|
|
235
|
+
end
|
|
236
|
+
end
|
|
237
|
+
|
|
224
238
|
class CustomDomain
|
|
225
239
|
# @private
|
|
226
240
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -317,6 +331,9 @@ module Google
|
|
|
317
331
|
|
|
318
332
|
property :class_type, as: 'classType'
|
|
319
333
|
property :consumer_network, as: 'consumerNetwork'
|
|
334
|
+
property :controlled_egress_config, as: 'controlledEgressConfig', class: Google::Apis::LookerV1::ControlledEgressConfig, decorator: Google::Apis::LookerV1::ControlledEgressConfig::Representation
|
|
335
|
+
|
|
336
|
+
property :controlled_egress_enabled, as: 'controlledEgressEnabled'
|
|
320
337
|
property :create_time, as: 'createTime'
|
|
321
338
|
property :custom_domain, as: 'customDomain', class: Google::Apis::LookerV1::CustomDomain, decorator: Google::Apis::LookerV1::CustomDomain::Representation
|
|
322
339
|
|
|
@@ -404,6 +421,7 @@ module Google
|
|
|
404
421
|
property :next_page_token, as: 'nextPageToken'
|
|
405
422
|
collection :operations, as: 'operations', class: Google::Apis::LookerV1::Operation, decorator: Google::Apis::LookerV1::Operation::Representation
|
|
406
423
|
|
|
424
|
+
collection :unreachable, as: 'unreachable'
|
|
407
425
|
end
|
|
408
426
|
end
|
|
409
427
|
|
|
@@ -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.22.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.22.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:
|