google-apis-run_v2 0.63.0 → 0.64.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 +5 -0
- data/lib/google/apis/run_v2/classes.rb +42 -1
- data/lib/google/apis/run_v2/gem_version.rb +3 -3
- data/lib/google/apis/run_v2/representations.rb +17 -0
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 65769b514e22dab34042948efac7291f81c4e5f09851c38640c9f2bcb5a4ec81
|
4
|
+
data.tar.gz: 8cee5dd118a410f9f96e39a54e0c5c15939ec85ed91fbcfc7774ce6396a1f2ce
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d05dff54aaf9e4708439cb5f21f349f34b355a5a883afe53cda16cc424e9b2b90d5cc63c708ac528c8769219129cfd7a30c3749e9aec6d9c131d59466c36d785
|
7
|
+
data.tar.gz: 14edaec2dbeaaf00902d50f25cdae45238cc40f4cfd0ecf6ed8cfb31b937e87ca31e33ea76c90c59b951e1b0d6ff7b8a2982f0586bae57305b650e117ee40c38
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-run_v2
|
2
2
|
|
3
|
+
### v0.64.0 (2024-05-19)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240510
|
6
|
+
* Regenerated using generator version 0.15.0
|
7
|
+
|
3
8
|
### v0.63.0 (2024-05-05)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20240426
|
@@ -3875,6 +3875,40 @@ module Google
|
|
3875
3875
|
end
|
3876
3876
|
end
|
3877
3877
|
|
3878
|
+
# Represents a storage location in Cloud Storage
|
3879
|
+
class GoogleDevtoolsCloudbuildV1GcsLocation
|
3880
|
+
include Google::Apis::Core::Hashable
|
3881
|
+
|
3882
|
+
# Cloud Storage bucket. See https://cloud.google.com/storage/docs/naming#
|
3883
|
+
# requirements
|
3884
|
+
# Corresponds to the JSON property `bucket`
|
3885
|
+
# @return [String]
|
3886
|
+
attr_accessor :bucket
|
3887
|
+
|
3888
|
+
# Cloud Storage generation for the object. If the generation is omitted, the
|
3889
|
+
# latest generation will be used.
|
3890
|
+
# Corresponds to the JSON property `generation`
|
3891
|
+
# @return [Fixnum]
|
3892
|
+
attr_accessor :generation
|
3893
|
+
|
3894
|
+
# Cloud Storage object. See https://cloud.google.com/storage/docs/naming#
|
3895
|
+
# objectnames
|
3896
|
+
# Corresponds to the JSON property `object`
|
3897
|
+
# @return [String]
|
3898
|
+
attr_accessor :object
|
3899
|
+
|
3900
|
+
def initialize(**args)
|
3901
|
+
update!(**args)
|
3902
|
+
end
|
3903
|
+
|
3904
|
+
# Update properties of this object
|
3905
|
+
def update!(**args)
|
3906
|
+
@bucket = args[:bucket] if args.key?(:bucket)
|
3907
|
+
@generation = args[:generation] if args.key?(:generation)
|
3908
|
+
@object = args[:object] if args.key?(:object)
|
3909
|
+
end
|
3910
|
+
end
|
3911
|
+
|
3878
3912
|
# GitConfig is a configuration for git operations.
|
3879
3913
|
class GoogleDevtoolsCloudbuildV1GitConfig
|
3880
3914
|
include Google::Apis::Core::Hashable
|
@@ -3970,6 +4004,11 @@ module Google
|
|
3970
4004
|
# @return [String]
|
3971
4005
|
attr_accessor :proxy_secret_version_name
|
3972
4006
|
|
4007
|
+
# Represents a storage location in Cloud Storage
|
4008
|
+
# Corresponds to the JSON property `proxySslCaInfo`
|
4009
|
+
# @return [Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1GcsLocation]
|
4010
|
+
attr_accessor :proxy_ssl_ca_info
|
4011
|
+
|
3973
4012
|
def initialize(**args)
|
3974
4013
|
update!(**args)
|
3975
4014
|
end
|
@@ -3977,6 +4016,7 @@ module Google
|
|
3977
4016
|
# Update properties of this object
|
3978
4017
|
def update!(**args)
|
3979
4018
|
@proxy_secret_version_name = args[:proxy_secret_version_name] if args.key?(:proxy_secret_version_name)
|
4019
|
+
@proxy_ssl_ca_info = args[:proxy_ssl_ca_info] if args.key?(:proxy_ssl_ca_info)
|
3980
4020
|
end
|
3981
4021
|
end
|
3982
4022
|
|
@@ -4233,7 +4273,8 @@ module Google
|
|
4233
4273
|
# List of build step outputs, produced by builder images, in the order
|
4234
4274
|
# corresponding to build step indices. [Cloud Builders](https://cloud.google.com/
|
4235
4275
|
# cloud-build/docs/cloud-builders) can produce this output by writing to `$
|
4236
|
-
# BUILDER_OUTPUT/output`. Only the first 50KB of data is stored.
|
4276
|
+
# BUILDER_OUTPUT/output`. Only the first 50KB of data is stored. Note that the `$
|
4277
|
+
# BUILDER_OUTPUT` variable is read-only and can't be substituted.
|
4237
4278
|
# Corresponds to the JSON property `buildStepOutputs`
|
4238
4279
|
# @return [Array<String>]
|
4239
4280
|
attr_accessor :build_step_outputs
|
@@ -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.64.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.15.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240510"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -424,6 +424,12 @@ module Google
|
|
424
424
|
include Google::Apis::Core::JsonObjectSupport
|
425
425
|
end
|
426
426
|
|
427
|
+
class GoogleDevtoolsCloudbuildV1GcsLocation
|
428
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
429
|
+
|
430
|
+
include Google::Apis::Core::JsonObjectSupport
|
431
|
+
end
|
432
|
+
|
427
433
|
class GoogleDevtoolsCloudbuildV1GitConfig
|
428
434
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
429
435
|
|
@@ -1548,6 +1554,15 @@ module Google
|
|
1548
1554
|
end
|
1549
1555
|
end
|
1550
1556
|
|
1557
|
+
class GoogleDevtoolsCloudbuildV1GcsLocation
|
1558
|
+
# @private
|
1559
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1560
|
+
property :bucket, as: 'bucket'
|
1561
|
+
property :generation, :numeric_string => true, as: 'generation'
|
1562
|
+
property :object, as: 'object'
|
1563
|
+
end
|
1564
|
+
end
|
1565
|
+
|
1551
1566
|
class GoogleDevtoolsCloudbuildV1GitConfig
|
1552
1567
|
# @private
|
1553
1568
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1577,6 +1592,8 @@ module Google
|
|
1577
1592
|
# @private
|
1578
1593
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1579
1594
|
property :proxy_secret_version_name, as: 'proxySecretVersionName'
|
1595
|
+
property :proxy_ssl_ca_info, as: 'proxySslCaInfo', class: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1GcsLocation, decorator: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1GcsLocation::Representation
|
1596
|
+
|
1580
1597
|
end
|
1581
1598
|
end
|
1582
1599
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.64.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-05-
|
11
|
+
date: 2024-05-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.15.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.15.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-run_v2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.64.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-run_v2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|