google-apis-metastore_v1 0.12.0 → 0.14.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: 1891e7ba078f6c0816c661f4f542041c65519e4b0c8ced1fdfbef80b75b8bfaf
|
4
|
+
data.tar.gz: 989b89d080f6b1223bfcda64a38cce7980129e4b2ec66659f21fdac4c501da49
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d1a6f87dd4900f79fbb484e067f66af4a5e46fdba4ea0d6f489ec62a63880b41cc989c80f1238976e93c933c8d3b0d66a0e4e7001b1ea6e8b5bf65b0d4bb0938
|
7
|
+
data.tar.gz: 62be8c3e6537fa2871ad08d156e033ba61e63f665569283c84b4e868046c4fad31484a6146902f24e824e4043d9a68cc8a8403125bdd5254d56d6d694e2de149
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-metastore_v1
|
2
2
|
|
3
|
+
### v0.14.0 (2023-10-15)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20231010
|
6
|
+
|
7
|
+
### v0.13.0 (2023-10-08)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230926
|
10
|
+
|
3
11
|
### v0.12.0 (2023-09-10)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230905
|
@@ -146,7 +146,7 @@ module Google
|
|
146
146
|
# @return [Hash<String,String>]
|
147
147
|
attr_accessor :config_overrides
|
148
148
|
|
149
|
-
# Network configuration for the Dataproc Metastore service.
|
149
|
+
# Network configuration for the Dataproc Metastore service.
|
150
150
|
# Corresponds to the JSON property `networkConfig`
|
151
151
|
# @return [Google::Apis::MetastoreV1::NetworkConfig]
|
152
152
|
attr_accessor :network_config
|
@@ -342,8 +342,7 @@ module Google
|
|
342
342
|
end
|
343
343
|
end
|
344
344
|
|
345
|
-
# Contains information of the customer's network configurations.
|
346
|
-
# ID: 5
|
345
|
+
# Contains information of the customer's network configurations.
|
347
346
|
class Consumer
|
348
347
|
include Google::Apis::Core::Hashable
|
349
348
|
|
@@ -997,6 +996,13 @@ module Google
|
|
997
996
|
class LocationMetadata
|
998
997
|
include Google::Apis::Core::Hashable
|
999
998
|
|
999
|
+
# The metadata for the multi-region that includes the constituent regions. The
|
1000
|
+
# metadata is only populated if the region is multi-region. For single region,
|
1001
|
+
# it will be empty.
|
1002
|
+
# Corresponds to the JSON property `multiRegionMetadata`
|
1003
|
+
# @return [Google::Apis::MetastoreV1::MultiRegionMetadata]
|
1004
|
+
attr_accessor :multi_region_metadata
|
1005
|
+
|
1000
1006
|
# The versions of Hive Metastore that can be used when creating a new metastore
|
1001
1007
|
# service in this location. The server guarantees that exactly one
|
1002
1008
|
# HiveMetastoreVersion in the list will set is_default.
|
@@ -1010,6 +1016,7 @@ module Google
|
|
1010
1016
|
|
1011
1017
|
# Update properties of this object
|
1012
1018
|
def update!(**args)
|
1019
|
+
@multi_region_metadata = args[:multi_region_metadata] if args.key?(:multi_region_metadata)
|
1013
1020
|
@supported_hive_metastore_versions = args[:supported_hive_metastore_versions] if args.key?(:supported_hive_metastore_versions)
|
1014
1021
|
end
|
1015
1022
|
end
|
@@ -1211,7 +1218,28 @@ module Google
|
|
1211
1218
|
end
|
1212
1219
|
end
|
1213
1220
|
|
1214
|
-
#
|
1221
|
+
# The metadata for the multi-region that includes the constituent regions. The
|
1222
|
+
# metadata is only populated if the region is multi-region. For single region,
|
1223
|
+
# it will be empty.
|
1224
|
+
class MultiRegionMetadata
|
1225
|
+
include Google::Apis::Core::Hashable
|
1226
|
+
|
1227
|
+
# The regions constituting the multi-region.
|
1228
|
+
# Corresponds to the JSON property `constituentRegions`
|
1229
|
+
# @return [Array<String>]
|
1230
|
+
attr_accessor :constituent_regions
|
1231
|
+
|
1232
|
+
def initialize(**args)
|
1233
|
+
update!(**args)
|
1234
|
+
end
|
1235
|
+
|
1236
|
+
# Update properties of this object
|
1237
|
+
def update!(**args)
|
1238
|
+
@constituent_regions = args[:constituent_regions] if args.key?(:constituent_regions)
|
1239
|
+
end
|
1240
|
+
end
|
1241
|
+
|
1242
|
+
# Network configuration for the Dataproc Metastore service.
|
1215
1243
|
class NetworkConfig
|
1216
1244
|
include Google::Apis::Core::Hashable
|
1217
1245
|
|
@@ -1693,7 +1721,7 @@ module Google
|
|
1693
1721
|
# @return [String]
|
1694
1722
|
attr_accessor :network
|
1695
1723
|
|
1696
|
-
# Network configuration for the Dataproc Metastore service.
|
1724
|
+
# Network configuration for the Dataproc Metastore service.
|
1697
1725
|
# Corresponds to the JSON property `networkConfig`
|
1698
1726
|
# @return [Google::Apis::MetastoreV1::NetworkConfig]
|
1699
1727
|
attr_accessor :network_config
|
@@ -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.14.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 = "20231010"
|
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.
|
4
|
+
version: 0.14.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-10-15 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.14.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: []
|