google-cloud-dataform-v1beta1 0.8.0 → 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/google/cloud/dataform/v1beta1/dataform/client.rb +7 -0
- data/lib/google/cloud/dataform/v1beta1/dataform/rest/client.rb +7 -0
- data/lib/google/cloud/dataform/v1beta1/version.rb +1 -1
- data/proto_docs/google/cloud/dataform/v1beta1/dataform.rb +34 -0
- metadata +6 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a2305409e433cd7631b121561bb93fd29c5c5e0058d4854d96e0a76228169681
|
4
|
+
data.tar.gz: 10e9ba5cad5b8ee07c75e19d34a592764a9d6a35ea850f7341dc95068618c305
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8c2f8b7d71c6077ee49a9c4b04f51159bd292d3ab5f38d97f4ad974211606f9aeabe4ca1083d411f9d15fdba8fe848d63b7ef75c33fa110a5f01f0131c7036b2
|
7
|
+
data.tar.gz: 66b36fcba3bca3691268dc012e66bf113cb980835b829d322231bc7e3612b6bfb6cccc1510c43ce4f47013ab7bdc3ae4e9c82e9e4e00de88d5f59f5bd4285d9e
|
data/README.md
CHANGED
@@ -86,7 +86,7 @@ To browse ready to use code samples check [Google Cloud Samples](https://cloud.g
|
|
86
86
|
|
87
87
|
## Supported Ruby Versions
|
88
88
|
|
89
|
-
This library is supported on Ruby
|
89
|
+
This library is supported on Ruby 3.0+.
|
90
90
|
|
91
91
|
Google provides official support for Ruby versions that are actively supported
|
92
92
|
by Ruby Core—that is, Ruby versions that are either in normal maintenance or
|
@@ -4933,6 +4933,13 @@ module Google
|
|
4933
4933
|
# * (`GRPC::Core::Channel`) a gRPC channel with included credentials
|
4934
4934
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
4935
4935
|
# * (`nil`) indicating no credentials
|
4936
|
+
#
|
4937
|
+
# Warning: If you accept a credential configuration (JSON file or Hash) from an
|
4938
|
+
# external source for authentication to Google Cloud, you must validate it before
|
4939
|
+
# providing it to a Google API client library. Providing an unvalidated credential
|
4940
|
+
# configuration to Google APIs can compromise the security of your systems and data.
|
4941
|
+
# For more information, refer to [Validate credential configurations from external
|
4942
|
+
# sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
|
4936
4943
|
# @return [::Object]
|
4937
4944
|
# @!attribute [rw] scope
|
4938
4945
|
# The OAuth scopes
|
@@ -4557,6 +4557,13 @@ module Google
|
|
4557
4557
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
4558
4558
|
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
4559
4559
|
# * (`nil`) indicating no credentials
|
4560
|
+
#
|
4561
|
+
# Warning: If you accept a credential configuration (JSON file or Hash) from an
|
4562
|
+
# external source for authentication to Google Cloud, you must validate it before
|
4563
|
+
# providing it to a Google API client library. Providing an unvalidated credential
|
4564
|
+
# configuration to Google APIs can compromise the security of your systems and data.
|
4565
|
+
# For more information, refer to [Validate credential configurations from external
|
4566
|
+
# sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
|
4560
4567
|
# @return [::Object]
|
4561
4568
|
# @!attribute [rw] scope
|
4562
4569
|
# The OAuth scopes
|
@@ -272,9 +272,13 @@ module Google
|
|
272
272
|
# @!attribute [rw] write_file
|
273
273
|
# @return [::Google::Cloud::Dataform::V1beta1::CommitRepositoryChangesRequest::FileOperation::WriteFile]
|
274
274
|
# Represents the write operation.
|
275
|
+
#
|
276
|
+
# Note: The following fields are mutually exclusive: `write_file`, `delete_file`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
275
277
|
# @!attribute [rw] delete_file
|
276
278
|
# @return [::Google::Cloud::Dataform::V1beta1::CommitRepositoryChangesRequest::FileOperation::DeleteFile]
|
277
279
|
# Represents the delete operation.
|
280
|
+
#
|
281
|
+
# Note: The following fields are mutually exclusive: `delete_file`, `write_file`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
278
282
|
class FileOperation
|
279
283
|
include ::Google::Protobuf::MessageExts
|
280
284
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -798,9 +802,13 @@ module Google
|
|
798
802
|
# @!attribute [rw] file
|
799
803
|
# @return [::String]
|
800
804
|
# A file in the directory.
|
805
|
+
#
|
806
|
+
# Note: The following fields are mutually exclusive: `file`, `directory`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
801
807
|
# @!attribute [rw] directory
|
802
808
|
# @return [::String]
|
803
809
|
# A child directory in the directory.
|
810
|
+
#
|
811
|
+
# Note: The following fields are mutually exclusive: `directory`, `file`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
804
812
|
class DirectoryEntry
|
805
813
|
include ::Google::Protobuf::MessageExts
|
806
814
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -1007,10 +1015,14 @@ module Google
|
|
1007
1015
|
# The name of the created compilation result, if one was successfully
|
1008
1016
|
# created. Must be in the format
|
1009
1017
|
# `projects/*/locations/*/repositories/*/compilationResults/*`.
|
1018
|
+
#
|
1019
|
+
# Note: The following fields are mutually exclusive: `compilation_result`, `error_status`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
1010
1020
|
# @!attribute [rw] error_status
|
1011
1021
|
# @return [::Google::Rpc::Status]
|
1012
1022
|
# The error status encountered upon this attempt to create the
|
1013
1023
|
# compilation result, if the attempt was unsuccessful.
|
1024
|
+
#
|
1025
|
+
# Note: The following fields are mutually exclusive: `error_status`, `compilation_result`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
1014
1026
|
class ScheduledReleaseRecord
|
1015
1027
|
include ::Google::Protobuf::MessageExts
|
1016
1028
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -1114,16 +1126,22 @@ module Google
|
|
1114
1126
|
# - a commit SHA: `12ade345`
|
1115
1127
|
# - a tag: `tag1`
|
1116
1128
|
# - a branch name: `branch1`
|
1129
|
+
#
|
1130
|
+
# Note: The following fields are mutually exclusive: `git_commitish`, `workspace`, `release_config`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
1117
1131
|
# @!attribute [rw] workspace
|
1118
1132
|
# @return [::String]
|
1119
1133
|
# Immutable. The name of the workspace to compile. Must be in the format
|
1120
1134
|
# `projects/*/locations/*/repositories/*/workspaces/*`.
|
1135
|
+
#
|
1136
|
+
# Note: The following fields are mutually exclusive: `workspace`, `git_commitish`, `release_config`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
1121
1137
|
# @!attribute [rw] release_config
|
1122
1138
|
# @return [::String]
|
1123
1139
|
# Immutable. The name of the release config to compile. The release
|
1124
1140
|
# config's 'current_compilation_result' field will be updated to this
|
1125
1141
|
# compilation result. Must be in the format
|
1126
1142
|
# `projects/*/locations/*/repositories/*/releaseConfigs/*`.
|
1143
|
+
#
|
1144
|
+
# Note: The following fields are mutually exclusive: `release_config`, `git_commitish`, `workspace`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
1127
1145
|
# @!attribute [rw] code_compilation_config
|
1128
1146
|
# @return [::Google::Cloud::Dataform::V1beta1::CodeCompilationConfig]
|
1129
1147
|
# Immutable. If set, fields of `code_compilation_config` override the default
|
@@ -1338,15 +1356,23 @@ module Google
|
|
1338
1356
|
# @!attribute [rw] relation
|
1339
1357
|
# @return [::Google::Cloud::Dataform::V1beta1::CompilationResultAction::Relation]
|
1340
1358
|
# The database relation created/updated by this action.
|
1359
|
+
#
|
1360
|
+
# Note: The following fields are mutually exclusive: `relation`, `operations`, `assertion`, `declaration`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
1341
1361
|
# @!attribute [rw] operations
|
1342
1362
|
# @return [::Google::Cloud::Dataform::V1beta1::CompilationResultAction::Operations]
|
1343
1363
|
# The database operations executed by this action.
|
1364
|
+
#
|
1365
|
+
# Note: The following fields are mutually exclusive: `operations`, `relation`, `assertion`, `declaration`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
1344
1366
|
# @!attribute [rw] assertion
|
1345
1367
|
# @return [::Google::Cloud::Dataform::V1beta1::CompilationResultAction::Assertion]
|
1346
1368
|
# The assertion executed by this action.
|
1369
|
+
#
|
1370
|
+
# Note: The following fields are mutually exclusive: `assertion`, `relation`, `operations`, `declaration`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
1347
1371
|
# @!attribute [rw] declaration
|
1348
1372
|
# @return [::Google::Cloud::Dataform::V1beta1::CompilationResultAction::Declaration]
|
1349
1373
|
# The declaration declared by this action.
|
1374
|
+
#
|
1375
|
+
# Note: The following fields are mutually exclusive: `declaration`, `relation`, `operations`, `assertion`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
1350
1376
|
class CompilationResultAction
|
1351
1377
|
include ::Google::Protobuf::MessageExts
|
1352
1378
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -1610,10 +1636,14 @@ module Google
|
|
1610
1636
|
# The name of the created workflow invocation, if one was successfully
|
1611
1637
|
# created. Must be in the format
|
1612
1638
|
# `projects/*/locations/*/repositories/*/workflowInvocations/*`.
|
1639
|
+
#
|
1640
|
+
# Note: The following fields are mutually exclusive: `workflow_invocation`, `error_status`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
1613
1641
|
# @!attribute [rw] error_status
|
1614
1642
|
# @return [::Google::Rpc::Status]
|
1615
1643
|
# The error status encountered upon this attempt to create the
|
1616
1644
|
# workflow invocation, if the attempt was unsuccessful.
|
1645
|
+
#
|
1646
|
+
# Note: The following fields are mutually exclusive: `error_status`, `workflow_invocation`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
1617
1647
|
class ScheduledExecutionRecord
|
1618
1648
|
include ::Google::Protobuf::MessageExts
|
1619
1649
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -1743,10 +1773,14 @@ module Google
|
|
1743
1773
|
# Immutable. The name of the compilation result to use for this invocation.
|
1744
1774
|
# Must be in the format
|
1745
1775
|
# `projects/*/locations/*/repositories/*/compilationResults/*`.
|
1776
|
+
#
|
1777
|
+
# Note: The following fields are mutually exclusive: `compilation_result`, `workflow_config`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
1746
1778
|
# @!attribute [rw] workflow_config
|
1747
1779
|
# @return [::String]
|
1748
1780
|
# Immutable. The name of the workflow config to invoke. Must be in the
|
1749
1781
|
# format `projects/*/locations/*/repositories/*/workflowConfigs/*`.
|
1782
|
+
#
|
1783
|
+
# Note: The following fields are mutually exclusive: `workflow_config`, `compilation_result`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
1750
1784
|
# @!attribute [rw] invocation_config
|
1751
1785
|
# @return [::Google::Cloud::Dataform::V1beta1::InvocationConfig]
|
1752
1786
|
# Immutable. If left unset, a default InvocationConfig will be used.
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-dataform-v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.9.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-01-29 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: gapic-common
|
@@ -16,7 +15,7 @@ dependencies:
|
|
16
15
|
requirements:
|
17
16
|
- - ">="
|
18
17
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
18
|
+
version: 0.25.0
|
20
19
|
- - "<"
|
21
20
|
- !ruby/object:Gem::Version
|
22
21
|
version: 2.a
|
@@ -26,7 +25,7 @@ dependencies:
|
|
26
25
|
requirements:
|
27
26
|
- - ">="
|
28
27
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
28
|
+
version: 0.25.0
|
30
29
|
- - "<"
|
31
30
|
- !ruby/object:Gem::Version
|
32
31
|
version: 2.a
|
@@ -130,7 +129,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby
|
|
130
129
|
licenses:
|
131
130
|
- Apache-2.0
|
132
131
|
metadata: {}
|
133
|
-
post_install_message:
|
134
132
|
rdoc_options: []
|
135
133
|
require_paths:
|
136
134
|
- lib
|
@@ -138,15 +136,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
138
136
|
requirements:
|
139
137
|
- - ">="
|
140
138
|
- !ruby/object:Gem::Version
|
141
|
-
version: '
|
139
|
+
version: '3.0'
|
142
140
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
143
141
|
requirements:
|
144
142
|
- - ">="
|
145
143
|
- !ruby/object:Gem::Version
|
146
144
|
version: '0'
|
147
145
|
requirements: []
|
148
|
-
rubygems_version: 3.
|
149
|
-
signing_key:
|
146
|
+
rubygems_version: 3.6.2
|
150
147
|
specification_version: 4
|
151
148
|
summary: Service to develop, version control, and operationalize SQL pipelines in
|
152
149
|
BigQuery.
|