google-apis-cloudbuild_v2 0.5.0 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dd0b9a771da357d8a22a22de621e8bff9f19970a493e9da87b5dfefcc1b0719f
4
- data.tar.gz: dc3debb0eeaa5b747d170b63664a0feb06e6fff2c21927dd9e83d21fc0712f82
3
+ metadata.gz: 80bdc5b860d677beff310e19df4e521c8b9588b7e289b2889329068f9f088ef3
4
+ data.tar.gz: 85cb849d94a8b86fad8533a6456d5ae4bb661fe7216de49d8844026ccc65df1b
5
5
  SHA512:
6
- metadata.gz: 1c523285d6bb9e5aac70a04445b4b92268ca94c7d1e84b326c471514215abaa357555e22ddd82d0c0afee148a718d60e2e9a98951c23a8e3b554dfe1c42d72e1
7
- data.tar.gz: bcf9864e384153d7c85a51b85cbe6fe4180098cbefc3c1b3a3a778f79a80f3df40992483da8d8a9a822d653e9f8d7facefd3d63ed89340af87739eac695a49c8
6
+ metadata.gz: b34d9f2ef25930862e60416a5e6663f812f5742f0767acf538b69bd6776014fdd920d212facb99cdbce738989377a73b83f65402accec5dc688698b1ad0b8fe3
7
+ data.tar.gz: 9d06e5066c4f2beef469f3a9d885767671cdb3a831183f2f253881538bc52c9a92294212e97a708d999135f08caab2b00b36b82699a4fdd035d7bb764643bdb7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-cloudbuild_v2
2
2
 
3
+ ### v0.7.0 (2023-12-17)
4
+
5
+ * Regenerated from discovery document revision 20231207
6
+
7
+ ### v0.6.0 (2023-12-03)
8
+
9
+ * Regenerated from discovery document revision 20231127
10
+
3
11
  ### v0.5.0 (2023-11-19)
4
12
 
5
13
  * Regenerated from discovery document revision 20231109
@@ -2409,6 +2409,11 @@ module Google
2409
2409
  # @return [Array<Google::Apis::CloudbuildV2::EnvVar>]
2410
2410
  attr_accessor :env
2411
2411
 
2412
+ # Optional. Pod volumes to mount into the container's filesystem.
2413
+ # Corresponds to the JSON property `volumeMounts`
2414
+ # @return [Array<Google::Apis::CloudbuildV2::VolumeMount>]
2415
+ attr_accessor :volume_mounts
2416
+
2412
2417
  def initialize(**args)
2413
2418
  update!(**args)
2414
2419
  end
@@ -2416,6 +2421,7 @@ module Google
2416
2421
  # Update properties of this object
2417
2422
  def update!(**args)
2418
2423
  @env = args[:env] if args.key?(:env)
2424
+ @volume_mounts = args[:volume_mounts] if args.key?(:volume_mounts)
2419
2425
  end
2420
2426
  end
2421
2427
 
@@ -2522,10 +2528,10 @@ module Google
2522
2528
  # @return [Array<Google::Apis::CloudbuildV2::Sidecar>]
2523
2529
  attr_accessor :sidecars
2524
2530
 
2525
- # Optional. StepTemplate can be used as the basis for all step containers within
2526
- # the Task, so that the steps inherit settings on the base container.
2531
+ # StepTemplate can be used as the basis for all step containers within the Task,
2532
+ # so that the steps inherit settings on the base container.
2527
2533
  # Corresponds to the JSON property `stepTemplate`
2528
- # @return [Array<Google::Apis::CloudbuildV2::StepTemplate>]
2534
+ # @return [Google::Apis::CloudbuildV2::StepTemplate]
2529
2535
  attr_accessor :step_template
2530
2536
 
2531
2537
  # Steps of the task.
@@ -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.5.0"
19
+ GEM_VERSION = "0.7.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20231109"
25
+ REVISION = "20231207"
26
26
  end
27
27
  end
28
28
  end
@@ -1074,6 +1074,8 @@ module Google
1074
1074
  class Representation < Google::Apis::Core::JsonRepresentation
1075
1075
  collection :env, as: 'env', class: Google::Apis::CloudbuildV2::EnvVar, decorator: Google::Apis::CloudbuildV2::EnvVar::Representation
1076
1076
 
1077
+ collection :volume_mounts, as: 'volumeMounts', class: Google::Apis::CloudbuildV2::VolumeMount, decorator: Google::Apis::CloudbuildV2::VolumeMount::Representation
1078
+
1077
1079
  end
1078
1080
  end
1079
1081
 
@@ -1109,7 +1111,7 @@ module Google
1109
1111
 
1110
1112
  collection :sidecars, as: 'sidecars', class: Google::Apis::CloudbuildV2::Sidecar, decorator: Google::Apis::CloudbuildV2::Sidecar::Representation
1111
1113
 
1112
- collection :step_template, as: 'stepTemplate', class: Google::Apis::CloudbuildV2::StepTemplate, decorator: Google::Apis::CloudbuildV2::StepTemplate::Representation
1114
+ property :step_template, as: 'stepTemplate', class: Google::Apis::CloudbuildV2::StepTemplate, decorator: Google::Apis::CloudbuildV2::StepTemplate::Representation
1113
1115
 
1114
1116
  collection :steps, as: 'steps', class: Google::Apis::CloudbuildV2::Step, decorator: Google::Apis::CloudbuildV2::Step::Representation
1115
1117
 
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.5.0
4
+ version: 0.7.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: 2023-11-19 00:00:00.000000000 Z
11
+ date: 2023-12-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -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.5.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v2/v0.7.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: []