google-apis-run_v2 0.33.0 → 0.35.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: dfe7af20f29ca7113905d6646724e4458dd5f074145d7a0cb383787f4aea59e1
|
4
|
+
data.tar.gz: 6a16f9880ca16a5c006f830015970121518127f38a6e2be155b928eee030bb52
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b7f38d4402e8fce070f5efdf43e12fb7c805811c82746e565ec20572f9696508857457db0c89434a33463a6dc37d3f857a7208554f7f1f7e1f7e7fce1217dc47
|
7
|
+
data.tar.gz: c8fb334a1180add82d41f4892e9010f50786f8ee2a1f6bb26c3f77edd1f0f7840f7fa8a44cc18a463f3b4c505d5936bee890400b6900197357397ad45dc54e6c
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-run_v2
|
2
2
|
|
3
|
+
### v0.35.0 (2023-03-12)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230305
|
6
|
+
|
7
|
+
### v0.34.0 (2023-02-26)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230219
|
10
|
+
|
3
11
|
### v0.33.0 (2023-02-19)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230212
|
@@ -458,6 +458,12 @@ module Google
|
|
458
458
|
# @return [Fixnum]
|
459
459
|
attr_accessor :running_count
|
460
460
|
|
461
|
+
# Output only. Reserved for future use.
|
462
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
463
|
+
# @return [Boolean]
|
464
|
+
attr_accessor :satisfies_pzs
|
465
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
466
|
+
|
461
467
|
# Output only. Represents time when the execution started to run. It is not
|
462
468
|
# guaranteed to be set in happens-before order across separate operations.
|
463
469
|
# Corresponds to the JSON property `startTime`
|
@@ -521,6 +527,7 @@ module Google
|
|
521
527
|
@reconciling = args[:reconciling] if args.key?(:reconciling)
|
522
528
|
@retried_count = args[:retried_count] if args.key?(:retried_count)
|
523
529
|
@running_count = args[:running_count] if args.key?(:running_count)
|
530
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
524
531
|
@start_time = args[:start_time] if args.key?(:start_time)
|
525
532
|
@succeeded_count = args[:succeeded_count] if args.key?(:succeeded_count)
|
526
533
|
@task_count = args[:task_count] if args.key?(:task_count)
|
@@ -596,8 +603,7 @@ module Google
|
|
596
603
|
|
597
604
|
# Specifies the desired number of tasks the execution should run. Setting to 1
|
598
605
|
# means that parallelism is limited to 1 and the success of that task signals
|
599
|
-
# the success of the execution.
|
600
|
-
# workloads/controllers/jobs-run-to-completion/
|
606
|
+
# the success of the execution. Defaults to 1.
|
601
607
|
# Corresponds to the JSON property `taskCount`
|
602
608
|
# @return [Fixnum]
|
603
609
|
attr_accessor :task_count
|
@@ -850,6 +856,12 @@ module Google
|
|
850
856
|
attr_accessor :reconciling
|
851
857
|
alias_method :reconciling?, :reconciling
|
852
858
|
|
859
|
+
# Output only. Reserved for future use.
|
860
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
861
|
+
# @return [Boolean]
|
862
|
+
attr_accessor :satisfies_pzs
|
863
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
864
|
+
|
853
865
|
# ExecutionTemplate describes the data an execution should have when created
|
854
866
|
# from a template.
|
855
867
|
# Corresponds to the JSON property `template`
|
@@ -898,6 +910,7 @@ module Google
|
|
898
910
|
@name = args[:name] if args.key?(:name)
|
899
911
|
@observed_generation = args[:observed_generation] if args.key?(:observed_generation)
|
900
912
|
@reconciling = args[:reconciling] if args.key?(:reconciling)
|
913
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
901
914
|
@template = args[:template] if args.key?(:template)
|
902
915
|
@terminal_condition = args[:terminal_condition] if args.key?(:terminal_condition)
|
903
916
|
@uid = args[:uid] if args.key?(:uid)
|
@@ -1253,6 +1266,12 @@ module Google
|
|
1253
1266
|
attr_accessor :reconciling
|
1254
1267
|
alias_method :reconciling?, :reconciling
|
1255
1268
|
|
1269
|
+
# Output only. Reserved for future use.
|
1270
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
1271
|
+
# @return [Boolean]
|
1272
|
+
attr_accessor :satisfies_pzs
|
1273
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
1274
|
+
|
1256
1275
|
# Settings for revision-level scaling settings.
|
1257
1276
|
# Corresponds to the JSON property `scaling`
|
1258
1277
|
# @return [Google::Apis::RunV2::GoogleCloudRunV2RevisionScaling]
|
@@ -1325,6 +1344,7 @@ module Google
|
|
1325
1344
|
@name = args[:name] if args.key?(:name)
|
1326
1345
|
@observed_generation = args[:observed_generation] if args.key?(:observed_generation)
|
1327
1346
|
@reconciling = args[:reconciling] if args.key?(:reconciling)
|
1347
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
1328
1348
|
@scaling = args[:scaling] if args.key?(:scaling)
|
1329
1349
|
@service = args[:service] if args.key?(:service)
|
1330
1350
|
@service_account = args[:service_account] if args.key?(:service_account)
|
@@ -1738,6 +1758,12 @@ module Google
|
|
1738
1758
|
attr_accessor :reconciling
|
1739
1759
|
alias_method :reconciling?, :reconciling
|
1740
1760
|
|
1761
|
+
# Output only. Reserved for future use.
|
1762
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
1763
|
+
# @return [Boolean]
|
1764
|
+
attr_accessor :satisfies_pzs
|
1765
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
1766
|
+
|
1741
1767
|
# RevisionTemplate describes the data a revision should have when created from a
|
1742
1768
|
# template.
|
1743
1769
|
# Corresponds to the JSON property `template`
|
@@ -1806,6 +1832,7 @@ module Google
|
|
1806
1832
|
@name = args[:name] if args.key?(:name)
|
1807
1833
|
@observed_generation = args[:observed_generation] if args.key?(:observed_generation)
|
1808
1834
|
@reconciling = args[:reconciling] if args.key?(:reconciling)
|
1835
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
1809
1836
|
@template = args[:template] if args.key?(:template)
|
1810
1837
|
@terminal_condition = args[:terminal_condition] if args.key?(:terminal_condition)
|
1811
1838
|
@traffic = args[:traffic] if args.key?(:traffic)
|
@@ -1970,6 +1997,12 @@ module Google
|
|
1970
1997
|
# @return [Fixnum]
|
1971
1998
|
attr_accessor :retried
|
1972
1999
|
|
2000
|
+
# Output only. Reserved for future use.
|
2001
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
2002
|
+
# @return [Boolean]
|
2003
|
+
attr_accessor :satisfies_pzs
|
2004
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
2005
|
+
|
1973
2006
|
# Email address of the IAM service account associated with the Task of a Job.
|
1974
2007
|
# The service account represents the identity of the running task, and
|
1975
2008
|
# determines what permissions the task has. If not provided, the task will use
|
@@ -2043,6 +2076,7 @@ module Google
|
|
2043
2076
|
@observed_generation = args[:observed_generation] if args.key?(:observed_generation)
|
2044
2077
|
@reconciling = args[:reconciling] if args.key?(:reconciling)
|
2045
2078
|
@retried = args[:retried] if args.key?(:retried)
|
2079
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
2046
2080
|
@service_account = args[:service_account] if args.key?(:service_account)
|
2047
2081
|
@start_time = args[:start_time] if args.key?(:start_time)
|
2048
2082
|
@timeout = args[:timeout] if args.key?(:timeout)
|
@@ -2107,7 +2141,8 @@ module Google
|
|
2107
2141
|
# @return [String]
|
2108
2142
|
attr_accessor :execution_environment
|
2109
2143
|
|
2110
|
-
# Number of retries allowed per Task, before marking this Task failed.
|
2144
|
+
# Number of retries allowed per Task, before marking this Task failed. Defaults
|
2145
|
+
# to 3.
|
2111
2146
|
# Corresponds to the JSON property `maxRetries`
|
2112
2147
|
# @return [Fixnum]
|
2113
2148
|
attr_accessor :max_retries
|
@@ -2123,6 +2158,7 @@ module Google
|
|
2123
2158
|
# Max allowed time duration the Task may be active before the system will
|
2124
2159
|
# actively try to mark it failed and kill associated containers. This applies
|
2125
2160
|
# per attempt of a task, meaning each retry can run for the full timeout.
|
2161
|
+
# Defaults to 600 seconds.
|
2126
2162
|
# Corresponds to the JSON property `timeout`
|
2127
2163
|
# @return [String]
|
2128
2164
|
attr_accessor :timeout
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module RunV2
|
18
18
|
# Version of the google-apis-run_v2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.35.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 = "
|
25
|
+
REVISION = "20230305"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -430,6 +430,7 @@ module Google
|
|
430
430
|
property :reconciling, as: 'reconciling'
|
431
431
|
property :retried_count, as: 'retriedCount'
|
432
432
|
property :running_count, as: 'runningCount'
|
433
|
+
property :satisfies_pzs, as: 'satisfiesPzs'
|
433
434
|
property :start_time, as: 'startTime'
|
434
435
|
property :succeeded_count, as: 'succeededCount'
|
435
436
|
property :task_count, as: 'taskCount'
|
@@ -512,6 +513,7 @@ module Google
|
|
512
513
|
property :name, as: 'name'
|
513
514
|
property :observed_generation, :numeric_string => true, as: 'observedGeneration'
|
514
515
|
property :reconciling, as: 'reconciling'
|
516
|
+
property :satisfies_pzs, as: 'satisfiesPzs'
|
515
517
|
property :template, as: 'template', class: Google::Apis::RunV2::GoogleCloudRunV2ExecutionTemplate, decorator: Google::Apis::RunV2::GoogleCloudRunV2ExecutionTemplate::Representation
|
516
518
|
|
517
519
|
property :terminal_condition, as: 'terminalCondition', class: Google::Apis::RunV2::GoogleCloudRunV2Condition, decorator: Google::Apis::RunV2::GoogleCloudRunV2Condition::Representation
|
@@ -614,6 +616,7 @@ module Google
|
|
614
616
|
property :name, as: 'name'
|
615
617
|
property :observed_generation, :numeric_string => true, as: 'observedGeneration'
|
616
618
|
property :reconciling, as: 'reconciling'
|
619
|
+
property :satisfies_pzs, as: 'satisfiesPzs'
|
617
620
|
property :scaling, as: 'scaling', class: Google::Apis::RunV2::GoogleCloudRunV2RevisionScaling, decorator: Google::Apis::RunV2::GoogleCloudRunV2RevisionScaling::Representation
|
618
621
|
|
619
622
|
property :service, as: 'service'
|
@@ -710,6 +713,7 @@ module Google
|
|
710
713
|
property :name, as: 'name'
|
711
714
|
property :observed_generation, :numeric_string => true, as: 'observedGeneration'
|
712
715
|
property :reconciling, as: 'reconciling'
|
716
|
+
property :satisfies_pzs, as: 'satisfiesPzs'
|
713
717
|
property :template, as: 'template', class: Google::Apis::RunV2::GoogleCloudRunV2RevisionTemplate, decorator: Google::Apis::RunV2::GoogleCloudRunV2RevisionTemplate::Representation
|
714
718
|
|
715
719
|
property :terminal_condition, as: 'terminalCondition', class: Google::Apis::RunV2::GoogleCloudRunV2Condition, decorator: Google::Apis::RunV2::GoogleCloudRunV2Condition::Representation
|
@@ -759,6 +763,7 @@ module Google
|
|
759
763
|
property :observed_generation, :numeric_string => true, as: 'observedGeneration'
|
760
764
|
property :reconciling, as: 'reconciling'
|
761
765
|
property :retried, as: 'retried'
|
766
|
+
property :satisfies_pzs, as: 'satisfiesPzs'
|
762
767
|
property :service_account, as: 'serviceAccount'
|
763
768
|
property :start_time, as: 'startTime'
|
764
769
|
property :timeout, as: 'timeout'
|
@@ -654,13 +654,7 @@ module Google
|
|
654
654
|
end
|
655
655
|
|
656
656
|
# Lists operations that match the specified filter in the request. If the server
|
657
|
-
# doesn't support this method, it returns `UNIMPLEMENTED`.
|
658
|
-
# binding allows API services to override the binding to use different resource
|
659
|
-
# name schemes, such as `users/*/operations`. To override the binding, API
|
660
|
-
# services can add a binding such as `"/v1/`name=users/*`/operations"` to their
|
661
|
-
# service configuration. For backwards compatibility, the default name includes
|
662
|
-
# the operations collection id, however overriding users must ensure the name
|
663
|
-
# binding is the parent resource, without the operations collection id.
|
657
|
+
# doesn't support this method, it returns `UNIMPLEMENTED`.
|
664
658
|
# @param [String] name
|
665
659
|
# Required. To query for all of the operations for a project.
|
666
660
|
# @param [String] filter
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-run_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.35.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-
|
11
|
+
date: 2023-03-12 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-run_v2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.35.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-run_v2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|