google-apis-metastore_v1alpha 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: 380d060031c97b3000d8168edac125b8359cb8c406226d38266dee4dbbcde769
4
- data.tar.gz: eafbe58dace0288919265e53ff40264c2250d7f2b14e9d5cf8644a86c8399a0f
3
+ metadata.gz: ee2bb18d8f3a4bf231f05103aa2879ef0b82211aee916656a3298d4d30522000
4
+ data.tar.gz: 7e4004c1a82477eac17341e90ec94868705d53796fada747ad9803b43da6fb2e
5
5
  SHA512:
6
- metadata.gz: 4dea2127f954c551426a4ca08ab178892f9deda1b408d4688d954737a0fded7b351fd999e5186e3b961f83ee62a64448352448988bf50d776354c77e5d1151d9
7
- data.tar.gz: f9162acefab6ba8f366586e74f88312a0221e6256f8e153b2cd1303247520d2b4787ce3460d97393541ef97a5773d2d4a4ca2556ffca7161cda640c6ebabfd89
6
+ metadata.gz: 921cacf3a2323c3524020e9d97814863eec15913f91bf98ee65b5ea8981ab117e0bf6d48f3c529321627260e77bcfc8e05c8d33b36474aa364495762ceb82251
7
+ data.tar.gz: 31f97887ab1d4f00617008cb47b3f5716e3a4ab2053b95f01cddcbee207b20a6e01d557b54be23b8502f990afc92119b410bb36393bfba3c800609b4effc9766
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-metastore_v1alpha
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::MetastoreV1alpha::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 MetastoreV1alpha
18
18
  # Version of the google-apis-metastore_v1alpha 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::MetastoreV1alpha::DataCatalogConfig, decorator: Google::Apis::MetastoreV1alpha::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_v1alpha
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_v1alpha/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1alpha/v0.4.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1alpha/v0.5.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-metastore_v1alpha
57
57
  post_install_message:
58
58
  rdoc_options: []