google-apis-metastore_v1 0.12.0 → 0.13.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: 3b2f8be4f21a9fd48583d6265c6177d8d604617d433228c1e0e39103bba2890b
4
- data.tar.gz: 1f2ca15146be89903d49b4d8ad4e2b79725a17868e21b2b2bd29db814afaa598
3
+ metadata.gz: 0de61ca6ab34517ca586147b3cbe92a9949ceab4044cb364c66142f601fc1b35
4
+ data.tar.gz: '0822be6b1b5ae17f836a495cc59c77352f94b498b4d9e100180f75a369abbfa3'
5
5
  SHA512:
6
- metadata.gz: ce4e6d8e00fe1ad5e50109f032d62a5e252fa020677e081c230a32868c8243275a3e9eda85b023a07cafdde54bcfaf42932bf40b3f7ea62ec021dd138c4e1b73
7
- data.tar.gz: 21398ae42227e8e9fba65f1c0619448dd14349b10125c9c4c7ec924423af86777400fb58e94a23ea66dbe274fb0d1d7151791b5215221125b5590e025d246202
6
+ metadata.gz: bd29ee4900081c903f7bbe1aa675e37cf7a688d048029a8405408f6173af4dc9ba6e37e8f4f64cef31dcb282ad42905a8a77adf58909f2104968283269e1a15c
7
+ data.tar.gz: 3daec8bd395354ed0c64d391d5e8e4bd4dda3c667d496caaecfcead82704ef1b5da7b05d25005303944ffb8086dcfa06cab479da53df061e00eedb47e714f2df
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-metastore_v1
2
2
 
3
+ ### v0.13.0 (2023-10-08)
4
+
5
+ * Regenerated from discovery document revision 20230926
6
+
3
7
  ### v0.12.0 (2023-09-10)
4
8
 
5
9
  * Regenerated from discovery document revision 20230905
@@ -997,6 +997,13 @@ module Google
997
997
  class LocationMetadata
998
998
  include Google::Apis::Core::Hashable
999
999
 
1000
+ # The metadata for the multi-region that includes the constituent regions. The
1001
+ # metadata is only populated if the region is multi-region. For single region,
1002
+ # it will be empty.
1003
+ # Corresponds to the JSON property `multiRegionMetadata`
1004
+ # @return [Google::Apis::MetastoreV1::MultiRegionMetadata]
1005
+ attr_accessor :multi_region_metadata
1006
+
1000
1007
  # The versions of Hive Metastore that can be used when creating a new metastore
1001
1008
  # service in this location. The server guarantees that exactly one
1002
1009
  # HiveMetastoreVersion in the list will set is_default.
@@ -1010,6 +1017,7 @@ module Google
1010
1017
 
1011
1018
  # Update properties of this object
1012
1019
  def update!(**args)
1020
+ @multi_region_metadata = args[:multi_region_metadata] if args.key?(:multi_region_metadata)
1013
1021
  @supported_hive_metastore_versions = args[:supported_hive_metastore_versions] if args.key?(:supported_hive_metastore_versions)
1014
1022
  end
1015
1023
  end
@@ -1211,6 +1219,27 @@ module Google
1211
1219
  end
1212
1220
  end
1213
1221
 
1222
+ # The metadata for the multi-region that includes the constituent regions. The
1223
+ # metadata is only populated if the region is multi-region. For single region,
1224
+ # it will be empty.
1225
+ class MultiRegionMetadata
1226
+ include Google::Apis::Core::Hashable
1227
+
1228
+ # The regions constituting the multi-region.
1229
+ # Corresponds to the JSON property `constituentRegions`
1230
+ # @return [Array<String>]
1231
+ attr_accessor :constituent_regions
1232
+
1233
+ def initialize(**args)
1234
+ update!(**args)
1235
+ end
1236
+
1237
+ # Update properties of this object
1238
+ def update!(**args)
1239
+ @constituent_regions = args[:constituent_regions] if args.key?(:constituent_regions)
1240
+ end
1241
+ end
1242
+
1214
1243
  # Network configuration for the Dataproc Metastore service.Next available ID: 4
1215
1244
  class NetworkConfig
1216
1245
  include Google::Apis::Core::Hashable
@@ -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.12.0"
19
+ GEM_VERSION = "0.13.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 = "20230905"
25
+ REVISION = "20230926"
26
26
  end
27
27
  end
28
28
  end
@@ -226,6 +226,12 @@ module Google
226
226
  include Google::Apis::Core::JsonObjectSupport
227
227
  end
228
228
 
229
+ class MultiRegionMetadata
230
+ class Representation < Google::Apis::Core::JsonRepresentation; end
231
+
232
+ include Google::Apis::Core::JsonObjectSupport
233
+ end
234
+
229
235
  class NetworkConfig
230
236
  class Representation < Google::Apis::Core::JsonRepresentation; end
231
237
 
@@ -579,6 +585,8 @@ module Google
579
585
  class LocationMetadata
580
586
  # @private
581
587
  class Representation < Google::Apis::Core::JsonRepresentation
588
+ property :multi_region_metadata, as: 'multiRegionMetadata', class: Google::Apis::MetastoreV1::MultiRegionMetadata, decorator: Google::Apis::MetastoreV1::MultiRegionMetadata::Representation
589
+
582
590
  collection :supported_hive_metastore_versions, as: 'supportedHiveMetastoreVersions', class: Google::Apis::MetastoreV1::HiveMetastoreVersion, decorator: Google::Apis::MetastoreV1::HiveMetastoreVersion::Representation
583
591
 
584
592
  end
@@ -642,6 +650,13 @@ module Google
642
650
  end
643
651
  end
644
652
 
653
+ class MultiRegionMetadata
654
+ # @private
655
+ class Representation < Google::Apis::Core::JsonRepresentation
656
+ collection :constituent_regions, as: 'constituentRegions'
657
+ end
658
+ end
659
+
645
660
  class NetworkConfig
646
661
  # @private
647
662
  class Representation < Google::Apis::Core::JsonRepresentation
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.12.0
4
+ version: 0.13.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-09-10 00:00:00.000000000 Z
11
+ date: 2023-10-08 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.12.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1/v0.13.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: []