google-apis-run_v2 0.89.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 +4 -0
- data/lib/google/apis/run_v2/classes.rb +31 -0
- data/lib/google/apis/run_v2/gem_version.rb +2 -2
- data/lib/google/apis/run_v2/representations.rb +16 -0
- metadata +2 -2
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
@@ -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)
|
@@ -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
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'
|
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:
|