google-apis-run_v2 0.96.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fc31ac128a213a2f3b542ccb359c9e2d75910b88356594620aa394b0c0e1ae45
|
4
|
+
data.tar.gz: 55faec427af122f4b2777a1a5c6874cc0d401dccbdd068b1fd581cb16ec5df12
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 28c9a990f8634bd50b4d3c9cda2bd25904ad32bd07f4f0327b5eecb1cb5703fff920b92bca92ec29cbf409b2107eb0d8c7b36fa004a4d633cf6e86a3dbfde2d9
|
7
|
+
data.tar.gz: d2d3b947f972028d0eb13e80de5b2739175a89719f4e4af67544d6b67716ae9ff70d648862948ed01d390e2828b88742123ec4cdf99552249d3eb09cb572ade6
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
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
|
+
|
7
|
+
### v0.97.0 (2025-09-07)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250829
|
10
|
+
|
3
11
|
### v0.96.0 (2025-08-24)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250818
|
@@ -2440,10 +2440,10 @@ module Google
|
|
2440
2440
|
attr_accessor :default_mode
|
2441
2441
|
|
2442
2442
|
# If unspecified, the volume will expose a file whose name is the secret,
|
2443
|
-
# relative to VolumeMount.mount_path. If specified, the
|
2444
|
-
# version to fetch from Cloud Secret Manager and the
|
2445
|
-
# the file exposed in the volume. When items are
|
2446
|
-
# path and a version.
|
2443
|
+
# relative to VolumeMount.mount_path + VolumeMount.sub_path. If specified, the
|
2444
|
+
# key will be used as the version to fetch from Cloud Secret Manager and the
|
2445
|
+
# path will be the name of the file exposed in the volume. When items are
|
2446
|
+
# defined, they must specify a path and a version.
|
2447
2447
|
# Corresponds to the JSON property `items`
|
2448
2448
|
# @return [Array<Google::Apis::RunV2::GoogleCloudRunV2VersionToPath>]
|
2449
2449
|
attr_accessor :items
|
@@ -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,
|
2644
|
-
# is ignored, and instead composed from CreateServiceRequest.parent
|
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)
|
@@ -5313,7 +5319,8 @@ module Google
|
|
5313
5319
|
class GoogleDevtoolsCloudbuildV1NpmPackage
|
5314
5320
|
include Google::Apis::Core::Hashable
|
5315
5321
|
|
5316
|
-
# Path to the package.json. e.g. workspace/path/to/package
|
5322
|
+
# Optional. Path to the package.json. e.g. workspace/path/to/package Only one of
|
5323
|
+
# `archive` or `package_path` can be specified.
|
5317
5324
|
# Corresponds to the JSON property `packagePath`
|
5318
5325
|
# @return [String]
|
5319
5326
|
attr_accessor :package_path
|
@@ -6393,6 +6400,13 @@ module Google
|
|
6393
6400
|
# @return [Array<Google::Apis::RunV2::GoogleLongrunningOperation>]
|
6394
6401
|
attr_accessor :operations
|
6395
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
|
+
|
6396
6410
|
def initialize(**args)
|
6397
6411
|
update!(**args)
|
6398
6412
|
end
|
@@ -6401,6 +6415,7 @@ module Google
|
|
6401
6415
|
def update!(**args)
|
6402
6416
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
6403
6417
|
@operations = args[:operations] if args.key?(:operations)
|
6418
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
6404
6419
|
end
|
6405
6420
|
end
|
6406
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.
|
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 = "
|
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,
|
1192
|
-
# is ignored, and instead composed from CreateServiceRequest.parent
|
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.
|
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.
|
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:
|