google-apis-looker_v1 0.23.0 → 0.25.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: 1c42ec42106dc6703e7708d04b6a18ed5e2c94a7fb9d844f459f39de3d4cfbb2
|
|
4
|
+
data.tar.gz: b1987752b7837fb42d3de72be44412a0424068078a00bd25a389714a3e7316e2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7630851e4ed5ce2555ce7fd6e6b214c1ea848c376944a371cd0d4100028e77ba66240db68c0bdc7d7590ee3531355cdbabfed90b27a2759f739fecf8ff77a3e4
|
|
7
|
+
data.tar.gz: 0332d1cb30922ab2326e8550195812d2c86d8181afc1ac41db92586d2b84e564b34d507562f8de6363d1c89ccfbb0dd8852dc334199a1805d07f86e6ba93be8b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-looker_v1
|
|
2
2
|
|
|
3
|
+
### v0.25.0 (2025-12-14)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251203
|
|
6
|
+
|
|
7
|
+
### v0.24.0 (2025-11-23)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251113
|
|
10
|
+
|
|
3
11
|
### v0.23.0 (2025-11-02)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251021
|
|
@@ -70,6 +70,12 @@ module Google
|
|
|
70
70
|
attr_accessor :marketplace_enabled
|
|
71
71
|
alias_method :marketplace_enabled?, :marketplace_enabled
|
|
72
72
|
|
|
73
|
+
# Output only. The list of IP addresses used by Secure Web Proxy for outbound
|
|
74
|
+
# traffic.
|
|
75
|
+
# Corresponds to the JSON property `webProxyIps`
|
|
76
|
+
# @return [Array<String>]
|
|
77
|
+
attr_accessor :web_proxy_ips
|
|
78
|
+
|
|
73
79
|
def initialize(**args)
|
|
74
80
|
update!(**args)
|
|
75
81
|
end
|
|
@@ -78,6 +84,7 @@ module Google
|
|
|
78
84
|
def update!(**args)
|
|
79
85
|
@egress_fqdns = args[:egress_fqdns] if args.key?(:egress_fqdns)
|
|
80
86
|
@marketplace_enabled = args[:marketplace_enabled] if args.key?(:marketplace_enabled)
|
|
87
|
+
@web_proxy_ips = args[:web_proxy_ips] if args.key?(:web_proxy_ips)
|
|
81
88
|
end
|
|
82
89
|
end
|
|
83
90
|
|
|
@@ -516,6 +523,11 @@ module Google
|
|
|
516
523
|
# @return [Google::Apis::LookerV1::OAuthConfig]
|
|
517
524
|
attr_accessor :oauth_config
|
|
518
525
|
|
|
526
|
+
# Configuration for periodic export.
|
|
527
|
+
# Corresponds to the JSON property `periodicExportConfig`
|
|
528
|
+
# @return [Google::Apis::LookerV1::PeriodicExportConfig]
|
|
529
|
+
attr_accessor :periodic_export_config
|
|
530
|
+
|
|
519
531
|
# Platform edition.
|
|
520
532
|
# Corresponds to the JSON property `platformEdition`
|
|
521
533
|
# @return [String]
|
|
@@ -608,6 +620,7 @@ module Google
|
|
|
608
620
|
@maintenance_window = args[:maintenance_window] if args.key?(:maintenance_window)
|
|
609
621
|
@name = args[:name] if args.key?(:name)
|
|
610
622
|
@oauth_config = args[:oauth_config] if args.key?(:oauth_config)
|
|
623
|
+
@periodic_export_config = args[:periodic_export_config] if args.key?(:periodic_export_config)
|
|
611
624
|
@platform_edition = args[:platform_edition] if args.key?(:platform_edition)
|
|
612
625
|
@private_ip_enabled = args[:private_ip_enabled] if args.key?(:private_ip_enabled)
|
|
613
626
|
@psc_config = args[:psc_config] if args.key?(:psc_config)
|
|
@@ -773,8 +786,9 @@ module Google
|
|
|
773
786
|
attr_accessor :operations
|
|
774
787
|
|
|
775
788
|
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
776
|
-
# ListOperationsRequest.return_partial_success` and reads across collections
|
|
777
|
-
# when attempting to list all resources across all supported
|
|
789
|
+
# ListOperationsRequest.return_partial_success` and reads across collections.
|
|
790
|
+
# For example, when attempting to list all resources across all supported
|
|
791
|
+
# locations.
|
|
778
792
|
# Corresponds to the JSON property `unreachable`
|
|
779
793
|
# @return [Array<String>]
|
|
780
794
|
attr_accessor :unreachable
|
|
@@ -1037,6 +1051,41 @@ module Google
|
|
|
1037
1051
|
end
|
|
1038
1052
|
end
|
|
1039
1053
|
|
|
1054
|
+
# Configuration for periodic export.
|
|
1055
|
+
class PeriodicExportConfig
|
|
1056
|
+
include Google::Apis::Core::Hashable
|
|
1057
|
+
|
|
1058
|
+
# Required. Cloud Storage bucket URI for periodic export. Format: gs://`
|
|
1059
|
+
# bucket_name`
|
|
1060
|
+
# Corresponds to the JSON property `gcsUri`
|
|
1061
|
+
# @return [String]
|
|
1062
|
+
attr_accessor :gcs_uri
|
|
1063
|
+
|
|
1064
|
+
# Required. Name of the CMEK key in KMS. Format: projects/`project`/locations/`
|
|
1065
|
+
# location`/keyRings/`key_ring`/cryptoKeys/`crypto_key`
|
|
1066
|
+
# Corresponds to the JSON property `kmsKey`
|
|
1067
|
+
# @return [String]
|
|
1068
|
+
attr_accessor :kms_key
|
|
1069
|
+
|
|
1070
|
+
# Represents a time of day. The date and time zone are either not significant or
|
|
1071
|
+
# are specified elsewhere. An API may choose to allow leap seconds. Related
|
|
1072
|
+
# types are google.type.Date and `google.protobuf.Timestamp`.
|
|
1073
|
+
# Corresponds to the JSON property `startTime`
|
|
1074
|
+
# @return [Google::Apis::LookerV1::TimeOfDay]
|
|
1075
|
+
attr_accessor :start_time
|
|
1076
|
+
|
|
1077
|
+
def initialize(**args)
|
|
1078
|
+
update!(**args)
|
|
1079
|
+
end
|
|
1080
|
+
|
|
1081
|
+
# Update properties of this object
|
|
1082
|
+
def update!(**args)
|
|
1083
|
+
@gcs_uri = args[:gcs_uri] if args.key?(:gcs_uri)
|
|
1084
|
+
@kms_key = args[:kms_key] if args.key?(:kms_key)
|
|
1085
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
|
1086
|
+
end
|
|
1087
|
+
end
|
|
1088
|
+
|
|
1040
1089
|
# Information for Private Service Connect (PSC) setup for a Looker instance.
|
|
1041
1090
|
class PscConfig
|
|
1042
1091
|
include Google::Apis::Core::Hashable
|
|
@@ -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.25.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 = "20251203"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -172,6 +172,12 @@ module Google
|
|
|
172
172
|
include Google::Apis::Core::JsonObjectSupport
|
|
173
173
|
end
|
|
174
174
|
|
|
175
|
+
class PeriodicExportConfig
|
|
176
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
177
|
+
|
|
178
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
179
|
+
end
|
|
180
|
+
|
|
175
181
|
class PscConfig
|
|
176
182
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
177
183
|
|
|
@@ -232,6 +238,7 @@ module Google
|
|
|
232
238
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
233
239
|
collection :egress_fqdns, as: 'egressFqdns'
|
|
234
240
|
property :marketplace_enabled, as: 'marketplaceEnabled'
|
|
241
|
+
collection :web_proxy_ips, as: 'webProxyIps'
|
|
235
242
|
end
|
|
236
243
|
end
|
|
237
244
|
|
|
@@ -358,6 +365,8 @@ module Google
|
|
|
358
365
|
property :name, as: 'name'
|
|
359
366
|
property :oauth_config, as: 'oauthConfig', class: Google::Apis::LookerV1::OAuthConfig, decorator: Google::Apis::LookerV1::OAuthConfig::Representation
|
|
360
367
|
|
|
368
|
+
property :periodic_export_config, as: 'periodicExportConfig', class: Google::Apis::LookerV1::PeriodicExportConfig, decorator: Google::Apis::LookerV1::PeriodicExportConfig::Representation
|
|
369
|
+
|
|
361
370
|
property :platform_edition, as: 'platformEdition'
|
|
362
371
|
property :private_ip_enabled, as: 'privateIpEnabled'
|
|
363
372
|
property :psc_config, as: 'pscConfig', class: Google::Apis::LookerV1::PscConfig, decorator: Google::Apis::LookerV1::PscConfig::Representation
|
|
@@ -486,6 +495,16 @@ module Google
|
|
|
486
495
|
end
|
|
487
496
|
end
|
|
488
497
|
|
|
498
|
+
class PeriodicExportConfig
|
|
499
|
+
# @private
|
|
500
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
501
|
+
property :gcs_uri, as: 'gcsUri'
|
|
502
|
+
property :kms_key, as: 'kmsKey'
|
|
503
|
+
property :start_time, as: 'startTime', class: Google::Apis::LookerV1::TimeOfDay, decorator: Google::Apis::LookerV1::TimeOfDay::Representation
|
|
504
|
+
|
|
505
|
+
end
|
|
506
|
+
end
|
|
507
|
+
|
|
489
508
|
class PscConfig
|
|
490
509
|
# @private
|
|
491
510
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -695,11 +695,12 @@ module Google
|
|
|
695
695
|
# The standard list page token.
|
|
696
696
|
# @param [Boolean] return_partial_success
|
|
697
697
|
# When set to `true`, operations that are reachable are returned as normal, and
|
|
698
|
-
# those that are unreachable are returned in the
|
|
699
|
-
# unreachable
|
|
700
|
-
#
|
|
701
|
-
# by default
|
|
702
|
-
# explicitly documented otherwise in service or product specific
|
|
698
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
699
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
700
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
701
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
702
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
703
|
+
# documentation.
|
|
703
704
|
# @param [String] fields
|
|
704
705
|
# Selector specifying which fields to include in a partial response.
|
|
705
706
|
# @param [String] quota_user
|
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.25.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.25.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:
|