google-apis-metastore_v1beta 0.3.0 → 0.4.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: c121171501e42eb5db67e8c857e9fdc4e7f54afbed67c7d80a65f7fbc7eddbdc
|
4
|
+
data.tar.gz: 0e0fb2b1018d57f0b3dede2a0e150d28fd8fd69a5b15e94cb913e9cd94b06959
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6f80851a544c10f29bed8a4cc5182bacb1652d11f6d38cd0162464ccab4597a7001cee3fcd7c869fbd8617be00802852c39bfe3cbfbb33f389be4840b1787720
|
7
|
+
data.tar.gz: d364f20d7d363e9cd2c15d5a85514719736d88cb2318d37a65a744dc42c7c1874abd39d4db4babe30106d7f2c22667837d47a3eb60a7280a45c0f2f65d5a10fa
|
data/CHANGELOG.md
CHANGED
@@ -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
|
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.
|
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 = "
|
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.
|
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-
|
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.
|
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.
|
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.
|
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
|