google-apis-workflows_v1 0.17.0 → 0.19.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d95dfe8f48ed5723d4cd086a1938925d53d06ccc90e939b2d88333bc498a7d3c
|
4
|
+
data.tar.gz: 12e03cebb9fb01c0301017606e42b955074da51e21b0343e89d99094e397089f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8d2e56e07354f11791d134610ee6eb4718928176de6ca2ec20d7a545853be759898ff001a993818fb6b1897de0e68713f8f9e1870379039115194db3e7734086
|
7
|
+
data.tar.gz: 6ab6184b86a2aa690e8009ebcc6c1b2c9771e903e3f964377684ee2fe3d1e27218167cc2f33b02ceff9587e7de6c7cba9eb3b38cad169653e4e39b23de941901
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-workflows_v1
|
2
2
|
|
3
|
+
### v0.19.0 (2022-12-19)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20221208
|
6
|
+
|
7
|
+
### v0.18.0 (2022-10-27)
|
8
|
+
|
9
|
+
* Regenerated using generator version 0.11.0
|
10
|
+
|
3
11
|
### v0.17.0 (2022-09-22)
|
4
12
|
|
5
13
|
* Regenerated using generator version 0.10.0
|
@@ -103,7 +103,7 @@ module Google
|
|
103
103
|
# @return [Array<String>]
|
104
104
|
attr_accessor :unreachable
|
105
105
|
|
106
|
-
# The workflows
|
106
|
+
# The workflows that match the request.
|
107
107
|
# Corresponds to the JSON property `workflows`
|
108
108
|
# @return [Array<Google::Apis::WorkflowsV1::Workflow>]
|
109
109
|
attr_accessor :workflows
|
@@ -315,7 +315,7 @@ module Google
|
|
315
315
|
class Workflow
|
316
316
|
include Google::Apis::Core::Hashable
|
317
317
|
|
318
|
-
# Output only. The timestamp
|
318
|
+
# Output only. The timestamp for when the workflow was created.
|
319
319
|
# Corresponds to the JSON property `createTime`
|
320
320
|
# @return [String]
|
321
321
|
attr_accessor :create_time
|
@@ -328,8 +328,8 @@ module Google
|
|
328
328
|
|
329
329
|
# Labels associated with this workflow. Labels can contain at most 64 entries.
|
330
330
|
# Keys and values can be no longer than 63 characters and can only contain
|
331
|
-
# lowercase letters, numeric characters, underscores and dashes. Label keys
|
332
|
-
# start with a letter. International characters are allowed.
|
331
|
+
# lowercase letters, numeric characters, underscores, and dashes. Label keys
|
332
|
+
# must start with a letter. International characters are allowed.
|
333
333
|
# Corresponds to the JSON property `labels`
|
334
334
|
# @return [Hash<String,String>]
|
335
335
|
attr_accessor :labels
|
@@ -340,8 +340,7 @@ module Google
|
|
340
340
|
# @return [String]
|
341
341
|
attr_accessor :name
|
342
342
|
|
343
|
-
# Output only. The timestamp
|
344
|
-
# created.
|
343
|
+
# Output only. The timestamp for the latest revision of the workflow's creation.
|
345
344
|
# Corresponds to the JSON property `revisionCreateTime`
|
346
345
|
# @return [String]
|
347
346
|
attr_accessor :revision_create_time
|
@@ -378,7 +377,7 @@ module Google
|
|
378
377
|
# @return [String]
|
379
378
|
attr_accessor :state
|
380
379
|
|
381
|
-
# Output only. The
|
380
|
+
# Output only. The timestamp for when the workflow was last updated.
|
382
381
|
# Corresponds to the JSON property `updateTime`
|
383
382
|
# @return [String]
|
384
383
|
attr_accessor :update_time
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module WorkflowsV1
|
18
18
|
# Version of the google-apis-workflows_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.19.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.11.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20221208"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -234,7 +234,7 @@ module Google
|
|
234
234
|
end
|
235
235
|
|
236
236
|
# Creates a new workflow. If a workflow with the specified name already exists
|
237
|
-
# in the specified project and location, the long running operation
|
237
|
+
# in the specified project and location, the long running operation returns a
|
238
238
|
# ALREADY_EXISTS error.
|
239
239
|
# @param [String] parent
|
240
240
|
# Required. Project and location in which the workflow should be created. Format:
|
@@ -308,10 +308,10 @@ module Google
|
|
308
308
|
execute_or_queue_command(command, &block)
|
309
309
|
end
|
310
310
|
|
311
|
-
# Gets details of a single
|
311
|
+
# Gets details of a single workflow.
|
312
312
|
# @param [String] name
|
313
|
-
# Required. Name of the workflow which information should be retrieved.
|
314
|
-
# projects/`project`/locations/`location`/workflows/`workflow`
|
313
|
+
# Required. Name of the workflow for which information should be retrieved.
|
314
|
+
# Format: projects/`project`/locations/`location`/workflows/`workflow`
|
315
315
|
# @param [String] fields
|
316
316
|
# Selector specifying which fields to include in a partial response.
|
317
317
|
# @param [String] quota_user
|
@@ -339,7 +339,7 @@ module Google
|
|
339
339
|
execute_or_queue_command(command, &block)
|
340
340
|
end
|
341
341
|
|
342
|
-
# Lists
|
342
|
+
# Lists workflows in a given project and location. The default order is not
|
343
343
|
# specified.
|
344
344
|
# @param [String] parent
|
345
345
|
# Required. Project and location from which the workflows should be listed.
|
@@ -347,15 +347,15 @@ module Google
|
|
347
347
|
# @param [String] filter
|
348
348
|
# Filter to restrict results to specific workflows.
|
349
349
|
# @param [String] order_by
|
350
|
-
# Comma-separated list of fields that
|
351
|
-
#
|
352
|
-
#
|
353
|
-
#
|
350
|
+
# Comma-separated list of fields that specify the order of the results. Default
|
351
|
+
# sorting order for a field is ascending. To specify descending order for a
|
352
|
+
# field, append a "desc" suffix. If not specified, the results are returned in
|
353
|
+
# an unspecified order.
|
354
354
|
# @param [Fixnum] page_size
|
355
|
-
# Maximum number of workflows to return per call. The service
|
356
|
-
# than this value
|
357
|
-
# used. The maximum permitted value is 1000
|
358
|
-
# coerced down to 1000.
|
355
|
+
# Maximum number of workflows to return per call. The service might return fewer
|
356
|
+
# than this value even if not at the end of the collection. If a value is not
|
357
|
+
# specified, a default value of 500 is used. The maximum permitted value is 1000
|
358
|
+
# and values greater than 1000 are coerced down to 1000.
|
359
359
|
# @param [String] page_token
|
360
360
|
# A page token, received from a previous `ListWorkflows` call. Provide this to
|
361
361
|
# retrieve the subsequent page. When paginating, all other parameters provided
|
@@ -392,9 +392,9 @@ module Google
|
|
392
392
|
end
|
393
393
|
|
394
394
|
# Updates an existing workflow. Running this method has no impact on already
|
395
|
-
# running executions of the workflow. A new revision of the workflow
|
396
|
-
# created as a result of a successful update operation. In that case,
|
397
|
-
# revision
|
395
|
+
# running executions of the workflow. A new revision of the workflow might be
|
396
|
+
# created as a result of a successful update operation. In that case, the new
|
397
|
+
# revision is used in new workflow executions.
|
398
398
|
# @param [String] name
|
399
399
|
# The resource name of the workflow. Format: projects/`project`/locations/`
|
400
400
|
# location`/workflows/`workflow`
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-workflows_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.19.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:
|
11
|
+
date: 2023-01-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.9.
|
19
|
+
version: 0.9.1
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.9.
|
29
|
+
version: 0.9.1
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-workflows_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-workflows_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-workflows_v1/v0.19.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-workflows_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|