google-apis-metastore_v1alpha 0.13.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: ae74d16f654f3ee9664091bd5302e82db5317d848cebbf3e6c9e75b9302c7e24
4
- data.tar.gz: a8a8725ce4b4d35a30f00e19b564abf4455ab11aba4e1021a407a3f0e124ba24
3
+ metadata.gz: c63fbb181ce17b9f837db6ccc4d5c6a05f4708de335da0d81a5fa97990e01b15
4
+ data.tar.gz: 9c79c81a21a0478d80f2cdce52885761754615ac87788180a18d4f311b6390ee
5
5
  SHA512:
6
- metadata.gz: 33985ada528ba08b75600a3f83ad2d572e545e4c548f472325f5058453d488ae467ed8aefcc5e13641f13886510365844394f07539aa58f27f7615639d8ff3bc
7
- data.tar.gz: 238193d75e4a2acce35516e3fe546490c090ea20e095a09e5308f8c680be7c7eb36484e66aad0f9ff3076152cfc5d88803e4308ee17d81c65ee87127984520ae
6
+ metadata.gz: 7be72fe7f9fba6963baab6e58231787e0d4102ec37f26a4265856266054b286a832542055f175e74aaa7b755497fb48d0f814f48f29c06ce2f9801d26284aa8a
7
+ data.tar.gz: 9929baa72ef6bf22a0b2d03520cfc25bcb4f8f325a9094422e3e634e3f6af9b8ea3b21aea5616779f79930354ac471d97c00a760b9c85c5d95eaa53581f09a92
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-metastore_v1alpha
2
2
 
3
+ ### v0.14.0 (2021-07-08)
4
+
5
+ * Regenerated from discovery document revision 20210702
6
+
3
7
  ### v0.13.0 (2021-06-29)
4
8
 
5
9
  * Regenerated using generator version 0.4.0
@@ -292,6 +292,27 @@ module Google
292
292
  end
293
293
  end
294
294
 
295
+ # Encryption settings for the service.
296
+ class EncryptionConfig
297
+ include Google::Apis::Core::Hashable
298
+
299
+ # The fully qualified customer provided Cloud KMS key name to use for customer
300
+ # data encryption, in the following form:projects/`project_number`/locations/`
301
+ # location_id`/keyRings/`key_ring_id`/cryptoKeys/`crypto_key_id`.
302
+ # Corresponds to the JSON property `kmsKey`
303
+ # @return [String]
304
+ attr_accessor :kms_key
305
+
306
+ def initialize(**args)
307
+ update!(**args)
308
+ end
309
+
310
+ # Update properties of this object
311
+ def update!(**args)
312
+ @kms_key = args[:kms_key] if args.key?(:kms_key)
313
+ end
314
+ end
315
+
295
316
  # Request message for DataprocMetastore.ExportMetadata.
296
317
  class ExportMetadataRequest
297
318
  include Google::Apis::Core::Hashable
@@ -1205,6 +1226,11 @@ module Google
1205
1226
  # @return [String]
1206
1227
  attr_accessor :create_time
1207
1228
 
1229
+ # Encryption settings for the service.
1230
+ # Corresponds to the JSON property `encryptionConfig`
1231
+ # @return [Google::Apis::MetastoreV1alpha::EncryptionConfig]
1232
+ attr_accessor :encryption_config
1233
+
1208
1234
  # Output only. The URI of the endpoint used to access the metastore service.
1209
1235
  # Corresponds to the JSON property `endpointUri`
1210
1236
  # @return [String]
@@ -1295,6 +1321,7 @@ module Google
1295
1321
  def update!(**args)
1296
1322
  @artifact_gcs_uri = args[:artifact_gcs_uri] if args.key?(:artifact_gcs_uri)
1297
1323
  @create_time = args[:create_time] if args.key?(:create_time)
1324
+ @encryption_config = args[:encryption_config] if args.key?(:encryption_config)
1298
1325
  @endpoint_uri = args[:endpoint_uri] if args.key?(:endpoint_uri)
1299
1326
  @hive_metastore_config = args[:hive_metastore_config] if args.key?(:hive_metastore_config)
1300
1327
  @labels = args[:labels] if args.key?(:labels)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module MetastoreV1alpha
18
18
  # Version of the google-apis-metastore_v1alpha gem
19
- GEM_VERSION = "0.13.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.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210615"
25
+ REVISION = "20210702"
26
26
  end
27
27
  end
28
28
  end
@@ -64,6 +64,12 @@ module Google
64
64
  include Google::Apis::Core::JsonObjectSupport
65
65
  end
66
66
 
67
+ class EncryptionConfig
68
+ class Representation < Google::Apis::Core::JsonRepresentation; end
69
+
70
+ include Google::Apis::Core::JsonObjectSupport
71
+ end
72
+
67
73
  class ExportMetadataRequest
68
74
  class Representation < Google::Apis::Core::JsonRepresentation; end
69
75
 
@@ -295,6 +301,13 @@ module Google
295
301
  end
296
302
  end
297
303
 
304
+ class EncryptionConfig
305
+ # @private
306
+ class Representation < Google::Apis::Core::JsonRepresentation
307
+ property :kms_key, as: 'kmsKey'
308
+ end
309
+ end
310
+
298
311
  class ExportMetadataRequest
299
312
  # @private
300
313
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -530,6 +543,8 @@ module Google
530
543
  class Representation < Google::Apis::Core::JsonRepresentation
531
544
  property :artifact_gcs_uri, as: 'artifactGcsUri'
532
545
  property :create_time, as: 'createTime'
546
+ property :encryption_config, as: 'encryptionConfig', class: Google::Apis::MetastoreV1alpha::EncryptionConfig, decorator: Google::Apis::MetastoreV1alpha::EncryptionConfig::Representation
547
+
533
548
  property :endpoint_uri, as: 'endpointUri'
534
549
  property :hive_metastore_config, as: 'hiveMetastoreConfig', class: Google::Apis::MetastoreV1alpha::HiveMetastoreConfig, decorator: Google::Apis::MetastoreV1alpha::HiveMetastoreConfig::Representation
535
550
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-metastore_v1alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.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: 2021-07-05 00:00:00.000000000 Z
11
+ date: 2021-07-12 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/master/generated/google-apis-metastore_v1alpha/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1alpha/v0.13.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1alpha/v0.14.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-metastore_v1alpha
63
63
  post_install_message:
64
64
  rdoc_options: []