google-apis-metastore_v1beta 0.21.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: 30c1a8ce0615c00fd6af5a8885a3b0a64efa6b1d884c2b5bbd443aa065b46566
4
- data.tar.gz: c8fd5e9c07735344198290ac6c49321ea4a15bf1a6f2ae5614c2d69ee0aa14ed
3
+ metadata.gz: e784dc327bdffa180797fae30ff96b9bbbbe7236a6f394f0ae4dee153d8b5965
4
+ data.tar.gz: 358e001f75979b214a243aab716e0efbcc3503b53c1187bcbd01c78585c498e9
5
5
  SHA512:
6
- metadata.gz: f18b9171388f92145331602bbfb1f9d3f660ce1a2c8d20e6972d922778f33fe017f015415c3cf9e481bc57fb55df99f1f44eba109e26327fa0e00eabcf2a2d8d
7
- data.tar.gz: 64c1df6e605e68931ee44dc19bf1f1e4710f7cde17a4e1ec7903f3a7a46b793012db7899be9e4c32f1293f708d812d648b32a9e858df71fe9ede2197a7150a7b
6
+ metadata.gz: 5fdfdd38f885ba973931c01fefb5ce5152a622a7909c3ab358154ad4c2aa922cb4d650930ed3f835d3c8537b2f65d97f7468ea3eab62a5e42dc0fb7fc569b1ed
7
+ data.tar.gz: b4408a683d8ea7565a9b19c49aa9c061ce6fe79a5fd067399be4c6b2f4207f1031e785ee010f1e0bfc7da4a45101b358025e769cadb4e77cb49fdb5623e2fbe9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.21.0 (2022-01-19)
4
8
 
5
9
  * Regenerated from discovery document revision 20220112
@@ -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,6 +505,17 @@ 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
521
  # (some keys cannot be overridden). These overrides are also applied to
@@ -500,6 +547,7 @@ module Google
500
547
 
501
548
  # Update properties of this object
502
549
  def update!(**args)
550
+ @auxiliary_versions = args[:auxiliary_versions] if args.key?(:auxiliary_versions)
503
551
  @config_overrides = args[:config_overrides] if args.key?(:config_overrides)
504
552
  @endpoint_protocol = args[:endpoint_protocol] if args.key?(:endpoint_protocol)
505
553
  @kerberos_config = args[:kerberos_config] if args.key?(:kerberos_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.21.0"
19
+ GEM_VERSION = "0.22.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220112"
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
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.21.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: 2022-01-24 00:00:00.000000000 Z
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.21.0
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: []