google-cloud-bigquery-migration-v2 0.1.0 → 0.2.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 +4 -4
- data/README.md +5 -0
- data/lib/google/cloud/bigquery/migration/v2/translation_config_pb.rb +4 -0
- data/lib/google/cloud/bigquery/migration/v2/version.rb +1 -1
- data/proto_docs/google/cloud/bigquery/migration/v2/migration_entities.rb +3 -1
- data/proto_docs/google/cloud/bigquery/migration/v2/translation_config.rb +9 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 07a665af0bf5f4d7629123c55ee44302148f3d41728230adc1bc5ab660672100
|
|
4
|
+
data.tar.gz: a0d5a8f3755dc7aed2a946d7f63e0dcc6da87db1658bcd5ef4454f942046bc0c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f7741901a3c8a5ff813b57b14687f3056627a6631ada9f60e59ee77a7b1f2b914af2933499935b14281d5f99a04d5d8efd88e864f0202f08de8cde22cf536860
|
|
7
|
+
data.tar.gz: 5b0db366028cb3b43adb412dcf9ddd52450b25502ba1f81c695f24ecff0e9dea720892f551b1b5cb92a71792ef7d80deac45c0dbaed176a8e3056763760879f2
|
data/README.md
CHANGED
|
@@ -31,6 +31,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
|
31
31
|
optional :netezza_dialect, :message, 8, "google.cloud.bigquery.migration.v2.NetezzaDialect"
|
|
32
32
|
optional :azure_synapse_dialect, :message, 9, "google.cloud.bigquery.migration.v2.AzureSynapseDialect"
|
|
33
33
|
optional :vertica_dialect, :message, 10, "google.cloud.bigquery.migration.v2.VerticaDialect"
|
|
34
|
+
optional :sql_server_dialect, :message, 11, "google.cloud.bigquery.migration.v2.SQLServerDialect"
|
|
34
35
|
end
|
|
35
36
|
end
|
|
36
37
|
add_message "google.cloud.bigquery.migration.v2.BigQueryDialect" do
|
|
@@ -59,6 +60,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
|
59
60
|
end
|
|
60
61
|
add_message "google.cloud.bigquery.migration.v2.VerticaDialect" do
|
|
61
62
|
end
|
|
63
|
+
add_message "google.cloud.bigquery.migration.v2.SQLServerDialect" do
|
|
64
|
+
end
|
|
62
65
|
add_message "google.cloud.bigquery.migration.v2.ObjectNameMappingList" do
|
|
63
66
|
repeated :name_map, :message, 1, "google.cloud.bigquery.migration.v2.ObjectNameMapping"
|
|
64
67
|
end
|
|
@@ -114,6 +117,7 @@ module Google
|
|
|
114
117
|
NetezzaDialect = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.bigquery.migration.v2.NetezzaDialect").msgclass
|
|
115
118
|
AzureSynapseDialect = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.bigquery.migration.v2.AzureSynapseDialect").msgclass
|
|
116
119
|
VerticaDialect = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.bigquery.migration.v2.VerticaDialect").msgclass
|
|
120
|
+
SQLServerDialect = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.bigquery.migration.v2.SQLServerDialect").msgclass
|
|
117
121
|
ObjectNameMappingList = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.bigquery.migration.v2.ObjectNameMappingList").msgclass
|
|
118
122
|
ObjectNameMapping = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.bigquery.migration.v2.ObjectNameMapping").msgclass
|
|
119
123
|
NameMappingKey = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.bigquery.migration.v2.NameMappingKey").msgclass
|
|
@@ -98,7 +98,9 @@ module Google
|
|
|
98
98
|
# The type of the task. This must be one of the supported task types:
|
|
99
99
|
# Translation_Teradata2BQ, Translation_Redshift2BQ, Translation_Bteq2BQ,
|
|
100
100
|
# Translation_Oracle2BQ, Translation_HiveQL2BQ, Translation_SparkSQL2BQ,
|
|
101
|
-
# Translation_Snowflake2BQ, Translation_Netezza2BQ
|
|
101
|
+
# Translation_Snowflake2BQ, Translation_Netezza2BQ,
|
|
102
|
+
# Translation_AzureSynapse2BQ, Translation_Vertica2BQ,
|
|
103
|
+
# Translation_SQLServer2BQ.
|
|
102
104
|
# @!attribute [r] state
|
|
103
105
|
# @return [::Google::Cloud::Bigquery::Migration::V2::MigrationTask::State]
|
|
104
106
|
# Output only. The current state of the task.
|
|
@@ -78,6 +78,9 @@ module Google
|
|
|
78
78
|
# @!attribute [rw] vertica_dialect
|
|
79
79
|
# @return [::Google::Cloud::Bigquery::Migration::V2::VerticaDialect]
|
|
80
80
|
# The Vertica dialect
|
|
81
|
+
# @!attribute [rw] sql_server_dialect
|
|
82
|
+
# @return [::Google::Cloud::Bigquery::Migration::V2::SQLServerDialect]
|
|
83
|
+
# The SQL Server dialect
|
|
81
84
|
class Dialect
|
|
82
85
|
include ::Google::Protobuf::MessageExts
|
|
83
86
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -158,6 +161,12 @@ module Google
|
|
|
158
161
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
159
162
|
end
|
|
160
163
|
|
|
164
|
+
# The dialect definition for SQL Server.
|
|
165
|
+
class SQLServerDialect
|
|
166
|
+
include ::Google::Protobuf::MessageExts
|
|
167
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
168
|
+
end
|
|
169
|
+
|
|
161
170
|
# Represents a map of name mappings using a list of key:value proto messages of
|
|
162
171
|
# existing name to desired output name.
|
|
163
172
|
# @!attribute [rw] name_map
|
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
|
+
version: 0.2.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-
|
|
11
|
+
date: 2022-06-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: gapic-common
|
|
@@ -220,7 +220,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
220
220
|
- !ruby/object:Gem::Version
|
|
221
221
|
version: '0'
|
|
222
222
|
requirements: []
|
|
223
|
-
rubygems_version: 3.3.
|
|
223
|
+
rubygems_version: 3.3.14
|
|
224
224
|
signing_key:
|
|
225
225
|
specification_version: 4
|
|
226
226
|
summary: API Client library for the BigQuery Migration V2 API
|