google-apis-run_v2 0.50.0 → 0.51.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 31f7899b7b258621e3fd2505aded0d943dee4f791c4e062337c37bc2409f2832
4
- data.tar.gz: 9cc34f16091d26bfd8d7ad5241ba82a7e5035be4da83529d9d1b629b80744843
3
+ metadata.gz: d2b7f8b33f7e6d06f541ebdbbb0f7b16615e72e4b6bd1dbf87e36265603db5ee
4
+ data.tar.gz: fa1bb550e3f963f45ad8c538c8c90fc09c614b71ddea6e8d6e9acdc8acf840e7
5
5
  SHA512:
6
- metadata.gz: a66bcfebc0c464f9cb176acdbdad29925a3275e26fe2994383b43afd9cb5e99c0c4ce876214c17e4e8229cd22c16c2f6af270db4cb06667e5a445ab53645a81b
7
- data.tar.gz: 49d2e323a4c7dc36db2e5f205b169571bbbcb4f707a41b5e3e83dabbe9d868c0e7a78746982de45fe9acbbcb658eaac03af0e6add04fb1d5b8cca1abef70884e
6
+ metadata.gz: 0f847d2a99321e562bbf7d0bb1d34babae9660aafd95744a313ab922d227544ff448826ee50c837d596043d8e4de5f6cc66ac709d5993ac0de3506c57b1c5ab2
7
+ data.tar.gz: d8c05ec79b74c26bcbfb03744d7c864d148e0bc8f0bf201dab9f08259080ef95cc38e4258866f598733e3ff22bc15d69692bcbe38ebe09fda95e6c2336ad256e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-run_v2
2
2
 
3
+ ### v0.51.0 (2023-10-15)
4
+
5
+ * Regenerated from discovery document revision 20231008
6
+
3
7
  ### v0.50.0 (2023-10-08)
4
8
 
5
9
  * Regenerated from discovery document revision 20231001
@@ -1469,6 +1469,11 @@ module Google
1469
1469
  # @return [Google::Apis::RunV2::GoogleCloudRunV2RevisionScaling]
1470
1470
  attr_accessor :scaling
1471
1471
 
1472
+ # Effective settings for the current revision
1473
+ # Corresponds to the JSON property `scalingStatus`
1474
+ # @return [Google::Apis::RunV2::GoogleCloudRunV2RevisionScalingStatus]
1475
+ attr_accessor :scaling_status
1476
+
1472
1477
  # Output only. The name of the parent service.
1473
1478
  # Corresponds to the JSON property `service`
1474
1479
  # @return [String]
@@ -1542,6 +1547,7 @@ module Google
1542
1547
  @reconciling = args[:reconciling] if args.key?(:reconciling)
1543
1548
  @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
1544
1549
  @scaling = args[:scaling] if args.key?(:scaling)
1550
+ @scaling_status = args[:scaling_status] if args.key?(:scaling_status)
1545
1551
  @service = args[:service] if args.key?(:service)
1546
1552
  @service_account = args[:service_account] if args.key?(:service_account)
1547
1553
  @session_affinity = args[:session_affinity] if args.key?(:session_affinity)
@@ -1578,6 +1584,25 @@ module Google
1578
1584
  end
1579
1585
  end
1580
1586
 
1587
+ # Effective settings for the current revision
1588
+ class GoogleCloudRunV2RevisionScalingStatus
1589
+ include Google::Apis::Core::Hashable
1590
+
1591
+ # The current number of min instances provisioned for this revision.
1592
+ # Corresponds to the JSON property `desiredMinInstanceCount`
1593
+ # @return [Fixnum]
1594
+ attr_accessor :desired_min_instance_count
1595
+
1596
+ def initialize(**args)
1597
+ update!(**args)
1598
+ end
1599
+
1600
+ # Update properties of this object
1601
+ def update!(**args)
1602
+ @desired_min_instance_count = args[:desired_min_instance_count] if args.key?(:desired_min_instance_count)
1603
+ end
1604
+ end
1605
+
1581
1606
  # RevisionTemplate describes the data a revision should have when created from a
1582
1607
  # template.
1583
1608
  class GoogleCloudRunV2RevisionTemplate
@@ -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.50.0"
19
+ GEM_VERSION = "0.51.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 = "20231001"
25
+ REVISION = "20231008"
26
26
  end
27
27
  end
28
28
  end
@@ -190,6 +190,12 @@ module Google
190
190
  include Google::Apis::Core::JsonObjectSupport
191
191
  end
192
192
 
193
+ class GoogleCloudRunV2RevisionScalingStatus
194
+ class Representation < Google::Apis::Core::JsonRepresentation; end
195
+
196
+ include Google::Apis::Core::JsonObjectSupport
197
+ end
198
+
193
199
  class GoogleCloudRunV2RevisionTemplate
194
200
  class Representation < Google::Apis::Core::JsonRepresentation; end
195
201
 
@@ -697,6 +703,8 @@ module Google
697
703
  property :satisfies_pzs, as: 'satisfiesPzs'
698
704
  property :scaling, as: 'scaling', class: Google::Apis::RunV2::GoogleCloudRunV2RevisionScaling, decorator: Google::Apis::RunV2::GoogleCloudRunV2RevisionScaling::Representation
699
705
 
706
+ property :scaling_status, as: 'scalingStatus', class: Google::Apis::RunV2::GoogleCloudRunV2RevisionScalingStatus, decorator: Google::Apis::RunV2::GoogleCloudRunV2RevisionScalingStatus::Representation
707
+
700
708
  property :service, as: 'service'
701
709
  property :service_account, as: 'serviceAccount'
702
710
  property :session_affinity, as: 'sessionAffinity'
@@ -718,6 +726,13 @@ module Google
718
726
  end
719
727
  end
720
728
 
729
+ class GoogleCloudRunV2RevisionScalingStatus
730
+ # @private
731
+ class Representation < Google::Apis::Core::JsonRepresentation
732
+ property :desired_min_instance_count, as: 'desiredMinInstanceCount'
733
+ end
734
+ end
735
+
721
736
  class GoogleCloudRunV2RevisionTemplate
722
737
  # @private
723
738
  class Representation < Google::Apis::Core::JsonRepresentation
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.50.0
4
+ version: 0.51.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-10-08 00:00:00.000000000 Z
11
+ date: 2023-10-15 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.50.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.51.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: []