google-apis-metastore_v1beta 0.3.0 → 0.4.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: 20aeb2463502c0e3968344006f7885c5d20d031b16c3b671a415f22b6d9eb68f
4
- data.tar.gz: 14c306a5f282c3c6c7d0250f66f4fdc5343995794b61f553c71dc684193280a3
3
+ metadata.gz: c121171501e42eb5db67e8c857e9fdc4e7f54afbed67c7d80a65f7fbc7eddbdc
4
+ data.tar.gz: 0e0fb2b1018d57f0b3dede2a0e150d28fd8fd69a5b15e94cb913e9cd94b06959
5
5
  SHA512:
6
- metadata.gz: 2683727ce4ce5ce3c1b3ed8d6a141b0c066e1ee65b57ca349c56ab64ad9cc2ee00827be5b8d5c78f671d5bafd76e083e73c4d92a66d57d552614a3d1053edc15
7
- data.tar.gz: af9fb7f15feb9b0c71f69161276c2d2f3acb4478f231aa9006c4996a9eccf47a0fdcce5ad1847048672ea5adc2ec254ddf2c4fc1c5c296ccd4d5f1d2dbb0ecbd
6
+ metadata.gz: 6f80851a544c10f29bed8a4cc5182bacb1652d11f6d38cd0162464ccab4597a7001cee3fcd7c869fbd8617be00802852c39bfe3cbfbb33f389be4840b1787720
7
+ data.tar.gz: d364f20d7d363e9cd2c15d5a85514719736d88cb2318d37a65a744dc42c7c1874abd39d4db4babe30106d7f2c22667837d47a3eb60a7280a45c0f2f65d5a10fa
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-metastore_v1beta
2
2
 
3
+ ### v0.4.0 (2021-03-04)
4
+
5
+ * Regenerated from discovery document revision 20210226
6
+
3
7
  ### v0.3.0 (2021-02-24)
4
8
 
5
9
  * Regenerated from discovery document revision 20210222
@@ -173,8 +173,8 @@ module Google
173
173
  # @return [String]
174
174
  attr_accessor :database_type
175
175
 
176
- # A Cloud Storage object URI that specifies the source from which to import
177
- # metadata. It must begin with gs://.
176
+ # A Cloud Storage object or folder URI that specifies the source from which to
177
+ # import metadata. It must begin with gs://.
178
178
  # Corresponds to the JSON property `gcsUri`
179
179
  # @return [String]
180
180
  attr_accessor :gcs_uri
@@ -184,6 +184,11 @@ module Google
184
184
  # @return [String]
185
185
  attr_accessor :source_database
186
186
 
187
+ # Optional. The type of the database dump. If unspecified, defaults to MYSQL.
188
+ # Corresponds to the JSON property `type`
189
+ # @return [String]
190
+ attr_accessor :type
191
+
187
192
  def initialize(**args)
188
193
  update!(**args)
189
194
  end
@@ -193,6 +198,7 @@ module Google
193
198
  @database_type = args[:database_type] if args.key?(:database_type)
194
199
  @gcs_uri = args[:gcs_uri] if args.key?(:gcs_uri)
195
200
  @source_database = args[:source_database] if args.key?(:source_database)
201
+ @type = args[:type] if args.key?(:type)
196
202
  end
197
203
  end
198
204
 
@@ -217,6 +223,11 @@ module Google
217
223
  class ExportMetadataRequest
218
224
  include Google::Apis::Core::Hashable
219
225
 
226
+ # Optional. The type of the database dump. If unspecified, defaults to MYSQL.
227
+ # Corresponds to the JSON property `databaseDumpType`
228
+ # @return [String]
229
+ attr_accessor :database_dump_type
230
+
220
231
  # Required. A Cloud Storage URI of a folder that metadata are exported to, in
221
232
  # the format gs:///. A sub-folder containing exported files will be created
222
233
  # below it.
@@ -242,6 +253,7 @@ module Google
242
253
 
243
254
  # Update properties of this object
244
255
  def update!(**args)
256
+ @database_dump_type = args[:database_dump_type] if args.key?(:database_dump_type)
245
257
  @destination_gcs_folder = args[:destination_gcs_folder] if args.key?(:destination_gcs_folder)
246
258
  @request_id = args[:request_id] if args.key?(:request_id)
247
259
  end
@@ -609,6 +621,11 @@ module Google
609
621
  class MetadataExport
610
622
  include Google::Apis::Core::Hashable
611
623
 
624
+ # Output only. The type of the database dump.
625
+ # Corresponds to the JSON property `databaseDumpType`
626
+ # @return [String]
627
+ attr_accessor :database_dump_type
628
+
612
629
  # Output only. A Cloud Storage URI of a folder that metadata are exported to, in
613
630
  # the form of gs:////, where ` is automatically generated.
614
631
  # Corresponds to the JSON property `destinationGcsUri`
@@ -636,6 +653,7 @@ module Google
636
653
 
637
654
  # Update properties of this object
638
655
  def update!(**args)
656
+ @database_dump_type = args[:database_dump_type] if args.key?(:database_dump_type)
639
657
  @destination_gcs_uri = args[:destination_gcs_uri] if args.key?(:destination_gcs_uri)
640
658
  @end_time = args[:end_time] if args.key?(:end_time)
641
659
  @start_time = args[:start_time] if args.key?(:start_time)
@@ -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.3.0"
19
+ GEM_VERSION = "0.4.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.1.2"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210222"
25
+ REVISION = "20210226"
26
26
  end
27
27
  end
28
28
  end
@@ -235,6 +235,7 @@ module Google
235
235
  property :database_type, as: 'databaseType'
236
236
  property :gcs_uri, as: 'gcsUri'
237
237
  property :source_database, as: 'sourceDatabase'
238
+ property :type, as: 'type'
238
239
  end
239
240
  end
240
241
 
@@ -247,6 +248,7 @@ module Google
247
248
  class ExportMetadataRequest
248
249
  # @private
249
250
  class Representation < Google::Apis::Core::JsonRepresentation
251
+ property :database_dump_type, as: 'databaseDumpType'
250
252
  property :destination_gcs_folder, as: 'destinationGcsFolder'
251
253
  property :request_id, as: 'requestId'
252
254
  end
@@ -358,6 +360,7 @@ module Google
358
360
  class MetadataExport
359
361
  # @private
360
362
  class Representation < Google::Apis::Core::JsonRepresentation
363
+ property :database_dump_type, as: 'databaseDumpType'
361
364
  property :destination_gcs_uri, as: 'destinationGcsUri'
362
365
  property :end_time, as: 'endTime'
363
366
  property :start_time, as: 'startTime'
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.3.0
4
+ version: 0.4.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-03-01 00:00:00.000000000 Z
11
+ date: 2021-03-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -52,7 +52,7 @@ licenses:
52
52
  metadata:
53
53
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
54
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-metastore_v1beta/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1beta/v0.3.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1beta/v0.4.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-metastore_v1beta
57
57
  post_install_message:
58
58
  rdoc_options: []
@@ -62,14 +62,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
62
62
  requirements:
63
63
  - - ">="
64
64
  - !ruby/object:Gem::Version
65
- version: '2.4'
65
+ version: '2.5'
66
66
  required_rubygems_version: !ruby/object:Gem::Requirement
67
67
  requirements:
68
68
  - - ">="
69
69
  - !ruby/object:Gem::Version
70
70
  version: '0'
71
71
  requirements: []
72
- rubygems_version: 3.2.11
72
+ rubygems_version: 3.2.13
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: Simple REST client for Dataproc Metastore API V1beta