google-apis-looker_v1 0.4.0 → 0.6.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: a55c124d3f1a67f733b7903fb7986b96c2763246b9a32d88a317caea6ca35296
|
4
|
+
data.tar.gz: d741ed098b5f3d31b7845a5c59b2b757888e4ecf219d611ad95e5445ee039d6e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2dbd3288ace7178a9b06eb440844c0753aa32b00c4db697faa65962e02cd4e2c74fbcdfa9ea4401a0a70c6c34464b884b5b3ad7d5b823aeee5fe837f6f6ed4b3
|
7
|
+
data.tar.gz: dbc1d0a12968185c2dda5e1b9816a04c2e4ac0f71ab445831eaae8998265ae010ac53020717f47e044f98d301942df924268f6f2bb7ad8584e4606e4a034150b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-looker_v1
|
2
2
|
|
3
|
+
### v0.6.0 (2024-04-21)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240411
|
6
|
+
|
7
|
+
### v0.5.0 (2024-03-10)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240305
|
10
|
+
|
3
11
|
### v0.4.0 (2024-02-24)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240220
|
@@ -593,7 +593,7 @@ module Google
|
|
593
593
|
end
|
594
594
|
end
|
595
595
|
|
596
|
-
# A Looker instance.
|
596
|
+
# A Looker instance. LINT.IfChange
|
597
597
|
class Instance
|
598
598
|
include Google::Apis::Core::Hashable
|
599
599
|
|
@@ -650,6 +650,11 @@ module Google
|
|
650
650
|
# @return [Google::Apis::LookerV1::DenyMaintenancePeriod]
|
651
651
|
attr_accessor :last_deny_maintenance_period
|
652
652
|
|
653
|
+
# Optional. Linked Google Cloud Project Number for Looker Studio Pro.
|
654
|
+
# Corresponds to the JSON property `linkedLspProjectNumber`
|
655
|
+
# @return [Fixnum]
|
656
|
+
attr_accessor :linked_lsp_project_number
|
657
|
+
|
653
658
|
# Output only. Looker instance URI which can be used to access the Looker
|
654
659
|
# Instance UI.
|
655
660
|
# Corresponds to the JSON property `lookerUri`
|
@@ -693,18 +698,6 @@ module Google
|
|
693
698
|
attr_accessor :private_ip_enabled
|
694
699
|
alias_method :private_ip_enabled?, :private_ip_enabled
|
695
700
|
|
696
|
-
# Information for Private Service Connect (PSC) setup for a Looker instance.
|
697
|
-
# Corresponds to the JSON property `pscConfig`
|
698
|
-
# @return [Google::Apis::LookerV1::PscConfig]
|
699
|
-
attr_accessor :psc_config
|
700
|
-
|
701
|
-
# Optional. Whether to use Private Service Connect (PSC) for private IP
|
702
|
-
# connectivity. If true, VPC peering (PSA) will not be used.
|
703
|
-
# Corresponds to the JSON property `pscEnabled`
|
704
|
-
# @return [Boolean]
|
705
|
-
attr_accessor :psc_enabled
|
706
|
-
alias_method :psc_enabled?, :psc_enabled
|
707
|
-
|
708
701
|
# Whether public IP is enabled on the Looker instance.
|
709
702
|
# Corresponds to the JSON property `publicIpEnabled`
|
710
703
|
# @return [Boolean]
|
@@ -749,6 +742,7 @@ module Google
|
|
749
742
|
@ingress_private_ip = args[:ingress_private_ip] if args.key?(:ingress_private_ip)
|
750
743
|
@ingress_public_ip = args[:ingress_public_ip] if args.key?(:ingress_public_ip)
|
751
744
|
@last_deny_maintenance_period = args[:last_deny_maintenance_period] if args.key?(:last_deny_maintenance_period)
|
745
|
+
@linked_lsp_project_number = args[:linked_lsp_project_number] if args.key?(:linked_lsp_project_number)
|
752
746
|
@looker_uri = args[:looker_uri] if args.key?(:looker_uri)
|
753
747
|
@looker_version = args[:looker_version] if args.key?(:looker_version)
|
754
748
|
@maintenance_schedule = args[:maintenance_schedule] if args.key?(:maintenance_schedule)
|
@@ -757,8 +751,6 @@ module Google
|
|
757
751
|
@oauth_config = args[:oauth_config] if args.key?(:oauth_config)
|
758
752
|
@platform_edition = args[:platform_edition] if args.key?(:platform_edition)
|
759
753
|
@private_ip_enabled = args[:private_ip_enabled] if args.key?(:private_ip_enabled)
|
760
|
-
@psc_config = args[:psc_config] if args.key?(:psc_config)
|
761
|
-
@psc_enabled = args[:psc_enabled] if args.key?(:psc_enabled)
|
762
754
|
@public_ip_enabled = args[:public_ip_enabled] if args.key?(:public_ip_enabled)
|
763
755
|
@reserved_range = args[:reserved_range] if args.key?(:reserved_range)
|
764
756
|
@state = args[:state] if args.key?(:state)
|
@@ -1191,38 +1183,6 @@ module Google
|
|
1191
1183
|
end
|
1192
1184
|
end
|
1193
1185
|
|
1194
|
-
# Information for Private Service Connect (PSC) setup for a Looker instance.
|
1195
|
-
class PscConfig
|
1196
|
-
include Google::Apis::Core::Hashable
|
1197
|
-
|
1198
|
-
# Optional. List of VPCs that are allowed ingress into looker. Format: projects/`
|
1199
|
-
# project`/global/networks/`network`
|
1200
|
-
# Corresponds to the JSON property `allowedVpcs`
|
1201
|
-
# @return [Array<String>]
|
1202
|
-
attr_accessor :allowed_vpcs
|
1203
|
-
|
1204
|
-
# Output only. URI of the Looker service attachment.
|
1205
|
-
# Corresponds to the JSON property `lookerServiceAttachmentUri`
|
1206
|
-
# @return [String]
|
1207
|
-
attr_accessor :looker_service_attachment_uri
|
1208
|
-
|
1209
|
-
# Optional. List of egress service attachment configurations.
|
1210
|
-
# Corresponds to the JSON property `serviceAttachments`
|
1211
|
-
# @return [Array<Google::Apis::LookerV1::ServiceAttachment>]
|
1212
|
-
attr_accessor :service_attachments
|
1213
|
-
|
1214
|
-
def initialize(**args)
|
1215
|
-
update!(**args)
|
1216
|
-
end
|
1217
|
-
|
1218
|
-
# Update properties of this object
|
1219
|
-
def update!(**args)
|
1220
|
-
@allowed_vpcs = args[:allowed_vpcs] if args.key?(:allowed_vpcs)
|
1221
|
-
@looker_service_attachment_uri = args[:looker_service_attachment_uri] if args.key?(:looker_service_attachment_uri)
|
1222
|
-
@service_attachments = args[:service_attachments] if args.key?(:service_attachments)
|
1223
|
-
end
|
1224
|
-
end
|
1225
|
-
|
1226
1186
|
# Request options for restarting an instance.
|
1227
1187
|
class RestartInstanceRequest
|
1228
1188
|
include Google::Apis::Core::Hashable
|
@@ -1236,39 +1196,6 @@ module Google
|
|
1236
1196
|
end
|
1237
1197
|
end
|
1238
1198
|
|
1239
|
-
# Service attachment configuration.
|
1240
|
-
class ServiceAttachment
|
1241
|
-
include Google::Apis::Core::Hashable
|
1242
|
-
|
1243
|
-
# Output only. Connection status.
|
1244
|
-
# Corresponds to the JSON property `connectionStatus`
|
1245
|
-
# @return [String]
|
1246
|
-
attr_accessor :connection_status
|
1247
|
-
|
1248
|
-
# Required. Fully qualified domain name that will be used in the private DNS
|
1249
|
-
# record created for the service attachment.
|
1250
|
-
# Corresponds to the JSON property `localFqdn`
|
1251
|
-
# @return [String]
|
1252
|
-
attr_accessor :local_fqdn
|
1253
|
-
|
1254
|
-
# Required. URI of the service attachment to connect to. Format: projects/`
|
1255
|
-
# project`/regions/`region`/serviceAttachments/`service_attachment`
|
1256
|
-
# Corresponds to the JSON property `targetServiceAttachmentUri`
|
1257
|
-
# @return [String]
|
1258
|
-
attr_accessor :target_service_attachment_uri
|
1259
|
-
|
1260
|
-
def initialize(**args)
|
1261
|
-
update!(**args)
|
1262
|
-
end
|
1263
|
-
|
1264
|
-
# Update properties of this object
|
1265
|
-
def update!(**args)
|
1266
|
-
@connection_status = args[:connection_status] if args.key?(:connection_status)
|
1267
|
-
@local_fqdn = args[:local_fqdn] if args.key?(:local_fqdn)
|
1268
|
-
@target_service_attachment_uri = args[:target_service_attachment_uri] if args.key?(:target_service_attachment_uri)
|
1269
|
-
end
|
1270
|
-
end
|
1271
|
-
|
1272
1199
|
# Request message for `SetIamPolicy` method.
|
1273
1200
|
class SetIamPolicyRequest
|
1274
1201
|
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.6.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240411"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -184,24 +184,12 @@ module Google
|
|
184
184
|
include Google::Apis::Core::JsonObjectSupport
|
185
185
|
end
|
186
186
|
|
187
|
-
class PscConfig
|
188
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
|
-
|
190
|
-
include Google::Apis::Core::JsonObjectSupport
|
191
|
-
end
|
192
|
-
|
193
187
|
class RestartInstanceRequest
|
194
188
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
189
|
|
196
190
|
include Google::Apis::Core::JsonObjectSupport
|
197
191
|
end
|
198
192
|
|
199
|
-
class ServiceAttachment
|
200
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
|
-
|
202
|
-
include Google::Apis::Core::JsonObjectSupport
|
203
|
-
end
|
204
|
-
|
205
193
|
class SetIamPolicyRequest
|
206
194
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
207
195
|
|
@@ -395,6 +383,7 @@ module Google
|
|
395
383
|
property :ingress_public_ip, as: 'ingressPublicIp'
|
396
384
|
property :last_deny_maintenance_period, as: 'lastDenyMaintenancePeriod', class: Google::Apis::LookerV1::DenyMaintenancePeriod, decorator: Google::Apis::LookerV1::DenyMaintenancePeriod::Representation
|
397
385
|
|
386
|
+
property :linked_lsp_project_number, :numeric_string => true, as: 'linkedLspProjectNumber'
|
398
387
|
property :looker_uri, as: 'lookerUri'
|
399
388
|
property :looker_version, as: 'lookerVersion'
|
400
389
|
property :maintenance_schedule, as: 'maintenanceSchedule', class: Google::Apis::LookerV1::MaintenanceSchedule, decorator: Google::Apis::LookerV1::MaintenanceSchedule::Representation
|
@@ -406,9 +395,6 @@ module Google
|
|
406
395
|
|
407
396
|
property :platform_edition, as: 'platformEdition'
|
408
397
|
property :private_ip_enabled, as: 'privateIpEnabled'
|
409
|
-
property :psc_config, as: 'pscConfig', class: Google::Apis::LookerV1::PscConfig, decorator: Google::Apis::LookerV1::PscConfig::Representation
|
410
|
-
|
411
|
-
property :psc_enabled, as: 'pscEnabled'
|
412
398
|
property :public_ip_enabled, as: 'publicIpEnabled'
|
413
399
|
property :reserved_range, as: 'reservedRange'
|
414
400
|
property :state, as: 'state'
|
@@ -519,31 +505,12 @@ module Google
|
|
519
505
|
end
|
520
506
|
end
|
521
507
|
|
522
|
-
class PscConfig
|
523
|
-
# @private
|
524
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
525
|
-
collection :allowed_vpcs, as: 'allowedVpcs'
|
526
|
-
property :looker_service_attachment_uri, as: 'lookerServiceAttachmentUri'
|
527
|
-
collection :service_attachments, as: 'serviceAttachments', class: Google::Apis::LookerV1::ServiceAttachment, decorator: Google::Apis::LookerV1::ServiceAttachment::Representation
|
528
|
-
|
529
|
-
end
|
530
|
-
end
|
531
|
-
|
532
508
|
class RestartInstanceRequest
|
533
509
|
# @private
|
534
510
|
class Representation < Google::Apis::Core::JsonRepresentation
|
535
511
|
end
|
536
512
|
end
|
537
513
|
|
538
|
-
class ServiceAttachment
|
539
|
-
# @private
|
540
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
541
|
-
property :connection_status, as: 'connectionStatus'
|
542
|
-
property :local_fqdn, as: 'localFqdn'
|
543
|
-
property :target_service_attachment_uri, as: 'targetServiceAttachmentUri'
|
544
|
-
end
|
545
|
-
end
|
546
|
-
|
547
514
|
class SetIamPolicyRequest
|
548
515
|
# @private
|
549
516
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-04-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-looker_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-looker_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-looker_v1/v0.6.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-looker_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|