google-apis-looker_v1 0.7.0 → 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1b26a9c69d7bbf03ff6392bfa606b91093a8c579e4dd4d688814298b9bcb53eb
|
4
|
+
data.tar.gz: 4e804744a7fc8662dde0c5fa2d0a8592ac14aeef825bf42898cdf3a58b94f39e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e39f51d3ea997cd5734741c1850b6dc357f031744cdabae90734e200facec4e525d6de43b5e7d60e8108ef33663a75e1fd063ac06d14d8d4b6d238a34dadd87f
|
7
|
+
data.tar.gz: 2d8da836cd3d5b62b4e6bae45a51ac17047adab2a09d802566f046cbe8d6bd00f1dda1489428cd7cb9e1ab2e9b4ae1b4642035121f37f838714729236f307bde
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-looker_v1
|
2
2
|
|
3
|
+
### v0.9.0 (2024-08-25)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240814
|
6
|
+
* Regenerated using generator version 0.15.1
|
7
|
+
|
8
|
+
### v0.8.0 (2024-06-16)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20240522
|
11
|
+
|
3
12
|
### v0.7.0 (2024-05-19)
|
4
13
|
|
5
14
|
* Regenerated using generator version 0.15.0
|
@@ -593,7 +593,7 @@ module Google
|
|
593
593
|
end
|
594
594
|
end
|
595
595
|
|
596
|
-
# A Looker instance.
|
596
|
+
# A Looker instance.
|
597
597
|
class Instance
|
598
598
|
include Google::Apis::Core::Hashable
|
599
599
|
|
@@ -698,6 +698,19 @@ module Google
|
|
698
698
|
attr_accessor :private_ip_enabled
|
699
699
|
alias_method :private_ip_enabled?, :private_ip_enabled
|
700
700
|
|
701
|
+
# Information for Private Service Connect (PSC) setup for a Looker instance.
|
702
|
+
# Corresponds to the JSON property `pscConfig`
|
703
|
+
# @return [Google::Apis::LookerV1::PscConfig]
|
704
|
+
attr_accessor :psc_config
|
705
|
+
|
706
|
+
# Optional. Whether to use Private Service Connect (PSC) for private IP
|
707
|
+
# connectivity. If true, neither `public_ip_enabled` nor `private_ip_enabled`
|
708
|
+
# can be true.
|
709
|
+
# Corresponds to the JSON property `pscEnabled`
|
710
|
+
# @return [Boolean]
|
711
|
+
attr_accessor :psc_enabled
|
712
|
+
alias_method :psc_enabled?, :psc_enabled
|
713
|
+
|
701
714
|
# Whether public IP is enabled on the Looker instance.
|
702
715
|
# Corresponds to the JSON property `publicIpEnabled`
|
703
716
|
# @return [Boolean]
|
@@ -751,6 +764,8 @@ module Google
|
|
751
764
|
@oauth_config = args[:oauth_config] if args.key?(:oauth_config)
|
752
765
|
@platform_edition = args[:platform_edition] if args.key?(:platform_edition)
|
753
766
|
@private_ip_enabled = args[:private_ip_enabled] if args.key?(:private_ip_enabled)
|
767
|
+
@psc_config = args[:psc_config] if args.key?(:psc_config)
|
768
|
+
@psc_enabled = args[:psc_enabled] if args.key?(:psc_enabled)
|
754
769
|
@public_ip_enabled = args[:public_ip_enabled] if args.key?(:public_ip_enabled)
|
755
770
|
@reserved_range = args[:reserved_range] if args.key?(:reserved_range)
|
756
771
|
@state = args[:state] if args.key?(:state)
|
@@ -1183,6 +1198,38 @@ module Google
|
|
1183
1198
|
end
|
1184
1199
|
end
|
1185
1200
|
|
1201
|
+
# Information for Private Service Connect (PSC) setup for a Looker instance.
|
1202
|
+
class PscConfig
|
1203
|
+
include Google::Apis::Core::Hashable
|
1204
|
+
|
1205
|
+
# Optional. List of VPCs that are allowed ingress into looker. Format: projects/`
|
1206
|
+
# project`/global/networks/`network`
|
1207
|
+
# Corresponds to the JSON property `allowedVpcs`
|
1208
|
+
# @return [Array<String>]
|
1209
|
+
attr_accessor :allowed_vpcs
|
1210
|
+
|
1211
|
+
# Output only. URI of the Looker service attachment.
|
1212
|
+
# Corresponds to the JSON property `lookerServiceAttachmentUri`
|
1213
|
+
# @return [String]
|
1214
|
+
attr_accessor :looker_service_attachment_uri
|
1215
|
+
|
1216
|
+
# Optional. List of egress service attachment configurations.
|
1217
|
+
# Corresponds to the JSON property `serviceAttachments`
|
1218
|
+
# @return [Array<Google::Apis::LookerV1::ServiceAttachment>]
|
1219
|
+
attr_accessor :service_attachments
|
1220
|
+
|
1221
|
+
def initialize(**args)
|
1222
|
+
update!(**args)
|
1223
|
+
end
|
1224
|
+
|
1225
|
+
# Update properties of this object
|
1226
|
+
def update!(**args)
|
1227
|
+
@allowed_vpcs = args[:allowed_vpcs] if args.key?(:allowed_vpcs)
|
1228
|
+
@looker_service_attachment_uri = args[:looker_service_attachment_uri] if args.key?(:looker_service_attachment_uri)
|
1229
|
+
@service_attachments = args[:service_attachments] if args.key?(:service_attachments)
|
1230
|
+
end
|
1231
|
+
end
|
1232
|
+
|
1186
1233
|
# Request options for restarting an instance.
|
1187
1234
|
class RestartInstanceRequest
|
1188
1235
|
include Google::Apis::Core::Hashable
|
@@ -1196,6 +1243,39 @@ module Google
|
|
1196
1243
|
end
|
1197
1244
|
end
|
1198
1245
|
|
1246
|
+
# Service attachment configuration.
|
1247
|
+
class ServiceAttachment
|
1248
|
+
include Google::Apis::Core::Hashable
|
1249
|
+
|
1250
|
+
# Output only. Connection status.
|
1251
|
+
# Corresponds to the JSON property `connectionStatus`
|
1252
|
+
# @return [String]
|
1253
|
+
attr_accessor :connection_status
|
1254
|
+
|
1255
|
+
# Required. Fully qualified domain name that will be used in the private DNS
|
1256
|
+
# record created for the service attachment.
|
1257
|
+
# Corresponds to the JSON property `localFqdn`
|
1258
|
+
# @return [String]
|
1259
|
+
attr_accessor :local_fqdn
|
1260
|
+
|
1261
|
+
# Required. URI of the service attachment to connect to. Format: projects/`
|
1262
|
+
# project`/regions/`region`/serviceAttachments/`service_attachment`
|
1263
|
+
# Corresponds to the JSON property `targetServiceAttachmentUri`
|
1264
|
+
# @return [String]
|
1265
|
+
attr_accessor :target_service_attachment_uri
|
1266
|
+
|
1267
|
+
def initialize(**args)
|
1268
|
+
update!(**args)
|
1269
|
+
end
|
1270
|
+
|
1271
|
+
# Update properties of this object
|
1272
|
+
def update!(**args)
|
1273
|
+
@connection_status = args[:connection_status] if args.key?(:connection_status)
|
1274
|
+
@local_fqdn = args[:local_fqdn] if args.key?(:local_fqdn)
|
1275
|
+
@target_service_attachment_uri = args[:target_service_attachment_uri] if args.key?(:target_service_attachment_uri)
|
1276
|
+
end
|
1277
|
+
end
|
1278
|
+
|
1199
1279
|
# Request message for `SetIamPolicy` method.
|
1200
1280
|
class SetIamPolicyRequest
|
1201
1281
|
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.9.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.15.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240814"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -184,12 +184,24 @@ 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
|
+
|
187
193
|
class RestartInstanceRequest
|
188
194
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
195
|
|
190
196
|
include Google::Apis::Core::JsonObjectSupport
|
191
197
|
end
|
192
198
|
|
199
|
+
class ServiceAttachment
|
200
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
|
+
|
202
|
+
include Google::Apis::Core::JsonObjectSupport
|
203
|
+
end
|
204
|
+
|
193
205
|
class SetIamPolicyRequest
|
194
206
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
207
|
|
@@ -395,6 +407,9 @@ module Google
|
|
395
407
|
|
396
408
|
property :platform_edition, as: 'platformEdition'
|
397
409
|
property :private_ip_enabled, as: 'privateIpEnabled'
|
410
|
+
property :psc_config, as: 'pscConfig', class: Google::Apis::LookerV1::PscConfig, decorator: Google::Apis::LookerV1::PscConfig::Representation
|
411
|
+
|
412
|
+
property :psc_enabled, as: 'pscEnabled'
|
398
413
|
property :public_ip_enabled, as: 'publicIpEnabled'
|
399
414
|
property :reserved_range, as: 'reservedRange'
|
400
415
|
property :state, as: 'state'
|
@@ -505,12 +520,31 @@ module Google
|
|
505
520
|
end
|
506
521
|
end
|
507
522
|
|
523
|
+
class PscConfig
|
524
|
+
# @private
|
525
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
526
|
+
collection :allowed_vpcs, as: 'allowedVpcs'
|
527
|
+
property :looker_service_attachment_uri, as: 'lookerServiceAttachmentUri'
|
528
|
+
collection :service_attachments, as: 'serviceAttachments', class: Google::Apis::LookerV1::ServiceAttachment, decorator: Google::Apis::LookerV1::ServiceAttachment::Representation
|
529
|
+
|
530
|
+
end
|
531
|
+
end
|
532
|
+
|
508
533
|
class RestartInstanceRequest
|
509
534
|
# @private
|
510
535
|
class Representation < Google::Apis::Core::JsonRepresentation
|
511
536
|
end
|
512
537
|
end
|
513
538
|
|
539
|
+
class ServiceAttachment
|
540
|
+
# @private
|
541
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
542
|
+
property :connection_status, as: 'connectionStatus'
|
543
|
+
property :local_fqdn, as: 'localFqdn'
|
544
|
+
property :target_service_attachment_uri, as: 'targetServiceAttachmentUri'
|
545
|
+
end
|
546
|
+
end
|
547
|
+
|
514
548
|
class SetIamPolicyRequest
|
515
549
|
# @private
|
516
550
|
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.9.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-08-25 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.9.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: []
|