google-cloud-bigquery-migration-v2 0.1.0 → 0.2.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: b0114805c4154bd27a77a6115ba258fefedda24e02d88536acfefe4f56c78ae6
4
- data.tar.gz: 2276e062f9137b7dec0e947ffc9499322c624036a19b72ebb4e3fe749c881be0
3
+ metadata.gz: 07a665af0bf5f4d7629123c55ee44302148f3d41728230adc1bc5ab660672100
4
+ data.tar.gz: a0d5a8f3755dc7aed2a946d7f63e0dcc6da87db1658bcd5ef4454f942046bc0c
5
5
  SHA512:
6
- metadata.gz: 8f4ebda7e7a59b0cc8924ef01e273315fe4d8377ddca55187fcf596efefadf46fd80a3638a7c9ad17207096c1569dcc541e9778f0edde5eaacfffe3c05f12f11
7
- data.tar.gz: 9eff378e27c837f84193985060293f01959132e27a2d38ea5a0709928812cea027f5c059fcc521f280c8efec82cb533196b93fa3baba1e0250ee375ba10c7398
6
+ metadata.gz: f7741901a3c8a5ff813b57b14687f3056627a6631ada9f60e59ee77a7b1f2b914af2933499935b14281d5f99a04d5d8efd88e864f0202f08de8cde22cf536860
7
+ data.tar.gz: 5b0db366028cb3b43adb412dcf9ddd52450b25502ba1f81c695f24ecff0e9dea720892f551b1b5cb92a71792ef7d80deac45c0dbaed176a8e3056763760879f2
data/README.md CHANGED
@@ -69,6 +69,11 @@ module GRPC
69
69
  end
70
70
  ```
71
71
 
72
+
73
+ ## Google Cloud Samples
74
+
75
+ To browse ready to use code samples check [Google Cloud Samples](https://cloud.google.com/docs/samples).
76
+
72
77
  ## Supported Ruby Versions
73
78
 
74
79
  This library is supported on Ruby 2.5+.
@@ -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
@@ -22,7 +22,7 @@ module Google
22
22
  module Bigquery
23
23
  module Migration
24
24
  module V2
25
- VERSION = "0.1.0"
25
+ VERSION = "0.2.0"
26
26
  end
27
27
  end
28
28
  end
@@ -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.1.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-05-05 00:00:00.000000000 Z
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.5
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