google-apis-metastore_v1 0.28.0 → 0.29.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: dff1a6ba5279cc046e029819927d5d494a4d4cbca28cd1ad64274b73a0b622dc
|
4
|
+
data.tar.gz: 2416adf6b220df909605603504d8d813d59e438fb98fdf80196b1d59967dde88
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 55527a1cd441c97b7c83bd94ee806c568f1278c2b666abb31ea732c2772e77b80154c4aa7a12895e66133cc110df3febf7927a280f172777f800ad2201adb9b4
|
7
|
+
data.tar.gz: 45625a1d541c7006464a28353df157ff297d0723dfa8435e9bcb3b66ef7df93516d47b773140b8597fba401a7f5be657d03e2c32dc82e4a9f65463b03a95fe6a
|
data/CHANGELOG.md
CHANGED
@@ -675,6 +675,38 @@ module Google
|
|
675
675
|
end
|
676
676
|
end
|
677
677
|
|
678
|
+
# Metadata about a custom region. This is only populated if the region is a
|
679
|
+
# custom region. For single/multi regions, it will be empty.
|
680
|
+
class CustomRegionMetadata
|
681
|
+
include Google::Apis::Core::Hashable
|
682
|
+
|
683
|
+
# The read-only regions for this custom region.
|
684
|
+
# Corresponds to the JSON property `optionalReadOnlyRegions`
|
685
|
+
# @return [Array<String>]
|
686
|
+
attr_accessor :optional_read_only_regions
|
687
|
+
|
688
|
+
# The read-write regions for this custom region.
|
689
|
+
# Corresponds to the JSON property `requiredReadWriteRegions`
|
690
|
+
# @return [Array<String>]
|
691
|
+
attr_accessor :required_read_write_regions
|
692
|
+
|
693
|
+
# The Spanner witness region for this custom region.
|
694
|
+
# Corresponds to the JSON property `witnessRegion`
|
695
|
+
# @return [String]
|
696
|
+
attr_accessor :witness_region
|
697
|
+
|
698
|
+
def initialize(**args)
|
699
|
+
update!(**args)
|
700
|
+
end
|
701
|
+
|
702
|
+
# Update properties of this object
|
703
|
+
def update!(**args)
|
704
|
+
@optional_read_only_regions = args[:optional_read_only_regions] if args.key?(:optional_read_only_regions)
|
705
|
+
@required_read_write_regions = args[:required_read_write_regions] if args.key?(:required_read_write_regions)
|
706
|
+
@witness_region = args[:witness_region] if args.key?(:witness_region)
|
707
|
+
end
|
708
|
+
end
|
709
|
+
|
678
710
|
# Specifies how metastore metadata should be integrated with the Data Catalog
|
679
711
|
# service.
|
680
712
|
class DataCatalogConfig
|
@@ -1410,6 +1442,11 @@ module Google
|
|
1410
1442
|
class LocationMetadata
|
1411
1443
|
include Google::Apis::Core::Hashable
|
1412
1444
|
|
1445
|
+
# Possible configurations supported if the current region is a custom region.
|
1446
|
+
# Corresponds to the JSON property `customRegionMetadata`
|
1447
|
+
# @return [Array<Google::Apis::MetastoreV1::CustomRegionMetadata>]
|
1448
|
+
attr_accessor :custom_region_metadata
|
1449
|
+
|
1413
1450
|
# The metadata for the multi-region that includes the constituent regions. The
|
1414
1451
|
# metadata is only populated if the region is multi-region. For single region or
|
1415
1452
|
# custom dual region, it will be empty.
|
@@ -1430,6 +1467,7 @@ module Google
|
|
1430
1467
|
|
1431
1468
|
# Update properties of this object
|
1432
1469
|
def update!(**args)
|
1470
|
+
@custom_region_metadata = args[:custom_region_metadata] if args.key?(:custom_region_metadata)
|
1433
1471
|
@multi_region_metadata = args[:multi_region_metadata] if args.key?(:multi_region_metadata)
|
1434
1472
|
@supported_hive_metastore_versions = args[:supported_hive_metastore_versions] if args.key?(:supported_hive_metastore_versions)
|
1435
1473
|
end
|
@@ -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.29.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240709"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -124,6 +124,12 @@ module Google
|
|
124
124
|
include Google::Apis::Core::JsonObjectSupport
|
125
125
|
end
|
126
126
|
|
127
|
+
class CustomRegionMetadata
|
128
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
129
|
+
|
130
|
+
include Google::Apis::Core::JsonObjectSupport
|
131
|
+
end
|
132
|
+
|
127
133
|
class DataCatalogConfig
|
128
134
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
129
135
|
|
@@ -574,6 +580,15 @@ module Google
|
|
574
580
|
end
|
575
581
|
end
|
576
582
|
|
583
|
+
class CustomRegionMetadata
|
584
|
+
# @private
|
585
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
586
|
+
collection :optional_read_only_regions, as: 'optionalReadOnlyRegions'
|
587
|
+
collection :required_read_write_regions, as: 'requiredReadWriteRegions'
|
588
|
+
property :witness_region, as: 'witnessRegion'
|
589
|
+
end
|
590
|
+
end
|
591
|
+
|
577
592
|
class DataCatalogConfig
|
578
593
|
# @private
|
579
594
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -778,6 +793,8 @@ module Google
|
|
778
793
|
class LocationMetadata
|
779
794
|
# @private
|
780
795
|
class Representation < Google::Apis::Core::JsonRepresentation
|
796
|
+
collection :custom_region_metadata, as: 'customRegionMetadata', class: Google::Apis::MetastoreV1::CustomRegionMetadata, decorator: Google::Apis::MetastoreV1::CustomRegionMetadata::Representation
|
797
|
+
|
781
798
|
property :multi_region_metadata, as: 'multiRegionMetadata', class: Google::Apis::MetastoreV1::MultiRegionMetadata, decorator: Google::Apis::MetastoreV1::MultiRegionMetadata::Representation
|
782
799
|
|
783
800
|
collection :supported_hive_metastore_versions, as: 'supportedHiveMetastoreVersions', class: Google::Apis::MetastoreV1::HiveMetastoreVersion, decorator: Google::Apis::MetastoreV1::HiveMetastoreVersion::Representation
|
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.29.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: 2024-07-
|
11
|
+
date: 2024-07-25 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.29.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: []
|