google-apis-run_v2 0.34.0 → 0.36.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/run_v2/classes.rb +57 -10
- data/lib/google/apis/run_v2/gem_version.rb +2 -2
- data/lib/google/apis/run_v2/representations.rb +5 -0
- data/lib/google/apis/run_v2/service.rb +3 -10
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c40d9fe3fbdc1cd4b13b2b5166d1948ecf9703e7af7016462e78be6b63607243
|
4
|
+
data.tar.gz: 571608e89a8d7685419c3c2e0ce19917272637928f81bf27a58328e3d7e2389a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7de98082ca34e47c11cc08f40994240f83bbf472123d6f633598864172432d28ca48abb115e61dade59376c570b71d63e858df8c272f8fac80b604ca2d32a728
|
7
|
+
data.tar.gz: 2757965eb7c9980af78bfb5535ce8dbc28c04f4cd133174dd72caac309f48f9e9b610902983e8363303cc0b0b9bbbe4c8a86d832cae9b3610816bdb954e74031
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-run_v2
|
2
2
|
|
3
|
+
### v0.36.0 (2023-03-19)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230312
|
6
|
+
|
7
|
+
### v0.35.0 (2023-03-12)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230305
|
10
|
+
|
3
11
|
### v0.34.0 (2023-02-26)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230219
|
@@ -406,10 +406,12 @@ module Google
|
|
406
406
|
# @return [Hash<String,String>]
|
407
407
|
attr_accessor :labels
|
408
408
|
|
409
|
-
#
|
410
|
-
#
|
411
|
-
#
|
412
|
-
#
|
409
|
+
# The least stable launch stage needed to create this resource, as defined by [
|
410
|
+
# Google Cloud Platform Launch Stages](https://cloud.google.com/terms/launch-
|
411
|
+
# stages). Cloud Run supports `ALPHA`, `BETA`, and `GA`. Note that this value
|
412
|
+
# might not be what was used as input. For example, if ALPHA was provided as
|
413
|
+
# input in the parent resource, but only BETA and GA-level features are were,
|
414
|
+
# this field will be BETA.
|
413
415
|
# Corresponds to the JSON property `launchStage`
|
414
416
|
# @return [String]
|
415
417
|
attr_accessor :launch_stage
|
@@ -458,6 +460,12 @@ module Google
|
|
458
460
|
# @return [Fixnum]
|
459
461
|
attr_accessor :running_count
|
460
462
|
|
463
|
+
# Output only. Reserved for future use.
|
464
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
465
|
+
# @return [Boolean]
|
466
|
+
attr_accessor :satisfies_pzs
|
467
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
468
|
+
|
461
469
|
# Output only. Represents time when the execution started to run. It is not
|
462
470
|
# guaranteed to be set in happens-before order across separate operations.
|
463
471
|
# Corresponds to the JSON property `startTime`
|
@@ -521,6 +529,7 @@ module Google
|
|
521
529
|
@reconciling = args[:reconciling] if args.key?(:reconciling)
|
522
530
|
@retried_count = args[:retried_count] if args.key?(:retried_count)
|
523
531
|
@running_count = args[:running_count] if args.key?(:running_count)
|
532
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
524
533
|
@start_time = args[:start_time] if args.key?(:start_time)
|
525
534
|
@succeeded_count = args[:succeeded_count] if args.key?(:succeeded_count)
|
526
535
|
@task_count = args[:task_count] if args.key?(:task_count)
|
@@ -811,7 +820,11 @@ module Google
|
|
811
820
|
|
812
821
|
# The launch stage as defined by [Google Cloud Platform Launch Stages](https://
|
813
822
|
# cloud.google.com/terms/launch-stages). Cloud Run supports `ALPHA`, `BETA`, and
|
814
|
-
# `GA`. If no value is specified, GA is assumed.
|
823
|
+
# `GA`. If no value is specified, GA is assumed. Set the launch stage to a
|
824
|
+
# preview stage on input to allow use of preview features in that stage. On read
|
825
|
+
# (or output), describes whether the resource uses preview features. For example,
|
826
|
+
# if ALPHA is provided as input, but only BETA and GA-level features are used,
|
827
|
+
# this field will be BETA on output.
|
815
828
|
# Corresponds to the JSON property `launchStage`
|
816
829
|
# @return [String]
|
817
830
|
attr_accessor :launch_stage
|
@@ -849,6 +862,12 @@ module Google
|
|
849
862
|
attr_accessor :reconciling
|
850
863
|
alias_method :reconciling?, :reconciling
|
851
864
|
|
865
|
+
# Output only. Reserved for future use.
|
866
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
867
|
+
# @return [Boolean]
|
868
|
+
attr_accessor :satisfies_pzs
|
869
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
870
|
+
|
852
871
|
# ExecutionTemplate describes the data an execution should have when created
|
853
872
|
# from a template.
|
854
873
|
# Corresponds to the JSON property `template`
|
@@ -897,6 +916,7 @@ module Google
|
|
897
916
|
@name = args[:name] if args.key?(:name)
|
898
917
|
@observed_generation = args[:observed_generation] if args.key?(:observed_generation)
|
899
918
|
@reconciling = args[:reconciling] if args.key?(:reconciling)
|
919
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
900
920
|
@template = args[:template] if args.key?(:template)
|
901
921
|
@terminal_condition = args[:terminal_condition] if args.key?(:terminal_condition)
|
902
922
|
@uid = args[:uid] if args.key?(:uid)
|
@@ -1214,10 +1234,12 @@ module Google
|
|
1214
1234
|
# @return [Hash<String,String>]
|
1215
1235
|
attr_accessor :labels
|
1216
1236
|
|
1217
|
-
#
|
1218
|
-
#
|
1219
|
-
#
|
1220
|
-
#
|
1237
|
+
# The least stable launch stage needed to create this resource, as defined by [
|
1238
|
+
# Google Cloud Platform Launch Stages](https://cloud.google.com/terms/launch-
|
1239
|
+
# stages). Cloud Run supports `ALPHA`, `BETA`, and `GA`. Note that this value
|
1240
|
+
# might not be what was used as input. For example, if ALPHA was provided as
|
1241
|
+
# input in the parent resource, but only BETA and GA-level features are were,
|
1242
|
+
# this field will be BETA.
|
1221
1243
|
# Corresponds to the JSON property `launchStage`
|
1222
1244
|
# @return [String]
|
1223
1245
|
attr_accessor :launch_stage
|
@@ -1252,6 +1274,12 @@ module Google
|
|
1252
1274
|
attr_accessor :reconciling
|
1253
1275
|
alias_method :reconciling?, :reconciling
|
1254
1276
|
|
1277
|
+
# Output only. Reserved for future use.
|
1278
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
1279
|
+
# @return [Boolean]
|
1280
|
+
attr_accessor :satisfies_pzs
|
1281
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
1282
|
+
|
1255
1283
|
# Settings for revision-level scaling settings.
|
1256
1284
|
# Corresponds to the JSON property `scaling`
|
1257
1285
|
# @return [Google::Apis::RunV2::GoogleCloudRunV2RevisionScaling]
|
@@ -1324,6 +1352,7 @@ module Google
|
|
1324
1352
|
@name = args[:name] if args.key?(:name)
|
1325
1353
|
@observed_generation = args[:observed_generation] if args.key?(:observed_generation)
|
1326
1354
|
@reconciling = args[:reconciling] if args.key?(:reconciling)
|
1355
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
1327
1356
|
@scaling = args[:scaling] if args.key?(:scaling)
|
1328
1357
|
@service = args[:service] if args.key?(:service)
|
1329
1358
|
@service_account = args[:service_account] if args.key?(:service_account)
|
@@ -1693,7 +1722,11 @@ module Google
|
|
1693
1722
|
|
1694
1723
|
# The launch stage as defined by [Google Cloud Platform Launch Stages](https://
|
1695
1724
|
# cloud.google.com/terms/launch-stages). Cloud Run supports `ALPHA`, `BETA`, and
|
1696
|
-
# `GA`. If no value is specified, GA is assumed.
|
1725
|
+
# `GA`. If no value is specified, GA is assumed. Set the launch stage to a
|
1726
|
+
# preview stage on input to allow use of preview features in that stage. On read
|
1727
|
+
# (or output), describes whether the resource uses preview features. For example,
|
1728
|
+
# if ALPHA is provided as input, but only BETA and GA-level features are used,
|
1729
|
+
# this field will be BETA on output.
|
1697
1730
|
# Corresponds to the JSON property `launchStage`
|
1698
1731
|
# @return [String]
|
1699
1732
|
attr_accessor :launch_stage
|
@@ -1737,6 +1770,12 @@ module Google
|
|
1737
1770
|
attr_accessor :reconciling
|
1738
1771
|
alias_method :reconciling?, :reconciling
|
1739
1772
|
|
1773
|
+
# Output only. Reserved for future use.
|
1774
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
1775
|
+
# @return [Boolean]
|
1776
|
+
attr_accessor :satisfies_pzs
|
1777
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
1778
|
+
|
1740
1779
|
# RevisionTemplate describes the data a revision should have when created from a
|
1741
1780
|
# template.
|
1742
1781
|
# Corresponds to the JSON property `template`
|
@@ -1805,6 +1844,7 @@ module Google
|
|
1805
1844
|
@name = args[:name] if args.key?(:name)
|
1806
1845
|
@observed_generation = args[:observed_generation] if args.key?(:observed_generation)
|
1807
1846
|
@reconciling = args[:reconciling] if args.key?(:reconciling)
|
1847
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
1808
1848
|
@template = args[:template] if args.key?(:template)
|
1809
1849
|
@terminal_condition = args[:terminal_condition] if args.key?(:terminal_condition)
|
1810
1850
|
@traffic = args[:traffic] if args.key?(:traffic)
|
@@ -1969,6 +2009,12 @@ module Google
|
|
1969
2009
|
# @return [Fixnum]
|
1970
2010
|
attr_accessor :retried
|
1971
2011
|
|
2012
|
+
# Output only. Reserved for future use.
|
2013
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
2014
|
+
# @return [Boolean]
|
2015
|
+
attr_accessor :satisfies_pzs
|
2016
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
2017
|
+
|
1972
2018
|
# Email address of the IAM service account associated with the Task of a Job.
|
1973
2019
|
# The service account represents the identity of the running task, and
|
1974
2020
|
# determines what permissions the task has. If not provided, the task will use
|
@@ -2042,6 +2088,7 @@ module Google
|
|
2042
2088
|
@observed_generation = args[:observed_generation] if args.key?(:observed_generation)
|
2043
2089
|
@reconciling = args[:reconciling] if args.key?(:reconciling)
|
2044
2090
|
@retried = args[:retried] if args.key?(:retried)
|
2091
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
2045
2092
|
@service_account = args[:service_account] if args.key?(:service_account)
|
2046
2093
|
@start_time = args[:start_time] if args.key?(:start_time)
|
2047
2094
|
@timeout = args[:timeout] if args.key?(: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.36.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 = "20230312"
|
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
|
@@ -955,9 +949,8 @@ module Google
|
|
955
949
|
# location`/services/`service_id`
|
956
950
|
# @param [Google::Apis::RunV2::GoogleCloudRunV2Service] google_cloud_run_v2_service_object
|
957
951
|
# @param [Boolean] allow_missing
|
958
|
-
#
|
959
|
-
#
|
960
|
-
# set to true.
|
952
|
+
# This field is currently not used by Cloud Run; setting it does not have any
|
953
|
+
# effect.
|
961
954
|
# @param [Boolean] validate_only
|
962
955
|
# Indicates that the request should be validated and default values populated,
|
963
956
|
# without persisting the request or updating any resources.
|
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.36.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-19 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.36.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: []
|