google-apis-metastore_v1 0.13.0 → 0.15.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: 0de61ca6ab34517ca586147b3cbe92a9949ceab4044cb364c66142f601fc1b35
4
- data.tar.gz: '0822be6b1b5ae17f836a495cc59c77352f94b498b4d9e100180f75a369abbfa3'
3
+ metadata.gz: 69f46ebdcfe7c8a6adfb40ed99d7a61b99bc722095d437fa1a76f9fabf06ba71
4
+ data.tar.gz: a85647ac0ebcdb60c3e9cdff058378723ecaa424f3e4bd3ee15bb7d071751a86
5
5
  SHA512:
6
- metadata.gz: bd29ee4900081c903f7bbe1aa675e37cf7a688d048029a8405408f6173af4dc9ba6e37e8f4f64cef31dcb282ad42905a8a77adf58909f2104968283269e1a15c
7
- data.tar.gz: 3daec8bd395354ed0c64d391d5e8e4bd4dda3c667d496caaecfcead82704ef1b5da7b05d25005303944ffb8086dcfa06cab479da53df061e00eedb47e714f2df
6
+ metadata.gz: a0065864184c8c5738665044f72c787adc80fad94c183f0de1254128ede30d9c8d866c00e29a3991c277b8a05bf7a1c4c7bbff0a0b01d42ae66f3541c782344a
7
+ data.tar.gz: 47e4b8ed7cd48d07d6817f24a4de4d4b70068dfd0d5e25fd16304fde56b03ad1fb06625e41fc63ae8774a88fc631b9df55dc2e49fe376b45893d30d143b22054
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-metastore_v1
2
2
 
3
+ ### v0.15.0 (2023-10-29)
4
+
5
+ * Regenerated from discovery document revision 20231023
6
+
7
+ ### v0.14.0 (2023-10-15)
8
+
9
+ * Regenerated from discovery document revision 20231010
10
+
3
11
  ### v0.13.0 (2023-10-08)
4
12
 
5
13
  * Regenerated from discovery document revision 20230926
@@ -146,7 +146,7 @@ module Google
146
146
  # @return [Hash<String,String>]
147
147
  attr_accessor :config_overrides
148
148
 
149
- # Network configuration for the Dataproc Metastore service.Next available ID: 4
149
+ # Network configuration for the Dataproc Metastore service.
150
150
  # Corresponds to the JSON property `networkConfig`
151
151
  # @return [Google::Apis::MetastoreV1::NetworkConfig]
152
152
  attr_accessor :network_config
@@ -342,8 +342,7 @@ module Google
342
342
  end
343
343
  end
344
344
 
345
- # Contains information of the customer's network configurations.Next available
346
- # ID: 5
345
+ # Contains information of the customer's network configurations.
347
346
  class Consumer
348
347
  include Google::Apis::Core::Hashable
349
348
 
@@ -380,6 +379,29 @@ module Google
380
379
  end
381
380
  end
382
381
 
382
+ # Specifies how metastore metadata should be integrated with the Data Catalog
383
+ # service.
384
+ class DataCatalogConfig
385
+ include Google::Apis::Core::Hashable
386
+
387
+ # Optional. Defines whether the metastore metadata should be synced to Data
388
+ # Catalog. The default value is to disable syncing metastore metadata to Data
389
+ # Catalog.
390
+ # Corresponds to the JSON property `enabled`
391
+ # @return [Boolean]
392
+ attr_accessor :enabled
393
+ alias_method :enabled?, :enabled
394
+
395
+ def initialize(**args)
396
+ update!(**args)
397
+ end
398
+
399
+ # Update properties of this object
400
+ def update!(**args)
401
+ @enabled = args[:enabled] if args.key?(:enabled)
402
+ end
403
+ end
404
+
383
405
  # A specification of the location of and metadata about a database dump from a
384
406
  # relational database management system.
385
407
  class DatabaseDump
@@ -1150,6 +1172,26 @@ module Google
1150
1172
  end
1151
1173
  end
1152
1174
 
1175
+ # Specifies how metastore metadata should be integrated with external services.
1176
+ class MetadataIntegration
1177
+ include Google::Apis::Core::Hashable
1178
+
1179
+ # Specifies how metastore metadata should be integrated with the Data Catalog
1180
+ # service.
1181
+ # Corresponds to the JSON property `dataCatalogConfig`
1182
+ # @return [Google::Apis::MetastoreV1::DataCatalogConfig]
1183
+ attr_accessor :data_catalog_config
1184
+
1185
+ def initialize(**args)
1186
+ update!(**args)
1187
+ end
1188
+
1189
+ # Update properties of this object
1190
+ def update!(**args)
1191
+ @data_catalog_config = args[:data_catalog_config] if args.key?(:data_catalog_config)
1192
+ end
1193
+ end
1194
+
1153
1195
  # The metadata management activities of the metastore service.
1154
1196
  class MetadataManagementActivity
1155
1197
  include Google::Apis::Core::Hashable
@@ -1240,7 +1282,7 @@ module Google
1240
1282
  end
1241
1283
  end
1242
1284
 
1243
- # Network configuration for the Dataproc Metastore service.Next available ID: 4
1285
+ # Network configuration for the Dataproc Metastore service.
1244
1286
  class NetworkConfig
1245
1287
  include Google::Apis::Core::Hashable
1246
1288
 
@@ -1703,6 +1745,11 @@ module Google
1703
1745
  # @return [Google::Apis::MetastoreV1::MaintenanceWindow]
1704
1746
  attr_accessor :maintenance_window
1705
1747
 
1748
+ # Specifies how metastore metadata should be integrated with external services.
1749
+ # Corresponds to the JSON property `metadataIntegration`
1750
+ # @return [Google::Apis::MetastoreV1::MetadataIntegration]
1751
+ attr_accessor :metadata_integration
1752
+
1706
1753
  # The metadata management activities of the metastore service.
1707
1754
  # Corresponds to the JSON property `metadataManagementActivity`
1708
1755
  # @return [Google::Apis::MetastoreV1::MetadataManagementActivity]
@@ -1722,7 +1769,7 @@ module Google
1722
1769
  # @return [String]
1723
1770
  attr_accessor :network
1724
1771
 
1725
- # Network configuration for the Dataproc Metastore service.Next available ID: 4
1772
+ # Network configuration for the Dataproc Metastore service.
1726
1773
  # Corresponds to the JSON property `networkConfig`
1727
1774
  # @return [Google::Apis::MetastoreV1::NetworkConfig]
1728
1775
  attr_accessor :network_config
@@ -1788,6 +1835,7 @@ module Google
1788
1835
  @hive_metastore_config = args[:hive_metastore_config] if args.key?(:hive_metastore_config)
1789
1836
  @labels = args[:labels] if args.key?(:labels)
1790
1837
  @maintenance_window = args[:maintenance_window] if args.key?(:maintenance_window)
1838
+ @metadata_integration = args[:metadata_integration] if args.key?(:metadata_integration)
1791
1839
  @metadata_management_activity = args[:metadata_management_activity] if args.key?(:metadata_management_activity)
1792
1840
  @name = args[:name] if args.key?(:name)
1793
1841
  @network = args[:network] if args.key?(:network)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module MetastoreV1
18
18
  # Version of the google-apis-metastore_v1 gem
19
- GEM_VERSION = "0.13.0"
19
+ GEM_VERSION = "0.15.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230926"
25
+ REVISION = "20231023"
26
26
  end
27
27
  end
28
28
  end
@@ -82,6 +82,12 @@ module Google
82
82
  include Google::Apis::Core::JsonObjectSupport
83
83
  end
84
84
 
85
+ class DataCatalogConfig
86
+ class Representation < Google::Apis::Core::JsonRepresentation; end
87
+
88
+ include Google::Apis::Core::JsonObjectSupport
89
+ end
90
+
85
91
  class DatabaseDump
86
92
  class Representation < Google::Apis::Core::JsonRepresentation; end
87
93
 
@@ -208,6 +214,12 @@ module Google
208
214
  include Google::Apis::Core::JsonObjectSupport
209
215
  end
210
216
 
217
+ class MetadataIntegration
218
+ class Representation < Google::Apis::Core::JsonRepresentation; end
219
+
220
+ include Google::Apis::Core::JsonObjectSupport
221
+ end
222
+
211
223
  class MetadataManagementActivity
212
224
  class Representation < Google::Apis::Core::JsonRepresentation; end
213
225
 
@@ -416,6 +428,13 @@ module Google
416
428
  end
417
429
  end
418
430
 
431
+ class DataCatalogConfig
432
+ # @private
433
+ class Representation < Google::Apis::Core::JsonRepresentation
434
+ property :enabled, as: 'enabled'
435
+ end
436
+ end
437
+
419
438
  class DatabaseDump
420
439
  # @private
421
440
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -625,6 +644,14 @@ module Google
625
644
  end
626
645
  end
627
646
 
647
+ class MetadataIntegration
648
+ # @private
649
+ class Representation < Google::Apis::Core::JsonRepresentation
650
+ property :data_catalog_config, as: 'dataCatalogConfig', class: Google::Apis::MetastoreV1::DataCatalogConfig, decorator: Google::Apis::MetastoreV1::DataCatalogConfig::Representation
651
+
652
+ end
653
+ end
654
+
628
655
  class MetadataManagementActivity
629
656
  # @private
630
657
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -766,6 +793,8 @@ module Google
766
793
  hash :labels, as: 'labels'
767
794
  property :maintenance_window, as: 'maintenanceWindow', class: Google::Apis::MetastoreV1::MaintenanceWindow, decorator: Google::Apis::MetastoreV1::MaintenanceWindow::Representation
768
795
 
796
+ property :metadata_integration, as: 'metadataIntegration', class: Google::Apis::MetastoreV1::MetadataIntegration, decorator: Google::Apis::MetastoreV1::MetadataIntegration::Representation
797
+
769
798
  property :metadata_management_activity, as: 'metadataManagementActivity', class: Google::Apis::MetastoreV1::MetadataManagementActivity, decorator: Google::Apis::MetastoreV1::MetadataManagementActivity::Representation
770
799
 
771
800
  property :name, as: 'name'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-metastore_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.0
4
+ version: 0.15.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: 2023-10-08 00:00:00.000000000 Z
11
+ date: 2023-10-29 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/main/generated/google-apis-metastore_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1/v0.13.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1/v0.15.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-metastore_v1
63
63
  post_install_message:
64
64
  rdoc_options: []