google-apis-looker_v1 0.2.0 → 0.4.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: 3cf72834ec41c451f969e81d4d2b3c9fa4a69eb1b727050e711c8b233539f2d3
4
- data.tar.gz: a92dc357aa1be6dcdb033d2b3b900a56d7c9c5cf874250a4fef6226578b8d4a1
3
+ metadata.gz: 898d967d19dbd5dafe07a9dd610bb0a1669aee72e24727ff145c1979cdf72eda
4
+ data.tar.gz: e6e878052f3fb2f5445d1c4147d5e1f49bfe74f65cf1fb75a0fc75527a20e228
5
5
  SHA512:
6
- metadata.gz: c332e3d7683bb104388440ee11039b1b2de7e36602f9471575f6428342a42e7919738fcd051ad4864001ccd123a11516f77d189e312489f4566138e1a6bfefbe
7
- data.tar.gz: c9f4494b0e27ada5881495b8294582e535a3b7f9b8dcc1d96fb5c6176a67df47c57e95b7fb2561284568365395888bf7288b77ebd9a1c1c8f7c74d41f4ddbb90
6
+ metadata.gz: cbed1cdd1b011782fd3555738429bcdcb9d2917b717972610eb06598b0225779f85409f81e3bed1b75a1496aada8d5b2fbc951021bb1a0f865a3e7e26a646114
7
+ data.tar.gz: 006ebc4bdfff4bfc36f14a4e8a8d81f81fe4e4658428f8c8aeeaff50b4123c6af4934b9a22deabf5b7f66a9140002c2c0fb8302f4a2b23dee9eb08377c9a5fd8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
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
+
8
+ ### v0.3.0 (2024-01-28)
9
+
10
+ * Regenerated from discovery document revision 20240118
11
+ * Regenerated using generator version 0.13.1
12
+
3
13
  ### v0.2.0 (2024-01-22)
4
14
 
5
15
  * Regenerated from discovery document revision 20240103
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.5+.
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. Currently, this means Ruby 2.5 and later. 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.
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
 
@@ -193,7 +193,10 @@ module Google
193
193
  attr_accessor :members
194
194
 
195
195
  # Role that is assigned to the list of `members`, or principals. For example, `
196
- # roles/viewer`, `roles/editor`, or `roles/owner`.
196
+ # roles/viewer`, `roles/editor`, or `roles/owner`. For an overview of the IAM
197
+ # roles and permissions, see the [IAM documentation](https://cloud.google.com/
198
+ # iam/docs/roles-overview). For a list of the available pre-defined roles, see [
199
+ # here](https://cloud.google.com/iam/docs/understanding-roles).
197
200
  # Corresponds to the JSON property `role`
198
201
  # @return [String]
199
202
  attr_accessor :role
@@ -690,6 +693,18 @@ module Google
690
693
  attr_accessor :private_ip_enabled
691
694
  alias_method :private_ip_enabled?, :private_ip_enabled
692
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
+
693
708
  # Whether public IP is enabled on the Looker instance.
694
709
  # Corresponds to the JSON property `publicIpEnabled`
695
710
  # @return [Boolean]
@@ -742,6 +757,8 @@ module Google
742
757
  @oauth_config = args[:oauth_config] if args.key?(:oauth_config)
743
758
  @platform_edition = args[:platform_edition] if args.key?(:platform_edition)
744
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)
745
762
  @public_ip_enabled = args[:public_ip_enabled] if args.key?(:public_ip_enabled)
746
763
  @reserved_range = args[:reserved_range] if args.key?(:reserved_range)
747
764
  @state = args[:state] if args.key?(:state)
@@ -1174,6 +1191,38 @@ module Google
1174
1191
  end
1175
1192
  end
1176
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
+
1177
1226
  # Request options for restarting an instance.
1178
1227
  class RestartInstanceRequest
1179
1228
  include Google::Apis::Core::Hashable
@@ -1187,6 +1236,39 @@ module Google
1187
1236
  end
1188
1237
  end
1189
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
+
1190
1272
  # Request message for `SetIamPolicy` method.
1191
1273
  class SetIamPolicyRequest
1192
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.2.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.13.0"
22
+ GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240103"
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.2.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-01-23 00:00:00.000000000 Z
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.12.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.12.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.2.0
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.5'
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.3
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