google-apis-metastore_v1alpha 0.62.0 → 0.63.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: 894bf50e8a2257396358e9a3f3be9dc4e59a6567877cc796f5a05a0e757a0833
4
- data.tar.gz: b6e19977fc5b11c44b1b755d9b5316f6fcea242dfb8c69825d3384e5e435b31e
3
+ metadata.gz: 60148d2f22fae0e6884617bba0142050658b35f4fb462f3a9ca2da27d729a936
4
+ data.tar.gz: 4bcb29216546cbc7c88e6a2aacd13bf40822489bdbd090515ad636d0cd209f05
5
5
  SHA512:
6
- metadata.gz: 1d53db64b442829857f316a5507a364578981d51ecd02adda7eca57de3d16a30bc8695d4a26e49564b60549c8796771eadba5445fe4196866e7adea5cf1d808e
7
- data.tar.gz: 4569931e5c713b52a0c0703eba0736be2122eb0200957955b2d9bbe8bfb668bc771c30371ca99ea1bd45a1cedfb1bd502514918fe87002cf5e1cbb468a184969
6
+ metadata.gz: 82894d0725a94264a517d34d3bb3cf84d7d88a38e30fc8bf0bfb7015d97fc8b0b48cd95dab668c4b2bae6076f068e5e37c978a3c4dd75c7506e0520fd8313ac1
7
+ data.tar.gz: 833c4e45dc55c69a062674d770ebcd6ca5667bafb2775a9d8aaf70acfffd63f340e02989e386ca3722a260e091fd8360cd28310c5cad8e88fef9cb4ae20db992
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-metastore_v1alpha
2
2
 
3
+ ### v0.63.0 (2024-06-16)
4
+
5
+ * Regenerated from discovery document revision 20240611
6
+
3
7
  ### v0.62.0 (2024-05-19)
4
8
 
5
9
  * Regenerated from discovery document revision 20240510
@@ -717,38 +717,6 @@ module Google
717
717
  end
718
718
  end
719
719
 
720
- # Metadata about a custom region. This is only populated if the region is a
721
- # custom region. For single/multi regions, it will be empty.
722
- class CustomRegionMetadata
723
- include Google::Apis::Core::Hashable
724
-
725
- # The read-only regions for this custom region.
726
- # Corresponds to the JSON property `optionalReadOnlyRegions`
727
- # @return [Array<String>]
728
- attr_accessor :optional_read_only_regions
729
-
730
- # The read-write regions for this custom region.
731
- # Corresponds to the JSON property `requiredReadWriteRegions`
732
- # @return [Array<String>]
733
- attr_accessor :required_read_write_regions
734
-
735
- # The Spanner witness region for this custom region.
736
- # Corresponds to the JSON property `witnessRegion`
737
- # @return [String]
738
- attr_accessor :witness_region
739
-
740
- def initialize(**args)
741
- update!(**args)
742
- end
743
-
744
- # Update properties of this object
745
- def update!(**args)
746
- @optional_read_only_regions = args[:optional_read_only_regions] if args.key?(:optional_read_only_regions)
747
- @required_read_write_regions = args[:required_read_write_regions] if args.key?(:required_read_write_regions)
748
- @witness_region = args[:witness_region] if args.key?(:witness_region)
749
- end
750
- end
751
-
752
720
  # Specifies how metastore metadata should be integrated with the Data Catalog
753
721
  # service.
754
722
  class DataCatalogConfig
@@ -1526,11 +1494,6 @@ module Google
1526
1494
  class LocationMetadata
1527
1495
  include Google::Apis::Core::Hashable
1528
1496
 
1529
- # Possible configurations supported if the current region is a custom region.
1530
- # Corresponds to the JSON property `customRegionMetadata`
1531
- # @return [Array<Google::Apis::MetastoreV1alpha::CustomRegionMetadata>]
1532
- attr_accessor :custom_region_metadata
1533
-
1534
1497
  # The metadata for the multi-region that includes the constituent regions. The
1535
1498
  # metadata is only populated if the region is multi-region. For single region or
1536
1499
  # custom dual region, it will be empty.
@@ -1551,7 +1514,6 @@ module Google
1551
1514
 
1552
1515
  # Update properties of this object
1553
1516
  def update!(**args)
1554
- @custom_region_metadata = args[:custom_region_metadata] if args.key?(:custom_region_metadata)
1555
1517
  @multi_region_metadata = args[:multi_region_metadata] if args.key?(:multi_region_metadata)
1556
1518
  @supported_hive_metastore_versions = args[:supported_hive_metastore_versions] if args.key?(:supported_hive_metastore_versions)
1557
1519
  end
@@ -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.62.0"
19
+ GEM_VERSION = "0.63.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 = "20240510"
25
+ REVISION = "20240611"
26
26
  end
27
27
  end
28
28
  end
@@ -136,12 +136,6 @@ module Google
136
136
  include Google::Apis::Core::JsonObjectSupport
137
137
  end
138
138
 
139
- class CustomRegionMetadata
140
- class Representation < Google::Apis::Core::JsonRepresentation; end
141
-
142
- include Google::Apis::Core::JsonObjectSupport
143
- end
144
-
145
139
  class DataCatalogConfig
146
140
  class Representation < Google::Apis::Core::JsonRepresentation; end
147
141
 
@@ -630,15 +624,6 @@ module Google
630
624
  end
631
625
  end
632
626
 
633
- class CustomRegionMetadata
634
- # @private
635
- class Representation < Google::Apis::Core::JsonRepresentation
636
- collection :optional_read_only_regions, as: 'optionalReadOnlyRegions'
637
- collection :required_read_write_regions, as: 'requiredReadWriteRegions'
638
- property :witness_region, as: 'witnessRegion'
639
- end
640
- end
641
-
642
627
  class DataCatalogConfig
643
628
  # @private
644
629
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -858,8 +843,6 @@ module Google
858
843
  class LocationMetadata
859
844
  # @private
860
845
  class Representation < Google::Apis::Core::JsonRepresentation
861
- collection :custom_region_metadata, as: 'customRegionMetadata', class: Google::Apis::MetastoreV1alpha::CustomRegionMetadata, decorator: Google::Apis::MetastoreV1alpha::CustomRegionMetadata::Representation
862
-
863
846
  property :multi_region_metadata, as: 'multiRegionMetadata', class: Google::Apis::MetastoreV1alpha::MultiRegionMetadata, decorator: Google::Apis::MetastoreV1alpha::MultiRegionMetadata::Representation
864
847
 
865
848
  collection :supported_hive_metastore_versions, as: 'supportedHiveMetastoreVersions', class: Google::Apis::MetastoreV1alpha::HiveMetastoreVersion, decorator: Google::Apis::MetastoreV1alpha::HiveMetastoreVersion::Representation
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.62.0
4
+ version: 0.63.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-05-26 00:00:00.000000000 Z
11
+ date: 2024-06-16 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_v1alpha/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1alpha/v0.62.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1alpha/v0.63.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-metastore_v1alpha
63
63
  post_install_message:
64
64
  rdoc_options: []