google-cloud-workflows-v1 0.1.2 → 0.1.3
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2c296acd1e27ff025d4ef82b76f60c9f38368f41de48a9aaad82bcb29c83cb1b
|
4
|
+
data.tar.gz: 798d12ad8ccf8f4486183adac564a1086436c40b150a505c3e22c4538f443140
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3d58e75ed6508c105fb4f279cb294905124fca73fff1e3464daae4c301770087baa0768e951a4b0d9549d288f36477034553545dabdf788b216689c3ca4c6f30
|
7
|
+
data.tar.gz: f20d12803f6963cdf661b449f61e1b1a516377a5a33f4f33ce2d8cf07630906a529bd6a08ca2548a3348ea956af71c3b6ac463d4a24020ce3d3eeec6539ff0f4
|
@@ -1,8 +1,6 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: google/cloud/workflows/v1/workflows.proto
|
3
3
|
|
4
|
-
require 'google/protobuf'
|
5
|
-
|
6
4
|
require 'google/api/annotations_pb'
|
7
5
|
require 'google/api/client_pb'
|
8
6
|
require 'google/api/field_behavior_pb'
|
@@ -10,6 +8,8 @@ require 'google/api/resource_pb'
|
|
10
8
|
require 'google/longrunning/operations_pb'
|
11
9
|
require 'google/protobuf/field_mask_pb'
|
12
10
|
require 'google/protobuf/timestamp_pb'
|
11
|
+
require 'google/protobuf'
|
12
|
+
|
13
13
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
14
14
|
add_file("google/cloud/workflows/v1/workflows.proto", :syntax => :proto3) do
|
15
15
|
add_message "google.cloud.workflows.v1.Workflow" do
|
@@ -37,9 +37,11 @@ module Google
|
|
37
37
|
# @return [::String]
|
38
38
|
# Output only. The revision of the workflow.
|
39
39
|
# A new revision of a workflow is created as a result of updating the
|
40
|
-
# following
|
41
|
-
#
|
42
|
-
# -
|
40
|
+
# following properties of a workflow:
|
41
|
+
#
|
42
|
+
# - {::Google::Cloud::Workflows::V1::Workflow#service_account Service account}
|
43
|
+
# - {::Google::Cloud::Workflows::V1::Workflow#source_contents Workflow code to be executed}
|
44
|
+
#
|
43
45
|
# The format is "000001-a4d", where the first 6 characters define
|
44
46
|
# the zero-padded revision ordinal number. They are followed by a hyphen and
|
45
47
|
# 3 hexadecimal random characters.
|
@@ -62,21 +64,21 @@ module Google
|
|
62
64
|
# International characters are allowed.
|
63
65
|
# @!attribute [rw] service_account
|
64
66
|
# @return [::String]
|
65
|
-
#
|
67
|
+
# The service account associated with the latest workflow version.
|
66
68
|
# This service account represents the identity of the workflow and determines
|
67
69
|
# what permissions the workflow has.
|
68
|
-
# Format: projects/\\{project}/serviceAccounts/\\{account}
|
70
|
+
# Format: projects/\\{project}/serviceAccounts/\\{account} or \\{account}
|
69
71
|
#
|
70
|
-
# Using `-` as a wildcard for the `{project}`
|
71
|
-
# the account. The `{account}` value can be the
|
72
|
-
# `unique_id` of the service account.
|
72
|
+
# Using `-` as a wildcard for the `{project}` or not providing one at all
|
73
|
+
# will infer the project from the account. The `{account}` value can be the
|
74
|
+
# `email` address or the `unique_id` of the service account.
|
73
75
|
#
|
74
76
|
# If not provided, workflow will use the project's default service account.
|
75
77
|
# Modifying this field for an existing workflow results in a new workflow
|
76
78
|
# revision.
|
77
79
|
# @!attribute [rw] source_contents
|
78
80
|
# @return [::String]
|
79
|
-
# Workflow code to be executed. The size limit is
|
81
|
+
# Workflow code to be executed. The size limit is 128KB.
|
80
82
|
class Workflow
|
81
83
|
include ::Google::Protobuf::MessageExts
|
82
84
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-workflows-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
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-10-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|