google-cloud-dataform-v1beta1 0.8.0 → 0.10.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/dataform/v1beta1/dataform/client.rb +7 -0
- data/lib/google/cloud/dataform/v1beta1/dataform/rest/client.rb +31 -12
- data/lib/google/cloud/dataform/v1beta1/version.rb +1 -1
- data/proto_docs/google/api/client.rb +8 -0
- 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: 87c349db006c274d000915fe26bf6b6252f39d17a98b9efb6307569a55f587cd
|
4
|
+
data.tar.gz: e36dcaa4ac3063b21d42556c86bccc5226d9c17e2ac13ca2b48317648c17528c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 752515114ab9de9fbe74a516a342c5677078681ed40c1c8216a6173f73a605763aabf11f17a4020a418a15d09d49220c972272feae448a95f6c48722e95f2b20
|
7
|
+
data.tar.gz: 0f2010a855ae2f24cbe6de285242dd31cfc956b8d35cee3acb32fc08341620baf3aaf9e15829e1dd76a274c8735742cbbe425c00de1c66e12856da0e6d1ce301
|
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
|
@@ -249,10 +249,10 @@ module Google
|
|
249
249
|
# @param filter [::String]
|
250
250
|
# Optional. Filter for the returned list.
|
251
251
|
# @yield [result, operation] Access the result along with the TransportOperation object
|
252
|
-
# @yieldparam result [::Google::Cloud::Dataform::V1beta1::
|
252
|
+
# @yieldparam result [::Gapic::Rest::PagedEnumerable<::Google::Cloud::Dataform::V1beta1::Repository>]
|
253
253
|
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
254
254
|
#
|
255
|
-
# @return [::Google::Cloud::Dataform::V1beta1::
|
255
|
+
# @return [::Gapic::Rest::PagedEnumerable<::Google::Cloud::Dataform::V1beta1::Repository>]
|
256
256
|
#
|
257
257
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
258
258
|
#
|
@@ -304,7 +304,9 @@ module Google
|
|
304
304
|
retry_policy: @config.retry_policy
|
305
305
|
|
306
306
|
@dataform_stub.list_repositories request, options do |result, operation|
|
307
|
+
result = ::Gapic::Rest::PagedEnumerable.new @dataform_stub, :list_repositories, "repositories", request, result, options
|
307
308
|
yield result, operation if block_given?
|
309
|
+
throw :response, result
|
308
310
|
end
|
309
311
|
rescue ::Gapic::Rest::Error => e
|
310
312
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1199,10 +1201,10 @@ module Google
|
|
1199
1201
|
# @param filter [::String]
|
1200
1202
|
# Optional. Filter for the returned list.
|
1201
1203
|
# @yield [result, operation] Access the result along with the TransportOperation object
|
1202
|
-
# @yieldparam result [::Google::Cloud::Dataform::V1beta1::
|
1204
|
+
# @yieldparam result [::Gapic::Rest::PagedEnumerable<::Google::Cloud::Dataform::V1beta1::Workspace>]
|
1203
1205
|
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
1204
1206
|
#
|
1205
|
-
# @return [::Google::Cloud::Dataform::V1beta1::
|
1207
|
+
# @return [::Gapic::Rest::PagedEnumerable<::Google::Cloud::Dataform::V1beta1::Workspace>]
|
1206
1208
|
#
|
1207
1209
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
1208
1210
|
#
|
@@ -1254,7 +1256,9 @@ module Google
|
|
1254
1256
|
retry_policy: @config.retry_policy
|
1255
1257
|
|
1256
1258
|
@dataform_stub.list_workspaces request, options do |result, operation|
|
1259
|
+
result = ::Gapic::Rest::PagedEnumerable.new @dataform_stub, :list_workspaces, "workspaces", request, result, options
|
1257
1260
|
yield result, operation if block_given?
|
1261
|
+
throw :response, result
|
1258
1262
|
end
|
1259
1263
|
rescue ::Gapic::Rest::Error => e
|
1260
1264
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -2858,10 +2862,10 @@ module Google
|
|
2858
2862
|
# When paginating, all other parameters provided to `ListReleaseConfigs`
|
2859
2863
|
# must match the call that provided the page token.
|
2860
2864
|
# @yield [result, operation] Access the result along with the TransportOperation object
|
2861
|
-
# @yieldparam result [::Google::Cloud::Dataform::V1beta1::
|
2865
|
+
# @yieldparam result [::Gapic::Rest::PagedEnumerable<::Google::Cloud::Dataform::V1beta1::ReleaseConfig>]
|
2862
2866
|
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
2863
2867
|
#
|
2864
|
-
# @return [::Google::Cloud::Dataform::V1beta1::
|
2868
|
+
# @return [::Gapic::Rest::PagedEnumerable<::Google::Cloud::Dataform::V1beta1::ReleaseConfig>]
|
2865
2869
|
#
|
2866
2870
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
2867
2871
|
#
|
@@ -2913,7 +2917,9 @@ module Google
|
|
2913
2917
|
retry_policy: @config.retry_policy
|
2914
2918
|
|
2915
2919
|
@dataform_stub.list_release_configs request, options do |result, operation|
|
2920
|
+
result = ::Gapic::Rest::PagedEnumerable.new @dataform_stub, :list_release_configs, "release_configs", request, result, options
|
2916
2921
|
yield result, operation if block_given?
|
2922
|
+
throw :response, result
|
2917
2923
|
end
|
2918
2924
|
rescue ::Gapic::Rest::Error => e
|
2919
2925
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -3272,10 +3278,10 @@ module Google
|
|
3272
3278
|
# When paginating, all other parameters provided to `ListCompilationResults`
|
3273
3279
|
# must match the call that provided the page token.
|
3274
3280
|
# @yield [result, operation] Access the result along with the TransportOperation object
|
3275
|
-
# @yieldparam result [::Google::Cloud::Dataform::V1beta1::
|
3281
|
+
# @yieldparam result [::Gapic::Rest::PagedEnumerable<::Google::Cloud::Dataform::V1beta1::CompilationResult>]
|
3276
3282
|
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
3277
3283
|
#
|
3278
|
-
# @return [::Google::Cloud::Dataform::V1beta1::
|
3284
|
+
# @return [::Gapic::Rest::PagedEnumerable<::Google::Cloud::Dataform::V1beta1::CompilationResult>]
|
3279
3285
|
#
|
3280
3286
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
3281
3287
|
#
|
@@ -3327,7 +3333,9 @@ module Google
|
|
3327
3333
|
retry_policy: @config.retry_policy
|
3328
3334
|
|
3329
3335
|
@dataform_stub.list_compilation_results request, options do |result, operation|
|
3336
|
+
result = ::Gapic::Rest::PagedEnumerable.new @dataform_stub, :list_compilation_results, "compilation_results", request, result, options
|
3330
3337
|
yield result, operation if block_given?
|
3338
|
+
throw :response, result
|
3331
3339
|
end
|
3332
3340
|
rescue ::Gapic::Rest::Error => e
|
3333
3341
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -3623,10 +3631,10 @@ module Google
|
|
3623
3631
|
# When paginating, all other parameters provided to `ListWorkflowConfigs`
|
3624
3632
|
# must match the call that provided the page token.
|
3625
3633
|
# @yield [result, operation] Access the result along with the TransportOperation object
|
3626
|
-
# @yieldparam result [::Google::Cloud::Dataform::V1beta1::
|
3634
|
+
# @yieldparam result [::Gapic::Rest::PagedEnumerable<::Google::Cloud::Dataform::V1beta1::WorkflowConfig>]
|
3627
3635
|
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
3628
3636
|
#
|
3629
|
-
# @return [::Google::Cloud::Dataform::V1beta1::
|
3637
|
+
# @return [::Gapic::Rest::PagedEnumerable<::Google::Cloud::Dataform::V1beta1::WorkflowConfig>]
|
3630
3638
|
#
|
3631
3639
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
3632
3640
|
#
|
@@ -3678,7 +3686,9 @@ module Google
|
|
3678
3686
|
retry_policy: @config.retry_policy
|
3679
3687
|
|
3680
3688
|
@dataform_stub.list_workflow_configs request, options do |result, operation|
|
3689
|
+
result = ::Gapic::Rest::PagedEnumerable.new @dataform_stub, :list_workflow_configs, "workflow_configs", request, result, options
|
3681
3690
|
yield result, operation if block_given?
|
3691
|
+
throw :response, result
|
3682
3692
|
end
|
3683
3693
|
rescue ::Gapic::Rest::Error => e
|
3684
3694
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -4043,10 +4053,10 @@ module Google
|
|
4043
4053
|
# @param filter [::String]
|
4044
4054
|
# Optional. Filter for the returned list.
|
4045
4055
|
# @yield [result, operation] Access the result along with the TransportOperation object
|
4046
|
-
# @yieldparam result [::Google::Cloud::Dataform::V1beta1::
|
4056
|
+
# @yieldparam result [::Gapic::Rest::PagedEnumerable<::Google::Cloud::Dataform::V1beta1::WorkflowInvocation>]
|
4047
4057
|
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
4048
4058
|
#
|
4049
|
-
# @return [::Google::Cloud::Dataform::V1beta1::
|
4059
|
+
# @return [::Gapic::Rest::PagedEnumerable<::Google::Cloud::Dataform::V1beta1::WorkflowInvocation>]
|
4050
4060
|
#
|
4051
4061
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
4052
4062
|
#
|
@@ -4098,7 +4108,9 @@ module Google
|
|
4098
4108
|
retry_policy: @config.retry_policy
|
4099
4109
|
|
4100
4110
|
@dataform_stub.list_workflow_invocations request, options do |result, operation|
|
4111
|
+
result = ::Gapic::Rest::PagedEnumerable.new @dataform_stub, :list_workflow_invocations, "workflow_invocations", request, result, options
|
4101
4112
|
yield result, operation if block_given?
|
4113
|
+
throw :response, result
|
4102
4114
|
end
|
4103
4115
|
rescue ::Gapic::Rest::Error => e
|
4104
4116
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -4557,6 +4569,13 @@ module Google
|
|
4557
4569
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
4558
4570
|
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
4559
4571
|
# * (`nil`) indicating no credentials
|
4572
|
+
#
|
4573
|
+
# Warning: If you accept a credential configuration (JSON file or Hash) from an
|
4574
|
+
# external source for authentication to Google Cloud, you must validate it before
|
4575
|
+
# providing it to a Google API client library. Providing an unvalidated credential
|
4576
|
+
# configuration to Google APIs can compromise the security of your systems and data.
|
4577
|
+
# For more information, refer to [Validate credential configurations from external
|
4578
|
+
# sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
|
4560
4579
|
# @return [::Object]
|
4561
4580
|
# @!attribute [rw] scope
|
4562
4581
|
# The OAuth scopes
|
@@ -409,6 +409,14 @@ module Google
|
|
409
409
|
# @return [::Array<::String>]
|
410
410
|
# An allowlist of the fully qualified names of RPCs that should be included
|
411
411
|
# on public client surfaces.
|
412
|
+
# @!attribute [rw] generate_omitted_as_internal
|
413
|
+
# @return [::Boolean]
|
414
|
+
# Setting this to true indicates to the client generators that methods
|
415
|
+
# that would be excluded from the generation should instead be generated
|
416
|
+
# in a way that indicates these methods should not be consumed by
|
417
|
+
# end users. How this is expressed is up to individual language
|
418
|
+
# implementations to decide. Some examples may be: added annotations,
|
419
|
+
# obfuscated identifiers, or other language idiomatic patterns.
|
412
420
|
class SelectiveGapicGeneration
|
413
421
|
include ::Google::Protobuf::MessageExts
|
414
422
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -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.10.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-02-07 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.3
|
150
147
|
specification_version: 4
|
151
148
|
summary: Service to develop, version control, and operationalize SQL pipelines in
|
152
149
|
BigQuery.
|