google-apis-metastore_v1beta 0.4.0 → 0.5.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: c121171501e42eb5db67e8c857e9fdc4e7f54afbed67c7d80a65f7fbc7eddbdc
4
- data.tar.gz: 0e0fb2b1018d57f0b3dede2a0e150d28fd8fd69a5b15e94cb913e9cd94b06959
3
+ metadata.gz: ed1eb42507c95bc4f1041ed19e81455b59fa1cbc1ba32b61eeea956b69c28955
4
+ data.tar.gz: 85873722c49fe689df5d62df6137fd84affd04f443e6bb4a5d3947c63b940309
5
5
  SHA512:
6
- metadata.gz: 6f80851a544c10f29bed8a4cc5182bacb1652d11f6d38cd0162464ccab4597a7001cee3fcd7c869fbd8617be00802852c39bfe3cbfbb33f389be4840b1787720
7
- data.tar.gz: d364f20d7d363e9cd2c15d5a85514719736d88cb2318d37a65a744dc42c7c1874abd39d4db4babe30106d7f2c22667837d47a3eb60a7280a45c0f2f65d5a10fa
6
+ metadata.gz: b647374b78fafb2aa7569ae54bed1482635c4651db59870d580f5f0ab6aa7e57f21b2e65838fba16059fd4181f30805608c5a1b33fb2620771b28fe00492931c
7
+ data.tar.gz: a7e10dd56808f5c5e00d0f9163688661b3afd11337012035bc49fe41ec0ff0efda8bd1c0c538f6a881aa577b17296015c9da0df7a6496b04571299816b3eb3e4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-metastore_v1beta
2
2
 
3
+ ### v0.5.0 (2021-03-10)
4
+
5
+ * Regenerated from discovery document revision 20210305
6
+ * Regenerated using generator version 0.2.0
7
+
3
8
  ### v0.4.0 (2021-03-04)
4
9
 
5
10
  * Regenerated from discovery document revision 20210226
@@ -163,6 +163,28 @@ module Google
163
163
  end
164
164
  end
165
165
 
166
+ # Specifies how metastore metadata should be integrated with the Data Catalog
167
+ # service.
168
+ class DataCatalogConfig
169
+ include Google::Apis::Core::Hashable
170
+
171
+ # Defines whether the metastore metadata should be synced to Data Catalog. The
172
+ # default value is to disable syncing metastore metadata to Data Catalog.
173
+ # Corresponds to the JSON property `enabled`
174
+ # @return [Boolean]
175
+ attr_accessor :enabled
176
+ alias_method :enabled?, :enabled
177
+
178
+ def initialize(**args)
179
+ update!(**args)
180
+ end
181
+
182
+ # Update properties of this object
183
+ def update!(**args)
184
+ @enabled = args[:enabled] if args.key?(:enabled)
185
+ end
186
+ end
187
+
166
188
  # A specification of the location of and metadata about a database dump from a
167
189
  # relational database management system.
168
190
  class DatabaseDump
@@ -717,12 +739,19 @@ module Google
717
739
  class MetadataIntegration
718
740
  include Google::Apis::Core::Hashable
719
741
 
742
+ # Specifies how metastore metadata should be integrated with the Data Catalog
743
+ # service.
744
+ # Corresponds to the JSON property `dataCatalogConfig`
745
+ # @return [Google::Apis::MetastoreV1beta::DataCatalogConfig]
746
+ attr_accessor :data_catalog_config
747
+
720
748
  def initialize(**args)
721
749
  update!(**args)
722
750
  end
723
751
 
724
752
  # Update properties of this object
725
753
  def update!(**args)
754
+ @data_catalog_config = args[:data_catalog_config] if args.key?(:data_catalog_config)
726
755
  end
727
756
  end
728
757
 
@@ -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.4.0"
19
+ GEM_VERSION = "0.5.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.1.2"
22
+ GENERATOR_VERSION = "0.2.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210226"
25
+ REVISION = "20210305"
26
26
  end
27
27
  end
28
28
  end
@@ -40,6 +40,12 @@ module Google
40
40
  include Google::Apis::Core::JsonObjectSupport
41
41
  end
42
42
 
43
+ class DataCatalogConfig
44
+ class Representation < Google::Apis::Core::JsonRepresentation; end
45
+
46
+ include Google::Apis::Core::JsonObjectSupport
47
+ end
48
+
43
49
  class DatabaseDump
44
50
  class Representation < Google::Apis::Core::JsonRepresentation; end
45
51
 
@@ -229,6 +235,13 @@ module Google
229
235
  end
230
236
  end
231
237
 
238
+ class DataCatalogConfig
239
+ # @private
240
+ class Representation < Google::Apis::Core::JsonRepresentation
241
+ property :enabled, as: 'enabled'
242
+ end
243
+ end
244
+
232
245
  class DatabaseDump
233
246
  # @private
234
247
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -384,6 +397,8 @@ module Google
384
397
  class MetadataIntegration
385
398
  # @private
386
399
  class Representation < Google::Apis::Core::JsonRepresentation
400
+ property :data_catalog_config, as: 'dataCatalogConfig', class: Google::Apis::MetastoreV1beta::DataCatalogConfig, decorator: Google::Apis::MetastoreV1beta::DataCatalogConfig::Representation
401
+
387
402
  end
388
403
  end
389
404
 
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.4.0
4
+ version: 0.5.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-03-08 00:00:00.000000000 Z
11
+ date: 2021-03-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -52,7 +52,7 @@ licenses:
52
52
  metadata:
53
53
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
54
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-metastore_v1beta/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1beta/v0.4.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1beta/v0.5.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-metastore_v1beta
57
57
  post_install_message:
58
58
  rdoc_options: []