google-apis-clouddeploy_v1 0.25.0 → 0.26.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: cab3e1e8a7010ee4a042b3d2315698918dd4feed57a3b30b2a58681cd652b540
4
- data.tar.gz: d998da5955797f6158116ec140321905190c0dc819623a4f246c80d2bc04586b
3
+ metadata.gz: f4073193310f2b1e8562c53fac874c0b3995015c5078cfce68c2e3d9f8db1c3c
4
+ data.tar.gz: edce92750aeaf536c8cebb2d781cbd2bb66cf052247d8ad792bba4be56abe903
5
5
  SHA512:
6
- metadata.gz: 70ef5c489e0642171e4270d66ee4fad19136a1274b7455305a8b5fb5a8b5a49f50b43bb366965de03e5050f20533de31287d96bea493b3676c3a828e70d5bfff
7
- data.tar.gz: 150d583b61515fd0f3c8538d261fd79bfcc2788c53cf7637f2ad4739343f72e5c4432f99ac9f257d42b90050f683394d3c974bde4a808f5bb4ee192f7dd3b1a7
6
+ metadata.gz: bb40d60bb5f8db928cb247e1c755ab4629893bbfed2498cae7689bd4cb40fe467b7ad2ba14b51f265f5bd9f92a0811501ac545b04c6ab49916c8796c60acf53e
7
+ data.tar.gz: 1a14e430f32247811d050487c7c66cc1b1c803abc108d4eb653fec78a60e59128d7e3280db3583d95e47eae4c1eb9075c9184d58f6616cadcb970b78c6e7f843
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-clouddeploy_v1
2
2
 
3
+ ### v0.26.0 (2023-06-11)
4
+
5
+ * Regenerated from discovery document revision 20230602
6
+
3
7
  ### v0.25.0 (2023-05-07)
4
8
 
5
9
  * Regenerated from discovery document revision 20230426
@@ -2775,6 +2775,14 @@ module Google
2775
2775
  # @return [String]
2776
2776
  attr_accessor :deployment
2777
2777
 
2778
+ # Optional. Whether to disable Pod overprovisioning. If Pod overprovisioning is
2779
+ # disabled then Cloud Deploy will limit the number of total Pods used for the
2780
+ # deployment strategy to the number of Pods the Deployment has on the cluster.
2781
+ # Corresponds to the JSON property `disablePodOverprovisioning`
2782
+ # @return [Boolean]
2783
+ attr_accessor :disable_pod_overprovisioning
2784
+ alias_method :disable_pod_overprovisioning?, :disable_pod_overprovisioning
2785
+
2778
2786
  # Required. Name of the Kubernetes Service.
2779
2787
  # Corresponds to the JSON property `service`
2780
2788
  # @return [String]
@@ -2787,6 +2795,7 @@ module Google
2787
2795
  # Update properties of this object
2788
2796
  def update!(**args)
2789
2797
  @deployment = args[:deployment] if args.key?(:deployment)
2798
+ @disable_pod_overprovisioning = args[:disable_pod_overprovisioning] if args.key?(:disable_pod_overprovisioning)
2790
2799
  @service = args[:service] if args.key?(:service)
2791
2800
  end
2792
2801
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ClouddeployV1
18
18
  # Version of the google-apis-clouddeploy_v1 gem
19
- GEM_VERSION = "0.25.0"
19
+ GEM_VERSION = "0.26.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 = "20230426"
25
+ REVISION = "20230602"
26
26
  end
27
27
  end
28
28
  end
@@ -1372,6 +1372,7 @@ module Google
1372
1372
  # @private
1373
1373
  class Representation < Google::Apis::Core::JsonRepresentation
1374
1374
  property :deployment, as: 'deployment'
1375
+ property :disable_pod_overprovisioning, as: 'disablePodOverprovisioning'
1375
1376
  property :service, as: 'service'
1376
1377
  end
1377
1378
  end
@@ -1329,8 +1329,8 @@ module Google
1329
1329
  # Required. The name of the `Target` to delete. Format should be projects/`
1330
1330
  # project_id`/locations/`location_name`/targets/`target_name`.
1331
1331
  # @param [Boolean] allow_missing
1332
- # Optional. If set to true, then deleting an already deleted or non-existing
1333
- # DeliveryPipeline will succeed.
1332
+ # Optional. If set to true, then deleting an already deleted or non-existing `
1333
+ # Target` will succeed.
1334
1334
  # @param [String] etag
1335
1335
  # Optional. This checksum is computed by the server based on the value of other
1336
1336
  # fields, and may be sent on update and delete requests to ensure the client has
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-clouddeploy_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.25.0
4
+ version: 0.26.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-05-14 00:00:00.000000000 Z
11
+ date: 2023-06-11 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-clouddeploy_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-clouddeploy_v1/v0.25.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-clouddeploy_v1/v0.26.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-clouddeploy_v1
63
63
  post_install_message:
64
64
  rdoc_options: []