google-cloud-dataform-v1beta1 0.a → 0.1.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.
@@ -0,0 +1,504 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/cloud/dataform/v1beta1/dataform.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ require 'google/api/annotations_pb'
7
+ require 'google/api/client_pb'
8
+ require 'google/api/field_behavior_pb'
9
+ require 'google/api/resource_pb'
10
+ require 'google/protobuf/empty_pb'
11
+ require 'google/protobuf/field_mask_pb'
12
+ require 'google/type/interval_pb'
13
+
14
+ Google::Protobuf::DescriptorPool.generated_pool.build do
15
+ add_file("google/cloud/dataform/v1beta1/dataform.proto", :syntax => :proto3) do
16
+ add_message "google.cloud.dataform.v1beta1.Repository" do
17
+ optional :name, :string, 1
18
+ optional :git_remote_settings, :message, 2, "google.cloud.dataform.v1beta1.Repository.GitRemoteSettings"
19
+ end
20
+ add_message "google.cloud.dataform.v1beta1.Repository.GitRemoteSettings" do
21
+ optional :url, :string, 1
22
+ optional :default_branch, :string, 2
23
+ optional :authentication_token_secret_version, :string, 3
24
+ optional :token_status, :enum, 4, "google.cloud.dataform.v1beta1.Repository.GitRemoteSettings.TokenStatus"
25
+ end
26
+ add_enum "google.cloud.dataform.v1beta1.Repository.GitRemoteSettings.TokenStatus" do
27
+ value :TOKEN_STATUS_UNSPECIFIED, 0
28
+ value :NOT_FOUND, 1
29
+ value :INVALID, 2
30
+ value :VALID, 3
31
+ end
32
+ add_message "google.cloud.dataform.v1beta1.ListRepositoriesRequest" do
33
+ optional :parent, :string, 1
34
+ optional :page_size, :int32, 2
35
+ optional :page_token, :string, 3
36
+ optional :order_by, :string, 4
37
+ optional :filter, :string, 5
38
+ end
39
+ add_message "google.cloud.dataform.v1beta1.ListRepositoriesResponse" do
40
+ repeated :repositories, :message, 1, "google.cloud.dataform.v1beta1.Repository"
41
+ optional :next_page_token, :string, 2
42
+ repeated :unreachable, :string, 3
43
+ end
44
+ add_message "google.cloud.dataform.v1beta1.GetRepositoryRequest" do
45
+ optional :name, :string, 1
46
+ end
47
+ add_message "google.cloud.dataform.v1beta1.CreateRepositoryRequest" do
48
+ optional :parent, :string, 1
49
+ optional :repository, :message, 2, "google.cloud.dataform.v1beta1.Repository"
50
+ optional :repository_id, :string, 3
51
+ end
52
+ add_message "google.cloud.dataform.v1beta1.UpdateRepositoryRequest" do
53
+ optional :update_mask, :message, 1, "google.protobuf.FieldMask"
54
+ optional :repository, :message, 2, "google.cloud.dataform.v1beta1.Repository"
55
+ end
56
+ add_message "google.cloud.dataform.v1beta1.DeleteRepositoryRequest" do
57
+ optional :name, :string, 1
58
+ optional :force, :bool, 2
59
+ end
60
+ add_message "google.cloud.dataform.v1beta1.FetchRemoteBranchesRequest" do
61
+ optional :name, :string, 1
62
+ end
63
+ add_message "google.cloud.dataform.v1beta1.FetchRemoteBranchesResponse" do
64
+ repeated :branches, :string, 1
65
+ end
66
+ add_message "google.cloud.dataform.v1beta1.Workspace" do
67
+ optional :name, :string, 1
68
+ end
69
+ add_message "google.cloud.dataform.v1beta1.ListWorkspacesRequest" do
70
+ optional :parent, :string, 1
71
+ optional :page_size, :int32, 2
72
+ optional :page_token, :string, 3
73
+ optional :order_by, :string, 4
74
+ optional :filter, :string, 5
75
+ end
76
+ add_message "google.cloud.dataform.v1beta1.ListWorkspacesResponse" do
77
+ repeated :workspaces, :message, 1, "google.cloud.dataform.v1beta1.Workspace"
78
+ optional :next_page_token, :string, 2
79
+ repeated :unreachable, :string, 3
80
+ end
81
+ add_message "google.cloud.dataform.v1beta1.GetWorkspaceRequest" do
82
+ optional :name, :string, 1
83
+ end
84
+ add_message "google.cloud.dataform.v1beta1.CreateWorkspaceRequest" do
85
+ optional :parent, :string, 1
86
+ optional :workspace, :message, 2, "google.cloud.dataform.v1beta1.Workspace"
87
+ optional :workspace_id, :string, 3
88
+ end
89
+ add_message "google.cloud.dataform.v1beta1.DeleteWorkspaceRequest" do
90
+ optional :name, :string, 1
91
+ end
92
+ add_message "google.cloud.dataform.v1beta1.CommitAuthor" do
93
+ optional :name, :string, 1
94
+ optional :email_address, :string, 2
95
+ end
96
+ add_message "google.cloud.dataform.v1beta1.PullGitCommitsRequest" do
97
+ optional :name, :string, 1
98
+ optional :remote_branch, :string, 2
99
+ optional :author, :message, 3, "google.cloud.dataform.v1beta1.CommitAuthor"
100
+ end
101
+ add_message "google.cloud.dataform.v1beta1.PushGitCommitsRequest" do
102
+ optional :name, :string, 1
103
+ optional :remote_branch, :string, 2
104
+ end
105
+ add_message "google.cloud.dataform.v1beta1.FetchFileGitStatusesRequest" do
106
+ optional :name, :string, 1
107
+ end
108
+ add_message "google.cloud.dataform.v1beta1.FetchFileGitStatusesResponse" do
109
+ repeated :uncommitted_file_changes, :message, 1, "google.cloud.dataform.v1beta1.FetchFileGitStatusesResponse.UncommittedFileChange"
110
+ end
111
+ add_message "google.cloud.dataform.v1beta1.FetchFileGitStatusesResponse.UncommittedFileChange" do
112
+ optional :path, :string, 1
113
+ optional :state, :enum, 2, "google.cloud.dataform.v1beta1.FetchFileGitStatusesResponse.UncommittedFileChange.State"
114
+ end
115
+ add_enum "google.cloud.dataform.v1beta1.FetchFileGitStatusesResponse.UncommittedFileChange.State" do
116
+ value :STATE_UNSPECIFIED, 0
117
+ value :ADDED, 1
118
+ value :DELETED, 2
119
+ value :MODIFIED, 3
120
+ value :HAS_CONFLICTS, 4
121
+ end
122
+ add_message "google.cloud.dataform.v1beta1.FetchGitAheadBehindRequest" do
123
+ optional :name, :string, 1
124
+ optional :remote_branch, :string, 2
125
+ end
126
+ add_message "google.cloud.dataform.v1beta1.FetchGitAheadBehindResponse" do
127
+ optional :commits_ahead, :int32, 1
128
+ optional :commits_behind, :int32, 2
129
+ end
130
+ add_message "google.cloud.dataform.v1beta1.CommitWorkspaceChangesRequest" do
131
+ optional :name, :string, 1
132
+ optional :author, :message, 4, "google.cloud.dataform.v1beta1.CommitAuthor"
133
+ optional :commit_message, :string, 2
134
+ repeated :paths, :string, 3
135
+ end
136
+ add_message "google.cloud.dataform.v1beta1.ResetWorkspaceChangesRequest" do
137
+ optional :name, :string, 1
138
+ repeated :paths, :string, 2
139
+ optional :clean, :bool, 3
140
+ end
141
+ add_message "google.cloud.dataform.v1beta1.FetchFileDiffRequest" do
142
+ optional :workspace, :string, 1
143
+ optional :path, :string, 2
144
+ end
145
+ add_message "google.cloud.dataform.v1beta1.FetchFileDiffResponse" do
146
+ optional :formatted_diff, :string, 1
147
+ end
148
+ add_message "google.cloud.dataform.v1beta1.QueryDirectoryContentsRequest" do
149
+ optional :workspace, :string, 1
150
+ optional :path, :string, 2
151
+ optional :page_size, :int32, 3
152
+ optional :page_token, :string, 4
153
+ end
154
+ add_message "google.cloud.dataform.v1beta1.QueryDirectoryContentsResponse" do
155
+ repeated :directory_entries, :message, 1, "google.cloud.dataform.v1beta1.QueryDirectoryContentsResponse.DirectoryEntry"
156
+ optional :next_page_token, :string, 2
157
+ end
158
+ add_message "google.cloud.dataform.v1beta1.QueryDirectoryContentsResponse.DirectoryEntry" do
159
+ oneof :entry do
160
+ optional :file, :string, 1
161
+ optional :directory, :string, 2
162
+ end
163
+ end
164
+ add_message "google.cloud.dataform.v1beta1.MakeDirectoryRequest" do
165
+ optional :workspace, :string, 1
166
+ optional :path, :string, 2
167
+ end
168
+ add_message "google.cloud.dataform.v1beta1.MakeDirectoryResponse" do
169
+ end
170
+ add_message "google.cloud.dataform.v1beta1.RemoveDirectoryRequest" do
171
+ optional :workspace, :string, 1
172
+ optional :path, :string, 2
173
+ end
174
+ add_message "google.cloud.dataform.v1beta1.MoveDirectoryRequest" do
175
+ optional :workspace, :string, 1
176
+ optional :path, :string, 2
177
+ optional :new_path, :string, 3
178
+ end
179
+ add_message "google.cloud.dataform.v1beta1.MoveDirectoryResponse" do
180
+ end
181
+ add_message "google.cloud.dataform.v1beta1.ReadFileRequest" do
182
+ optional :workspace, :string, 1
183
+ optional :path, :string, 2
184
+ end
185
+ add_message "google.cloud.dataform.v1beta1.ReadFileResponse" do
186
+ optional :file_contents, :bytes, 1
187
+ end
188
+ add_message "google.cloud.dataform.v1beta1.RemoveFileRequest" do
189
+ optional :workspace, :string, 1
190
+ optional :path, :string, 2
191
+ end
192
+ add_message "google.cloud.dataform.v1beta1.MoveFileRequest" do
193
+ optional :workspace, :string, 1
194
+ optional :path, :string, 2
195
+ optional :new_path, :string, 3
196
+ end
197
+ add_message "google.cloud.dataform.v1beta1.MoveFileResponse" do
198
+ end
199
+ add_message "google.cloud.dataform.v1beta1.WriteFileRequest" do
200
+ optional :workspace, :string, 1
201
+ optional :path, :string, 2
202
+ optional :contents, :bytes, 3
203
+ end
204
+ add_message "google.cloud.dataform.v1beta1.WriteFileResponse" do
205
+ end
206
+ add_message "google.cloud.dataform.v1beta1.InstallNpmPackagesRequest" do
207
+ optional :workspace, :string, 1
208
+ end
209
+ add_message "google.cloud.dataform.v1beta1.InstallNpmPackagesResponse" do
210
+ end
211
+ add_message "google.cloud.dataform.v1beta1.CompilationResult" do
212
+ optional :name, :string, 1
213
+ optional :code_compilation_config, :message, 4, "google.cloud.dataform.v1beta1.CompilationResult.CodeCompilationConfig"
214
+ optional :dataform_core_version, :string, 5
215
+ repeated :compilation_errors, :message, 6, "google.cloud.dataform.v1beta1.CompilationResult.CompilationError"
216
+ oneof :source do
217
+ optional :git_commitish, :string, 2
218
+ optional :workspace, :string, 3
219
+ end
220
+ end
221
+ add_message "google.cloud.dataform.v1beta1.CompilationResult.CodeCompilationConfig" do
222
+ optional :default_database, :string, 1
223
+ optional :default_schema, :string, 2
224
+ optional :default_location, :string, 8
225
+ optional :assertion_schema, :string, 3
226
+ map :vars, :string, :string, 4
227
+ optional :database_suffix, :string, 5
228
+ optional :schema_suffix, :string, 6
229
+ optional :table_prefix, :string, 7
230
+ end
231
+ add_message "google.cloud.dataform.v1beta1.CompilationResult.CompilationError" do
232
+ optional :message, :string, 1
233
+ optional :stack, :string, 2
234
+ optional :path, :string, 3
235
+ optional :action_target, :message, 4, "google.cloud.dataform.v1beta1.Target"
236
+ end
237
+ add_message "google.cloud.dataform.v1beta1.ListCompilationResultsRequest" do
238
+ optional :parent, :string, 1
239
+ optional :page_size, :int32, 2
240
+ optional :page_token, :string, 3
241
+ end
242
+ add_message "google.cloud.dataform.v1beta1.ListCompilationResultsResponse" do
243
+ repeated :compilation_results, :message, 1, "google.cloud.dataform.v1beta1.CompilationResult"
244
+ optional :next_page_token, :string, 2
245
+ repeated :unreachable, :string, 3
246
+ end
247
+ add_message "google.cloud.dataform.v1beta1.GetCompilationResultRequest" do
248
+ optional :name, :string, 1
249
+ end
250
+ add_message "google.cloud.dataform.v1beta1.CreateCompilationResultRequest" do
251
+ optional :parent, :string, 1
252
+ optional :compilation_result, :message, 2, "google.cloud.dataform.v1beta1.CompilationResult"
253
+ end
254
+ add_message "google.cloud.dataform.v1beta1.Target" do
255
+ optional :database, :string, 1
256
+ optional :schema, :string, 2
257
+ optional :name, :string, 3
258
+ end
259
+ add_message "google.cloud.dataform.v1beta1.RelationDescriptor" do
260
+ optional :description, :string, 1
261
+ repeated :columns, :message, 2, "google.cloud.dataform.v1beta1.RelationDescriptor.ColumnDescriptor"
262
+ map :bigquery_labels, :string, :string, 3
263
+ end
264
+ add_message "google.cloud.dataform.v1beta1.RelationDescriptor.ColumnDescriptor" do
265
+ repeated :path, :string, 1
266
+ optional :description, :string, 2
267
+ repeated :bigquery_policy_tags, :string, 3
268
+ end
269
+ add_message "google.cloud.dataform.v1beta1.CompilationResultAction" do
270
+ optional :target, :message, 1, "google.cloud.dataform.v1beta1.Target"
271
+ optional :canonical_target, :message, 2, "google.cloud.dataform.v1beta1.Target"
272
+ optional :file_path, :string, 3
273
+ oneof :compiled_object do
274
+ optional :relation, :message, 4, "google.cloud.dataform.v1beta1.CompilationResultAction.Relation"
275
+ optional :operations, :message, 5, "google.cloud.dataform.v1beta1.CompilationResultAction.Operations"
276
+ optional :assertion, :message, 6, "google.cloud.dataform.v1beta1.CompilationResultAction.Assertion"
277
+ optional :declaration, :message, 7, "google.cloud.dataform.v1beta1.CompilationResultAction.Declaration"
278
+ end
279
+ end
280
+ add_message "google.cloud.dataform.v1beta1.CompilationResultAction.Relation" do
281
+ repeated :dependency_targets, :message, 1, "google.cloud.dataform.v1beta1.Target"
282
+ optional :disabled, :bool, 2
283
+ repeated :tags, :string, 3
284
+ optional :relation_descriptor, :message, 4, "google.cloud.dataform.v1beta1.RelationDescriptor"
285
+ optional :relation_type, :enum, 5, "google.cloud.dataform.v1beta1.CompilationResultAction.Relation.RelationType"
286
+ optional :select_query, :string, 6
287
+ repeated :pre_operations, :string, 7
288
+ repeated :post_operations, :string, 8
289
+ optional :incremental_table_config, :message, 9, "google.cloud.dataform.v1beta1.CompilationResultAction.Relation.IncrementalTableConfig"
290
+ optional :partition_expression, :string, 10
291
+ repeated :cluster_expressions, :string, 11
292
+ optional :partition_expiration_days, :int32, 12
293
+ optional :require_partition_filter, :bool, 13
294
+ map :additional_options, :string, :string, 14
295
+ end
296
+ add_message "google.cloud.dataform.v1beta1.CompilationResultAction.Relation.IncrementalTableConfig" do
297
+ optional :incremental_select_query, :string, 1
298
+ optional :refresh_disabled, :bool, 2
299
+ repeated :unique_key_parts, :string, 3
300
+ optional :update_partition_filter, :string, 4
301
+ repeated :incremental_pre_operations, :string, 5
302
+ repeated :incremental_post_operations, :string, 6
303
+ end
304
+ add_enum "google.cloud.dataform.v1beta1.CompilationResultAction.Relation.RelationType" do
305
+ value :RELATION_TYPE_UNSPECIFIED, 0
306
+ value :TABLE, 1
307
+ value :VIEW, 2
308
+ value :INCREMENTAL_TABLE, 3
309
+ value :MATERIALIZED_VIEW, 4
310
+ end
311
+ add_message "google.cloud.dataform.v1beta1.CompilationResultAction.Operations" do
312
+ repeated :dependency_targets, :message, 1, "google.cloud.dataform.v1beta1.Target"
313
+ optional :disabled, :bool, 2
314
+ repeated :tags, :string, 3
315
+ optional :relation_descriptor, :message, 6, "google.cloud.dataform.v1beta1.RelationDescriptor"
316
+ repeated :queries, :string, 4
317
+ optional :has_output, :bool, 5
318
+ end
319
+ add_message "google.cloud.dataform.v1beta1.CompilationResultAction.Assertion" do
320
+ repeated :dependency_targets, :message, 1, "google.cloud.dataform.v1beta1.Target"
321
+ optional :parent_action, :message, 5, "google.cloud.dataform.v1beta1.Target"
322
+ optional :disabled, :bool, 2
323
+ repeated :tags, :string, 3
324
+ optional :select_query, :string, 4
325
+ optional :relation_descriptor, :message, 6, "google.cloud.dataform.v1beta1.RelationDescriptor"
326
+ end
327
+ add_message "google.cloud.dataform.v1beta1.CompilationResultAction.Declaration" do
328
+ optional :relation_descriptor, :message, 1, "google.cloud.dataform.v1beta1.RelationDescriptor"
329
+ end
330
+ add_message "google.cloud.dataform.v1beta1.QueryCompilationResultActionsRequest" do
331
+ optional :name, :string, 1
332
+ optional :page_size, :int32, 2
333
+ optional :page_token, :string, 3
334
+ optional :filter, :string, 4
335
+ end
336
+ add_message "google.cloud.dataform.v1beta1.QueryCompilationResultActionsResponse" do
337
+ repeated :compilation_result_actions, :message, 1, "google.cloud.dataform.v1beta1.CompilationResultAction"
338
+ optional :next_page_token, :string, 2
339
+ end
340
+ add_message "google.cloud.dataform.v1beta1.WorkflowInvocation" do
341
+ optional :name, :string, 1
342
+ optional :compilation_result, :string, 2
343
+ optional :invocation_config, :message, 3, "google.cloud.dataform.v1beta1.WorkflowInvocation.InvocationConfig"
344
+ optional :state, :enum, 4, "google.cloud.dataform.v1beta1.WorkflowInvocation.State"
345
+ optional :invocation_timing, :message, 5, "google.type.Interval"
346
+ end
347
+ add_message "google.cloud.dataform.v1beta1.WorkflowInvocation.InvocationConfig" do
348
+ repeated :included_targets, :message, 1, "google.cloud.dataform.v1beta1.Target"
349
+ repeated :included_tags, :string, 2
350
+ optional :transitive_dependencies_included, :bool, 3
351
+ optional :transitive_dependents_included, :bool, 4
352
+ optional :fully_refresh_incremental_tables_enabled, :bool, 5
353
+ end
354
+ add_enum "google.cloud.dataform.v1beta1.WorkflowInvocation.State" do
355
+ value :STATE_UNSPECIFIED, 0
356
+ value :RUNNING, 1
357
+ value :SUCCEEDED, 2
358
+ value :CANCELLED, 3
359
+ value :FAILED, 4
360
+ value :CANCELING, 5
361
+ end
362
+ add_message "google.cloud.dataform.v1beta1.ListWorkflowInvocationsRequest" do
363
+ optional :parent, :string, 1
364
+ optional :page_size, :int32, 2
365
+ optional :page_token, :string, 3
366
+ end
367
+ add_message "google.cloud.dataform.v1beta1.ListWorkflowInvocationsResponse" do
368
+ repeated :workflow_invocations, :message, 1, "google.cloud.dataform.v1beta1.WorkflowInvocation"
369
+ optional :next_page_token, :string, 2
370
+ repeated :unreachable, :string, 3
371
+ end
372
+ add_message "google.cloud.dataform.v1beta1.GetWorkflowInvocationRequest" do
373
+ optional :name, :string, 1
374
+ end
375
+ add_message "google.cloud.dataform.v1beta1.CreateWorkflowInvocationRequest" do
376
+ optional :parent, :string, 1
377
+ optional :workflow_invocation, :message, 2, "google.cloud.dataform.v1beta1.WorkflowInvocation"
378
+ end
379
+ add_message "google.cloud.dataform.v1beta1.DeleteWorkflowInvocationRequest" do
380
+ optional :name, :string, 1
381
+ end
382
+ add_message "google.cloud.dataform.v1beta1.CancelWorkflowInvocationRequest" do
383
+ optional :name, :string, 1
384
+ end
385
+ add_message "google.cloud.dataform.v1beta1.WorkflowInvocationAction" do
386
+ optional :target, :message, 1, "google.cloud.dataform.v1beta1.Target"
387
+ optional :canonical_target, :message, 2, "google.cloud.dataform.v1beta1.Target"
388
+ optional :state, :enum, 4, "google.cloud.dataform.v1beta1.WorkflowInvocationAction.State"
389
+ optional :failure_reason, :string, 7
390
+ optional :invocation_timing, :message, 5, "google.type.Interval"
391
+ optional :bigquery_action, :message, 6, "google.cloud.dataform.v1beta1.WorkflowInvocationAction.BigQueryAction"
392
+ end
393
+ add_message "google.cloud.dataform.v1beta1.WorkflowInvocationAction.BigQueryAction" do
394
+ optional :sql_script, :string, 1
395
+ end
396
+ add_enum "google.cloud.dataform.v1beta1.WorkflowInvocationAction.State" do
397
+ value :PENDING, 0
398
+ value :RUNNING, 1
399
+ value :SKIPPED, 2
400
+ value :DISABLED, 3
401
+ value :SUCCEEDED, 4
402
+ value :CANCELLED, 5
403
+ value :FAILED, 6
404
+ end
405
+ add_message "google.cloud.dataform.v1beta1.QueryWorkflowInvocationActionsRequest" do
406
+ optional :name, :string, 1
407
+ optional :page_size, :int32, 2
408
+ optional :page_token, :string, 3
409
+ end
410
+ add_message "google.cloud.dataform.v1beta1.QueryWorkflowInvocationActionsResponse" do
411
+ repeated :workflow_invocation_actions, :message, 1, "google.cloud.dataform.v1beta1.WorkflowInvocationAction"
412
+ optional :next_page_token, :string, 2
413
+ end
414
+ end
415
+ end
416
+
417
+ module Google
418
+ module Cloud
419
+ module Dataform
420
+ module V1beta1
421
+ Repository = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.Repository").msgclass
422
+ Repository::GitRemoteSettings = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.Repository.GitRemoteSettings").msgclass
423
+ Repository::GitRemoteSettings::TokenStatus = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.Repository.GitRemoteSettings.TokenStatus").enummodule
424
+ ListRepositoriesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.ListRepositoriesRequest").msgclass
425
+ ListRepositoriesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.ListRepositoriesResponse").msgclass
426
+ GetRepositoryRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.GetRepositoryRequest").msgclass
427
+ CreateRepositoryRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.CreateRepositoryRequest").msgclass
428
+ UpdateRepositoryRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.UpdateRepositoryRequest").msgclass
429
+ DeleteRepositoryRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.DeleteRepositoryRequest").msgclass
430
+ FetchRemoteBranchesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.FetchRemoteBranchesRequest").msgclass
431
+ FetchRemoteBranchesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.FetchRemoteBranchesResponse").msgclass
432
+ Workspace = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.Workspace").msgclass
433
+ ListWorkspacesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.ListWorkspacesRequest").msgclass
434
+ ListWorkspacesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.ListWorkspacesResponse").msgclass
435
+ GetWorkspaceRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.GetWorkspaceRequest").msgclass
436
+ CreateWorkspaceRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.CreateWorkspaceRequest").msgclass
437
+ DeleteWorkspaceRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.DeleteWorkspaceRequest").msgclass
438
+ CommitAuthor = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.CommitAuthor").msgclass
439
+ PullGitCommitsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.PullGitCommitsRequest").msgclass
440
+ PushGitCommitsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.PushGitCommitsRequest").msgclass
441
+ FetchFileGitStatusesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.FetchFileGitStatusesRequest").msgclass
442
+ FetchFileGitStatusesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.FetchFileGitStatusesResponse").msgclass
443
+ FetchFileGitStatusesResponse::UncommittedFileChange = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.FetchFileGitStatusesResponse.UncommittedFileChange").msgclass
444
+ FetchFileGitStatusesResponse::UncommittedFileChange::State = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.FetchFileGitStatusesResponse.UncommittedFileChange.State").enummodule
445
+ FetchGitAheadBehindRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.FetchGitAheadBehindRequest").msgclass
446
+ FetchGitAheadBehindResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.FetchGitAheadBehindResponse").msgclass
447
+ CommitWorkspaceChangesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.CommitWorkspaceChangesRequest").msgclass
448
+ ResetWorkspaceChangesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.ResetWorkspaceChangesRequest").msgclass
449
+ FetchFileDiffRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.FetchFileDiffRequest").msgclass
450
+ FetchFileDiffResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.FetchFileDiffResponse").msgclass
451
+ QueryDirectoryContentsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.QueryDirectoryContentsRequest").msgclass
452
+ QueryDirectoryContentsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.QueryDirectoryContentsResponse").msgclass
453
+ QueryDirectoryContentsResponse::DirectoryEntry = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.QueryDirectoryContentsResponse.DirectoryEntry").msgclass
454
+ MakeDirectoryRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.MakeDirectoryRequest").msgclass
455
+ MakeDirectoryResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.MakeDirectoryResponse").msgclass
456
+ RemoveDirectoryRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.RemoveDirectoryRequest").msgclass
457
+ MoveDirectoryRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.MoveDirectoryRequest").msgclass
458
+ MoveDirectoryResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.MoveDirectoryResponse").msgclass
459
+ ReadFileRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.ReadFileRequest").msgclass
460
+ ReadFileResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.ReadFileResponse").msgclass
461
+ RemoveFileRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.RemoveFileRequest").msgclass
462
+ MoveFileRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.MoveFileRequest").msgclass
463
+ MoveFileResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.MoveFileResponse").msgclass
464
+ WriteFileRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.WriteFileRequest").msgclass
465
+ WriteFileResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.WriteFileResponse").msgclass
466
+ InstallNpmPackagesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.InstallNpmPackagesRequest").msgclass
467
+ InstallNpmPackagesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.InstallNpmPackagesResponse").msgclass
468
+ CompilationResult = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.CompilationResult").msgclass
469
+ CompilationResult::CodeCompilationConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.CompilationResult.CodeCompilationConfig").msgclass
470
+ CompilationResult::CompilationError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.CompilationResult.CompilationError").msgclass
471
+ ListCompilationResultsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.ListCompilationResultsRequest").msgclass
472
+ ListCompilationResultsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.ListCompilationResultsResponse").msgclass
473
+ GetCompilationResultRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.GetCompilationResultRequest").msgclass
474
+ CreateCompilationResultRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.CreateCompilationResultRequest").msgclass
475
+ Target = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.Target").msgclass
476
+ RelationDescriptor = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.RelationDescriptor").msgclass
477
+ RelationDescriptor::ColumnDescriptor = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.RelationDescriptor.ColumnDescriptor").msgclass
478
+ CompilationResultAction = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.CompilationResultAction").msgclass
479
+ CompilationResultAction::Relation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.CompilationResultAction.Relation").msgclass
480
+ CompilationResultAction::Relation::IncrementalTableConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.CompilationResultAction.Relation.IncrementalTableConfig").msgclass
481
+ CompilationResultAction::Relation::RelationType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.CompilationResultAction.Relation.RelationType").enummodule
482
+ CompilationResultAction::Operations = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.CompilationResultAction.Operations").msgclass
483
+ CompilationResultAction::Assertion = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.CompilationResultAction.Assertion").msgclass
484
+ CompilationResultAction::Declaration = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.CompilationResultAction.Declaration").msgclass
485
+ QueryCompilationResultActionsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.QueryCompilationResultActionsRequest").msgclass
486
+ QueryCompilationResultActionsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.QueryCompilationResultActionsResponse").msgclass
487
+ WorkflowInvocation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.WorkflowInvocation").msgclass
488
+ WorkflowInvocation::InvocationConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.WorkflowInvocation.InvocationConfig").msgclass
489
+ WorkflowInvocation::State = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.WorkflowInvocation.State").enummodule
490
+ ListWorkflowInvocationsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.ListWorkflowInvocationsRequest").msgclass
491
+ ListWorkflowInvocationsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.ListWorkflowInvocationsResponse").msgclass
492
+ GetWorkflowInvocationRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.GetWorkflowInvocationRequest").msgclass
493
+ CreateWorkflowInvocationRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.CreateWorkflowInvocationRequest").msgclass
494
+ DeleteWorkflowInvocationRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.DeleteWorkflowInvocationRequest").msgclass
495
+ CancelWorkflowInvocationRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.CancelWorkflowInvocationRequest").msgclass
496
+ WorkflowInvocationAction = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.WorkflowInvocationAction").msgclass
497
+ WorkflowInvocationAction::BigQueryAction = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.WorkflowInvocationAction.BigQueryAction").msgclass
498
+ WorkflowInvocationAction::State = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.WorkflowInvocationAction.State").enummodule
499
+ QueryWorkflowInvocationActionsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.QueryWorkflowInvocationActionsRequest").msgclass
500
+ QueryWorkflowInvocationActionsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.dataform.v1beta1.QueryWorkflowInvocationActionsResponse").msgclass
501
+ end
502
+ end
503
+ end
504
+ end
@@ -0,0 +1,117 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # Source: google/cloud/dataform/v1beta1/dataform.proto for package 'Google.Cloud.Dataform.V1beta1'
3
+ # Original file comments:
4
+ # Copyright 2022 Google LLC
5
+ #
6
+ # Licensed under the Apache License, Version 2.0 (the "License");
7
+ # you may not use this file except in compliance with the License.
8
+ # You may obtain a copy of the License at
9
+ #
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
+ #
12
+ # Unless required by applicable law or agreed to in writing, software
13
+ # distributed under the License is distributed on an "AS IS" BASIS,
14
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ # See the License for the specific language governing permissions and
16
+ # limitations under the License.
17
+ #
18
+
19
+ require 'grpc'
20
+ require 'google/cloud/dataform/v1beta1/dataform_pb'
21
+
22
+ module Google
23
+ module Cloud
24
+ module Dataform
25
+ module V1beta1
26
+ module Dataform
27
+ # Dataform is a service to develop, create, document, test, and update curated
28
+ # tables in BigQuery.
29
+ class Service
30
+
31
+ include ::GRPC::GenericService
32
+
33
+ self.marshal_class_method = :encode
34
+ self.unmarshal_class_method = :decode
35
+ self.service_name = 'google.cloud.dataform.v1beta1.Dataform'
36
+
37
+ # Lists Repositories in a given project and location.
38
+ rpc :ListRepositories, ::Google::Cloud::Dataform::V1beta1::ListRepositoriesRequest, ::Google::Cloud::Dataform::V1beta1::ListRepositoriesResponse
39
+ # Fetches a single Repository.
40
+ rpc :GetRepository, ::Google::Cloud::Dataform::V1beta1::GetRepositoryRequest, ::Google::Cloud::Dataform::V1beta1::Repository
41
+ # Creates a new Repository in a given project and location.
42
+ rpc :CreateRepository, ::Google::Cloud::Dataform::V1beta1::CreateRepositoryRequest, ::Google::Cloud::Dataform::V1beta1::Repository
43
+ # Updates a single Repository.
44
+ rpc :UpdateRepository, ::Google::Cloud::Dataform::V1beta1::UpdateRepositoryRequest, ::Google::Cloud::Dataform::V1beta1::Repository
45
+ # Deletes a single Repository.
46
+ rpc :DeleteRepository, ::Google::Cloud::Dataform::V1beta1::DeleteRepositoryRequest, ::Google::Protobuf::Empty
47
+ # Fetches a Repository's remote branches.
48
+ rpc :FetchRemoteBranches, ::Google::Cloud::Dataform::V1beta1::FetchRemoteBranchesRequest, ::Google::Cloud::Dataform::V1beta1::FetchRemoteBranchesResponse
49
+ # Lists Workspaces in a given Repository.
50
+ rpc :ListWorkspaces, ::Google::Cloud::Dataform::V1beta1::ListWorkspacesRequest, ::Google::Cloud::Dataform::V1beta1::ListWorkspacesResponse
51
+ # Fetches a single Workspace.
52
+ rpc :GetWorkspace, ::Google::Cloud::Dataform::V1beta1::GetWorkspaceRequest, ::Google::Cloud::Dataform::V1beta1::Workspace
53
+ # Creates a new Workspace in a given Repository.
54
+ rpc :CreateWorkspace, ::Google::Cloud::Dataform::V1beta1::CreateWorkspaceRequest, ::Google::Cloud::Dataform::V1beta1::Workspace
55
+ # Deletes a single Workspace.
56
+ rpc :DeleteWorkspace, ::Google::Cloud::Dataform::V1beta1::DeleteWorkspaceRequest, ::Google::Protobuf::Empty
57
+ # Installs dependency NPM packages (inside a Workspace).
58
+ rpc :InstallNpmPackages, ::Google::Cloud::Dataform::V1beta1::InstallNpmPackagesRequest, ::Google::Cloud::Dataform::V1beta1::InstallNpmPackagesResponse
59
+ # Pulls Git commits from the Repository's remote into a Workspace.
60
+ rpc :PullGitCommits, ::Google::Cloud::Dataform::V1beta1::PullGitCommitsRequest, ::Google::Protobuf::Empty
61
+ # Pushes Git commits from a Workspace to the Repository's remote.
62
+ rpc :PushGitCommits, ::Google::Cloud::Dataform::V1beta1::PushGitCommitsRequest, ::Google::Protobuf::Empty
63
+ # Fetches Git statuses for the files in a Workspace.
64
+ rpc :FetchFileGitStatuses, ::Google::Cloud::Dataform::V1beta1::FetchFileGitStatusesRequest, ::Google::Cloud::Dataform::V1beta1::FetchFileGitStatusesResponse
65
+ # Fetches Git ahead/behind against a remote branch.
66
+ rpc :FetchGitAheadBehind, ::Google::Cloud::Dataform::V1beta1::FetchGitAheadBehindRequest, ::Google::Cloud::Dataform::V1beta1::FetchGitAheadBehindResponse
67
+ # Applies a Git commit for uncommitted files in a Workspace.
68
+ rpc :CommitWorkspaceChanges, ::Google::Cloud::Dataform::V1beta1::CommitWorkspaceChangesRequest, ::Google::Protobuf::Empty
69
+ # Performs a Git reset for uncommitted files in a Workspace.
70
+ rpc :ResetWorkspaceChanges, ::Google::Cloud::Dataform::V1beta1::ResetWorkspaceChangesRequest, ::Google::Protobuf::Empty
71
+ # Fetches Git diff for an uncommitted file in a Workspace.
72
+ rpc :FetchFileDiff, ::Google::Cloud::Dataform::V1beta1::FetchFileDiffRequest, ::Google::Cloud::Dataform::V1beta1::FetchFileDiffResponse
73
+ # Returns the contents of a given Workspace directory.
74
+ rpc :QueryDirectoryContents, ::Google::Cloud::Dataform::V1beta1::QueryDirectoryContentsRequest, ::Google::Cloud::Dataform::V1beta1::QueryDirectoryContentsResponse
75
+ # Creates a directory inside a Workspace.
76
+ rpc :MakeDirectory, ::Google::Cloud::Dataform::V1beta1::MakeDirectoryRequest, ::Google::Cloud::Dataform::V1beta1::MakeDirectoryResponse
77
+ # Deletes a directory (inside a Workspace) and all of its contents.
78
+ rpc :RemoveDirectory, ::Google::Cloud::Dataform::V1beta1::RemoveDirectoryRequest, ::Google::Protobuf::Empty
79
+ # Moves a directory (inside a Workspace), and all of its contents, to a new
80
+ # location.
81
+ rpc :MoveDirectory, ::Google::Cloud::Dataform::V1beta1::MoveDirectoryRequest, ::Google::Cloud::Dataform::V1beta1::MoveDirectoryResponse
82
+ # Returns the contents of a file (inside a Workspace).
83
+ rpc :ReadFile, ::Google::Cloud::Dataform::V1beta1::ReadFileRequest, ::Google::Cloud::Dataform::V1beta1::ReadFileResponse
84
+ # Deletes a file (inside a Workspace).
85
+ rpc :RemoveFile, ::Google::Cloud::Dataform::V1beta1::RemoveFileRequest, ::Google::Protobuf::Empty
86
+ # Moves a file (inside a Workspace) to a new location.
87
+ rpc :MoveFile, ::Google::Cloud::Dataform::V1beta1::MoveFileRequest, ::Google::Cloud::Dataform::V1beta1::MoveFileResponse
88
+ # Writes to a file (inside a Workspace).
89
+ rpc :WriteFile, ::Google::Cloud::Dataform::V1beta1::WriteFileRequest, ::Google::Cloud::Dataform::V1beta1::WriteFileResponse
90
+ # Lists CompilationResults in a given Repository.
91
+ rpc :ListCompilationResults, ::Google::Cloud::Dataform::V1beta1::ListCompilationResultsRequest, ::Google::Cloud::Dataform::V1beta1::ListCompilationResultsResponse
92
+ # Fetches a single CompilationResult.
93
+ rpc :GetCompilationResult, ::Google::Cloud::Dataform::V1beta1::GetCompilationResultRequest, ::Google::Cloud::Dataform::V1beta1::CompilationResult
94
+ # Creates a new CompilationResult in a given project and location.
95
+ rpc :CreateCompilationResult, ::Google::Cloud::Dataform::V1beta1::CreateCompilationResultRequest, ::Google::Cloud::Dataform::V1beta1::CompilationResult
96
+ # Returns CompilationResultActions in a given CompilationResult.
97
+ rpc :QueryCompilationResultActions, ::Google::Cloud::Dataform::V1beta1::QueryCompilationResultActionsRequest, ::Google::Cloud::Dataform::V1beta1::QueryCompilationResultActionsResponse
98
+ # Lists WorkflowInvocations in a given Repository.
99
+ rpc :ListWorkflowInvocations, ::Google::Cloud::Dataform::V1beta1::ListWorkflowInvocationsRequest, ::Google::Cloud::Dataform::V1beta1::ListWorkflowInvocationsResponse
100
+ # Fetches a single WorkflowInvocation.
101
+ rpc :GetWorkflowInvocation, ::Google::Cloud::Dataform::V1beta1::GetWorkflowInvocationRequest, ::Google::Cloud::Dataform::V1beta1::WorkflowInvocation
102
+ # Creates a new WorkflowInvocation in a given Repository.
103
+ rpc :CreateWorkflowInvocation, ::Google::Cloud::Dataform::V1beta1::CreateWorkflowInvocationRequest, ::Google::Cloud::Dataform::V1beta1::WorkflowInvocation
104
+ # Deletes a single WorkflowInvocation.
105
+ rpc :DeleteWorkflowInvocation, ::Google::Cloud::Dataform::V1beta1::DeleteWorkflowInvocationRequest, ::Google::Protobuf::Empty
106
+ # Requests cancellation of a running WorkflowInvocation.
107
+ rpc :CancelWorkflowInvocation, ::Google::Cloud::Dataform::V1beta1::CancelWorkflowInvocationRequest, ::Google::Protobuf::Empty
108
+ # Returns WorkflowInvocationActions in a given WorkflowInvocation.
109
+ rpc :QueryWorkflowInvocationActions, ::Google::Cloud::Dataform::V1beta1::QueryWorkflowInvocationActionsRequest, ::Google::Cloud::Dataform::V1beta1::QueryWorkflowInvocationActionsResponse
110
+ end
111
+
112
+ Stub = Service.rpc_stub_class
113
+ end
114
+ end
115
+ end
116
+ end
117
+ end
@@ -1,10 +1,12 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright 2022 Google LLC
2
4
  #
3
5
  # Licensed under the Apache License, Version 2.0 (the "License");
4
6
  # you may not use this file except in compliance with the License.
5
7
  # You may obtain a copy of the License at
6
8
  #
7
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # https://www.apache.org/licenses/LICENSE-2.0
8
10
  #
9
11
  # Unless required by applicable law or agreed to in writing, software
10
12
  # distributed under the License is distributed on an "AS IS" BASIS,
@@ -12,11 +14,14 @@
12
14
  # See the License for the specific language governing permissions and
13
15
  # limitations under the License.
14
16
 
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+
15
20
  module Google
16
21
  module Cloud
17
22
  module Dataform
18
23
  module V1beta1
19
- VERSION = "0.a"
24
+ VERSION = "0.1.0"
20
25
  end
21
26
  end
22
27
  end