google-apis-metastore_v1 0.14.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 69f46ebdcfe7c8a6adfb40ed99d7a61b99bc722095d437fa1a76f9fabf06ba71
|
4
|
+
data.tar.gz: a85647ac0ebcdb60c3e9cdff058378723ecaa424f3e4bd3ee15bb7d071751a86
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a0065864184c8c5738665044f72c787adc80fad94c183f0de1254128ede30d9c8d866c00e29a3991c277b8a05bf7a1c4c7bbff0a0b01d42ae66f3541c782344a
|
7
|
+
data.tar.gz: 47e4b8ed7cd48d07d6817f24a4de4d4b70068dfd0d5e25fd16304fde56b03ad1fb06625e41fc63ae8774a88fc631b9df55dc2e49fe376b45893d30d143b22054
|
data/CHANGELOG.md
CHANGED
@@ -379,6 +379,29 @@ module Google
|
|
379
379
|
end
|
380
380
|
end
|
381
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
|
+
|
382
405
|
# A specification of the location of and metadata about a database dump from a
|
383
406
|
# relational database management system.
|
384
407
|
class DatabaseDump
|
@@ -1149,6 +1172,26 @@ module Google
|
|
1149
1172
|
end
|
1150
1173
|
end
|
1151
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
|
+
|
1152
1195
|
# The metadata management activities of the metastore service.
|
1153
1196
|
class MetadataManagementActivity
|
1154
1197
|
include Google::Apis::Core::Hashable
|
@@ -1702,6 +1745,11 @@ module Google
|
|
1702
1745
|
# @return [Google::Apis::MetastoreV1::MaintenanceWindow]
|
1703
1746
|
attr_accessor :maintenance_window
|
1704
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
|
+
|
1705
1753
|
# The metadata management activities of the metastore service.
|
1706
1754
|
# Corresponds to the JSON property `metadataManagementActivity`
|
1707
1755
|
# @return [Google::Apis::MetastoreV1::MetadataManagementActivity]
|
@@ -1787,6 +1835,7 @@ module Google
|
|
1787
1835
|
@hive_metastore_config = args[:hive_metastore_config] if args.key?(:hive_metastore_config)
|
1788
1836
|
@labels = args[:labels] if args.key?(:labels)
|
1789
1837
|
@maintenance_window = args[:maintenance_window] if args.key?(:maintenance_window)
|
1838
|
+
@metadata_integration = args[:metadata_integration] if args.key?(:metadata_integration)
|
1790
1839
|
@metadata_management_activity = args[:metadata_management_activity] if args.key?(:metadata_management_activity)
|
1791
1840
|
@name = args[:name] if args.key?(:name)
|
1792
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.
|
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 = "
|
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.
|
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-
|
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.
|
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: []
|