google-apis-workflows_v1 0.29.0 → 0.31.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f078d908cceb9eada9fb88bfc5a709122a46aeeb320120b729f4a48b6e44fa07
4
- data.tar.gz: 216d5333c5a8c2cd046bc636108d171f27777971d168b266ee8f3daf449c6285
3
+ metadata.gz: 31345c44c92ac36f8c95e9275e7d954690be4ac817c0969bd5cfe8084bf9ddd7
4
+ data.tar.gz: 8bfec0ecf9a5de7868b06edcab75b08c9f35034b1ccbf010d3df7a2fb1e2afdb
5
5
  SHA512:
6
- metadata.gz: f322b96fc3e0d57d971ec44bfcf6a959a690bfacfc84f4e16211fe4c09a2186c6e66d799546f453eed11656d63d1866ae4f44e406584a7f3d07867f52141ac00
7
- data.tar.gz: d74a7dae6c15826fb962f270333b854953de5972dc9a204b283c93416f274985c0e3d2c67f7d6178f0622e727925e5c09a18ca5454f12252f958ac6778b3c1d7
6
+ metadata.gz: 4ef6d6d8247ca2d6adb6c57b5c5f80381367eed6f2855d5a7b63c3cc5758672edef6c1929d6d25d4bb7c1c37b7ede50a22b02eb5eefe7b9c6d42301d2281390e
7
+ data.tar.gz: 9e8fbe724d844702d7d15f32e36de0d5eb442acf67bec1f0843dd4ec3b6a3a5a9ef967f89c903cd6bd5e319adc12bf7fef2671ada8016b160455b423ad9ddfb5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-workflows_v1
2
2
 
3
+ ### v0.31.0 (2023-10-22)
4
+
5
+ * Regenerated from discovery document revision 20231011
6
+
7
+ ### v0.30.0 (2023-09-24)
8
+
9
+ * Regenerated from discovery document revision 20230913
10
+
3
11
  ### v0.29.0 (2023-09-17)
4
12
 
5
13
  * Regenerated from discovery document revision 20230906
@@ -373,7 +373,8 @@ module Google
373
373
  # @return [String]
374
374
  attr_accessor :call_log_level
375
375
 
376
- # Output only. The timestamp for when the workflow was created.
376
+ # Output only. The timestamp for when the workflow was created. This is a
377
+ # workflow-wide field and is not tied to a specific revision.
377
378
  # Corresponds to the JSON property `createTime`
378
379
  # @return [String]
379
380
  attr_accessor :create_time
@@ -388,8 +389,9 @@ module Google
388
389
  # @return [String]
389
390
  attr_accessor :crypto_key_name
390
391
 
391
- # Description of the workflow provided by the user. Must be at most 1000 unicode
392
- # characters long.
392
+ # Description of the workflow provided by the user. Must be at most 1000 Unicode
393
+ # characters long. This is a workflow-wide field and is not tied to a specific
394
+ # revision.
393
395
  # Corresponds to the JSON property `description`
394
396
  # @return [String]
395
397
  attr_accessor :description
@@ -397,13 +399,15 @@ module Google
397
399
  # Labels associated with this workflow. Labels can contain at most 64 entries.
398
400
  # Keys and values can be no longer than 63 characters and can only contain
399
401
  # lowercase letters, numeric characters, underscores, and dashes. Label keys
400
- # must start with a letter. International characters are allowed.
402
+ # must start with a letter. International characters are allowed. This is a
403
+ # workflow-wide field and is not tied to a specific revision.
401
404
  # Corresponds to the JSON property `labels`
402
405
  # @return [Hash<String,String>]
403
406
  attr_accessor :labels
404
407
 
405
408
  # The resource name of the workflow. Format: projects/`project`/locations/`
406
- # location`/workflows/`workflow`
409
+ # location`/workflows/`workflow`. This is a workflow-wide field and is not tied
410
+ # to a specific revision.
407
411
  # Corresponds to the JSON property `name`
408
412
  # @return [String]
409
413
  attr_accessor :name
@@ -450,7 +454,8 @@ module Google
450
454
  # @return [Google::Apis::WorkflowsV1::StateError]
451
455
  attr_accessor :state_error
452
456
 
453
- # Output only. The timestamp for when the workflow was last updated.
457
+ # Output only. The timestamp for when the workflow was last updated. This is a
458
+ # workflow-wide field and is not tied to a specific revision.
454
459
  # Corresponds to the JSON property `updateTime`
455
460
  # @return [String]
456
461
  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.29.0"
19
+ GEM_VERSION = "0.31.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230906"
25
+ REVISION = "20231011"
26
26
  end
27
27
  end
28
28
  end
@@ -345,7 +345,9 @@ module Google
345
345
  # Required. Project and location from which the workflows should be listed.
346
346
  # Format: projects/`project`/locations/`location`
347
347
  # @param [String] filter
348
- # Filter to restrict results to specific workflows.
348
+ # Filter to restrict results to specific workflows. For details, see AIP-160.
349
+ # For example, if you are using the Google APIs Explorer: `state="SUCCEEDED"` or
350
+ # `createTime>"2023-08-01" AND state="FAILED"`
349
351
  # @param [String] order_by
350
352
  # Comma-separated list of fields that specify the order of the results. Default
351
353
  # sorting order for a field is ascending. To specify descending order for a
@@ -393,12 +395,12 @@ module Google
393
395
 
394
396
  # Lists revisions for a given workflow.
395
397
  # @param [String] name
396
- # Required. Workflow from which the revisions should be listed. Format: projects/
397
- # `project`/locations/`location`/workflows/`workflow`
398
+ # Required. Workflow for which the revisions should be listed. Format: projects/`
399
+ # project`/locations/`location`/workflows/`workflow`
398
400
  # @param [Fixnum] page_size
399
401
  # The maximum number of revisions to return per page. If a value is not
400
- # specified, a default value of 20 is used. The maximum permitted value is 100
401
- # and values greater than 100 coerced down to 100.
402
+ # specified, a default value of 20 is used. The maximum permitted value is 100.
403
+ # Values greater than 100 are coerced down to 100.
402
404
  # @param [String] page_token
403
405
  # The page token, received from a previous ListWorkflowRevisions call. Provide
404
406
  # this to retrieve the subsequent page.
@@ -437,7 +439,8 @@ module Google
437
439
  # revision is used in new workflow executions.
438
440
  # @param [String] name
439
441
  # The resource name of the workflow. Format: projects/`project`/locations/`
440
- # location`/workflows/`workflow`
442
+ # location`/workflows/`workflow`. This is a workflow-wide field and is not tied
443
+ # to a specific revision.
441
444
  # @param [Google::Apis::WorkflowsV1::Workflow] workflow_object
442
445
  # @param [String] update_mask
443
446
  # List of fields to be updated. If not present, the entire workflow will be
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.29.0
4
+ version: 0.31.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: 2023-09-17 00:00:00.000000000 Z
11
+ date: 2023-10-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -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.29.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-workflows_v1/v0.31.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: []