google-apis-cloudbuild_v2 0.11.0 → 0.13.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: d9ceefb04394c828fec360af01594802a18a1a2c3b1baafee12c2b60bc7fdbb5
|
|
4
|
+
data.tar.gz: c3da8a3b44486aaffebd44c43d2c41d88d13a0ad07ea5bbc99d76c6b650f8470
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dae0de2c69a715a6b86336f50dcd4bec0536d2d9022e0c526ce42d1cd43195438a956aa18c047babc6e11e7f7a20f35df7e722afae924b1c9c3902f8f02e8a61
|
|
7
|
+
data.tar.gz: 0bf82cb791767d3134f8205760c2e204fd599457f35e864daed73398798fea2446c73ffadae420b8cb5bccf43639a7450c530d1df83ca382ba41dc6bb235dc8c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Release history for google-apis-cloudbuild_v2
|
|
2
2
|
|
|
3
|
+
### v0.13.0 (2024-03-03)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20240223
|
|
6
|
+
* Regenerated using generator version 0.14.0
|
|
7
|
+
|
|
8
|
+
### v0.12.0 (2024-02-23)
|
|
9
|
+
|
|
10
|
+
* Unspecified changes
|
|
11
|
+
|
|
3
12
|
### v0.11.0 (2024-02-18)
|
|
4
13
|
|
|
5
14
|
* Regenerated from discovery document revision 20240207
|
data/OVERVIEW.md
CHANGED
|
@@ -83,9 +83,9 @@ The [product documentation](https://cloud.google.com/cloud-build/docs/) may prov
|
|
|
83
83
|
|
|
84
84
|
## Supported Ruby versions
|
|
85
85
|
|
|
86
|
-
This library is supported on Ruby 2.
|
|
86
|
+
This library is supported on Ruby 2.7+.
|
|
87
87
|
|
|
88
|
-
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life.
|
|
88
|
+
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
|
89
89
|
|
|
90
90
|
## License
|
|
91
91
|
|
|
@@ -2893,25 +2893,6 @@ module Google
|
|
|
2893
2893
|
end
|
|
2894
2894
|
end
|
|
2895
2895
|
|
|
2896
|
-
# VolumeClaim is a user's request for a volume.
|
|
2897
|
-
class VolumeClaim
|
|
2898
|
-
include Google::Apis::Core::Hashable
|
|
2899
|
-
|
|
2900
|
-
# Volume size, e.g. 1gb.
|
|
2901
|
-
# Corresponds to the JSON property `storage`
|
|
2902
|
-
# @return [String]
|
|
2903
|
-
attr_accessor :storage
|
|
2904
|
-
|
|
2905
|
-
def initialize(**args)
|
|
2906
|
-
update!(**args)
|
|
2907
|
-
end
|
|
2908
|
-
|
|
2909
|
-
# Update properties of this object
|
|
2910
|
-
def update!(**args)
|
|
2911
|
-
@storage = args[:storage] if args.key?(:storage)
|
|
2912
|
-
end
|
|
2913
|
-
end
|
|
2914
|
-
|
|
2915
2896
|
# Pod volumes to mount into the container's filesystem.
|
|
2916
2897
|
class VolumeMount
|
|
2917
2898
|
include Google::Apis::Core::Hashable
|
|
@@ -3061,11 +3042,6 @@ module Google
|
|
|
3061
3042
|
# @return [String]
|
|
3062
3043
|
attr_accessor :sub_path
|
|
3063
3044
|
|
|
3064
|
-
# VolumeClaim is a user's request for a volume.
|
|
3065
|
-
# Corresponds to the JSON property `volumeClaim`
|
|
3066
|
-
# @return [Google::Apis::CloudbuildV2::VolumeClaim]
|
|
3067
|
-
attr_accessor :volume_claim
|
|
3068
|
-
|
|
3069
3045
|
def initialize(**args)
|
|
3070
3046
|
update!(**args)
|
|
3071
3047
|
end
|
|
@@ -3075,7 +3051,6 @@ module Google
|
|
|
3075
3051
|
@name = args[:name] if args.key?(:name)
|
|
3076
3052
|
@secret = args[:secret] if args.key?(:secret)
|
|
3077
3053
|
@sub_path = args[:sub_path] if args.key?(:sub_path)
|
|
3078
|
-
@volume_claim = args[:volume_claim] if args.key?(:volume_claim)
|
|
3079
3054
|
end
|
|
3080
3055
|
end
|
|
3081
3056
|
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module CloudbuildV2
|
|
18
18
|
# Version of the google-apis-cloudbuild_v2 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.13.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.14.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20240223"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -436,12 +436,6 @@ module Google
|
|
|
436
436
|
include Google::Apis::Core::JsonObjectSupport
|
|
437
437
|
end
|
|
438
438
|
|
|
439
|
-
class VolumeClaim
|
|
440
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
441
|
-
|
|
442
|
-
include Google::Apis::Core::JsonObjectSupport
|
|
443
|
-
end
|
|
444
|
-
|
|
445
439
|
class VolumeMount
|
|
446
440
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
447
441
|
|
|
@@ -1240,13 +1234,6 @@ module Google
|
|
|
1240
1234
|
end
|
|
1241
1235
|
end
|
|
1242
1236
|
|
|
1243
|
-
class VolumeClaim
|
|
1244
|
-
# @private
|
|
1245
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1246
|
-
property :storage, as: 'storage'
|
|
1247
|
-
end
|
|
1248
|
-
end
|
|
1249
|
-
|
|
1250
1237
|
class VolumeMount
|
|
1251
1238
|
# @private
|
|
1252
1239
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1290,8 +1277,6 @@ module Google
|
|
|
1290
1277
|
property :secret, as: 'secret', class: Google::Apis::CloudbuildV2::SecretVolumeSource, decorator: Google::Apis::CloudbuildV2::SecretVolumeSource::Representation
|
|
1291
1278
|
|
|
1292
1279
|
property :sub_path, as: 'subPath'
|
|
1293
|
-
property :volume_claim, as: 'volumeClaim', class: Google::Apis::CloudbuildV2::VolumeClaim, decorator: Google::Apis::CloudbuildV2::VolumeClaim::Representation
|
|
1294
|
-
|
|
1295
1280
|
end
|
|
1296
1281
|
end
|
|
1297
1282
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-cloudbuild_v2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.13.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-
|
|
11
|
+
date: 2024-03-03 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.14.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.14.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-cloudbuild_v2/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v2/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v2/v0.13.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudbuild_v2
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|
|
@@ -68,14 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
68
68
|
requirements:
|
|
69
69
|
- - ">="
|
|
70
70
|
- !ruby/object:Gem::Version
|
|
71
|
-
version: '2.
|
|
71
|
+
version: '2.7'
|
|
72
72
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
requirements:
|
|
74
74
|
- - ">="
|
|
75
75
|
- !ruby/object:Gem::Version
|
|
76
76
|
version: '0'
|
|
77
77
|
requirements: []
|
|
78
|
-
rubygems_version: 3.5.
|
|
78
|
+
rubygems_version: 3.5.6
|
|
79
79
|
signing_key:
|
|
80
80
|
specification_version: 4
|
|
81
81
|
summary: Simple REST client for Cloud Build API V2
|