google-apis-looker_v1 0.21.0 → 0.22.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: 683c0cf45cc178ca92f182a00d9ad7945145bbd37b87933b5f0f12af8cffe2f5
4
- data.tar.gz: d67092b9b093f6febe6b5baca7092a4ef2cebdfc4d8a492b197e642f64001f21
3
+ metadata.gz: fb98965a8cd64ec9e1a7f2e1962925a3124c070fa96cd29b4a3070ff9867678a
4
+ data.tar.gz: 496c6de5355e2e2561fe480df5220c3984fc904879fe728da4b137b4fc7ef6f8
5
5
  SHA512:
6
- metadata.gz: 5758bf47ef33394dbfb7fee5fa32e0036e508195a2024429acd0fd2572d7cae6e4fccc6a896333f45935a5a8e78d029e2893d9b0c4d69a1175f8f6dc1aa91a4f
7
- data.tar.gz: 0e8cbe41c737ad830c5a3c432d0f4398978185e450ab5746873597629133ad1d6ee898bd506b328006f8abd71f428de3e87557c4f128ed7585380c0346f5822d
6
+ metadata.gz: b74ecdf09a1774a169d114385a317ad822cc2c4f8c88a95d95b2f2185388c41d70c9859f2e16ef81dbd710460fdbc11df03723872b5410d578cb9e954d39044b
7
+ data.tar.gz: 78d781dccce2c1ece2d77a3bdb2d4a09f101558074c6a612454b13e3ccc879178db13b2a4ea4ad3d0a9b3e696e2e80a99d7ed3ac1d6dc9a269f4ae457fd2d3db
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-looker_v1
2
2
 
3
+ ### v0.22.0 (2025-10-26)
4
+
5
+ * Regenerated from discovery document revision 20251017
6
+
3
7
  ### v0.21.0 (2025-10-19)
4
8
 
5
9
  * Regenerated from discovery document revision 20251001
@@ -54,6 +54,33 @@ module Google
54
54
  end
55
55
  end
56
56
 
57
+ # Controlled egress configuration.
58
+ class ControlledEgressConfig
59
+ include Google::Apis::Core::Hashable
60
+
61
+ # Optional. List of fully qualified domain names to be added to the allowlist
62
+ # for outbound traffic.
63
+ # Corresponds to the JSON property `egressFqdns`
64
+ # @return [Array<String>]
65
+ attr_accessor :egress_fqdns
66
+
67
+ # Optional. Whether marketplace is enabled.
68
+ # Corresponds to the JSON property `marketplaceEnabled`
69
+ # @return [Boolean]
70
+ attr_accessor :marketplace_enabled
71
+ alias_method :marketplace_enabled?, :marketplace_enabled
72
+
73
+ def initialize(**args)
74
+ update!(**args)
75
+ end
76
+
77
+ # Update properties of this object
78
+ def update!(**args)
79
+ @egress_fqdns = args[:egress_fqdns] if args.key?(:egress_fqdns)
80
+ @marketplace_enabled = args[:marketplace_enabled] if args.key?(:marketplace_enabled)
81
+ end
82
+ end
83
+
57
84
  # Custom domain information.
58
85
  class CustomDomain
59
86
  include Google::Apis::Core::Hashable
@@ -388,6 +415,17 @@ module Google
388
415
  # @return [String]
389
416
  attr_accessor :consumer_network
390
417
 
418
+ # Controlled egress configuration.
419
+ # Corresponds to the JSON property `controlledEgressConfig`
420
+ # @return [Google::Apis::LookerV1::ControlledEgressConfig]
421
+ attr_accessor :controlled_egress_config
422
+
423
+ # Optional. Whether controlled egress is enabled on the Looker instance.
424
+ # Corresponds to the JSON property `controlledEgressEnabled`
425
+ # @return [Boolean]
426
+ attr_accessor :controlled_egress_enabled
427
+ alias_method :controlled_egress_enabled?, :controlled_egress_enabled
428
+
391
429
  # Output only. The time when the Looker instance provisioning was first
392
430
  # requested.
393
431
  # Corresponds to the JSON property `createTime`
@@ -551,6 +589,8 @@ module Google
551
589
  @admin_settings = args[:admin_settings] if args.key?(:admin_settings)
552
590
  @class_type = args[:class_type] if args.key?(:class_type)
553
591
  @consumer_network = args[:consumer_network] if args.key?(:consumer_network)
592
+ @controlled_egress_config = args[:controlled_egress_config] if args.key?(:controlled_egress_config)
593
+ @controlled_egress_enabled = args[:controlled_egress_enabled] if args.key?(:controlled_egress_enabled)
554
594
  @create_time = args[:create_time] if args.key?(:create_time)
555
595
  @custom_domain = args[:custom_domain] if args.key?(:custom_domain)
556
596
  @deny_maintenance_period = args[:deny_maintenance_period] if args.key?(:deny_maintenance_period)
@@ -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.21.0"
19
+ GEM_VERSION = "0.22.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 = "20251001"
25
+ REVISION = "20251017"
26
26
  end
27
27
  end
28
28
  end
@@ -34,6 +34,12 @@ module Google
34
34
  include Google::Apis::Core::JsonObjectSupport
35
35
  end
36
36
 
37
+ class ControlledEgressConfig
38
+ class Representation < Google::Apis::Core::JsonRepresentation; end
39
+
40
+ include Google::Apis::Core::JsonObjectSupport
41
+ end
42
+
37
43
  class CustomDomain
38
44
  class Representation < Google::Apis::Core::JsonRepresentation; end
39
45
 
@@ -221,6 +227,14 @@ module Google
221
227
  end
222
228
  end
223
229
 
230
+ class ControlledEgressConfig
231
+ # @private
232
+ class Representation < Google::Apis::Core::JsonRepresentation
233
+ collection :egress_fqdns, as: 'egressFqdns'
234
+ property :marketplace_enabled, as: 'marketplaceEnabled'
235
+ end
236
+ end
237
+
224
238
  class CustomDomain
225
239
  # @private
226
240
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -317,6 +331,9 @@ module Google
317
331
 
318
332
  property :class_type, as: 'classType'
319
333
  property :consumer_network, as: 'consumerNetwork'
334
+ property :controlled_egress_config, as: 'controlledEgressConfig', class: Google::Apis::LookerV1::ControlledEgressConfig, decorator: Google::Apis::LookerV1::ControlledEgressConfig::Representation
335
+
336
+ property :controlled_egress_enabled, as: 'controlledEgressEnabled'
320
337
  property :create_time, as: 'createTime'
321
338
  property :custom_domain, as: 'customDomain', class: Google::Apis::LookerV1::CustomDomain, decorator: Google::Apis::LookerV1::CustomDomain::Representation
322
339
 
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.21.0
4
+ version: 0.22.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.21.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-looker_v1/v0.22.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: