google-apis-run_v2 0.79.0 → 0.81.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/run_v2/classes.rb +16 -0
- data/lib/google/apis/run_v2/gem_version.rb +2 -2
- data/lib/google/apis/run_v2/representations.rb +2 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5c52a198e5a0ae7d74390a926a66a99e53f9185f8d8b6684cb4b2d88ac52230a
|
4
|
+
data.tar.gz: a8128869dbc49b59ca82fbdb9ac36dc6c3f02d8f7f6ec625de76a3d63b883def
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e8a576f7dda5e818916d627736e273cf5ca436d9a4904dc59e27978f51851438b08dadbd903772a7dc6b1b83f05f37dded8c9ed412c1c7099e67f1fed0d64970
|
7
|
+
data.tar.gz: b6a9f731deb6fa612942354df806e4be33eddf8fdcab2a0c250141898095f64924071f00614ae9eeca8a8f5e87eb90a6bf4a985958d1ec632f50c5bc57b55fd6
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-run_v2
|
2
2
|
|
3
|
+
### v0.81.0 (2024-12-22)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20241213
|
6
|
+
|
7
|
+
### v0.80.0 (2024-12-15)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20241206
|
10
|
+
|
3
11
|
### v0.79.0 (2024-11-24)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20241115
|
@@ -2530,6 +2530,20 @@ module Google
|
|
2530
2530
|
class GoogleCloudRunV2ServiceScaling
|
2531
2531
|
include Google::Apis::Core::Hashable
|
2532
2532
|
|
2533
|
+
# Optional. total instance count for the service in manual scaling mode. This
|
2534
|
+
# number of instances is divided among all revisions with specified traffic
|
2535
|
+
# based on the percent of traffic they are receiving.
|
2536
|
+
# Corresponds to the JSON property `manualInstanceCount`
|
2537
|
+
# @return [Fixnum]
|
2538
|
+
attr_accessor :manual_instance_count
|
2539
|
+
|
2540
|
+
# Optional. total max instances for the service. This number of instances is
|
2541
|
+
# divided among all revisions with specified traffic based on the percent of
|
2542
|
+
# traffic they are receiving.
|
2543
|
+
# Corresponds to the JSON property `maxInstanceCount`
|
2544
|
+
# @return [Fixnum]
|
2545
|
+
attr_accessor :max_instance_count
|
2546
|
+
|
2533
2547
|
# Optional. total min instances for the service. This number of instances is
|
2534
2548
|
# divided among all revisions with specified traffic based on the percent of
|
2535
2549
|
# traffic they are receiving.
|
@@ -2548,6 +2562,8 @@ module Google
|
|
2548
2562
|
|
2549
2563
|
# Update properties of this object
|
2550
2564
|
def update!(**args)
|
2565
|
+
@manual_instance_count = args[:manual_instance_count] if args.key?(:manual_instance_count)
|
2566
|
+
@max_instance_count = args[:max_instance_count] if args.key?(:max_instance_count)
|
2551
2567
|
@min_instance_count = args[:min_instance_count] if args.key?(:min_instance_count)
|
2552
2568
|
@scaling_mode = args[:scaling_mode] if args.key?(:scaling_mode)
|
2553
2569
|
end
|
@@ -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.81.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241213"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1273,6 +1273,8 @@ module Google
|
|
1273
1273
|
class GoogleCloudRunV2ServiceScaling
|
1274
1274
|
# @private
|
1275
1275
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1276
|
+
property :manual_instance_count, as: 'manualInstanceCount'
|
1277
|
+
property :max_instance_count, as: 'maxInstanceCount'
|
1276
1278
|
property :min_instance_count, as: 'minInstanceCount'
|
1277
1279
|
property :scaling_mode, as: 'scalingMode'
|
1278
1280
|
end
|
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.81.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:
|
11
|
+
date: 2025-01-05 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.81.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: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.23
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Run Admin API V2
|