google-cloud-bigquery-migration-v2 0.9.2 → 0.11.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 +1 -1
- data/lib/google/cloud/bigquery/migration/v2/migration_entities_pb.rb +7 -1
- data/lib/google/cloud/bigquery/migration/v2/migration_error_details_pb.rb +1 -1
- data/lib/google/cloud/bigquery/migration/v2/migration_metrics_pb.rb +1 -1
- data/lib/google/cloud/bigquery/migration/v2/migration_service/client.rb +17 -7
- data/lib/google/cloud/bigquery/migration/v2/migration_service/rest/client.rb +981 -0
- data/lib/google/cloud/bigquery/migration/v2/migration_service/rest/service_stub.rb +486 -0
- data/lib/google/cloud/bigquery/migration/v2/migration_service/rest.rb +54 -0
- data/lib/google/cloud/bigquery/migration/v2/migration_service.rb +6 -0
- data/lib/google/cloud/bigquery/migration/v2/migration_service_pb.rb +1 -1
- data/lib/google/cloud/bigquery/migration/v2/rest.rb +39 -0
- data/lib/google/cloud/bigquery/migration/v2/translation_config_pb.rb +6 -1
- data/lib/google/cloud/bigquery/migration/v2/translation_details_pb.rb +51 -0
- data/lib/google/cloud/bigquery/migration/v2/translation_suggestion_pb.rb +48 -0
- data/lib/google/cloud/bigquery/migration/v2/translation_usability_pb.rb +47 -0
- data/lib/google/cloud/bigquery/migration/v2/version.rb +1 -1
- data/lib/google/cloud/bigquery/migration/v2.rb +5 -0
- data/proto_docs/google/api/client.rb +18 -10
- data/proto_docs/google/api/resource.rb +7 -2
- data/proto_docs/google/cloud/bigquery/migration/v2/migration_entities.rb +51 -4
- data/proto_docs/google/cloud/bigquery/migration/v2/translation_config.rb +41 -0
- data/proto_docs/google/cloud/bigquery/migration/v2/translation_details.rb +130 -0
- data/proto_docs/google/cloud/bigquery/migration/v2/translation_suggestion.rb +67 -0
- data/proto_docs/google/cloud/bigquery/migration/v2/translation_usability.rb +69 -0
- metadata +14 -116
@@ -0,0 +1,69 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2024 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
|
20
|
+
module Google
|
21
|
+
module Cloud
|
22
|
+
module Bigquery
|
23
|
+
module Migration
|
24
|
+
module V2
|
25
|
+
# A record in the aggregate CSV report for a migration workflow
|
26
|
+
# @!attribute [rw] severity
|
27
|
+
# @return [::String]
|
28
|
+
# Severity of the translation record.
|
29
|
+
# @!attribute [rw] category
|
30
|
+
# @return [::String]
|
31
|
+
# Category of the error/warning. Example: SyntaxError
|
32
|
+
# @!attribute [rw] file_path
|
33
|
+
# @return [::String]
|
34
|
+
# The file path in which the error occurred
|
35
|
+
# @!attribute [rw] filename
|
36
|
+
# @return [::String]
|
37
|
+
# The file name in which the error occurred
|
38
|
+
# @!attribute [rw] source_script_line
|
39
|
+
# @return [::Integer]
|
40
|
+
# Specifies the row from the source text where the error occurred (0 based,
|
41
|
+
# -1 for messages without line location). Example: 2
|
42
|
+
# @!attribute [rw] source_script_column
|
43
|
+
# @return [::Integer]
|
44
|
+
# Specifies the column from the source texts where the error occurred. (0
|
45
|
+
# based, -1 for messages without column location) example: 6
|
46
|
+
# @!attribute [rw] message
|
47
|
+
# @return [::String]
|
48
|
+
# Detailed message of the record.
|
49
|
+
# @!attribute [rw] script_context
|
50
|
+
# @return [::String]
|
51
|
+
# The script context (obfuscated) in which the error occurred
|
52
|
+
# @!attribute [rw] action
|
53
|
+
# @return [::String]
|
54
|
+
# Category of the error/warning. Example: SyntaxError
|
55
|
+
# @!attribute [rw] effect
|
56
|
+
# @return [::String]
|
57
|
+
# Effect of the error/warning. Example: COMPATIBILITY
|
58
|
+
# @!attribute [rw] object_name
|
59
|
+
# @return [::String]
|
60
|
+
# Name of the affected object in the log message.
|
61
|
+
class GcsReportLogMessage
|
62
|
+
include ::Google::Protobuf::MessageExts
|
63
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
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.11.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: 2024-
|
11
|
+
date: 2024-07-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -44,118 +44,6 @@ dependencies:
|
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
46
|
version: '1.0'
|
47
|
-
- !ruby/object:Gem::Dependency
|
48
|
-
name: google-style
|
49
|
-
requirement: !ruby/object:Gem::Requirement
|
50
|
-
requirements:
|
51
|
-
- - "~>"
|
52
|
-
- !ruby/object:Gem::Version
|
53
|
-
version: 1.26.3
|
54
|
-
type: :development
|
55
|
-
prerelease: false
|
56
|
-
version_requirements: !ruby/object:Gem::Requirement
|
57
|
-
requirements:
|
58
|
-
- - "~>"
|
59
|
-
- !ruby/object:Gem::Version
|
60
|
-
version: 1.26.3
|
61
|
-
- !ruby/object:Gem::Dependency
|
62
|
-
name: minitest
|
63
|
-
requirement: !ruby/object:Gem::Requirement
|
64
|
-
requirements:
|
65
|
-
- - "~>"
|
66
|
-
- !ruby/object:Gem::Version
|
67
|
-
version: '5.16'
|
68
|
-
type: :development
|
69
|
-
prerelease: false
|
70
|
-
version_requirements: !ruby/object:Gem::Requirement
|
71
|
-
requirements:
|
72
|
-
- - "~>"
|
73
|
-
- !ruby/object:Gem::Version
|
74
|
-
version: '5.16'
|
75
|
-
- !ruby/object:Gem::Dependency
|
76
|
-
name: minitest-focus
|
77
|
-
requirement: !ruby/object:Gem::Requirement
|
78
|
-
requirements:
|
79
|
-
- - "~>"
|
80
|
-
- !ruby/object:Gem::Version
|
81
|
-
version: '1.1'
|
82
|
-
type: :development
|
83
|
-
prerelease: false
|
84
|
-
version_requirements: !ruby/object:Gem::Requirement
|
85
|
-
requirements:
|
86
|
-
- - "~>"
|
87
|
-
- !ruby/object:Gem::Version
|
88
|
-
version: '1.1'
|
89
|
-
- !ruby/object:Gem::Dependency
|
90
|
-
name: minitest-rg
|
91
|
-
requirement: !ruby/object:Gem::Requirement
|
92
|
-
requirements:
|
93
|
-
- - "~>"
|
94
|
-
- !ruby/object:Gem::Version
|
95
|
-
version: '5.2'
|
96
|
-
type: :development
|
97
|
-
prerelease: false
|
98
|
-
version_requirements: !ruby/object:Gem::Requirement
|
99
|
-
requirements:
|
100
|
-
- - "~>"
|
101
|
-
- !ruby/object:Gem::Version
|
102
|
-
version: '5.2'
|
103
|
-
- !ruby/object:Gem::Dependency
|
104
|
-
name: rake
|
105
|
-
requirement: !ruby/object:Gem::Requirement
|
106
|
-
requirements:
|
107
|
-
- - ">="
|
108
|
-
- !ruby/object:Gem::Version
|
109
|
-
version: '13.0'
|
110
|
-
type: :development
|
111
|
-
prerelease: false
|
112
|
-
version_requirements: !ruby/object:Gem::Requirement
|
113
|
-
requirements:
|
114
|
-
- - ">="
|
115
|
-
- !ruby/object:Gem::Version
|
116
|
-
version: '13.0'
|
117
|
-
- !ruby/object:Gem::Dependency
|
118
|
-
name: redcarpet
|
119
|
-
requirement: !ruby/object:Gem::Requirement
|
120
|
-
requirements:
|
121
|
-
- - "~>"
|
122
|
-
- !ruby/object:Gem::Version
|
123
|
-
version: '3.0'
|
124
|
-
type: :development
|
125
|
-
prerelease: false
|
126
|
-
version_requirements: !ruby/object:Gem::Requirement
|
127
|
-
requirements:
|
128
|
-
- - "~>"
|
129
|
-
- !ruby/object:Gem::Version
|
130
|
-
version: '3.0'
|
131
|
-
- !ruby/object:Gem::Dependency
|
132
|
-
name: simplecov
|
133
|
-
requirement: !ruby/object:Gem::Requirement
|
134
|
-
requirements:
|
135
|
-
- - "~>"
|
136
|
-
- !ruby/object:Gem::Version
|
137
|
-
version: '0.18'
|
138
|
-
type: :development
|
139
|
-
prerelease: false
|
140
|
-
version_requirements: !ruby/object:Gem::Requirement
|
141
|
-
requirements:
|
142
|
-
- - "~>"
|
143
|
-
- !ruby/object:Gem::Version
|
144
|
-
version: '0.18'
|
145
|
-
- !ruby/object:Gem::Dependency
|
146
|
-
name: yard
|
147
|
-
requirement: !ruby/object:Gem::Requirement
|
148
|
-
requirements:
|
149
|
-
- - "~>"
|
150
|
-
- !ruby/object:Gem::Version
|
151
|
-
version: '0.9'
|
152
|
-
type: :development
|
153
|
-
prerelease: false
|
154
|
-
version_requirements: !ruby/object:Gem::Requirement
|
155
|
-
requirements:
|
156
|
-
- - "~>"
|
157
|
-
- !ruby/object:Gem::Version
|
158
|
-
version: '0.9'
|
159
47
|
description: The BigQuery Migration Service is a comprehensive solution for migrating
|
160
48
|
your data warehouse to BigQuery. Note that google-cloud-bigquery-migration-v2 is
|
161
49
|
a version-specific client library. For most uses, we recommend installing the main
|
@@ -179,9 +67,16 @@ files:
|
|
179
67
|
- lib/google/cloud/bigquery/migration/v2/migration_service/client.rb
|
180
68
|
- lib/google/cloud/bigquery/migration/v2/migration_service/credentials.rb
|
181
69
|
- lib/google/cloud/bigquery/migration/v2/migration_service/paths.rb
|
70
|
+
- lib/google/cloud/bigquery/migration/v2/migration_service/rest.rb
|
71
|
+
- lib/google/cloud/bigquery/migration/v2/migration_service/rest/client.rb
|
72
|
+
- lib/google/cloud/bigquery/migration/v2/migration_service/rest/service_stub.rb
|
182
73
|
- lib/google/cloud/bigquery/migration/v2/migration_service_pb.rb
|
183
74
|
- lib/google/cloud/bigquery/migration/v2/migration_service_services_pb.rb
|
75
|
+
- lib/google/cloud/bigquery/migration/v2/rest.rb
|
184
76
|
- lib/google/cloud/bigquery/migration/v2/translation_config_pb.rb
|
77
|
+
- lib/google/cloud/bigquery/migration/v2/translation_details_pb.rb
|
78
|
+
- lib/google/cloud/bigquery/migration/v2/translation_suggestion_pb.rb
|
79
|
+
- lib/google/cloud/bigquery/migration/v2/translation_usability_pb.rb
|
185
80
|
- lib/google/cloud/bigquery/migration/v2/version.rb
|
186
81
|
- proto_docs/README.md
|
187
82
|
- proto_docs/google/api/client.rb
|
@@ -196,6 +91,9 @@ files:
|
|
196
91
|
- proto_docs/google/cloud/bigquery/migration/v2/migration_metrics.rb
|
197
92
|
- proto_docs/google/cloud/bigquery/migration/v2/migration_service.rb
|
198
93
|
- proto_docs/google/cloud/bigquery/migration/v2/translation_config.rb
|
94
|
+
- proto_docs/google/cloud/bigquery/migration/v2/translation_details.rb
|
95
|
+
- proto_docs/google/cloud/bigquery/migration/v2/translation_suggestion.rb
|
96
|
+
- proto_docs/google/cloud/bigquery/migration/v2/translation_usability.rb
|
199
97
|
- proto_docs/google/protobuf/any.rb
|
200
98
|
- proto_docs/google/protobuf/duration.rb
|
201
99
|
- proto_docs/google/protobuf/empty.rb
|
@@ -214,14 +112,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
214
112
|
requirements:
|
215
113
|
- - ">="
|
216
114
|
- !ruby/object:Gem::Version
|
217
|
-
version: '2.
|
115
|
+
version: '2.7'
|
218
116
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
219
117
|
requirements:
|
220
118
|
- - ">="
|
221
119
|
- !ruby/object:Gem::Version
|
222
120
|
version: '0'
|
223
121
|
requirements: []
|
224
|
-
rubygems_version: 3.5.
|
122
|
+
rubygems_version: 3.5.6
|
225
123
|
signing_key:
|
226
124
|
specification_version: 4
|
227
125
|
summary: The migration service, exposing apis for migration jobs operations, and agent
|