google-apis-run_v2 0.117.0 → 0.118.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d5d0a21a137448bd6286a71cf23aa8eeefeb6e5450750636e1b2c01e3a261d31
4
- data.tar.gz: 7e03007387a60a4e31d769cf7244d2d5800b565ade9c3a6bcd1c995c1bfa5c2c
3
+ metadata.gz: ef37677506246933875973fa04d1986fb242ad0bf31b1573fd6d594b28226ae0
4
+ data.tar.gz: 32b7c16eba1e116655ab512f19250835af7f265dcbe9167aebc69563827045e2
5
5
  SHA512:
6
- metadata.gz: d708107519e0349e77fe33178b905e7c6ad1489857e22704df4e85a0f67545e38c23dfd99a648d4967caf6b51535ec067bdc9e7245842b74bb1398737b8a611a
7
- data.tar.gz: ad3e9f0a9c3fea3e5e5e85ce305a87bbe2170bea7715c9fd27ced7f3685b9fb7227475e7adf684c75daf982d8f9294f5bb4261fb6d87afaf04a07cf45a696e2b
6
+ metadata.gz: 7bae70a61d2530ca0e5d8bea62b8bca287534bd378a7a14711ae90a16bb9e763262ddcbafb71acb3271e1513cf68936feb2b5c696793fc98ef7875a8d7b36ca5
7
+ data.tar.gz: a56c13e66124f953d0a771bc7cfc812419689fa080b3929cd23a2b1d5302d2fbef94594a6d47f26570817e4166f2c00cf11f3b131f818b4b4eb063639f7762b3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-run_v2
2
2
 
3
+ ### v0.118.0 (2026-07-19)
4
+
5
+ * Regenerated from discovery document revision 20260713
6
+
3
7
  ### v0.117.0 (2026-07-05)
4
8
 
5
9
  * Regenerated from discovery document revision 20260619
@@ -325,6 +325,11 @@ module Google
325
325
  # @return [String]
326
326
  attr_accessor :execution_reason
327
327
 
328
+ # Output only. A reason for the instance condition.
329
+ # Corresponds to the JSON property `instanceReason`
330
+ # @return [String]
331
+ attr_accessor :instance_reason
332
+
328
333
  # Last time the condition transitioned from one status to another.
329
334
  # Corresponds to the JSON property `lastTransitionTime`
330
335
  # @return [String]
@@ -370,6 +375,7 @@ module Google
370
375
  # Update properties of this object
371
376
  def update!(**args)
372
377
  @execution_reason = args[:execution_reason] if args.key?(:execution_reason)
378
+ @instance_reason = args[:instance_reason] if args.key?(:instance_reason)
373
379
  @last_transition_time = args[:last_transition_time] if args.key?(:last_transition_time)
374
380
  @message = args[:message] if args.key?(:message)
375
381
  @reason = args[:reason] if args.key?(:reason)
@@ -3188,6 +3194,12 @@ module Google
3188
3194
  # @return [Google::Apis::RunV2::GoogleCloudRunV2ServiceScaling]
3189
3195
  attr_accessor :scaling
3190
3196
 
3197
+ # Optional. Enables SSH access to the Service.
3198
+ # Corresponds to the JSON property `sshEnabled`
3199
+ # @return [Boolean]
3200
+ attr_accessor :ssh_enabled
3201
+ alias_method :ssh_enabled?, :ssh_enabled
3202
+
3191
3203
  # RevisionTemplate describes the data a revision should have when created from a
3192
3204
  # template.
3193
3205
  # Corresponds to the JSON property `template`
@@ -3276,6 +3288,7 @@ module Google
3276
3288
  @reconciling = args[:reconciling] if args.key?(:reconciling)
3277
3289
  @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
3278
3290
  @scaling = args[:scaling] if args.key?(:scaling)
3291
+ @ssh_enabled = args[:ssh_enabled] if args.key?(:ssh_enabled)
3279
3292
  @template = args[:template] if args.key?(:template)
3280
3293
  @terminal_condition = args[:terminal_condition] if args.key?(:terminal_condition)
3281
3294
  @threat_detection_enabled = args[:threat_detection_enabled] if args.key?(:threat_detection_enabled)
@@ -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.117.0"
19
+ GEM_VERSION = "0.118.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260619"
25
+ REVISION = "20260713"
26
26
  end
27
27
  end
28
28
  end
@@ -941,6 +941,7 @@ module Google
941
941
  # @private
942
942
  class Representation < Google::Apis::Core::JsonRepresentation
943
943
  property :execution_reason, as: 'executionReason'
944
+ property :instance_reason, as: 'instanceReason'
944
945
  property :last_transition_time, as: 'lastTransitionTime'
945
946
  property :message, as: 'message'
946
947
  property :reason, as: 'reason'
@@ -1595,6 +1596,7 @@ module Google
1595
1596
  property :satisfies_pzs, as: 'satisfiesPzs'
1596
1597
  property :scaling, as: 'scaling', class: Google::Apis::RunV2::GoogleCloudRunV2ServiceScaling, decorator: Google::Apis::RunV2::GoogleCloudRunV2ServiceScaling::Representation
1597
1598
 
1599
+ property :ssh_enabled, as: 'sshEnabled'
1598
1600
  property :template, as: 'template', class: Google::Apis::RunV2::GoogleCloudRunV2RevisionTemplate, decorator: Google::Apis::RunV2::GoogleCloudRunV2RevisionTemplate::Representation
1599
1601
 
1600
1602
  property :terminal_condition, as: 'terminalCondition', class: Google::Apis::RunV2::GoogleCloudRunV2Condition, decorator: Google::Apis::RunV2::GoogleCloudRunV2Condition::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.117.0
4
+ version: 0.118.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.117.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.118.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: