google-apis-run_v2 0.95.0 → 0.97.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: 6e77da5d2cf1e8ad676fd49b81477ef75be58a4c7d5702d9621fd6be4ce4be65
4
- data.tar.gz: 46f88ecdc0163d3d77adf2f2a98f820426fa511c29c5ba64b2bfac81c393321e
3
+ metadata.gz: a05a378af85c3d2228f8643936505b4f0d93062793696397d31c55c7468ba9a8
4
+ data.tar.gz: ae7c6a7fae039206201bc7dcd1d54098a5b7ce658e96bbad0619915941963bdd
5
5
  SHA512:
6
- metadata.gz: 13d1c5537a93bc9c7648248989dffc095a3ed64f1b1ab1ed39de9c8a1861526f994afe70915b3a696b992192823e6a5a5c3083b30025060e86a0047e19fc5aa2
7
- data.tar.gz: 3372cdd038cfc8657afe1a6857c5b32204de615f5c5008b499391b0960c460fb9ca011ca9ede31b56e1de9252faa295bf4b81dbcd240ddf3b6d32fe85723108b
6
+ metadata.gz: 857e9219388d1d0f14be508c626dd817ce519b34e54510bd238c89faf8020f4d8a81c767ca603c925e9f35c37411be2033f4e4b9375967a870aac6c47caacdfd
7
+ data.tar.gz: f57ea80f9c31bb4a4a92d3cf90281fa4486e850113faa62021361adc47ac6c8ad25eb7e7883239e25c16b8b19005414f11ece6a258519cb903d8440aa71d854c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-run_v2
2
2
 
3
+ ### v0.97.0 (2025-09-07)
4
+
5
+ * Regenerated from discovery document revision 20250829
6
+
7
+ ### v0.96.0 (2025-08-24)
8
+
9
+ * Regenerated from discovery document revision 20250818
10
+
3
11
  ### v0.95.0 (2025-08-17)
4
12
 
5
13
  * Regenerated from discovery document revision 20250808
@@ -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 key will be used as the
2444
- # version to fetch from Cloud Secret Manager and the path will be the name of
2445
- # the file exposed in the volume. When items are defined, they must specify a
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
@@ -2917,6 +2917,11 @@ module Google
2917
2917
  # @return [String]
2918
2918
  attr_accessor :machine_type
2919
2919
 
2920
+ # Optional. The release track of the client that initiated the build request.
2921
+ # Corresponds to the JSON property `releaseTrack`
2922
+ # @return [String]
2923
+ attr_accessor :release_track
2924
+
2920
2925
  # Optional. The service account to use for the build. If not set, the default
2921
2926
  # Cloud Build service account for the project will be used.
2922
2927
  # Corresponds to the JSON property `serviceAccount`
@@ -2952,6 +2957,7 @@ module Google
2952
2957
  @docker_build = args[:docker_build] if args.key?(:docker_build)
2953
2958
  @image_uri = args[:image_uri] if args.key?(:image_uri)
2954
2959
  @machine_type = args[:machine_type] if args.key?(:machine_type)
2960
+ @release_track = args[:release_track] if args.key?(:release_track)
2955
2961
  @service_account = args[:service_account] if args.key?(:service_account)
2956
2962
  @storage_source = args[:storage_source] if args.key?(:storage_source)
2957
2963
  @tags = args[:tags] if args.key?(:tags)
@@ -5307,7 +5313,8 @@ module Google
5307
5313
  class GoogleDevtoolsCloudbuildV1NpmPackage
5308
5314
  include Google::Apis::Core::Hashable
5309
5315
 
5310
- # Path to the package.json. e.g. workspace/path/to/package
5316
+ # Optional. Path to the package.json. e.g. workspace/path/to/package Only one of
5317
+ # `archive` or `package_path` can be specified.
5311
5318
  # Corresponds to the JSON property `packagePath`
5312
5319
  # @return [String]
5313
5320
  attr_accessor :package_path
@@ -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.95.0"
19
+ GEM_VERSION = "0.97.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 = "20250808"
25
+ REVISION = "20250829"
26
26
  end
27
27
  end
28
28
  end
@@ -1453,6 +1453,7 @@ module Google
1453
1453
 
1454
1454
  property :image_uri, as: 'imageUri'
1455
1455
  property :machine_type, as: 'machineType'
1456
+ property :release_track, as: 'releaseTrack'
1456
1457
  property :service_account, as: 'serviceAccount'
1457
1458
  property :storage_source, as: 'storageSource', class: Google::Apis::RunV2::GoogleCloudRunV2StorageSource, decorator: Google::Apis::RunV2::GoogleCloudRunV2StorageSource::Representation
1458
1459
 
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.95.0
4
+ version: 0.97.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.95.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.97.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: