google-apis-run_v2 0.102.0 → 0.103.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: 1a35bd9f7467be9c965a29b7e8109170e8bc2badbb2332b9f60a0004e95ec249
4
- data.tar.gz: 63574035b5ebbb65691c8f9bd66d73b39b33f00b8ae1179db1362a22a6b8b423
3
+ metadata.gz: 549a4d1625710578fd8c893e3ca470102e7cf6284847934da90024e7b407f180
4
+ data.tar.gz: 3dbacc1ef384ac9de500d0b17272b48c1b56a1e05983bae32024e65d4fa22a37
5
5
  SHA512:
6
- metadata.gz: e13d1b1c17d761ee1a76c8c7cd11cdf4925f776acd5f4140562d4ac839bd98045d09e103c8478123eb5b1dcc6000716f113e625c278946c932009a67754c8302
7
- data.tar.gz: 5ee3db8306f5fc6c87cbf67ddb053b51e00976cd75b9b944e09878bbb732b784bdd8574be6e448529534890a6def282333b1fd43cf3ade4b18583dbe40f3c865
6
+ metadata.gz: d41a26502d28061059fc817b8bf26c543a6a00c7baf3cc7c42bbffd81a183a72dddb84f660750dbd83edeab2553d807757a416fa6178412be802481b3401b68b
7
+ data.tar.gz: b5368fc6aed6aaee5877ca261044536dea89c41b4d62dec39d8bb3b8d0311fdf2f44bb2ab74c958abddb01f2121c7f2d7100ca5987d146c9d0fe3a4bcfd4afd9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-run_v2
2
2
 
3
+ ### v0.103.0 (2025-12-07)
4
+
5
+ * Regenerated from discovery document revision 20251202
6
+
3
7
  ### v0.102.0 (2025-11-09)
4
8
 
5
9
  * Regenerated from discovery document revision 20251031
@@ -1598,6 +1598,12 @@ module Google
1598
1598
  # @return [Array<Google::Apis::RunV2::GoogleCloudRunV2Service>]
1599
1599
  attr_accessor :services
1600
1600
 
1601
+ # Output only. For global requests, returns the list of regions that could not
1602
+ # be reached within the deadline.
1603
+ # Corresponds to the JSON property `unreachable`
1604
+ # @return [Array<String>]
1605
+ attr_accessor :unreachable
1606
+
1601
1607
  def initialize(**args)
1602
1608
  update!(**args)
1603
1609
  end
@@ -1606,6 +1612,7 @@ module Google
1606
1612
  def update!(**args)
1607
1613
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1608
1614
  @services = args[:services] if args.key?(:services)
1615
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
1609
1616
  end
1610
1617
  end
1611
1618
 
@@ -3757,11 +3764,7 @@ module Google
3757
3764
  # @return [String]
3758
3765
  attr_accessor :creator
3759
3766
 
3760
- # One or more custom audiences that you want this worker pool to support.
3761
- # Specify each custom audience as the full URL in a string. The custom audiences
3762
- # are encoded in the token and used to authenticate requests. For more
3763
- # information, see https://cloud.google.com/run/docs/configuring/custom-
3764
- # audiences.
3767
+ # Not supported, and ignored by Cloud Run.
3765
3768
  # Corresponds to the JSON property `customAudiences`
3766
3769
  # @return [Array<String>]
3767
3770
  attr_accessor :custom_audiences
@@ -3916,6 +3919,13 @@ module Google
3916
3919
  # @return [Google::Apis::RunV2::GoogleCloudRunV2Condition]
3917
3920
  attr_accessor :terminal_condition
3918
3921
 
3922
+ # Output only. Indicates whether Cloud Run Threat Detection monitoring is
3923
+ # enabled for the parent project of this worker pool.
3924
+ # Corresponds to the JSON property `threatDetectionEnabled`
3925
+ # @return [Boolean]
3926
+ attr_accessor :threat_detection_enabled
3927
+ alias_method :threat_detection_enabled?, :threat_detection_enabled
3928
+
3919
3929
  # Output only. Server assigned unique identifier for the trigger. The value is a
3920
3930
  # UUID4 string and guaranteed to remain unchanged until the resource is deleted.
3921
3931
  # Corresponds to the JSON property `uid`
@@ -3960,6 +3970,7 @@ module Google
3960
3970
  @scaling = args[:scaling] if args.key?(:scaling)
3961
3971
  @template = args[:template] if args.key?(:template)
3962
3972
  @terminal_condition = args[:terminal_condition] if args.key?(:terminal_condition)
3973
+ @threat_detection_enabled = args[:threat_detection_enabled] if args.key?(:threat_detection_enabled)
3963
3974
  @uid = args[:uid] if args.key?(:uid)
3964
3975
  @update_time = args[:update_time] if args.key?(:update_time)
3965
3976
  end
@@ -5338,6 +5349,14 @@ module Google
5338
5349
  # @return [String]
5339
5350
  attr_accessor :artifact_id
5340
5351
 
5352
+ # Optional. Path to a folder containing the files to upload to Artifact Registry.
5353
+ # This can be either an absolute path, e.g. `/workspace/my-app/target/`, or a
5354
+ # relative path from /workspace, e.g. `my-app/target/`. This field is mutually
5355
+ # exclusive with the `path` field.
5356
+ # Corresponds to the JSON property `deployFolder`
5357
+ # @return [String]
5358
+ attr_accessor :deploy_folder
5359
+
5341
5360
  # Maven `groupId` value used when uploading the artifact to Artifact Registry.
5342
5361
  # Corresponds to the JSON property `groupId`
5343
5362
  # @return [String]
@@ -5370,6 +5389,7 @@ module Google
5370
5389
  # Update properties of this object
5371
5390
  def update!(**args)
5372
5391
  @artifact_id = args[:artifact_id] if args.key?(:artifact_id)
5392
+ @deploy_folder = args[:deploy_folder] if args.key?(:deploy_folder)
5373
5393
  @group_id = args[:group_id] if args.key?(:group_id)
5374
5394
  @path = args[:path] if args.key?(:path)
5375
5395
  @repository = args[:repository] if args.key?(:repository)
@@ -6488,8 +6508,9 @@ module Google
6488
6508
  attr_accessor :operations
6489
6509
 
6490
6510
  # Unordered list. Unreachable resources. Populated when the request sets `
6491
- # ListOperationsRequest.return_partial_success` and reads across collections e.g.
6492
- # when attempting to list all resources across all supported locations.
6511
+ # ListOperationsRequest.return_partial_success` and reads across collections.
6512
+ # For example, when attempting to list all resources across all supported
6513
+ # locations.
6493
6514
  # Corresponds to the JSON property `unreachable`
6494
6515
  # @return [Array<String>]
6495
6516
  attr_accessor :unreachable
@@ -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.102.0"
19
+ GEM_VERSION = "0.103.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 = "20251031"
25
+ REVISION = "20251202"
26
26
  end
27
27
  end
28
28
  end
@@ -1170,6 +1170,7 @@ module Google
1170
1170
  property :next_page_token, as: 'nextPageToken'
1171
1171
  collection :services, as: 'services', class: Google::Apis::RunV2::GoogleCloudRunV2Service, decorator: Google::Apis::RunV2::GoogleCloudRunV2Service::Representation
1172
1172
 
1173
+ collection :unreachable, as: 'unreachable'
1173
1174
  end
1174
1175
  end
1175
1176
 
@@ -1689,6 +1690,7 @@ module Google
1689
1690
 
1690
1691
  property :terminal_condition, as: 'terminalCondition', class: Google::Apis::RunV2::GoogleCloudRunV2Condition, decorator: Google::Apis::RunV2::GoogleCloudRunV2Condition::Representation
1691
1692
 
1693
+ property :threat_detection_enabled, as: 'threatDetectionEnabled'
1692
1694
  property :uid, as: 'uid'
1693
1695
  property :update_time, as: 'updateTime'
1694
1696
  end
@@ -2022,6 +2024,7 @@ module Google
2022
2024
  # @private
2023
2025
  class Representation < Google::Apis::Core::JsonRepresentation
2024
2026
  property :artifact_id, as: 'artifactId'
2027
+ property :deploy_folder, as: 'deployFolder'
2025
2028
  property :group_id, as: 'groupId'
2026
2029
  property :path, as: 'path'
2027
2030
  property :repository, as: 'repository'
@@ -916,11 +916,12 @@ module Google
916
916
  # list call.
917
917
  # @param [Boolean] return_partial_success
918
918
  # When set to `true`, operations that are reachable are returned as normal, and
919
- # those that are unreachable are returned in the [ListOperationsResponse.
920
- # unreachable] field. This can only be `true` when reading across collections e.
921
- # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
922
- # by default supported and will result in an `UNIMPLEMENTED` error if set unless
923
- # explicitly documented otherwise in service or product specific documentation.
919
+ # those that are unreachable are returned in the ListOperationsResponse.
920
+ # unreachable field. This can only be `true` when reading across collections.
921
+ # For example, when `parent` is set to `"projects/example/locations/-"`. This
922
+ # field is not supported by default and will result in an `UNIMPLEMENTED` error
923
+ # if set unless explicitly documented otherwise in service or product specific
924
+ # documentation.
924
925
  # @param [String] fields
925
926
  # Selector specifying which fields to include in a partial response.
926
927
  # @param [String] quota_user
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.102.0
4
+ version: 0.103.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.102.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.103.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: