google-apis-metastore_v1 0.11.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0de61ca6ab34517ca586147b3cbe92a9949ceab4044cb364c66142f601fc1b35
|
4
|
+
data.tar.gz: '0822be6b1b5ae17f836a495cc59c77352f94b498b4d9e100180f75a369abbfa3'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bd29ee4900081c903f7bbe1aa675e37cf7a688d048029a8405408f6173af4dc9ba6e37e8f4f64cef31dcb282ad42905a8a77adf58909f2104968283269e1a15c
|
7
|
+
data.tar.gz: 3daec8bd395354ed0c64d391d5e8e4bd4dda3c667d496caaecfcead82704ef1b5da7b05d25005303944ffb8086dcfa06cab479da53df061e00eedb47e714f2df
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
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
|
+
|
7
|
+
### v0.12.0 (2023-09-10)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230905
|
10
|
+
|
3
11
|
### v0.11.0 (2023-08-13)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230807
|
@@ -347,6 +347,12 @@ module Google
|
|
347
347
|
class Consumer
|
348
348
|
include Google::Apis::Core::Hashable
|
349
349
|
|
350
|
+
# Output only. The location of the endpoint URI. Format: projects/`project`/
|
351
|
+
# locations/`location`.
|
352
|
+
# Corresponds to the JSON property `endpointLocation`
|
353
|
+
# @return [String]
|
354
|
+
attr_accessor :endpoint_location
|
355
|
+
|
350
356
|
# Output only. The URI of the endpoint used to access the metastore service.
|
351
357
|
# Corresponds to the JSON property `endpointUri`
|
352
358
|
# @return [String]
|
@@ -368,6 +374,7 @@ module Google
|
|
368
374
|
|
369
375
|
# Update properties of this object
|
370
376
|
def update!(**args)
|
377
|
+
@endpoint_location = args[:endpoint_location] if args.key?(:endpoint_location)
|
371
378
|
@endpoint_uri = args[:endpoint_uri] if args.key?(:endpoint_uri)
|
372
379
|
@subnetwork = args[:subnetwork] if args.key?(:subnetwork)
|
373
380
|
end
|
@@ -990,6 +997,13 @@ module Google
|
|
990
997
|
class LocationMetadata
|
991
998
|
include Google::Apis::Core::Hashable
|
992
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
|
+
|
993
1007
|
# The versions of Hive Metastore that can be used when creating a new metastore
|
994
1008
|
# service in this location. The server guarantees that exactly one
|
995
1009
|
# HiveMetastoreVersion in the list will set is_default.
|
@@ -1003,6 +1017,7 @@ module Google
|
|
1003
1017
|
|
1004
1018
|
# Update properties of this object
|
1005
1019
|
def update!(**args)
|
1020
|
+
@multi_region_metadata = args[:multi_region_metadata] if args.key?(:multi_region_metadata)
|
1006
1021
|
@supported_hive_metastore_versions = args[:supported_hive_metastore_versions] if args.key?(:supported_hive_metastore_versions)
|
1007
1022
|
end
|
1008
1023
|
end
|
@@ -1204,6 +1219,27 @@ module Google
|
|
1204
1219
|
end
|
1205
1220
|
end
|
1206
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
|
+
|
1207
1243
|
# Network configuration for the Dataproc Metastore service.Next available ID: 4
|
1208
1244
|
class NetworkConfig
|
1209
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.
|
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 = "
|
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
|
|
@@ -404,6 +410,7 @@ module Google
|
|
404
410
|
class Consumer
|
405
411
|
# @private
|
406
412
|
class Representation < Google::Apis::Core::JsonRepresentation
|
413
|
+
property :endpoint_location, as: 'endpointLocation'
|
407
414
|
property :endpoint_uri, as: 'endpointUri'
|
408
415
|
property :subnetwork, as: 'subnetwork'
|
409
416
|
end
|
@@ -578,6 +585,8 @@ module Google
|
|
578
585
|
class LocationMetadata
|
579
586
|
# @private
|
580
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
|
+
|
581
590
|
collection :supported_hive_metastore_versions, as: 'supportedHiveMetastoreVersions', class: Google::Apis::MetastoreV1::HiveMetastoreVersion, decorator: Google::Apis::MetastoreV1::HiveMetastoreVersion::Representation
|
582
591
|
|
583
592
|
end
|
@@ -641,6 +650,13 @@ module Google
|
|
641
650
|
end
|
642
651
|
end
|
643
652
|
|
653
|
+
class MultiRegionMetadata
|
654
|
+
# @private
|
655
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
656
|
+
collection :constituent_regions, as: 'constituentRegions'
|
657
|
+
end
|
658
|
+
end
|
659
|
+
|
644
660
|
class NetworkConfig
|
645
661
|
# @private
|
646
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.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-08
|
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.
|
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: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.4.
|
78
|
+
rubygems_version: 3.4.19
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Dataproc Metastore API V1
|