google-apis-run_v2 0.93.0 → 0.95.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/run_v2/classes.rb +28 -13
- data/lib/google/apis/run_v2/gem_version.rb +2 -2
- data/lib/google/apis/run_v2/representations.rb +2 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6e77da5d2cf1e8ad676fd49b81477ef75be58a4c7d5702d9621fd6be4ce4be65
|
4
|
+
data.tar.gz: 46f88ecdc0163d3d77adf2f2a98f820426fa511c29c5ba64b2bfac81c393321e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 13d1c5537a93bc9c7648248989dffc095a3ed64f1b1ab1ed39de9c8a1861526f994afe70915b3a696b992192823e6a5a5c3083b30025060e86a0047e19fc5aa2
|
7
|
+
data.tar.gz: 3372cdd038cfc8657afe1a6857c5b32204de615f5c5008b499391b0960c460fb9ca011ca9ede31b56e1de9252faa295bf4b81dbcd240ddf3b6d32fe85723108b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-run_v2
|
2
2
|
|
3
|
+
### v0.95.0 (2025-08-17)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250808
|
6
|
+
|
7
|
+
### v0.94.0 (2025-08-10)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250801
|
10
|
+
|
3
11
|
### v0.93.0 (2025-07-27)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250718
|
@@ -2910,6 +2910,13 @@ module Google
|
|
2910
2910
|
# @return [String]
|
2911
2911
|
attr_accessor :image_uri
|
2912
2912
|
|
2913
|
+
# Optional. The machine type from default pool to use for the build. If left
|
2914
|
+
# blank, cloudbuild will use a sensible default. Currently only E2_HIGHCPU_8 is
|
2915
|
+
# supported. If worker_pool is set, this field will be ignored.
|
2916
|
+
# Corresponds to the JSON property `machineType`
|
2917
|
+
# @return [String]
|
2918
|
+
attr_accessor :machine_type
|
2919
|
+
|
2913
2920
|
# Optional. The service account to use for the build. If not set, the default
|
2914
2921
|
# Cloud Build service account for the project will be used.
|
2915
2922
|
# Corresponds to the JSON property `serviceAccount`
|
@@ -2944,6 +2951,7 @@ module Google
|
|
2944
2951
|
@buildpack_build = args[:buildpack_build] if args.key?(:buildpack_build)
|
2945
2952
|
@docker_build = args[:docker_build] if args.key?(:docker_build)
|
2946
2953
|
@image_uri = args[:image_uri] if args.key?(:image_uri)
|
2954
|
+
@machine_type = args[:machine_type] if args.key?(:machine_type)
|
2947
2955
|
@service_account = args[:service_account] if args.key?(:service_account)
|
2948
2956
|
@storage_source = args[:storage_source] if args.key?(:storage_source)
|
2949
2957
|
@tags = args[:tags] if args.key?(:tags)
|
@@ -3572,6 +3580,12 @@ module Google
|
|
3572
3580
|
# @return [String]
|
3573
3581
|
attr_accessor :name
|
3574
3582
|
|
3583
|
+
# Optional. Path within the volume from which the container's volume should be
|
3584
|
+
# mounted. Defaults to "" (volume's root).
|
3585
|
+
# Corresponds to the JSON property `subPath`
|
3586
|
+
# @return [String]
|
3587
|
+
attr_accessor :sub_path
|
3588
|
+
|
3575
3589
|
def initialize(**args)
|
3576
3590
|
update!(**args)
|
3577
3591
|
end
|
@@ -3580,6 +3594,7 @@ module Google
|
|
3580
3594
|
def update!(**args)
|
3581
3595
|
@mount_path = args[:mount_path] if args.key?(:mount_path)
|
3582
3596
|
@name = args[:name] if args.key?(:name)
|
3597
|
+
@sub_path = args[:sub_path] if args.key?(:sub_path)
|
3583
3598
|
end
|
3584
3599
|
end
|
3585
3600
|
|
@@ -3752,9 +3767,9 @@ module Google
|
|
3752
3767
|
# @return [String]
|
3753
3768
|
attr_accessor :latest_created_revision
|
3754
3769
|
|
3755
|
-
# Output only. Name of the latest revision that is serving
|
3756
|
-
# in `reconciling` for additional information on reconciliation process
|
3757
|
-
# Run.
|
3770
|
+
# Output only. Name of the latest revision that is serving workloads. See
|
3771
|
+
# comments in `reconciling` for additional information on reconciliation process
|
3772
|
+
# in Cloud Run.
|
3758
3773
|
# Corresponds to the JSON property `latestReadyRevision`
|
3759
3774
|
# @return [String]
|
3760
3775
|
attr_accessor :latest_ready_revision
|
@@ -3778,11 +3793,11 @@ module Google
|
|
3778
3793
|
# @return [String]
|
3779
3794
|
attr_accessor :name
|
3780
3795
|
|
3781
|
-
# Output only. The generation of this WorkerPool currently serving
|
3782
|
-
# comments in `reconciling` for additional information on reconciliation
|
3783
|
-
# in Cloud Run. Please note that unlike v1, this is an int64 value. As
|
3784
|
-
# Google APIs, its JSON representation will be a `string` instead of
|
3785
|
-
#
|
3796
|
+
# Output only. The generation of this WorkerPool currently serving workloads.
|
3797
|
+
# See comments in `reconciling` for additional information on reconciliation
|
3798
|
+
# process in Cloud Run. Please note that unlike v1, this is an int64 value. As
|
3799
|
+
# with most Google APIs, its JSON representation will be a `string` instead of
|
3800
|
+
# an `integer`.
|
3786
3801
|
# Corresponds to the JSON property `observedGeneration`
|
3787
3802
|
# @return [Fixnum]
|
3788
3803
|
attr_accessor :observed_generation
|
@@ -3792,16 +3807,16 @@ module Google
|
|
3792
3807
|
# created, or an existing one is updated, Cloud Run will asynchronously perform
|
3793
3808
|
# all necessary steps to bring the WorkerPool to the desired serving state. This
|
3794
3809
|
# process is called reconciliation. While reconciliation is in process, `
|
3795
|
-
# observed_generation`, `latest_ready_revison`, `
|
3796
|
-
# will have transient values that might mismatch the intended state: Once
|
3810
|
+
# observed_generation`, `latest_ready_revison`, `instance_split_statuses`, and `
|
3811
|
+
# uri` will have transient values that might mismatch the intended state: Once
|
3797
3812
|
# reconciliation is over (and this field is false), there are two possible
|
3798
3813
|
# outcomes: reconciliation succeeded and the serving state matches the
|
3799
3814
|
# WorkerPool, or there was an error, and reconciliation failed. This state can
|
3800
3815
|
# be found in `terminal_condition.state`. If reconciliation succeeded, the
|
3801
|
-
# following fields will match: `
|
3816
|
+
# following fields will match: `instance_splits` and `instance_split_statuses`, `
|
3802
3817
|
# observed_generation` and `generation`, `latest_ready_revision` and `
|
3803
|
-
# latest_created_revision`. If reconciliation failed, `
|
3804
|
-
# observed_generation`, and `latest_ready_revision` will have the state of the
|
3818
|
+
# latest_created_revision`. If reconciliation failed, `instance_split_statuses`,
|
3819
|
+
# `observed_generation`, and `latest_ready_revision` will have the state of the
|
3805
3820
|
# last serving revision, or empty for newly created WorkerPools. Additional
|
3806
3821
|
# information on the failure can be found in `terminal_condition` and `
|
3807
3822
|
# conditions`.
|
@@ -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.95.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 = "20250808"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1452,6 +1452,7 @@ module Google
|
|
1452
1452
|
property :docker_build, as: 'dockerBuild', class: Google::Apis::RunV2::GoogleCloudRunV2DockerBuild, decorator: Google::Apis::RunV2::GoogleCloudRunV2DockerBuild::Representation
|
1453
1453
|
|
1454
1454
|
property :image_uri, as: 'imageUri'
|
1455
|
+
property :machine_type, as: 'machineType'
|
1455
1456
|
property :service_account, as: 'serviceAccount'
|
1456
1457
|
property :storage_source, as: 'storageSource', class: Google::Apis::RunV2::GoogleCloudRunV2StorageSource, decorator: Google::Apis::RunV2::GoogleCloudRunV2StorageSource::Representation
|
1457
1458
|
|
@@ -1604,6 +1605,7 @@ module Google
|
|
1604
1605
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1605
1606
|
property :mount_path, as: 'mountPath'
|
1606
1607
|
property :name, as: 'name'
|
1608
|
+
property :sub_path, as: 'subPath'
|
1607
1609
|
end
|
1608
1610
|
end
|
1609
1611
|
|
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.95.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.95.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:
|