google-apis-metastore_v1beta 0.18.0 → 0.22.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: e784dc327bdffa180797fae30ff96b9bbbbe7236a6f394f0ae4dee153d8b5965
|
4
|
+
data.tar.gz: 358e001f75979b214a243aab716e0efbcc3503b53c1187bcbd01c78585c498e9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5fdfdd38f885ba973931c01fefb5ce5152a622a7909c3ab358154ad4c2aa922cb4d650930ed3f835d3c8537b2f65d97f7468ea3eab62a5e42dc0fb7fc569b1ed
|
7
|
+
data.tar.gz: b4408a683d8ea7565a9b19c49aa9c061ce6fe79a5fd067399be4c6b2f4207f1031e785ee010f1e0bfc7da4a45101b358025e769cadb4e77cb49fdb5623e2fbe9
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,22 @@
|
|
1
1
|
# Release history for google-apis-metastore_v1beta
|
2
2
|
|
3
|
+
### v0.22.0 (2022-01-24)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220118
|
6
|
+
|
7
|
+
### v0.21.0 (2022-01-19)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220112
|
10
|
+
* Regenerated using generator version 0.4.1
|
11
|
+
|
12
|
+
### v0.20.0 (2022-01-10)
|
13
|
+
|
14
|
+
* Regenerated from discovery document revision 20211230
|
15
|
+
|
16
|
+
### v0.19.0 (2021-12-14)
|
17
|
+
|
18
|
+
* Unspecified changes
|
19
|
+
|
3
20
|
### v0.18.0 (2021-11-14)
|
4
21
|
|
5
22
|
* Regenerated from discovery document revision 20211106
|
data/OVERVIEW.md
CHANGED
@@ -51,7 +51,7 @@ require "google/apis/metastore_v1beta"
|
|
51
51
|
client = Google::Apis::MetastoreV1beta::DataprocMetastoreService.new
|
52
52
|
|
53
53
|
# Authenticate calls
|
54
|
-
client.
|
54
|
+
client.authorization = # ... use the googleauth gem to create credentials
|
55
55
|
```
|
56
56
|
|
57
57
|
See the class reference docs for information on the methods you can call from a client.
|
@@ -93,6 +93,42 @@ module Google
|
|
93
93
|
end
|
94
94
|
end
|
95
95
|
|
96
|
+
# Configuration information for the auxiliary service versions.
|
97
|
+
class AuxiliaryVersionConfig
|
98
|
+
include Google::Apis::Core::Hashable
|
99
|
+
|
100
|
+
# A mapping of Hive metastore configuration key-value pairs to apply to the
|
101
|
+
# auxiliary Hive metastore (configured in hive-site.xml) in addition to the
|
102
|
+
# primary version's overrides. If keys are present in both the auxiliary version'
|
103
|
+
# s overrides and the primary version's overrides, the value from the auxiliary
|
104
|
+
# version's overrides takes precedence.
|
105
|
+
# Corresponds to the JSON property `configOverrides`
|
106
|
+
# @return [Hash<String,String>]
|
107
|
+
attr_accessor :config_overrides
|
108
|
+
|
109
|
+
# Network configuration for the Dataproc Metastore service.
|
110
|
+
# Corresponds to the JSON property `networkConfig`
|
111
|
+
# @return [Google::Apis::MetastoreV1beta::NetworkConfig]
|
112
|
+
attr_accessor :network_config
|
113
|
+
|
114
|
+
# The Hive metastore version of the auxiliary service. It must be less than the
|
115
|
+
# primary Hive metastore service's version.
|
116
|
+
# Corresponds to the JSON property `version`
|
117
|
+
# @return [String]
|
118
|
+
attr_accessor :version
|
119
|
+
|
120
|
+
def initialize(**args)
|
121
|
+
update!(**args)
|
122
|
+
end
|
123
|
+
|
124
|
+
# Update properties of this object
|
125
|
+
def update!(**args)
|
126
|
+
@config_overrides = args[:config_overrides] if args.key?(:config_overrides)
|
127
|
+
@network_config = args[:network_config] if args.key?(:network_config)
|
128
|
+
@version = args[:version] if args.key?(:version)
|
129
|
+
end
|
130
|
+
end
|
131
|
+
|
96
132
|
# The details of a backup resource.
|
97
133
|
class Backup
|
98
134
|
include Google::Apis::Core::Hashable
|
@@ -469,9 +505,22 @@ module Google
|
|
469
505
|
class HiveMetastoreConfig
|
470
506
|
include Google::Apis::Core::Hashable
|
471
507
|
|
508
|
+
# A mapping of Hive metastore version to the auxiliary version configuration.
|
509
|
+
# When specified, a secondary Hive metastore service is created along with the
|
510
|
+
# primary service. All auxiliary versions must be less than the service's
|
511
|
+
# primary version. The key is the auxiliary service name and it must match the
|
512
|
+
# regular expression a-z?. This means that the first character must be a
|
513
|
+
# lowercase letter, and all the following characters must be hyphens, lowercase
|
514
|
+
# letters, or digits, except the last character, which cannot be a hyphen.
|
515
|
+
# Corresponds to the JSON property `auxiliaryVersions`
|
516
|
+
# @return [Hash<String,Google::Apis::MetastoreV1beta::AuxiliaryVersionConfig>]
|
517
|
+
attr_accessor :auxiliary_versions
|
518
|
+
|
472
519
|
# A mapping of Hive metastore configuration key-value pairs to apply to the Hive
|
473
520
|
# metastore (configured in hive-site.xml). The mappings override system defaults
|
474
|
-
# (some keys cannot be overridden).
|
521
|
+
# (some keys cannot be overridden). These overrides are also applied to
|
522
|
+
# auxiliary versions and can be further customized in the auxiliary version's
|
523
|
+
# AuxiliaryVersionConfig.
|
475
524
|
# Corresponds to the JSON property `configOverrides`
|
476
525
|
# @return [Hash<String,String>]
|
477
526
|
attr_accessor :config_overrides
|
@@ -498,6 +547,7 @@ module Google
|
|
498
547
|
|
499
548
|
# Update properties of this object
|
500
549
|
def update!(**args)
|
550
|
+
@auxiliary_versions = args[:auxiliary_versions] if args.key?(:auxiliary_versions)
|
501
551
|
@config_overrides = args[:config_overrides] if args.key?(:config_overrides)
|
502
552
|
@endpoint_protocol = args[:endpoint_protocol] if args.key?(:endpoint_protocol)
|
503
553
|
@kerberos_config = args[:kerberos_config] if args.key?(:kerberos_config)
|
@@ -1343,6 +1393,11 @@ module Google
|
|
1343
1393
|
# @return [String]
|
1344
1394
|
attr_accessor :create_time
|
1345
1395
|
|
1396
|
+
# Immutable. The database type that the Metastore service stores its data.
|
1397
|
+
# Corresponds to the JSON property `databaseType`
|
1398
|
+
# @return [String]
|
1399
|
+
attr_accessor :database_type
|
1400
|
+
|
1346
1401
|
# Encryption settings for the service.
|
1347
1402
|
# Corresponds to the JSON property `encryptionConfig`
|
1348
1403
|
# @return [Google::Apis::MetastoreV1beta::EncryptionConfig]
|
@@ -1443,6 +1498,7 @@ module Google
|
|
1443
1498
|
def update!(**args)
|
1444
1499
|
@artifact_gcs_uri = args[:artifact_gcs_uri] if args.key?(:artifact_gcs_uri)
|
1445
1500
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1501
|
+
@database_type = args[:database_type] if args.key?(:database_type)
|
1446
1502
|
@encryption_config = args[:encryption_config] if args.key?(:encryption_config)
|
1447
1503
|
@endpoint_uri = args[:endpoint_uri] if args.key?(:endpoint_uri)
|
1448
1504
|
@hive_metastore_config = args[:hive_metastore_config] if args.key?(:hive_metastore_config)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module MetastoreV1beta
|
18
18
|
# Version of the google-apis-metastore_v1beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.22.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.4.
|
22
|
+
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220118"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -34,6 +34,12 @@ module Google
|
|
34
34
|
include Google::Apis::Core::JsonObjectSupport
|
35
35
|
end
|
36
36
|
|
37
|
+
class AuxiliaryVersionConfig
|
38
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
39
|
+
|
40
|
+
include Google::Apis::Core::JsonObjectSupport
|
41
|
+
end
|
42
|
+
|
37
43
|
class Backup
|
38
44
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
39
45
|
|
@@ -279,6 +285,16 @@ module Google
|
|
279
285
|
end
|
280
286
|
end
|
281
287
|
|
288
|
+
class AuxiliaryVersionConfig
|
289
|
+
# @private
|
290
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
291
|
+
hash :config_overrides, as: 'configOverrides'
|
292
|
+
property :network_config, as: 'networkConfig', class: Google::Apis::MetastoreV1beta::NetworkConfig, decorator: Google::Apis::MetastoreV1beta::NetworkConfig::Representation
|
293
|
+
|
294
|
+
property :version, as: 'version'
|
295
|
+
end
|
296
|
+
end
|
297
|
+
|
282
298
|
class Backup
|
283
299
|
# @private
|
284
300
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -371,6 +387,8 @@ module Google
|
|
371
387
|
class HiveMetastoreConfig
|
372
388
|
# @private
|
373
389
|
class Representation < Google::Apis::Core::JsonRepresentation
|
390
|
+
hash :auxiliary_versions, as: 'auxiliaryVersions', class: Google::Apis::MetastoreV1beta::AuxiliaryVersionConfig, decorator: Google::Apis::MetastoreV1beta::AuxiliaryVersionConfig::Representation
|
391
|
+
|
374
392
|
hash :config_overrides, as: 'configOverrides'
|
375
393
|
property :endpoint_protocol, as: 'endpointProtocol'
|
376
394
|
property :kerberos_config, as: 'kerberosConfig', class: Google::Apis::MetastoreV1beta::KerberosConfig, decorator: Google::Apis::MetastoreV1beta::KerberosConfig::Representation
|
@@ -602,6 +620,7 @@ module Google
|
|
602
620
|
class Representation < Google::Apis::Core::JsonRepresentation
|
603
621
|
property :artifact_gcs_uri, as: 'artifactGcsUri'
|
604
622
|
property :create_time, as: 'createTime'
|
623
|
+
property :database_type, as: 'databaseType'
|
605
624
|
property :encryption_config, as: 'encryptionConfig', class: Google::Apis::MetastoreV1beta::EncryptionConfig, decorator: Google::Apis::MetastoreV1beta::EncryptionConfig::Representation
|
606
625
|
|
607
626
|
property :endpoint_uri, as: 'endpointUri'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-metastore_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.22.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:
|
11
|
+
date: 2022-01-31 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_v1beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1beta/v0.22.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-metastore_v1beta
|
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.
|
78
|
+
rubygems_version: 3.3.5
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Dataproc Metastore API V1beta
|