google-apis-run_v2 0.88.0 → 0.90.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 +9 -0
- data/lib/google/apis/run_v2/classes.rb +43 -11
- data/lib/google/apis/run_v2/gem_version.rb +3 -3
- data/lib/google/apis/run_v2/representations.rb +17 -1
- 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: 4d8e0238aa05b8ebda3dc41823c5933becd6efb77d362f12b13472e22aadac5c
|
4
|
+
data.tar.gz: 80e1540f70872049bf942e212a71df58674ec09bf24b60a36d5ca570a71827d4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 04cdc0bc30c6d1bcdf94e14c09668bc55ae6d644c5292579e01b0598e258e45500da01a05ab7373e6173d086f59707649e2a0007d7d6512a026a98d4fc6723fa
|
7
|
+
data.tar.gz: f8ae3ea182b1173ba206186ee5be42d72c567a1eb6fc7a22d5a733808f816422896ea3351bb060cd7e6e4ed66d1ca066397ae4fdc79026a7cb9ea25db5b5e42c
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-run_v2
|
2
2
|
|
3
|
+
### v0.90.0 (2025-06-29)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250620
|
6
|
+
|
7
|
+
### v0.89.0 (2025-06-15)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250606
|
10
|
+
* Regenerated using generator version 0.18.0
|
11
|
+
|
3
12
|
### v0.88.0 (2025-05-18)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20250509
|
@@ -1643,6 +1643,31 @@ module Google
|
|
1643
1643
|
end
|
1644
1644
|
end
|
1645
1645
|
|
1646
|
+
# Settings for multi-region deployment.
|
1647
|
+
class GoogleCloudRunV2MultiRegionSettings
|
1648
|
+
include Google::Apis::Core::Hashable
|
1649
|
+
|
1650
|
+
# Optional. System-generated unique id for the multi-region Service.
|
1651
|
+
# Corresponds to the JSON property `multiRegionId`
|
1652
|
+
# @return [String]
|
1653
|
+
attr_accessor :multi_region_id
|
1654
|
+
|
1655
|
+
# Required. List of regions to deploy to, including primary region.
|
1656
|
+
# Corresponds to the JSON property `regions`
|
1657
|
+
# @return [Array<String>]
|
1658
|
+
attr_accessor :regions
|
1659
|
+
|
1660
|
+
def initialize(**args)
|
1661
|
+
update!(**args)
|
1662
|
+
end
|
1663
|
+
|
1664
|
+
# Update properties of this object
|
1665
|
+
def update!(**args)
|
1666
|
+
@multi_region_id = args[:multi_region_id] if args.key?(:multi_region_id)
|
1667
|
+
@regions = args[:regions] if args.key?(:regions)
|
1668
|
+
end
|
1669
|
+
end
|
1670
|
+
|
1646
1671
|
# Represents an NFS mount.
|
1647
1672
|
class GoogleCloudRunV2NfsVolumeSource
|
1648
1673
|
include Google::Apis::Core::Hashable
|
@@ -2610,6 +2635,11 @@ module Google
|
|
2610
2635
|
# @return [String]
|
2611
2636
|
attr_accessor :launch_stage
|
2612
2637
|
|
2638
|
+
# Settings for multi-region deployment.
|
2639
|
+
# Corresponds to the JSON property `multiRegionSettings`
|
2640
|
+
# @return [Google::Apis::RunV2::GoogleCloudRunV2MultiRegionSettings]
|
2641
|
+
attr_accessor :multi_region_settings
|
2642
|
+
|
2613
2643
|
# The fully qualified name of this Service. In CreateServiceRequest, this field
|
2614
2644
|
# is ignored, and instead composed from CreateServiceRequest.parent and
|
2615
2645
|
# CreateServiceRequest.service_id. Format: projects/`project`/locations/`
|
@@ -2743,6 +2773,7 @@ module Google
|
|
2743
2773
|
@latest_created_revision = args[:latest_created_revision] if args.key?(:latest_created_revision)
|
2744
2774
|
@latest_ready_revision = args[:latest_ready_revision] if args.key?(:latest_ready_revision)
|
2745
2775
|
@launch_stage = args[:launch_stage] if args.key?(:launch_stage)
|
2776
|
+
@multi_region_settings = args[:multi_region_settings] if args.key?(:multi_region_settings)
|
2746
2777
|
@name = args[:name] if args.key?(:name)
|
2747
2778
|
@observed_generation = args[:observed_generation] if args.key?(:observed_generation)
|
2748
2779
|
@reconciling = args[:reconciling] if args.key?(:reconciling)
|
@@ -3224,7 +3255,8 @@ module Google
|
|
3224
3255
|
|
3225
3256
|
# Output only. The exit code of this attempt. This may be unset if the container
|
3226
3257
|
# was unable to exit cleanly with a code due to some other failure. See status
|
3227
|
-
# field for possible failure details.
|
3258
|
+
# field for possible failure details. At most one of exit_code or term_signal
|
3259
|
+
# will be set.
|
3228
3260
|
# Corresponds to the JSON property `exitCode`
|
3229
3261
|
# @return [Fixnum]
|
3230
3262
|
attr_accessor :exit_code
|
@@ -3239,6 +3271,13 @@ module Google
|
|
3239
3271
|
# @return [Google::Apis::RunV2::GoogleRpcStatus]
|
3240
3272
|
attr_accessor :status
|
3241
3273
|
|
3274
|
+
# Output only. Termination signal of the container. This is set to non-zero if
|
3275
|
+
# the container is terminated by the system. At most one of exit_code or
|
3276
|
+
# term_signal will be set.
|
3277
|
+
# Corresponds to the JSON property `termSignal`
|
3278
|
+
# @return [Fixnum]
|
3279
|
+
attr_accessor :term_signal
|
3280
|
+
|
3242
3281
|
def initialize(**args)
|
3243
3282
|
update!(**args)
|
3244
3283
|
end
|
@@ -3247,6 +3286,7 @@ module Google
|
|
3247
3286
|
def update!(**args)
|
3248
3287
|
@exit_code = args[:exit_code] if args.key?(:exit_code)
|
3249
3288
|
@status = args[:status] if args.key?(:status)
|
3289
|
+
@term_signal = args[:term_signal] if args.key?(:term_signal)
|
3250
3290
|
end
|
3251
3291
|
end
|
3252
3292
|
|
@@ -3914,12 +3954,6 @@ module Google
|
|
3914
3954
|
# @return [Google::Apis::RunV2::GoogleCloudRunV2ServiceMesh]
|
3915
3955
|
attr_accessor :service_mesh
|
3916
3956
|
|
3917
|
-
# Optional. Enable session affinity.
|
3918
|
-
# Corresponds to the JSON property `sessionAffinity`
|
3919
|
-
# @return [Boolean]
|
3920
|
-
attr_accessor :session_affinity
|
3921
|
-
alias_method :session_affinity?, :session_affinity
|
3922
|
-
|
3923
3957
|
# Optional. A list of Volumes to make available to containers.
|
3924
3958
|
# Corresponds to the JSON property `volumes`
|
3925
3959
|
# @return [Array<Google::Apis::RunV2::GoogleCloudRunV2Volume>]
|
@@ -3947,7 +3981,6 @@ module Google
|
|
3947
3981
|
@revision = args[:revision] if args.key?(:revision)
|
3948
3982
|
@service_account = args[:service_account] if args.key?(:service_account)
|
3949
3983
|
@service_mesh = args[:service_mesh] if args.key?(:service_mesh)
|
3950
|
-
@session_affinity = args[:session_affinity] if args.key?(:session_affinity)
|
3951
3984
|
@volumes = args[:volumes] if args.key?(:volumes)
|
3952
3985
|
@vpc_access = args[:vpc_access] if args.key?(:vpc_access)
|
3953
3986
|
end
|
@@ -5033,9 +5066,8 @@ module Google
|
|
5033
5066
|
class GoogleDevtoolsCloudbuildV1GitSourceRepository
|
5034
5067
|
include Google::Apis::Core::Hashable
|
5035
5068
|
|
5036
|
-
# The Developer Connect Git repository link
|
5037
|
-
#
|
5038
|
-
# /gitRepositoryLink/*`
|
5069
|
+
# The Developer Connect Git repository link formatted as `projects/*/locations/*/
|
5070
|
+
# connections/*/gitRepositoryLink/*`
|
5039
5071
|
# Corresponds to the JSON property `developerConnect`
|
5040
5072
|
# @return [String]
|
5041
5073
|
attr_accessor :developer_connect
|
@@ -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.90.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250620"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -232,6 +232,12 @@ module Google
|
|
232
232
|
include Google::Apis::Core::JsonObjectSupport
|
233
233
|
end
|
234
234
|
|
235
|
+
class GoogleCloudRunV2MultiRegionSettings
|
236
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
237
|
+
|
238
|
+
include Google::Apis::Core::JsonObjectSupport
|
239
|
+
end
|
240
|
+
|
235
241
|
class GoogleCloudRunV2NfsVolumeSource
|
236
242
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
237
243
|
|
@@ -1169,6 +1175,14 @@ module Google
|
|
1169
1175
|
end
|
1170
1176
|
end
|
1171
1177
|
|
1178
|
+
class GoogleCloudRunV2MultiRegionSettings
|
1179
|
+
# @private
|
1180
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1181
|
+
property :multi_region_id, as: 'multiRegionId'
|
1182
|
+
collection :regions, as: 'regions'
|
1183
|
+
end
|
1184
|
+
end
|
1185
|
+
|
1172
1186
|
class GoogleCloudRunV2NfsVolumeSource
|
1173
1187
|
# @private
|
1174
1188
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1380,6 +1394,8 @@ module Google
|
|
1380
1394
|
property :latest_created_revision, as: 'latestCreatedRevision'
|
1381
1395
|
property :latest_ready_revision, as: 'latestReadyRevision'
|
1382
1396
|
property :launch_stage, as: 'launchStage'
|
1397
|
+
property :multi_region_settings, as: 'multiRegionSettings', class: Google::Apis::RunV2::GoogleCloudRunV2MultiRegionSettings, decorator: Google::Apis::RunV2::GoogleCloudRunV2MultiRegionSettings::Representation
|
1398
|
+
|
1383
1399
|
property :name, as: 'name'
|
1384
1400
|
property :observed_generation, :numeric_string => true, as: 'observedGeneration'
|
1385
1401
|
property :reconciling, as: 'reconciling'
|
@@ -1512,6 +1528,7 @@ module Google
|
|
1512
1528
|
property :exit_code, as: 'exitCode'
|
1513
1529
|
property :status, as: 'status', class: Google::Apis::RunV2::GoogleRpcStatus, decorator: Google::Apis::RunV2::GoogleRpcStatus::Representation
|
1514
1530
|
|
1531
|
+
property :term_signal, as: 'termSignal'
|
1515
1532
|
end
|
1516
1533
|
end
|
1517
1534
|
|
@@ -1657,7 +1674,6 @@ module Google
|
|
1657
1674
|
property :service_account, as: 'serviceAccount'
|
1658
1675
|
property :service_mesh, as: 'serviceMesh', class: Google::Apis::RunV2::GoogleCloudRunV2ServiceMesh, decorator: Google::Apis::RunV2::GoogleCloudRunV2ServiceMesh::Representation
|
1659
1676
|
|
1660
|
-
property :session_affinity, as: 'sessionAffinity'
|
1661
1677
|
collection :volumes, as: 'volumes', class: Google::Apis::RunV2::GoogleCloudRunV2Volume, decorator: Google::Apis::RunV2::GoogleCloudRunV2Volume::Representation
|
1662
1678
|
|
1663
1679
|
property :vpc_access, as: 'vpcAccess', class: Google::Apis::RunV2::GoogleCloudRunV2VpcAccess, decorator: Google::Apis::RunV2::GoogleCloudRunV2VpcAccess::Representation
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.90.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-run_v2/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.90.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-run_v2
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.9
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Cloud Run Admin API V2
|
79
79
|
test_files: []
|