google-apis-looker_v1 0.8.0 → 0.10.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: 38ae86aec32ff79d6e5f072bb15cb335bb49f19275d63cde1593d92951e9af95
4
- data.tar.gz: '052495c0c381c0901ad0d7f5eaf852432f03f0b581e121f7faad2727cdf71ed0'
3
+ metadata.gz: 1abd1e328d2d361b4d70168399452e3bd94be3ec2a4e51a1a5ff1836b3de84a2
4
+ data.tar.gz: 6bf076816ee48bb530c68877dd5d4a42eb269f6191925820efd61d9091dc44ff
5
5
  SHA512:
6
- metadata.gz: 8e789cafe063c42326260b8c36364b0646c124f58e12a7c012495ba48b677bb1fc1c7b6bad0f818c32785bff642ac13a63709481acff6d0e4b9b4baf01f19ae7
7
- data.tar.gz: 84cea99aa446bbeac35e2c6eb2b84418b02109edba7cb632fb85281cb06d85f737861edc533c1d89d1f57202d6b9c3485d8b3351871ce3709998b06394677533
6
+ metadata.gz: ad203ecc0a3fcc05e4b6e383fed8ac6efe632e849d5a3f31c04473c777227a0668aef6af650ccad6088b323fc4f49ecf78a63f2737ac47f92910724b40d55f5d
7
+ data.tar.gz: 6c47f6ee339b2578387e2f3c660decff27a4cee61dfe89a583cee9f0a3b1a7a9e621e6ab0286d8b324843770259da22c3fc3a645e843cc7b4d7d765d76a39370
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-looker_v1
2
2
 
3
+ ### v0.10.0 (2024-09-15)
4
+
5
+ * Regenerated from discovery document revision 20240910
6
+
7
+ ### v0.9.0 (2024-08-25)
8
+
9
+ * Regenerated from discovery document revision 20240814
10
+ * Regenerated using generator version 0.15.1
11
+
3
12
  ### v0.8.0 (2024-06-16)
4
13
 
5
14
  * Regenerated from discovery document revision 20240522
@@ -635,6 +635,18 @@ module Google
635
635
  # @return [Google::Apis::LookerV1::EncryptionConfig]
636
636
  attr_accessor :encryption_config
637
637
 
638
+ # Optional. Whether FIPS is enabled on the Looker instance.
639
+ # Corresponds to the JSON property `fipsEnabled`
640
+ # @return [Boolean]
641
+ attr_accessor :fips_enabled
642
+ alias_method :fips_enabled?, :fips_enabled
643
+
644
+ # Optional. Whether Gemini feature is enabled on the Looker instance or not.
645
+ # Corresponds to the JSON property `geminiEnabled`
646
+ # @return [Boolean]
647
+ attr_accessor :gemini_enabled
648
+ alias_method :gemini_enabled?, :gemini_enabled
649
+
638
650
  # Output only. Private Ingress IP (IPv4).
639
651
  # Corresponds to the JSON property `ingressPrivateIp`
640
652
  # @return [String]
@@ -698,6 +710,19 @@ module Google
698
710
  attr_accessor :private_ip_enabled
699
711
  alias_method :private_ip_enabled?, :private_ip_enabled
700
712
 
713
+ # Information for Private Service Connect (PSC) setup for a Looker instance.
714
+ # Corresponds to the JSON property `pscConfig`
715
+ # @return [Google::Apis::LookerV1::PscConfig]
716
+ attr_accessor :psc_config
717
+
718
+ # Optional. Whether to use Private Service Connect (PSC) for private IP
719
+ # connectivity. If true, neither `public_ip_enabled` nor `private_ip_enabled`
720
+ # can be true.
721
+ # Corresponds to the JSON property `pscEnabled`
722
+ # @return [Boolean]
723
+ attr_accessor :psc_enabled
724
+ alias_method :psc_enabled?, :psc_enabled
725
+
701
726
  # Whether public IP is enabled on the Looker instance.
702
727
  # Corresponds to the JSON property `publicIpEnabled`
703
728
  # @return [Boolean]
@@ -739,6 +764,8 @@ module Google
739
764
  @deny_maintenance_period = args[:deny_maintenance_period] if args.key?(:deny_maintenance_period)
740
765
  @egress_public_ip = args[:egress_public_ip] if args.key?(:egress_public_ip)
741
766
  @encryption_config = args[:encryption_config] if args.key?(:encryption_config)
767
+ @fips_enabled = args[:fips_enabled] if args.key?(:fips_enabled)
768
+ @gemini_enabled = args[:gemini_enabled] if args.key?(:gemini_enabled)
742
769
  @ingress_private_ip = args[:ingress_private_ip] if args.key?(:ingress_private_ip)
743
770
  @ingress_public_ip = args[:ingress_public_ip] if args.key?(:ingress_public_ip)
744
771
  @last_deny_maintenance_period = args[:last_deny_maintenance_period] if args.key?(:last_deny_maintenance_period)
@@ -751,6 +778,8 @@ module Google
751
778
  @oauth_config = args[:oauth_config] if args.key?(:oauth_config)
752
779
  @platform_edition = args[:platform_edition] if args.key?(:platform_edition)
753
780
  @private_ip_enabled = args[:private_ip_enabled] if args.key?(:private_ip_enabled)
781
+ @psc_config = args[:psc_config] if args.key?(:psc_config)
782
+ @psc_enabled = args[:psc_enabled] if args.key?(:psc_enabled)
754
783
  @public_ip_enabled = args[:public_ip_enabled] if args.key?(:public_ip_enabled)
755
784
  @reserved_range = args[:reserved_range] if args.key?(:reserved_range)
756
785
  @state = args[:state] if args.key?(:state)
@@ -1183,6 +1212,38 @@ module Google
1183
1212
  end
1184
1213
  end
1185
1214
 
1215
+ # Information for Private Service Connect (PSC) setup for a Looker instance.
1216
+ class PscConfig
1217
+ include Google::Apis::Core::Hashable
1218
+
1219
+ # Optional. List of VPCs that are allowed ingress into looker. Format: projects/`
1220
+ # project`/global/networks/`network`
1221
+ # Corresponds to the JSON property `allowedVpcs`
1222
+ # @return [Array<String>]
1223
+ attr_accessor :allowed_vpcs
1224
+
1225
+ # Output only. URI of the Looker service attachment.
1226
+ # Corresponds to the JSON property `lookerServiceAttachmentUri`
1227
+ # @return [String]
1228
+ attr_accessor :looker_service_attachment_uri
1229
+
1230
+ # Optional. List of egress service attachment configurations.
1231
+ # Corresponds to the JSON property `serviceAttachments`
1232
+ # @return [Array<Google::Apis::LookerV1::ServiceAttachment>]
1233
+ attr_accessor :service_attachments
1234
+
1235
+ def initialize(**args)
1236
+ update!(**args)
1237
+ end
1238
+
1239
+ # Update properties of this object
1240
+ def update!(**args)
1241
+ @allowed_vpcs = args[:allowed_vpcs] if args.key?(:allowed_vpcs)
1242
+ @looker_service_attachment_uri = args[:looker_service_attachment_uri] if args.key?(:looker_service_attachment_uri)
1243
+ @service_attachments = args[:service_attachments] if args.key?(:service_attachments)
1244
+ end
1245
+ end
1246
+
1186
1247
  # Request options for restarting an instance.
1187
1248
  class RestartInstanceRequest
1188
1249
  include Google::Apis::Core::Hashable
@@ -1196,6 +1257,39 @@ module Google
1196
1257
  end
1197
1258
  end
1198
1259
 
1260
+ # Service attachment configuration.
1261
+ class ServiceAttachment
1262
+ include Google::Apis::Core::Hashable
1263
+
1264
+ # Output only. Connection status.
1265
+ # Corresponds to the JSON property `connectionStatus`
1266
+ # @return [String]
1267
+ attr_accessor :connection_status
1268
+
1269
+ # Required. Fully qualified domain name that will be used in the private DNS
1270
+ # record created for the service attachment.
1271
+ # Corresponds to the JSON property `localFqdn`
1272
+ # @return [String]
1273
+ attr_accessor :local_fqdn
1274
+
1275
+ # Required. URI of the service attachment to connect to. Format: projects/`
1276
+ # project`/regions/`region`/serviceAttachments/`service_attachment`
1277
+ # Corresponds to the JSON property `targetServiceAttachmentUri`
1278
+ # @return [String]
1279
+ attr_accessor :target_service_attachment_uri
1280
+
1281
+ def initialize(**args)
1282
+ update!(**args)
1283
+ end
1284
+
1285
+ # Update properties of this object
1286
+ def update!(**args)
1287
+ @connection_status = args[:connection_status] if args.key?(:connection_status)
1288
+ @local_fqdn = args[:local_fqdn] if args.key?(:local_fqdn)
1289
+ @target_service_attachment_uri = args[:target_service_attachment_uri] if args.key?(:target_service_attachment_uri)
1290
+ end
1291
+ end
1292
+
1199
1293
  # Request message for `SetIamPolicy` method.
1200
1294
  class SetIamPolicyRequest
1201
1295
  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.8.0"
19
+ GEM_VERSION = "0.10.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.0"
22
+ GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240522"
25
+ REVISION = "20240910"
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
 
@@ -379,6 +391,8 @@ module Google
379
391
  property :egress_public_ip, as: 'egressPublicIp'
380
392
  property :encryption_config, as: 'encryptionConfig', class: Google::Apis::LookerV1::EncryptionConfig, decorator: Google::Apis::LookerV1::EncryptionConfig::Representation
381
393
 
394
+ property :fips_enabled, as: 'fipsEnabled'
395
+ property :gemini_enabled, as: 'geminiEnabled'
382
396
  property :ingress_private_ip, as: 'ingressPrivateIp'
383
397
  property :ingress_public_ip, as: 'ingressPublicIp'
384
398
  property :last_deny_maintenance_period, as: 'lastDenyMaintenancePeriod', class: Google::Apis::LookerV1::DenyMaintenancePeriod, decorator: Google::Apis::LookerV1::DenyMaintenancePeriod::Representation
@@ -395,6 +409,9 @@ module Google
395
409
 
396
410
  property :platform_edition, as: 'platformEdition'
397
411
  property :private_ip_enabled, as: 'privateIpEnabled'
412
+ property :psc_config, as: 'pscConfig', class: Google::Apis::LookerV1::PscConfig, decorator: Google::Apis::LookerV1::PscConfig::Representation
413
+
414
+ property :psc_enabled, as: 'pscEnabled'
398
415
  property :public_ip_enabled, as: 'publicIpEnabled'
399
416
  property :reserved_range, as: 'reservedRange'
400
417
  property :state, as: 'state'
@@ -505,12 +522,31 @@ module Google
505
522
  end
506
523
  end
507
524
 
525
+ class PscConfig
526
+ # @private
527
+ class Representation < Google::Apis::Core::JsonRepresentation
528
+ collection :allowed_vpcs, as: 'allowedVpcs'
529
+ property :looker_service_attachment_uri, as: 'lookerServiceAttachmentUri'
530
+ collection :service_attachments, as: 'serviceAttachments', class: Google::Apis::LookerV1::ServiceAttachment, decorator: Google::Apis::LookerV1::ServiceAttachment::Representation
531
+
532
+ end
533
+ end
534
+
508
535
  class RestartInstanceRequest
509
536
  # @private
510
537
  class Representation < Google::Apis::Core::JsonRepresentation
511
538
  end
512
539
  end
513
540
 
541
+ class ServiceAttachment
542
+ # @private
543
+ class Representation < Google::Apis::Core::JsonRepresentation
544
+ property :connection_status, as: 'connectionStatus'
545
+ property :local_fqdn, as: 'localFqdn'
546
+ property :target_service_attachment_uri, as: 'targetServiceAttachmentUri'
547
+ end
548
+ end
549
+
514
550
  class SetIamPolicyRequest
515
551
  # @private
516
552
  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.8.0
4
+ version: 0.10.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-06-16 00:00:00.000000000 Z
11
+ date: 2024-09-15 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.8.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-looker_v1/v0.10.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: []