google-apis-cloudbuild_v2 0.28.0 → 0.29.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: 89638f89567a8e6e32650910e6a2302bb750a6fea22efc8ecec3a90c28da58da
4
- data.tar.gz: d0b36687ccf9d3ede76c6d28a091437f01539c2482acdc6fcce83045f17966e7
3
+ metadata.gz: e8a8f79c9acf3fa445537db61e5685ebab5ece458ba672066cd35c3390a70d79
4
+ data.tar.gz: 22f2d4a2d4f292e6e010f787c3d1732167608ec1d4f5099be4a3c9307b4fb422
5
5
  SHA512:
6
- metadata.gz: 54ce2d73acdfa2a147280d84ee321a5e0229bec0735c2086e9d2b0b28764f43f767b84ab9f3e47e3dc76590fc18556a01cf792aba90cb97a10f57e7dd66cff47
7
- data.tar.gz: 046f25324f514dd2974bf4448c371230f6f7905d6944040b61d12ead633c1d600f4ad59e6557d9edd6e6d718fe4ff222d19670b617ad4bbe3b313bf562dafe1e
6
+ metadata.gz: 601631bb324c8ec4429fe53cf5259effaa4fbc54025930dadf29a11f161829f3f3ff70a3819f539703ca5f2e15be37f4e5d64a7bd00ec77ee203dc76c1e78f87
7
+ data.tar.gz: fc0f452606b6b4a73a392015c89706c90e84325f5a7a4131dd14c11eef17cf4d2c2f8877bea9857de3570ba14a4a881a995021e764f3716a5886324429f03ab7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-cloudbuild_v2
2
2
 
3
+ ### v0.29.0 (2025-07-27)
4
+
5
+ * Regenerated from discovery document revision 20250718
6
+ * Regenerated using generator version 0.18.0
7
+
3
8
  ### v0.28.0 (2025-05-04)
4
9
 
5
10
  * Regenerated from discovery document revision 20250418
@@ -346,31 +346,6 @@ module Google
346
346
  end
347
347
  end
348
348
 
349
- # Capabilities adds and removes POSIX capabilities from running containers.
350
- class Capabilities
351
- include Google::Apis::Core::Hashable
352
-
353
- # Optional. Added capabilities +optional
354
- # Corresponds to the JSON property `add`
355
- # @return [Array<String>]
356
- attr_accessor :add
357
-
358
- # Optional. Removed capabilities +optional
359
- # Corresponds to the JSON property `drop`
360
- # @return [Array<String>]
361
- attr_accessor :drop
362
-
363
- def initialize(**args)
364
- update!(**args)
365
- end
366
-
367
- # Update properties of this object
368
- def update!(**args)
369
- @add = args[:add] if args.key?(:add)
370
- @drop = args[:drop] if args.key?(:drop)
371
- end
372
- end
373
-
374
349
  # ChildStatusReference is used to point to the statuses of individual TaskRuns
375
350
  # and Runs within this PipelineRun.
376
351
  class ChildStatusReference
@@ -2434,11 +2409,6 @@ module Google
2434
2409
  attr_accessor :allow_privilege_escalation
2435
2410
  alias_method :allow_privilege_escalation?, :allow_privilege_escalation
2436
2411
 
2437
- # Capabilities adds and removes POSIX capabilities from running containers.
2438
- # Corresponds to the JSON property `capabilities`
2439
- # @return [Google::Apis::CloudbuildV2::Capabilities]
2440
- attr_accessor :capabilities
2441
-
2442
2412
  # Run container in privileged mode.
2443
2413
  # Corresponds to the JSON property `privileged`
2444
2414
  # @return [Boolean]
@@ -2481,7 +2451,6 @@ module Google
2481
2451
  # Update properties of this object
2482
2452
  def update!(**args)
2483
2453
  @allow_privilege_escalation = args[:allow_privilege_escalation] if args.key?(:allow_privilege_escalation)
2484
- @capabilities = args[:capabilities] if args.key?(:capabilities)
2485
2454
  @privileged = args[:privileged] if args.key?(:privileged)
2486
2455
  @run_as_group = args[:run_as_group] if args.key?(:run_as_group)
2487
2456
  @run_as_non_root = args[:run_as_non_root] if args.key?(:run_as_non_root)
@@ -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.28.0"
19
+ GEM_VERSION = "0.29.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.17.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250418"
25
+ REVISION = "20250718"
26
26
  end
27
27
  end
28
28
  end
@@ -70,12 +70,6 @@ module Google
70
70
  include Google::Apis::Core::JsonObjectSupport
71
71
  end
72
72
 
73
- class Capabilities
74
- class Representation < Google::Apis::Core::JsonRepresentation; end
75
-
76
- include Google::Apis::Core::JsonObjectSupport
77
- end
78
-
79
73
  class ChildStatusReference
80
74
  class Representation < Google::Apis::Core::JsonRepresentation; end
81
75
 
@@ -579,14 +573,6 @@ module Google
579
573
  end
580
574
  end
581
575
 
582
- class Capabilities
583
- # @private
584
- class Representation < Google::Apis::Core::JsonRepresentation
585
- collection :add, as: 'add'
586
- collection :drop, as: 'drop'
587
- end
588
- end
589
-
590
576
  class ChildStatusReference
591
577
  # @private
592
578
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1136,8 +1122,6 @@ module Google
1136
1122
  # @private
1137
1123
  class Representation < Google::Apis::Core::JsonRepresentation
1138
1124
  property :allow_privilege_escalation, as: 'allowPrivilegeEscalation'
1139
- property :capabilities, as: 'capabilities', class: Google::Apis::CloudbuildV2::Capabilities, decorator: Google::Apis::CloudbuildV2::Capabilities::Representation
1140
-
1141
1125
  property :privileged, as: 'privileged'
1142
1126
  property :run_as_group, :numeric_string => true, as: 'runAsGroup'
1143
1127
  property :run_as_non_root, as: 'runAsNonRoot'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudbuild_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.28.0
4
+ version: 0.29.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-cloudbuild_v2/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v2/v0.28.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v2/v0.29.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudbuild_v2
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.8
76
+ rubygems_version: 3.6.9
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Cloud Build API V2
79
79
  test_files: []