google-apis-looker_v1 0.17.0 → 0.19.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: 7900420dd295b45cae80f30c084a82c9b4cd6a8aaf9662d4cff712379cf47ac6
|
4
|
+
data.tar.gz: 48c8d7c20c228a2f1407c71fb03a6dc5d5eedf97e68663392080ded3abf41a70
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ce96926e93dfed72ca943f04a2ec726ab3f9e452e0033da8ef3fc340c8af0199f9a0338863e30309b92fd4898ba824f06aa45b4f3bd8539acff9cb66c9da55e2
|
7
|
+
data.tar.gz: 814191dea424a2912d34b46c1507a6a7c3a10e75ae3d4f7b23936ca5e59974225eaf52ae529222d6d944e6fa0f4a3bf69f0425b2f150ddb74bb3fa5407ea379d
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-looker_v1
|
2
2
|
|
3
|
+
### v0.19.0 (2025-08-31)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250824
|
6
|
+
|
7
|
+
### v0.18.0 (2025-07-27)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250721
|
10
|
+
|
3
11
|
### v0.17.0 (2025-06-15)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250604
|
@@ -376,6 +376,11 @@ module Google
|
|
376
376
|
# @return [Google::Apis::LookerV1::AdminSettings]
|
377
377
|
attr_accessor :admin_settings
|
378
378
|
|
379
|
+
# Optional. Storage class of the instance.
|
380
|
+
# Corresponds to the JSON property `classType`
|
381
|
+
# @return [String]
|
382
|
+
attr_accessor :class_type
|
383
|
+
|
379
384
|
# Network name in the consumer project. Format: `projects/`project`/global/
|
380
385
|
# networks/`network``. Note that the consumer network may be in a different GCP
|
381
386
|
# project than the consumer project that is hosting the Looker Instance.
|
@@ -544,6 +549,7 @@ module Google
|
|
544
549
|
# Update properties of this object
|
545
550
|
def update!(**args)
|
546
551
|
@admin_settings = args[:admin_settings] if args.key?(:admin_settings)
|
552
|
+
@class_type = args[:class_type] if args.key?(:class_type)
|
547
553
|
@consumer_network = args[:consumer_network] if args.key?(:consumer_network)
|
548
554
|
@create_time = args[:create_time] if args.key?(:create_time)
|
549
555
|
@custom_domain = args[:custom_domain] if args.key?(:custom_domain)
|
@@ -1057,6 +1063,13 @@ module Google
|
|
1057
1063
|
# @return [String]
|
1058
1064
|
attr_accessor :connection_status
|
1059
1065
|
|
1066
|
+
# Output only. Reason the service attachment creation failed. This value will
|
1067
|
+
# only be populated if the service attachment encounters an issue during
|
1068
|
+
# provisioning.
|
1069
|
+
# Corresponds to the JSON property `failureReason`
|
1070
|
+
# @return [String]
|
1071
|
+
attr_accessor :failure_reason
|
1072
|
+
|
1060
1073
|
# Optional. Fully qualified domain name that will be used in the private DNS
|
1061
1074
|
# record created for the service attachment.
|
1062
1075
|
# Corresponds to the JSON property `localFqdn`
|
@@ -1082,6 +1095,7 @@ module Google
|
|
1082
1095
|
# Update properties of this object
|
1083
1096
|
def update!(**args)
|
1084
1097
|
@connection_status = args[:connection_status] if args.key?(:connection_status)
|
1098
|
+
@failure_reason = args[:failure_reason] if args.key?(:failure_reason)
|
1085
1099
|
@local_fqdn = args[:local_fqdn] if args.key?(:local_fqdn)
|
1086
1100
|
@local_fqdns = args[:local_fqdns] if args.key?(:local_fqdns)
|
1087
1101
|
@target_service_attachment_uri = args[:target_service_attachment_uri] if args.key?(:target_service_attachment_uri)
|
@@ -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.19.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 = "20250824"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -315,6 +315,7 @@ module Google
|
|
315
315
|
class Representation < Google::Apis::Core::JsonRepresentation
|
316
316
|
property :admin_settings, as: 'adminSettings', class: Google::Apis::LookerV1::AdminSettings, decorator: Google::Apis::LookerV1::AdminSettings::Representation
|
317
317
|
|
318
|
+
property :class_type, as: 'classType'
|
318
319
|
property :consumer_network, as: 'consumerNetwork'
|
319
320
|
property :create_time, as: 'createTime'
|
320
321
|
property :custom_domain, as: 'customDomain', class: Google::Apis::LookerV1::CustomDomain, decorator: Google::Apis::LookerV1::CustomDomain::Representation
|
@@ -494,6 +495,7 @@ module Google
|
|
494
495
|
# @private
|
495
496
|
class Representation < Google::Apis::Core::JsonRepresentation
|
496
497
|
property :connection_status, as: 'connectionStatus'
|
498
|
+
property :failure_reason, as: 'failureReason'
|
497
499
|
property :local_fqdn, as: 'localFqdn'
|
498
500
|
collection :local_fqdns, as: 'localFqdns'
|
499
501
|
property :target_service_attachment_uri, as: 'targetServiceAttachmentUri'
|
@@ -85,8 +85,8 @@ module Google
|
|
85
85
|
# @param [String] name
|
86
86
|
# The resource that owns the locations collection, if applicable.
|
87
87
|
# @param [Array<String>, String] extra_location_types
|
88
|
-
# Optional.
|
89
|
-
#
|
88
|
+
# Optional. Do not use this field. It is unsupported and is ignored unless
|
89
|
+
# explicitly documented otherwise. This is primarily for internal usage.
|
90
90
|
# @param [String] filter
|
91
91
|
# A filter to narrow down results to a preferred subset. The filtering language
|
92
92
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
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.19.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.19.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:
|