google-apis-run_v2 0.97.0 → 0.98.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: a05a378af85c3d2228f8643936505b4f0d93062793696397d31c55c7468ba9a8
4
- data.tar.gz: ae7c6a7fae039206201bc7dcd1d54098a5b7ce658e96bbad0619915941963bdd
3
+ metadata.gz: fc31ac128a213a2f3b542ccb359c9e2d75910b88356594620aa394b0c0e1ae45
4
+ data.tar.gz: 55faec427af122f4b2777a1a5c6874cc0d401dccbdd068b1fd581cb16ec5df12
5
5
  SHA512:
6
- metadata.gz: 857e9219388d1d0f14be508c626dd817ce519b34e54510bd238c89faf8020f4d8a81c767ca603c925e9f35c37411be2033f4e4b9375967a870aac6c47caacdfd
7
- data.tar.gz: f57ea80f9c31bb4a4a92d3cf90281fa4486e850113faa62021361adc47ac6c8ad25eb7e7883239e25c16b8b19005414f11ece6a258519cb903d8440aa71d854c
6
+ metadata.gz: 28c9a990f8634bd50b4d3c9cda2bd25904ad32bd07f4f0327b5eecb1cb5703fff920b92bca92ec29cbf409b2107eb0d8c7b36fa004a4d633cf6e86a3dbfde2d9
7
+ data.tar.gz: d2d3b947f972028d0eb13e80de5b2739175a89719f4e4af67544d6b67716ae9ff70d648862948ed01d390e2828b88742123ec4cdf99552249d3eb09cb572ade6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-run_v2
2
2
 
3
+ ### v0.98.0 (2025-10-05)
4
+
5
+ * Regenerated from discovery document revision 20250929
6
+
3
7
  ### v0.97.0 (2025-09-07)
4
8
 
5
9
  * Regenerated from discovery document revision 20250829
@@ -2640,9 +2640,9 @@ module Google
2640
2640
  # @return [Google::Apis::RunV2::GoogleCloudRunV2MultiRegionSettings]
2641
2641
  attr_accessor :multi_region_settings
2642
2642
 
2643
- # The fully qualified name of this Service. In CreateServiceRequest, this field
2644
- # is ignored, and instead composed from CreateServiceRequest.parent and
2645
- # CreateServiceRequest.service_id. Format: projects/`project`/locations/`
2643
+ # Identifier. The fully qualified name of this Service. In CreateServiceRequest,
2644
+ # this field is ignored, and instead composed from CreateServiceRequest.parent
2645
+ # and CreateServiceRequest.service_id. Format: projects/`project`/locations/`
2646
2646
  # location`/services/`service_id`
2647
2647
  # Corresponds to the JSON property `name`
2648
2648
  # @return [String]
@@ -2900,6 +2900,11 @@ module Google
2900
2900
  # @return [Google::Apis::RunV2::GoogleCloudRunV2BuildpacksBuild]
2901
2901
  attr_accessor :buildpack_build
2902
2902
 
2903
+ # Optional. The client that initiated the build request.
2904
+ # Corresponds to the JSON property `client`
2905
+ # @return [String]
2906
+ attr_accessor :client
2907
+
2903
2908
  # Build the source using Docker. This means the source has a Dockerfile.
2904
2909
  # Corresponds to the JSON property `dockerBuild`
2905
2910
  # @return [Google::Apis::RunV2::GoogleCloudRunV2DockerBuild]
@@ -2954,6 +2959,7 @@ module Google
2954
2959
  # Update properties of this object
2955
2960
  def update!(**args)
2956
2961
  @buildpack_build = args[:buildpack_build] if args.key?(:buildpack_build)
2962
+ @client = args[:client] if args.key?(:client)
2957
2963
  @docker_build = args[:docker_build] if args.key?(:docker_build)
2958
2964
  @image_uri = args[:image_uri] if args.key?(:image_uri)
2959
2965
  @machine_type = args[:machine_type] if args.key?(:machine_type)
@@ -6394,6 +6400,13 @@ module Google
6394
6400
  # @return [Array<Google::Apis::RunV2::GoogleLongrunningOperation>]
6395
6401
  attr_accessor :operations
6396
6402
 
6403
+ # Unordered list. Unreachable resources. Populated when the request sets `
6404
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
6405
+ # when attempting to list all resources across all supported locations.
6406
+ # Corresponds to the JSON property `unreachable`
6407
+ # @return [Array<String>]
6408
+ attr_accessor :unreachable
6409
+
6397
6410
  def initialize(**args)
6398
6411
  update!(**args)
6399
6412
  end
@@ -6402,6 +6415,7 @@ module Google
6402
6415
  def update!(**args)
6403
6416
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
6404
6417
  @operations = args[:operations] if args.key?(:operations)
6418
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
6405
6419
  end
6406
6420
  end
6407
6421
 
@@ -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.97.0"
19
+ GEM_VERSION = "0.98.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 = "20250829"
25
+ REVISION = "20250929"
26
26
  end
27
27
  end
28
28
  end
@@ -1449,6 +1449,7 @@ module Google
1449
1449
  class Representation < Google::Apis::Core::JsonRepresentation
1450
1450
  property :buildpack_build, as: 'buildpackBuild', class: Google::Apis::RunV2::GoogleCloudRunV2BuildpacksBuild, decorator: Google::Apis::RunV2::GoogleCloudRunV2BuildpacksBuild::Representation
1451
1451
 
1452
+ property :client, as: 'client'
1452
1453
  property :docker_build, as: 'dockerBuild', class: Google::Apis::RunV2::GoogleCloudRunV2DockerBuild, decorator: Google::Apis::RunV2::GoogleCloudRunV2DockerBuild::Representation
1453
1454
 
1454
1455
  property :image_uri, as: 'imageUri'
@@ -2272,6 +2273,7 @@ module Google
2272
2273
  property :next_page_token, as: 'nextPageToken'
2273
2274
  collection :operations, as: 'operations', class: Google::Apis::RunV2::GoogleLongrunningOperation, decorator: Google::Apis::RunV2::GoogleLongrunningOperation::Representation
2274
2275
 
2276
+ collection :unreachable, as: 'unreachable'
2275
2277
  end
2276
2278
  end
2277
2279
 
@@ -914,6 +914,13 @@ module Google
914
914
  # @param [String] page_token
915
915
  # Token identifying which result to start with, which is returned by a previous
916
916
  # list call.
917
+ # @param [Boolean] return_partial_success
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.
917
924
  # @param [String] fields
918
925
  # Selector specifying which fields to include in a partial response.
919
926
  # @param [String] quota_user
@@ -931,7 +938,7 @@ module Google
931
938
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
932
939
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
933
940
  # @raise [Google::Apis::AuthorizationError] Authorization is required
934
- def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
941
+ def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
935
942
  command = make_simple_command(:get, 'v2/{+name}/operations', options)
936
943
  command.response_representation = Google::Apis::RunV2::GoogleLongrunningListOperationsResponse::Representation
937
944
  command.response_class = Google::Apis::RunV2::GoogleLongrunningListOperationsResponse
@@ -939,6 +946,7 @@ module Google
939
946
  command.query['filter'] = filter unless filter.nil?
940
947
  command.query['pageSize'] = page_size unless page_size.nil?
941
948
  command.query['pageToken'] = page_token unless page_token.nil?
949
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
942
950
  command.query['fields'] = fields unless fields.nil?
943
951
  command.query['quotaUser'] = quota_user unless quota_user.nil?
944
952
  execute_or_queue_command(command, &block)
@@ -1188,9 +1196,9 @@ module Google
1188
1196
 
1189
1197
  # Updates a Service.
1190
1198
  # @param [String] name
1191
- # The fully qualified name of this Service. In CreateServiceRequest, this field
1192
- # is ignored, and instead composed from CreateServiceRequest.parent and
1193
- # CreateServiceRequest.service_id. Format: projects/`project`/locations/`
1199
+ # Identifier. The fully qualified name of this Service. In CreateServiceRequest,
1200
+ # this field is ignored, and instead composed from CreateServiceRequest.parent
1201
+ # and CreateServiceRequest.service_id. Format: projects/`project`/locations/`
1194
1202
  # location`/services/`service_id`
1195
1203
  # @param [Google::Apis::RunV2::GoogleCloudRunV2Service] google_cloud_run_v2_service_object
1196
1204
  # @param [Boolean] allow_missing
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.97.0
4
+ version: 0.98.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.97.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.98.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: