google-apis-looker_v1 0.3.0 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/OVERVIEW.md +2 -2
- data/lib/google/apis/looker_v1/classes.rb +79 -0
- data/lib/google/apis/looker_v1/gem_version.rb +3 -3
- data/lib/google/apis/looker_v1/representations.rb +34 -0
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 898d967d19dbd5dafe07a9dd610bb0a1669aee72e24727ff145c1979cdf72eda
|
4
|
+
data.tar.gz: e6e878052f3fb2f5445d1c4147d5e1f49bfe74f65cf1fb75a0fc75527a20e228
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cbed1cdd1b011782fd3555738429bcdcb9d2917b717972610eb06598b0225779f85409f81e3bed1b75a1496aada8d5b2fbc951021bb1a0f865a3e7e26a646114
|
7
|
+
data.tar.gz: 006ebc4bdfff4bfc36f14a4e8a8d81f81fe4e4658428f8c8aeeaff50b4123c6af4934b9a22deabf5b7f66a9140002c2c0fb8302f4a2b23dee9eb08377c9a5fd8
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-looker_v1
|
2
2
|
|
3
|
+
### v0.4.0 (2024-02-24)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240220
|
6
|
+
* Regenerated using generator version 0.14.0
|
7
|
+
|
3
8
|
### v0.3.0 (2024-01-28)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20240118
|
data/OVERVIEW.md
CHANGED
@@ -83,9 +83,9 @@ The [product documentation](https://cloud.google.com/looker/docs/reference/rest/
|
|
83
83
|
|
84
84
|
## Supported Ruby versions
|
85
85
|
|
86
|
-
This library is supported on Ruby 2.
|
86
|
+
This library is supported on Ruby 2.7+.
|
87
87
|
|
88
|
-
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life.
|
88
|
+
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
89
89
|
|
90
90
|
## License
|
91
91
|
|
@@ -693,6 +693,18 @@ module Google
|
|
693
693
|
attr_accessor :private_ip_enabled
|
694
694
|
alias_method :private_ip_enabled?, :private_ip_enabled
|
695
695
|
|
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
|
+
|
696
708
|
# Whether public IP is enabled on the Looker instance.
|
697
709
|
# Corresponds to the JSON property `publicIpEnabled`
|
698
710
|
# @return [Boolean]
|
@@ -745,6 +757,8 @@ module Google
|
|
745
757
|
@oauth_config = args[:oauth_config] if args.key?(:oauth_config)
|
746
758
|
@platform_edition = args[:platform_edition] if args.key?(:platform_edition)
|
747
759
|
@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)
|
748
762
|
@public_ip_enabled = args[:public_ip_enabled] if args.key?(:public_ip_enabled)
|
749
763
|
@reserved_range = args[:reserved_range] if args.key?(:reserved_range)
|
750
764
|
@state = args[:state] if args.key?(:state)
|
@@ -1177,6 +1191,38 @@ module Google
|
|
1177
1191
|
end
|
1178
1192
|
end
|
1179
1193
|
|
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
|
+
|
1180
1226
|
# Request options for restarting an instance.
|
1181
1227
|
class RestartInstanceRequest
|
1182
1228
|
include Google::Apis::Core::Hashable
|
@@ -1190,6 +1236,39 @@ module Google
|
|
1190
1236
|
end
|
1191
1237
|
end
|
1192
1238
|
|
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
|
+
|
1193
1272
|
# Request message for `SetIamPolicy` method.
|
1194
1273
|
class SetIamPolicyRequest
|
1195
1274
|
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.4.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240220"
|
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
|
|
@@ -394,6 +406,9 @@ module Google
|
|
394
406
|
|
395
407
|
property :platform_edition, as: 'platformEdition'
|
396
408
|
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'
|
397
412
|
property :public_ip_enabled, as: 'publicIpEnabled'
|
398
413
|
property :reserved_range, as: 'reservedRange'
|
399
414
|
property :state, as: 'state'
|
@@ -504,12 +519,31 @@ module Google
|
|
504
519
|
end
|
505
520
|
end
|
506
521
|
|
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
|
+
|
507
532
|
class RestartInstanceRequest
|
508
533
|
# @private
|
509
534
|
class Representation < Google::Apis::Core::JsonRepresentation
|
510
535
|
end
|
511
536
|
end
|
512
537
|
|
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
|
+
|
513
547
|
class SetIamPolicyRequest
|
514
548
|
# @private
|
515
549
|
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.4.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-02-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.14.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.14.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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.4.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: []
|
@@ -68,14 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
68
68
|
requirements:
|
69
69
|
- - ">="
|
70
70
|
- !ruby/object:Gem::Version
|
71
|
-
version: '2.
|
71
|
+
version: '2.7'
|
72
72
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
73
73
|
requirements:
|
74
74
|
- - ">="
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.6
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Looker (Google Cloud core) API V1
|