google-apis-run_v2 0.94.0 → 0.96.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: 71401e0e74192b29ce9d5fdc4200cfc747985af46e705e8faa7cd640306add67
4
- data.tar.gz: 892f30757d882901a443af3dc735ae95b239e29ec82c248faf9f46634d5733ef
3
+ metadata.gz: d4d4232913496fbbc4818a3adfe448afbfe389dc61fcf4fc95810ba7d3519927
4
+ data.tar.gz: 275834cb36e9165b3f0088c4fd6b13b01c61d582f83a52e790e42902522d2495
5
5
  SHA512:
6
- metadata.gz: '08f5ea21c8bbcba52c388782523273daf3400dfcd51c92524ba2202ac8c58a0abe89650c1c59da64bc0fdac1311a3b671d0d6e06ff2d25d3597c2832ad6f08f2'
7
- data.tar.gz: d300321e6cb96f5e9e540974334db689460930bb37fa6d99b54431fd252673e6390836fce4e8e03dfdb0d2b2fbb242486c282df3e257c7f1935a42146d13904d
6
+ metadata.gz: 394ac0e0c6cd2bdfb9bb7a215928ee542421974a60c70872d4f81fa794d8a340b7df09dd9d61d94f8b41c1c48d742246c3e4eadc7513d080897b609776cc4bf8
7
+ data.tar.gz: 6daaaf1c847a43407e94854664ecd3dc361dd4a74b82cd0a8031a1723ababcfb4ddbc4decf827215177550c2a180b0c3a457dbdfd50eb8b8cdfb1036267ee396
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-run_v2
2
2
 
3
+ ### v0.96.0 (2025-08-24)
4
+
5
+ * Regenerated from discovery document revision 20250818
6
+
7
+ ### v0.95.0 (2025-08-17)
8
+
9
+ * Regenerated from discovery document revision 20250808
10
+
3
11
  ### v0.94.0 (2025-08-10)
4
12
 
5
13
  * Regenerated from discovery document revision 20250801
@@ -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)
@@ -3580,6 +3586,12 @@ module Google
3580
3586
  # @return [String]
3581
3587
  attr_accessor :name
3582
3588
 
3589
+ # Optional. Path within the volume from which the container's volume should be
3590
+ # mounted. Defaults to "" (volume's root).
3591
+ # Corresponds to the JSON property `subPath`
3592
+ # @return [String]
3593
+ attr_accessor :sub_path
3594
+
3583
3595
  def initialize(**args)
3584
3596
  update!(**args)
3585
3597
  end
@@ -3588,6 +3600,7 @@ module Google
3588
3600
  def update!(**args)
3589
3601
  @mount_path = args[:mount_path] if args.key?(:mount_path)
3590
3602
  @name = args[:name] if args.key?(:name)
3603
+ @sub_path = args[:sub_path] if args.key?(:sub_path)
3591
3604
  end
3592
3605
  end
3593
3606
 
@@ -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.94.0"
19
+ GEM_VERSION = "0.96.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 = "20250801"
25
+ REVISION = "20250818"
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
 
@@ -1605,6 +1606,7 @@ module Google
1605
1606
  class Representation < Google::Apis::Core::JsonRepresentation
1606
1607
  property :mount_path, as: 'mountPath'
1607
1608
  property :name, as: 'name'
1609
+ property :sub_path, as: 'subPath'
1608
1610
  end
1609
1611
  end
1610
1612
 
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.94.0
4
+ version: 0.96.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.94.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.96.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: