google-cloud-bigquery-migration-v2 0.4.0 → 0.5.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: 4d467792c955ea05ce2e173fb343b296c3ac3324156aaec8821d815d1fd9a01d
4
- data.tar.gz: 9c815f171ae5d45d031b8ffa7f541efbdcf53a6428b73a257af45b25befe8975
3
+ metadata.gz: e09a4988b762ad5edad4258ab1bb0d82dcbf52a7ba6e568c4bebaaf62c75d89a
4
+ data.tar.gz: 1bff68d98ec4c7b66bfd8c2ae3da46700ea3a845796cc6c6dc2109b5b2cf3150
5
5
  SHA512:
6
- metadata.gz: ca952432b290a38a97b8c7e55b4a41e7f500f5de1d75356871429de9989c57a035e08bb42aa07bba894e11adc121f61ed86363ee3f3745964e9a9759b574fd56
7
- data.tar.gz: 2638d6f48166befd76b4a5733643e9c7302b54038a182cdba77c4d61c45d47025cc9b5b518fe23bbc62f994481e6ae101ed0ecc524df6589fe7a8ef828b0984c
6
+ metadata.gz: c7d5a8410f1087e251c3292d51862efacc9064804fe4b2b232f2d56ab1434b90ee53a73fdde95b5e6cc4d753a042472215439012e44491b1255d73f64ef95e24
7
+ data.tar.gz: 71956d9262bcaa8fcff15deece3ec460fcfb51c506980e963e50e4e6194af019d1d72a00ee19f557f55d4a0a637a612bb13635c6acb4b076e1c3960790daddc5
@@ -34,6 +34,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
34
34
  optional :sql_server_dialect, :message, 11, "google.cloud.bigquery.migration.v2.SQLServerDialect"
35
35
  optional :postgresql_dialect, :message, 12, "google.cloud.bigquery.migration.v2.PostgresqlDialect"
36
36
  optional :presto_dialect, :message, 13, "google.cloud.bigquery.migration.v2.PrestoDialect"
37
+ optional :mysql_dialect, :message, 14, "google.cloud.bigquery.migration.v2.MySQLDialect"
37
38
  end
38
39
  end
39
40
  add_message "google.cloud.bigquery.migration.v2.BigQueryDialect" do
@@ -68,6 +69,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
68
69
  end
69
70
  add_message "google.cloud.bigquery.migration.v2.PrestoDialect" do
70
71
  end
72
+ add_message "google.cloud.bigquery.migration.v2.MySQLDialect" do
73
+ end
71
74
  add_message "google.cloud.bigquery.migration.v2.ObjectNameMappingList" do
72
75
  repeated :name_map, :message, 1, "google.cloud.bigquery.migration.v2.ObjectNameMapping"
73
76
  end
@@ -126,6 +129,7 @@ module Google
126
129
  SQLServerDialect = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.bigquery.migration.v2.SQLServerDialect").msgclass
127
130
  PostgresqlDialect = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.bigquery.migration.v2.PostgresqlDialect").msgclass
128
131
  PrestoDialect = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.bigquery.migration.v2.PrestoDialect").msgclass
132
+ MySQLDialect = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.bigquery.migration.v2.MySQLDialect").msgclass
129
133
  ObjectNameMappingList = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.bigquery.migration.v2.ObjectNameMappingList").msgclass
130
134
  ObjectNameMapping = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.bigquery.migration.v2.ObjectNameMapping").msgclass
131
135
  NameMappingKey = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.bigquery.migration.v2.NameMappingKey").msgclass
@@ -22,7 +22,7 @@ module Google
22
22
  module Bigquery
23
23
  module Migration
24
24
  module V2
25
- VERSION = "0.4.0"
25
+ VERSION = "0.5.0"
26
26
  end
27
27
  end
28
28
  end
@@ -100,7 +100,7 @@ module Google
100
100
  # Translation_Oracle2BQ, Translation_HiveQL2BQ, Translation_SparkSQL2BQ,
101
101
  # Translation_Snowflake2BQ, Translation_Netezza2BQ,
102
102
  # Translation_AzureSynapse2BQ, Translation_Vertica2BQ,
103
- # Translation_SQLServer2BQ, Translation_Presto2BQ.
103
+ # Translation_SQLServer2BQ, Translation_Presto2BQ, Translation_MySQL2BQ.
104
104
  # @!attribute [r] state
105
105
  # @return [::Google::Cloud::Bigquery::Migration::V2::MigrationTask::State]
106
106
  # Output only. The current state of the task.
@@ -87,6 +87,9 @@ module Google
87
87
  # @!attribute [rw] presto_dialect
88
88
  # @return [::Google::Cloud::Bigquery::Migration::V2::PrestoDialect]
89
89
  # The Presto dialect
90
+ # @!attribute [rw] mysql_dialect
91
+ # @return [::Google::Cloud::Bigquery::Migration::V2::MySQLDialect]
92
+ # The MySQL dialect
90
93
  class Dialect
91
94
  include ::Google::Protobuf::MessageExts
92
95
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -185,6 +188,12 @@ module Google
185
188
  extend ::Google::Protobuf::MessageExts::ClassMethods
186
189
  end
187
190
 
191
+ # The dialect definition for MySQL.
192
+ class MySQLDialect
193
+ include ::Google::Protobuf::MessageExts
194
+ extend ::Google::Protobuf::MessageExts::ClassMethods
195
+ end
196
+
188
197
  # Represents a map of name mappings using a list of key:value proto messages of
189
198
  # existing name to desired output name.
190
199
  # @!attribute [rw] name_map
@@ -26,8 +26,6 @@ module Google
26
26
  # service Foo {
27
27
  # rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);
28
28
  # }
29
- #
30
- # The JSON representation for `Empty` is empty JSON object `{}`.
31
29
  class Empty
32
30
  include ::Google::Protobuf::MessageExts
33
31
  extend ::Google::Protobuf::MessageExts::ClassMethods
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-bigquery-migration-v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.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-07-20 00:00:00.000000000 Z
11
+ date: 2022-08-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common