google-cloud-bigquery-migration-v2 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: da7858107a40c42d250cc01a6642f17f1cb7cd3731a89c899a26a420de19ec53
4
- data.tar.gz: ffbc7bcf969807dd9790be7e830c7e88fae28db0837f766002428e146233ca74
3
+ metadata.gz: 4d467792c955ea05ce2e173fb343b296c3ac3324156aaec8821d815d1fd9a01d
4
+ data.tar.gz: 9c815f171ae5d45d031b8ffa7f541efbdcf53a6428b73a257af45b25befe8975
5
5
  SHA512:
6
- metadata.gz: adb40e16ace7655f5590f362d2c9b6d7a67389411698eb4f6a5911a8ef34bf2f70fae3bc78ac171c1c801601257cc013ead0306ba12b9af2c5685f603bb8aace
7
- data.tar.gz: 2ecb7065d139ed130ea62b56cce24042a5b62b7789e97fc006ebfb6ff24fa3f2333d4e98d6c0e1c40215e5ae29b001a43541fd12c9f92325f0c35071b46088d4
6
+ metadata.gz: ca952432b290a38a97b8c7e55b4a41e7f500f5de1d75356871429de9989c57a035e08bb42aa07bba894e11adc121f61ed86363ee3f3745964e9a9759b574fd56
7
+ data.tar.gz: 2638d6f48166befd76b4a5733643e9c7302b54038a182cdba77c4d61c45d47025cc9b5b518fe23bbc62f994481e6ae101ed0ecc524df6589fe7a8ef828b0984c
@@ -32,6 +32,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
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
34
  optional :sql_server_dialect, :message, 11, "google.cloud.bigquery.migration.v2.SQLServerDialect"
35
+ optional :postgresql_dialect, :message, 12, "google.cloud.bigquery.migration.v2.PostgresqlDialect"
36
+ optional :presto_dialect, :message, 13, "google.cloud.bigquery.migration.v2.PrestoDialect"
35
37
  end
36
38
  end
37
39
  add_message "google.cloud.bigquery.migration.v2.BigQueryDialect" do
@@ -62,6 +64,10 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
62
64
  end
63
65
  add_message "google.cloud.bigquery.migration.v2.SQLServerDialect" do
64
66
  end
67
+ add_message "google.cloud.bigquery.migration.v2.PostgresqlDialect" do
68
+ end
69
+ add_message "google.cloud.bigquery.migration.v2.PrestoDialect" do
70
+ end
65
71
  add_message "google.cloud.bigquery.migration.v2.ObjectNameMappingList" do
66
72
  repeated :name_map, :message, 1, "google.cloud.bigquery.migration.v2.ObjectNameMapping"
67
73
  end
@@ -118,6 +124,8 @@ module Google
118
124
  AzureSynapseDialect = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.bigquery.migration.v2.AzureSynapseDialect").msgclass
119
125
  VerticaDialect = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.bigquery.migration.v2.VerticaDialect").msgclass
120
126
  SQLServerDialect = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.bigquery.migration.v2.SQLServerDialect").msgclass
127
+ PostgresqlDialect = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.bigquery.migration.v2.PostgresqlDialect").msgclass
128
+ PrestoDialect = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.bigquery.migration.v2.PrestoDialect").msgclass
121
129
  ObjectNameMappingList = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.bigquery.migration.v2.ObjectNameMappingList").msgclass
122
130
  ObjectNameMapping = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.bigquery.migration.v2.ObjectNameMapping").msgclass
123
131
  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.3.0"
25
+ VERSION = "0.4.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.
103
+ # Translation_SQLServer2BQ, Translation_Presto2BQ.
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.
@@ -81,6 +81,12 @@ module Google
81
81
  # @!attribute [rw] sql_server_dialect
82
82
  # @return [::Google::Cloud::Bigquery::Migration::V2::SQLServerDialect]
83
83
  # The SQL Server dialect
84
+ # @!attribute [rw] postgresql_dialect
85
+ # @return [::Google::Cloud::Bigquery::Migration::V2::PostgresqlDialect]
86
+ # The Postgresql dialect
87
+ # @!attribute [rw] presto_dialect
88
+ # @return [::Google::Cloud::Bigquery::Migration::V2::PrestoDialect]
89
+ # The Presto dialect
84
90
  class Dialect
85
91
  include ::Google::Protobuf::MessageExts
86
92
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -167,6 +173,18 @@ module Google
167
173
  extend ::Google::Protobuf::MessageExts::ClassMethods
168
174
  end
169
175
 
176
+ # The dialect definition for Postgresql.
177
+ class PostgresqlDialect
178
+ include ::Google::Protobuf::MessageExts
179
+ extend ::Google::Protobuf::MessageExts::ClassMethods
180
+ end
181
+
182
+ # The dialect definition for Presto.
183
+ class PrestoDialect
184
+ include ::Google::Protobuf::MessageExts
185
+ extend ::Google::Protobuf::MessageExts::ClassMethods
186
+ end
187
+
170
188
  # Represents a map of name mappings using a list of key:value proto messages of
171
189
  # existing name to desired output name.
172
190
  # @!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.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: 2022-07-01 00:00:00.000000000 Z
11
+ date: 2022-07-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common