google-apis-metastore_v1beta 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: c96cf330669e1576dea6dce7b94e07c6bebf7d8eb7d6fecb1a4f771038847acb
4
- data.tar.gz: 3fe02c9f54b7b87ab69cec48502b28c76aa0944934da6a449f01e9fe47899341
3
+ metadata.gz: dc6beb0f99ea1ce968d3397deab8dc7737f25d9f8694140c45345a32cf57a65a
4
+ data.tar.gz: 6b73a9c4f58b2099a7d7b529932948deb0fec805bd9a63b7b4afd5bf5a98c600
5
5
  SHA512:
6
- metadata.gz: e5230ec0a7abfeec79a868846064d7540fd6fd120ff002829f00f1c5a8663ddbec644d17e96aa4d7b3f7bfcb20d6425b33459210f27adc1e55c8e543f72345fd
7
- data.tar.gz: ceddd80d22bc9fdd936bc068b976af92d3637e4b11c08cae36de9623e19d7e5a82684cf955d71d3f172380bcf42cd2d7dec74b8b6e96e2d644b314920c7b0220
6
+ metadata.gz: 1702cb53cd130779239df7d0760351b1e8e3b35aea378d00dcdeb38b9cbd6fd684bf5afa2ae996468b74ebaf9bf8217115c22bbc76ec4e2c798d87cc2c3d39b5
7
+ data.tar.gz: d0f04a338eab8077afe79e7efbc753e3fd7773825469624afbda5c5aead285e51d9ac332a79234e0d165998bcc86f8e053a9942dd01d31030274da4dd4229952
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-metastore_v1beta
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::MetastoreV1beta::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 MetastoreV1beta
18
18
  # Version of the google-apis-metastore_v1beta 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::MetastoreV1beta::EncryptionConfig, decorator: Google::Apis::MetastoreV1beta::EncryptionConfig::Representation
547
+
533
548
  property :endpoint_uri, as: 'endpointUri'
534
549
  property :hive_metastore_config, as: 'hiveMetastoreConfig', class: Google::Apis::MetastoreV1beta::HiveMetastoreConfig, decorator: Google::Apis::MetastoreV1beta::HiveMetastoreConfig::Representation
535
550
 
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.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_v1beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1beta/v0.13.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1beta/v0.14.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-metastore_v1beta
63
63
  post_install_message:
64
64
  rdoc_options: []