google-apis-metastore_v1 0.14.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8c7caeb35f2dc1366b14c7057bfaa26e7228240dfd9c84d23016bd2385983788
|
4
|
+
data.tar.gz: 9ea7275a7451079e1d0d38c83b4d1889c149ff2a22d68d3b10051813dc420127
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d4f198a6c87dc49ed4459fb6a9bdcb2413a30c2cd22f0e2ca4c96f974d4571b2f89ef2b8d5d6b9213fd9e668013972e5045a336add71172c0a1df3aa75e9a935
|
7
|
+
data.tar.gz: f0fc1ce55fa2deca4c6e0ef327a784199ef6fb65ad322b888be85e63579aa3aebff4489b3bd56e5c7344cb7f4325762c53ae217a68e6369186dc9a4adeeee645
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-metastore_v1
|
2
2
|
|
3
|
+
### v0.16.0 (2023-11-12)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20231102
|
6
|
+
|
7
|
+
### v0.15.0 (2023-10-29)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20231023
|
10
|
+
|
3
11
|
### v0.14.0 (2023-10-15)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20231010
|
@@ -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
|
@@ -1526,6 +1569,12 @@ module Google
|
|
1526
1569
|
# @return [String]
|
1527
1570
|
attr_accessor :backup
|
1528
1571
|
|
1572
|
+
# Optional. A Cloud Storage URI specifying where the backup artifacts are stored,
|
1573
|
+
# in the format gs:///.
|
1574
|
+
# Corresponds to the JSON property `backupLocation`
|
1575
|
+
# @return [String]
|
1576
|
+
attr_accessor :backup_location
|
1577
|
+
|
1529
1578
|
# Output only. The restore details containing the revision of the service to be
|
1530
1579
|
# restored to, in format of JSON.
|
1531
1580
|
# Corresponds to the JSON property `details`
|
@@ -1559,6 +1608,7 @@ module Google
|
|
1559
1608
|
# Update properties of this object
|
1560
1609
|
def update!(**args)
|
1561
1610
|
@backup = args[:backup] if args.key?(:backup)
|
1611
|
+
@backup_location = args[:backup_location] if args.key?(:backup_location)
|
1562
1612
|
@details = args[:details] if args.key?(:details)
|
1563
1613
|
@end_time = args[:end_time] if args.key?(:end_time)
|
1564
1614
|
@start_time = args[:start_time] if args.key?(:start_time)
|
@@ -1702,6 +1752,11 @@ module Google
|
|
1702
1752
|
# @return [Google::Apis::MetastoreV1::MaintenanceWindow]
|
1703
1753
|
attr_accessor :maintenance_window
|
1704
1754
|
|
1755
|
+
# Specifies how metastore metadata should be integrated with external services.
|
1756
|
+
# Corresponds to the JSON property `metadataIntegration`
|
1757
|
+
# @return [Google::Apis::MetastoreV1::MetadataIntegration]
|
1758
|
+
attr_accessor :metadata_integration
|
1759
|
+
|
1705
1760
|
# The metadata management activities of the metastore service.
|
1706
1761
|
# Corresponds to the JSON property `metadataManagementActivity`
|
1707
1762
|
# @return [Google::Apis::MetastoreV1::MetadataManagementActivity]
|
@@ -1787,6 +1842,7 @@ module Google
|
|
1787
1842
|
@hive_metastore_config = args[:hive_metastore_config] if args.key?(:hive_metastore_config)
|
1788
1843
|
@labels = args[:labels] if args.key?(:labels)
|
1789
1844
|
@maintenance_window = args[:maintenance_window] if args.key?(:maintenance_window)
|
1845
|
+
@metadata_integration = args[:metadata_integration] if args.key?(:metadata_integration)
|
1790
1846
|
@metadata_management_activity = args[:metadata_management_activity] if args.key?(:metadata_management_activity)
|
1791
1847
|
@name = args[:name] if args.key?(:name)
|
1792
1848
|
@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.16.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 = "20231102"
|
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
|
@@ -720,6 +747,7 @@ module Google
|
|
720
747
|
# @private
|
721
748
|
class Representation < Google::Apis::Core::JsonRepresentation
|
722
749
|
property :backup, as: 'backup'
|
750
|
+
property :backup_location, as: 'backupLocation'
|
723
751
|
property :details, as: 'details'
|
724
752
|
property :end_time, as: 'endTime'
|
725
753
|
property :start_time, as: 'startTime'
|
@@ -766,6 +794,8 @@ module Google
|
|
766
794
|
hash :labels, as: 'labels'
|
767
795
|
property :maintenance_window, as: 'maintenanceWindow', class: Google::Apis::MetastoreV1::MaintenanceWindow, decorator: Google::Apis::MetastoreV1::MaintenanceWindow::Representation
|
768
796
|
|
797
|
+
property :metadata_integration, as: 'metadataIntegration', class: Google::Apis::MetastoreV1::MetadataIntegration, decorator: Google::Apis::MetastoreV1::MetadataIntegration::Representation
|
798
|
+
|
769
799
|
property :metadata_management_activity, as: 'metadataManagementActivity', class: Google::Apis::MetastoreV1::MetadataManagementActivity, decorator: Google::Apis::MetastoreV1::MetadataManagementActivity::Representation
|
770
800
|
|
771
801
|
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.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: 2023-
|
11
|
+
date: 2023-11-12 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.16.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: []
|