google-apis-workflows_v1 0.25.0 → 0.27.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: 4f95e827752b86b55ba52352de7ad28de80a05b6d1a9c3ed0415a6ed3a699333
4
- data.tar.gz: 55901301d766e6536ec1cb5e4fd8cf1b0025f9815a011361e9c3e6c93b01b042
3
+ metadata.gz: 524012236f61f0bce1925a2cce4c535d510bba7ea6e444bbd66e12978376eaf2
4
+ data.tar.gz: cb67bdc48a18707d1174fd1be32962c92c50cafb50ac8c28e81dbe2e1df101fe
5
5
  SHA512:
6
- metadata.gz: 749e8a60975b20d4c6f127707903a0056e7eccee86beb793625c34cebfcae1c4dc5d81a8cf50945d5ba5283415d4282d7308dd40bba9095247911bc71bcc012b
7
- data.tar.gz: efb14d069bb58a3774e8b5edaaff58abcf7b51b0c208f4972dddefbfbd5e7f849849041403a14548d3350668537075bace612d72820c56c0321780311282953d
6
+ metadata.gz: ad946fc9f3065dfdc88aeb7c534ec87008c30f8d2fc028cdbb90f678d6d4ca5c3a1d69455f30982294455f1f9a8ac2a655af41023ab05987e65af74e152d66cb
7
+ data.tar.gz: 5e215f2c11aa7991880bc3ceb9b8ffce99b299310f1bbfe132fc41365df0e28715a6281401bd8b2d27c86ae6acb3ec46045accbd5bd5874ec224b7c6c9268f4f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-workflows_v1
2
2
 
3
+ ### v0.27.0 (2023-06-25)
4
+
5
+ * Regenerated from discovery document revision 20230619
6
+
7
+ ### v0.26.0 (2023-05-21)
8
+
9
+ * Regenerated from discovery document revision 20230510
10
+
3
11
  ### v0.25.0 (2023-04-30)
4
12
 
5
13
  * Regenerated from discovery document revision 20230419
@@ -390,8 +390,8 @@ module Google
390
390
  # Output only. The revision of the workflow. A new revision of a workflow is
391
391
  # created as a result of updating the following properties of a workflow: -
392
392
  # Service account - Workflow code to be executed The format is "000001-a4d",
393
- # where the first 6 characters define the zero-padded revision ordinal number.
394
- # They are followed by a hyphen and 3 hexadecimal random characters.
393
+ # where the first six characters define the zero-padded revision ordinal number.
394
+ # They are followed by a hyphen and three hexadecimal random characters.
395
395
  # Corresponds to the JSON property `revisionId`
396
396
  # @return [String]
397
397
  attr_accessor :revision_id
@@ -429,6 +429,14 @@ module Google
429
429
  # @return [String]
430
430
  attr_accessor :update_time
431
431
 
432
+ # Optional. User-defined environment variables associated with this workflow
433
+ # revision. This map has a maximum length of 20. Each string can take up to
434
+ # 40KiB. Keys cannot be empty strings and cannot start with “GOOGLE” or “
435
+ # WORKFLOWS".
436
+ # Corresponds to the JSON property `userEnvVars`
437
+ # @return [Hash<String,String>]
438
+ attr_accessor :user_env_vars
439
+
432
440
  def initialize(**args)
433
441
  update!(**args)
434
442
  end
@@ -448,6 +456,7 @@ module Google
448
456
  @state = args[:state] if args.key?(:state)
449
457
  @state_error = args[:state_error] if args.key?(:state_error)
450
458
  @update_time = args[:update_time] if args.key?(:update_time)
459
+ @user_env_vars = args[:user_env_vars] if args.key?(:user_env_vars)
451
460
  end
452
461
  end
453
462
  end
@@ -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.25.0"
19
+ GEM_VERSION = "0.27.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 = "20230419"
25
+ REVISION = "20230619"
26
26
  end
27
27
  end
28
28
  end
@@ -184,6 +184,7 @@ module Google
184
184
  property :state_error, as: 'stateError', class: Google::Apis::WorkflowsV1::StateError, decorator: Google::Apis::WorkflowsV1::StateError::Representation
185
185
 
186
186
  property :update_time, as: 'updateTime'
187
+ hash :user_env_vars, as: 'userEnvVars'
187
188
  end
188
189
  end
189
190
  end
@@ -307,11 +307,10 @@ module Google
307
307
  # Required. Name of the workflow for which information should be retrieved.
308
308
  # Format: projects/`project`/locations/`location`/workflows/`workflow`
309
309
  # @param [String] revision_id
310
- # Optional. Optional. The revision of the workflow to retrieve. If the
311
- # revision_id is empty, the latest revision is retrieved. The format is "000001-
312
- # a4d", where the first 6 characters define the zero-padded decimal revision
313
- # number. They are followed by a hyphen and 3 hexadecimal characters. (go/
314
- # wf_adr_clh_1)
310
+ # Optional. The revision of the workflow to retrieve. If the revision_id is
311
+ # empty, the latest revision is retrieved. The format is "000001-a4d", where the
312
+ # first six characters define the zero-padded decimal revision number. They are
313
+ # followed by a hyphen and three hexadecimal characters.
315
314
  # @param [String] fields
316
315
  # Selector specifying which fields to include in a partial response.
317
316
  # @param [String] quota_user
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.25.0
4
+ version: 0.27.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-04-30 00:00:00.000000000 Z
11
+ date: 2023-06-25 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.25.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-workflows_v1/v0.27.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: []