google-cloud-workflows 2.0.2 → 2.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.
- checksums.yaml +4 -4
- data/AUTHENTICATION.md +1 -1
- data/lib/google/cloud/workflows/executions.rb +5 -5
- data/lib/google/cloud/workflows/version.rb +1 -1
- metadata +22 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 66fbcc5dabaeb887f4ee2a76ff6f56aca0f13a64f3f5f89a794a5ba0c4812dbd
|
|
4
|
+
data.tar.gz: e8b590e896d04c75e2562f8cf9bea03e0eda4ab0f6dbaff40ab0b65b8952c623
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e09a0c20fe01a32853984f1868efca15d05ad3e270ed1a9140e6d87fd9a70212e19aff2fb60749eca194c27079cd136e62b262bf2f28be3d821de4de2363b3bc
|
|
7
|
+
data.tar.gz: 83ed93ad538b5f2e24e010adc624078234b47403897883fa3a8b3ec0699411ab2c1912f6b9be3a740ce428ee548ce16e8cd9f38956b1f5c535871c2395542661
|
data/AUTHENTICATION.md
CHANGED
|
@@ -64,7 +64,7 @@ containers where writing files is difficult or not encouraged.
|
|
|
64
64
|
|
|
65
65
|
The environment variables that google-cloud-workflows
|
|
66
66
|
checks for credentials are configured on the service Credentials class (such as
|
|
67
|
-
`::Google::Cloud::Workflows::
|
|
67
|
+
`::Google::Cloud::Workflows::V1::Workflows::Credentials`):
|
|
68
68
|
|
|
69
69
|
* `WORKFLOWS_CREDENTIALS` - Path to JSON file, or JSON contents
|
|
70
70
|
* `WORKFLOWS_KEYFILE` - Path to JSON file, or JSON contents
|
|
@@ -49,8 +49,8 @@ module Google
|
|
|
49
49
|
# Create a new client object for Executions.
|
|
50
50
|
#
|
|
51
51
|
# By default, this returns an instance of
|
|
52
|
-
# [Google::Cloud::Workflows::Executions::
|
|
53
|
-
# for version
|
|
52
|
+
# [Google::Cloud::Workflows::Executions::V1::Executions::Client](https://googleapis.dev/ruby/google-cloud-workflows-executions-v1/latest/Google/Cloud/Workflows/Executions/V1/Executions/Client.html)
|
|
53
|
+
# for version V1 of the API.
|
|
54
54
|
# However, you can specify specify a different API version by passing it in the
|
|
55
55
|
# `version` parameter. If the Executions service is
|
|
56
56
|
# supported by that API version, and the corresponding gem is available, the
|
|
@@ -59,13 +59,13 @@ module Google
|
|
|
59
59
|
# ## About Executions
|
|
60
60
|
#
|
|
61
61
|
# Executions is used to start and manage running instances of
|
|
62
|
-
# [Workflows][google.cloud.workflows.
|
|
62
|
+
# [Workflows][google.cloud.workflows.v1.Workflow] called executions.
|
|
63
63
|
#
|
|
64
64
|
# @param version [::String, ::Symbol] The API version to connect to. Optional.
|
|
65
|
-
# Defaults to `:
|
|
65
|
+
# Defaults to `:v1`.
|
|
66
66
|
# @return [Executions::Client] A client object for the specified version.
|
|
67
67
|
#
|
|
68
|
-
def self.executions version: :
|
|
68
|
+
def self.executions version: :v1, &block
|
|
69
69
|
require "google/cloud/workflows/executions/#{version.to_s.downcase}"
|
|
70
70
|
|
|
71
71
|
package_name = Google::Cloud::Workflows::Executions
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-workflows
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0
|
|
4
|
+
version: 2.1.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: 2021-
|
|
11
|
+
date: 2021-09-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-cloud-core
|
|
@@ -64,6 +64,26 @@ dependencies:
|
|
|
64
64
|
- - "<"
|
|
65
65
|
- !ruby/object:Gem::Version
|
|
66
66
|
version: 2.a
|
|
67
|
+
- !ruby/object:Gem::Dependency
|
|
68
|
+
name: google-cloud-workflows-executions-v1
|
|
69
|
+
requirement: !ruby/object:Gem::Requirement
|
|
70
|
+
requirements:
|
|
71
|
+
- - ">="
|
|
72
|
+
- !ruby/object:Gem::Version
|
|
73
|
+
version: '0.0'
|
|
74
|
+
- - "<"
|
|
75
|
+
- !ruby/object:Gem::Version
|
|
76
|
+
version: 2.a
|
|
77
|
+
type: :runtime
|
|
78
|
+
prerelease: false
|
|
79
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
80
|
+
requirements:
|
|
81
|
+
- - ">="
|
|
82
|
+
- !ruby/object:Gem::Version
|
|
83
|
+
version: '0.0'
|
|
84
|
+
- - "<"
|
|
85
|
+
- !ruby/object:Gem::Version
|
|
86
|
+
version: 2.a
|
|
67
87
|
- !ruby/object:Gem::Dependency
|
|
68
88
|
name: google-cloud-workflows-executions-v1beta
|
|
69
89
|
requirement: !ruby/object:Gem::Requirement
|