google-apis-metastore_v1beta 0.15.0 → 0.16.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: d2a1425c82b1beb5be3f36b1e3b2f7a8ced8626cedd3834a5125dabe470bf467
4
- data.tar.gz: 2c90276c3dc637f153338bd0d017331aca090192ea8e1b651e009e3146432684
3
+ metadata.gz: 5514ba1c2430b5302eded8be1c76368eaabf112ab2a2af5966cb0a1bfa0fc6eb
4
+ data.tar.gz: c0c40a39da3be2577575674bc6f693440c0853d4d74cedd11d4366480cd14ec4
5
5
  SHA512:
6
- metadata.gz: 902d24beed8ce181676cc012c337660deff0aa19bb8ebaab4058fd3d2510ffa9f03262afd3353113bf62f0963c39b14afa7787507162135ade8142677d14cfc5
7
- data.tar.gz: a18b6d17808fb2949f81bb4a19a57b08eee160651ceb4893417514a62d485239f1e528741470b99ce5d0f5a21be56c9440b5e511aa1ee9709b37849bcb4c722a
6
+ metadata.gz: 1358e984846d71fb3891baa856e0a0bb9805b62e90b8f9c0be983878310db69c8864707f1c07d664a86eb36558e27e490fe4388503c1a47a67542597dd0b30d6
7
+ data.tar.gz: f6d6c934936d86c4f8f1a15387cd1cfaf406c6cff84932b14cb132da594e3d51f240c003b16ddd0b7335733e49e428618efb4672ac82477b176cdf94854b2eee
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-metastore_v1beta
2
2
 
3
+ ### v0.16.0 (2021-09-01)
4
+
5
+ * Regenerated from discovery document revision 20210824
6
+
3
7
  ### v0.15.0 (2021-07-28)
4
8
 
5
9
  * Regenerated from discovery document revision 20210721
@@ -281,6 +281,28 @@ module Google
281
281
  end
282
282
  end
283
283
 
284
+ # Specifies how metastore metadata should be integrated with the Dataplex
285
+ # service.
286
+ class DataplexConfig
287
+ include Google::Apis::Core::Hashable
288
+
289
+ # A reference to the Lake resources that this metastore service is attached to.
290
+ # The key is the lake resource name. Example: projects/`project_number`/
291
+ # locations/`location_id`/lakes/`lake_id`.
292
+ # Corresponds to the JSON property `lakeResources`
293
+ # @return [Hash<String,Google::Apis::MetastoreV1beta::Lake>]
294
+ attr_accessor :lake_resources
295
+
296
+ def initialize(**args)
297
+ update!(**args)
298
+ end
299
+
300
+ # Update properties of this object
301
+ def update!(**args)
302
+ @lake_resources = args[:lake_resources] if args.key?(:lake_resources)
303
+ end
304
+ end
305
+
284
306
  # A generic empty message that you can re-use to avoid defining duplicated empty
285
307
  # messages in your APIs. A typical example is to use it as the request or the
286
308
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
@@ -424,6 +446,12 @@ module Google
424
446
  # @return [Hash<String,String>]
425
447
  attr_accessor :config_overrides
426
448
 
449
+ # The protocol to use for the metastore service endpoint. If unspecified,
450
+ # defaults to THRIFT.
451
+ # Corresponds to the JSON property `endpointProtocol`
452
+ # @return [String]
453
+ attr_accessor :endpoint_protocol
454
+
427
455
  # Configuration information for a Kerberos principal.
428
456
  # Corresponds to the JSON property `kerberosConfig`
429
457
  # @return [Google::Apis::MetastoreV1beta::KerberosConfig]
@@ -441,6 +469,7 @@ module Google
441
469
  # Update properties of this object
442
470
  def update!(**args)
443
471
  @config_overrides = args[:config_overrides] if args.key?(:config_overrides)
472
+ @endpoint_protocol = args[:endpoint_protocol] if args.key?(:endpoint_protocol)
444
473
  @kerberos_config = args[:kerberos_config] if args.key?(:kerberos_config)
445
474
  @version = args[:version] if args.key?(:version)
446
475
  end
@@ -508,6 +537,26 @@ module Google
508
537
  end
509
538
  end
510
539
 
540
+ # Represents a Lake resource
541
+ class Lake
542
+ include Google::Apis::Core::Hashable
543
+
544
+ # The Lake resource name. Example: projects/`project_number`/locations/`
545
+ # location_id`/lakes/`lake_id`
546
+ # Corresponds to the JSON property `name`
547
+ # @return [String]
548
+ attr_accessor :name
549
+
550
+ def initialize(**args)
551
+ update!(**args)
552
+ end
553
+
554
+ # Update properties of this object
555
+ def update!(**args)
556
+ @name = args[:name] if args.key?(:name)
557
+ end
558
+ end
559
+
511
560
  # Response message for DataprocMetastore.ListBackups.
512
561
  class ListBackupsResponse
513
562
  include Google::Apis::Core::Hashable
@@ -860,6 +909,12 @@ module Google
860
909
  # @return [Google::Apis::MetastoreV1beta::DataCatalogConfig]
861
910
  attr_accessor :data_catalog_config
862
911
 
912
+ # Specifies how metastore metadata should be integrated with the Dataplex
913
+ # service.
914
+ # Corresponds to the JSON property `dataplexConfig`
915
+ # @return [Google::Apis::MetastoreV1beta::DataplexConfig]
916
+ attr_accessor :dataplex_config
917
+
863
918
  def initialize(**args)
864
919
  update!(**args)
865
920
  end
@@ -867,6 +922,7 @@ module Google
867
922
  # Update properties of this object
868
923
  def update!(**args)
869
924
  @data_catalog_config = args[:data_catalog_config] if args.key?(:data_catalog_config)
925
+ @dataplex_config = args[:dataplex_config] if args.key?(:dataplex_config)
870
926
  end
871
927
  end
872
928
 
@@ -1040,7 +1096,7 @@ module Google
1040
1096
  # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
1041
1097
  # roles/resourcemanager.organizationViewer condition: title: expirable access
1042
1098
  # description: Does not grant access after Sep 2020 expression: request.time <
1043
- # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
1099
+ # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
1044
1100
  # description of IAM and its features, see the IAM documentation (https://cloud.
1045
1101
  # google.com/iam/docs/).
1046
1102
  class Policy
@@ -1374,7 +1430,7 @@ module Google
1374
1430
  # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
1375
1431
  # roles/resourcemanager.organizationViewer condition: title: expirable access
1376
1432
  # description: Does not grant access after Sep 2020 expression: request.time <
1377
- # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
1433
+ # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
1378
1434
  # description of IAM and its features, see the IAM documentation (https://cloud.
1379
1435
  # google.com/iam/docs/).
1380
1436
  # Corresponds to the JSON property `policy`
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module MetastoreV1beta
18
18
  # Version of the google-apis-metastore_v1beta gem
19
- GEM_VERSION = "0.15.0"
19
+ GEM_VERSION = "0.16.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210721"
25
+ REVISION = "20210824"
26
26
  end
27
27
  end
28
28
  end
@@ -58,6 +58,12 @@ module Google
58
58
  include Google::Apis::Core::JsonObjectSupport
59
59
  end
60
60
 
61
+ class DataplexConfig
62
+ class Representation < Google::Apis::Core::JsonRepresentation; end
63
+
64
+ include Google::Apis::Core::JsonObjectSupport
65
+ end
66
+
61
67
  class Empty
62
68
  class Representation < Google::Apis::Core::JsonRepresentation; end
63
69
 
@@ -100,6 +106,12 @@ module Google
100
106
  include Google::Apis::Core::JsonObjectSupport
101
107
  end
102
108
 
109
+ class Lake
110
+ class Representation < Google::Apis::Core::JsonRepresentation; end
111
+
112
+ include Google::Apis::Core::JsonObjectSupport
113
+ end
114
+
103
115
  class ListBackupsResponse
104
116
  class Representation < Google::Apis::Core::JsonRepresentation; end
105
117
 
@@ -296,6 +308,14 @@ module Google
296
308
  end
297
309
  end
298
310
 
311
+ class DataplexConfig
312
+ # @private
313
+ class Representation < Google::Apis::Core::JsonRepresentation
314
+ hash :lake_resources, as: 'lakeResources', class: Google::Apis::MetastoreV1beta::Lake, decorator: Google::Apis::MetastoreV1beta::Lake::Representation
315
+
316
+ end
317
+ end
318
+
299
319
  class Empty
300
320
  # @private
301
321
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -332,6 +352,7 @@ module Google
332
352
  # @private
333
353
  class Representation < Google::Apis::Core::JsonRepresentation
334
354
  hash :config_overrides, as: 'configOverrides'
355
+ property :endpoint_protocol, as: 'endpointProtocol'
335
356
  property :kerberos_config, as: 'kerberosConfig', class: Google::Apis::MetastoreV1beta::KerberosConfig, decorator: Google::Apis::MetastoreV1beta::KerberosConfig::Representation
336
357
 
337
358
  property :version, as: 'version'
@@ -356,6 +377,13 @@ module Google
356
377
  end
357
378
  end
358
379
 
380
+ class Lake
381
+ # @private
382
+ class Representation < Google::Apis::Core::JsonRepresentation
383
+ property :name, as: 'name'
384
+ end
385
+ end
386
+
359
387
  class ListBackupsResponse
360
388
  # @private
361
389
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -461,6 +489,8 @@ module Google
461
489
  class Representation < Google::Apis::Core::JsonRepresentation
462
490
  property :data_catalog_config, as: 'dataCatalogConfig', class: Google::Apis::MetastoreV1beta::DataCatalogConfig, decorator: Google::Apis::MetastoreV1beta::DataCatalogConfig::Representation
463
491
 
492
+ property :dataplex_config, as: 'dataplexConfig', class: Google::Apis::MetastoreV1beta::DataplexConfig, decorator: Google::Apis::MetastoreV1beta::DataplexConfig::Representation
493
+
464
494
  end
465
495
  end
466
496
 
@@ -30,7 +30,7 @@ module Google
30
30
  # This is NOT the gem version.
31
31
  VERSION = 'V1beta'
32
32
 
33
- # See, edit, configure, and delete your Google Cloud Platform data
33
+ # See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
34
34
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
35
35
  end
36
36
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-metastore_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.0
4
+ version: 0.16.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: 2021-08-02 00:00:00.000000000 Z
11
+ date: 2021-09-06 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/master/generated/google-apis-metastore_v1beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1beta/v0.15.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1beta/v0.16.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-metastore_v1beta
63
63
  post_install_message:
64
64
  rdoc_options: []