google-apis-workflows_v1 0.29.0 → 0.30.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: f078d908cceb9eada9fb88bfc5a709122a46aeeb320120b729f4a48b6e44fa07
4
- data.tar.gz: 216d5333c5a8c2cd046bc636108d171f27777971d168b266ee8f3daf449c6285
3
+ metadata.gz: b0ada9163b7dbb941a10edffb17f0589437132e3c99aac3d3598fe5fcbffa919
4
+ data.tar.gz: 45fad7d00af6e0d9e86b858a0df107152f0591ce3b928616e82314db60b04c0e
5
5
  SHA512:
6
- metadata.gz: f322b96fc3e0d57d971ec44bfcf6a959a690bfacfc84f4e16211fe4c09a2186c6e66d799546f453eed11656d63d1866ae4f44e406584a7f3d07867f52141ac00
7
- data.tar.gz: d74a7dae6c15826fb962f270333b854953de5972dc9a204b283c93416f274985c0e3d2c67f7d6178f0622e727925e5c09a18ca5454f12252f958ac6778b3c1d7
6
+ metadata.gz: 89c06a817ae30ee962e99afbf27b8225b105ccb45700d574c15df3b43668944956036d0cd7b3b955656ad117fd9039174d48de5a601bc3107fa81caf8cc68459
7
+ data.tar.gz: 1765130a7ad77fe5faa1b233ed57cce65b9ffbfa27fdc89bfb94dc42929b6a4408f97a4343ada444af02236517197a3a77440e21c1e44ad4e3dcadffe755e99d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-workflows_v1
2
2
 
3
+ ### v0.30.0 (2023-09-24)
4
+
5
+ * Regenerated from discovery document revision 20230913
6
+
3
7
  ### v0.29.0 (2023-09-17)
4
8
 
5
9
  * 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.30.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 = "20230913"
26
26
  end
27
27
  end
28
28
  end
@@ -393,12 +393,12 @@ module Google
393
393
 
394
394
  # Lists revisions for a given workflow.
395
395
  # @param [String] name
396
- # Required. Workflow from which the revisions should be listed. Format: projects/
397
- # `project`/locations/`location`/workflows/`workflow`
396
+ # Required. Workflow for which the revisions should be listed. Format: projects/`
397
+ # project`/locations/`location`/workflows/`workflow`
398
398
  # @param [Fixnum] page_size
399
399
  # 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.
400
+ # specified, a default value of 20 is used. The maximum permitted value is 100.
401
+ # Values greater than 100 are coerced down to 100.
402
402
  # @param [String] page_token
403
403
  # The page token, received from a previous ListWorkflowRevisions call. Provide
404
404
  # this to retrieve the subsequent page.
@@ -437,7 +437,8 @@ module Google
437
437
  # revision is used in new workflow executions.
438
438
  # @param [String] name
439
439
  # The resource name of the workflow. Format: projects/`project`/locations/`
440
- # location`/workflows/`workflow`
440
+ # location`/workflows/`workflow`. This is a workflow-wide field and is not tied
441
+ # to a specific revision.
441
442
  # @param [Google::Apis::WorkflowsV1::Workflow] workflow_object
442
443
  # @param [String] update_mask
443
444
  # 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.30.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-09-24 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.30.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: []