google-apis-looker_v1 0.23.0 → 0.24.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: 51c7881d8071d2f08f2eddc00593c99774706cfbb268b7856e96dc8c67fd5a36
|
|
4
|
+
data.tar.gz: d254b6a2973e92e612b5f2b60f4482140a3b34e6c2d5282e60148a9dda049990
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9219d9f042fce035f9598ea56fb56293b8e4aaa7491e2358543c9093791c6f95c8894de8be3b623a053e24325b8e4fe71b39daf490e21adc4974ff85407bee29
|
|
7
|
+
data.tar.gz: f702ee369b38fdfbbff74c7dfc4290e6aa2fa8886ac34532af6aefe7c35e1b15e8874a6a3cf3f5cfef66a7dedf3c63908ebb0f3da6f8f1a044c44fedd01e430f
|
data/CHANGELOG.md
CHANGED
|
@@ -516,6 +516,11 @@ module Google
|
|
|
516
516
|
# @return [Google::Apis::LookerV1::OAuthConfig]
|
|
517
517
|
attr_accessor :oauth_config
|
|
518
518
|
|
|
519
|
+
# Configuration for periodic export.
|
|
520
|
+
# Corresponds to the JSON property `periodicExportConfig`
|
|
521
|
+
# @return [Google::Apis::LookerV1::PeriodicExportConfig]
|
|
522
|
+
attr_accessor :periodic_export_config
|
|
523
|
+
|
|
519
524
|
# Platform edition.
|
|
520
525
|
# Corresponds to the JSON property `platformEdition`
|
|
521
526
|
# @return [String]
|
|
@@ -608,6 +613,7 @@ module Google
|
|
|
608
613
|
@maintenance_window = args[:maintenance_window] if args.key?(:maintenance_window)
|
|
609
614
|
@name = args[:name] if args.key?(:name)
|
|
610
615
|
@oauth_config = args[:oauth_config] if args.key?(:oauth_config)
|
|
616
|
+
@periodic_export_config = args[:periodic_export_config] if args.key?(:periodic_export_config)
|
|
611
617
|
@platform_edition = args[:platform_edition] if args.key?(:platform_edition)
|
|
612
618
|
@private_ip_enabled = args[:private_ip_enabled] if args.key?(:private_ip_enabled)
|
|
613
619
|
@psc_config = args[:psc_config] if args.key?(:psc_config)
|
|
@@ -773,8 +779,9 @@ module Google
|
|
|
773
779
|
attr_accessor :operations
|
|
774
780
|
|
|
775
781
|
# 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
|
|
782
|
+
# ListOperationsRequest.return_partial_success` and reads across collections.
|
|
783
|
+
# For example, when attempting to list all resources across all supported
|
|
784
|
+
# locations.
|
|
778
785
|
# Corresponds to the JSON property `unreachable`
|
|
779
786
|
# @return [Array<String>]
|
|
780
787
|
attr_accessor :unreachable
|
|
@@ -1037,6 +1044,41 @@ module Google
|
|
|
1037
1044
|
end
|
|
1038
1045
|
end
|
|
1039
1046
|
|
|
1047
|
+
# Configuration for periodic export.
|
|
1048
|
+
class PeriodicExportConfig
|
|
1049
|
+
include Google::Apis::Core::Hashable
|
|
1050
|
+
|
|
1051
|
+
# Required. Cloud Storage bucket URI for periodic export. Format: gs://`
|
|
1052
|
+
# bucket_name`
|
|
1053
|
+
# Corresponds to the JSON property `gcsUri`
|
|
1054
|
+
# @return [String]
|
|
1055
|
+
attr_accessor :gcs_uri
|
|
1056
|
+
|
|
1057
|
+
# Required. Name of the CMEK key in KMS. Format: projects/`project`/locations/`
|
|
1058
|
+
# location`/keyRings/`key_ring`/cryptoKeys/`crypto_key`
|
|
1059
|
+
# Corresponds to the JSON property `kmsKey`
|
|
1060
|
+
# @return [String]
|
|
1061
|
+
attr_accessor :kms_key
|
|
1062
|
+
|
|
1063
|
+
# Represents a time of day. The date and time zone are either not significant or
|
|
1064
|
+
# are specified elsewhere. An API may choose to allow leap seconds. Related
|
|
1065
|
+
# types are google.type.Date and `google.protobuf.Timestamp`.
|
|
1066
|
+
# Corresponds to the JSON property `startTime`
|
|
1067
|
+
# @return [Google::Apis::LookerV1::TimeOfDay]
|
|
1068
|
+
attr_accessor :start_time
|
|
1069
|
+
|
|
1070
|
+
def initialize(**args)
|
|
1071
|
+
update!(**args)
|
|
1072
|
+
end
|
|
1073
|
+
|
|
1074
|
+
# Update properties of this object
|
|
1075
|
+
def update!(**args)
|
|
1076
|
+
@gcs_uri = args[:gcs_uri] if args.key?(:gcs_uri)
|
|
1077
|
+
@kms_key = args[:kms_key] if args.key?(:kms_key)
|
|
1078
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
|
1079
|
+
end
|
|
1080
|
+
end
|
|
1081
|
+
|
|
1040
1082
|
# Information for Private Service Connect (PSC) setup for a Looker instance.
|
|
1041
1083
|
class PscConfig
|
|
1042
1084
|
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.24.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 = "20251113"
|
|
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
|
|
|
@@ -358,6 +364,8 @@ module Google
|
|
|
358
364
|
property :name, as: 'name'
|
|
359
365
|
property :oauth_config, as: 'oauthConfig', class: Google::Apis::LookerV1::OAuthConfig, decorator: Google::Apis::LookerV1::OAuthConfig::Representation
|
|
360
366
|
|
|
367
|
+
property :periodic_export_config, as: 'periodicExportConfig', class: Google::Apis::LookerV1::PeriodicExportConfig, decorator: Google::Apis::LookerV1::PeriodicExportConfig::Representation
|
|
368
|
+
|
|
361
369
|
property :platform_edition, as: 'platformEdition'
|
|
362
370
|
property :private_ip_enabled, as: 'privateIpEnabled'
|
|
363
371
|
property :psc_config, as: 'pscConfig', class: Google::Apis::LookerV1::PscConfig, decorator: Google::Apis::LookerV1::PscConfig::Representation
|
|
@@ -486,6 +494,16 @@ module Google
|
|
|
486
494
|
end
|
|
487
495
|
end
|
|
488
496
|
|
|
497
|
+
class PeriodicExportConfig
|
|
498
|
+
# @private
|
|
499
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
500
|
+
property :gcs_uri, as: 'gcsUri'
|
|
501
|
+
property :kms_key, as: 'kmsKey'
|
|
502
|
+
property :start_time, as: 'startTime', class: Google::Apis::LookerV1::TimeOfDay, decorator: Google::Apis::LookerV1::TimeOfDay::Representation
|
|
503
|
+
|
|
504
|
+
end
|
|
505
|
+
end
|
|
506
|
+
|
|
489
507
|
class PscConfig
|
|
490
508
|
# @private
|
|
491
509
|
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.24.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.24.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:
|