aws-sdk-codebuild 1.107.0 → 1.108.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: 7d79e0ac114c2eb865fc144788034a6899d3497c8a9520403335b570328ce5f2
4
- data.tar.gz: b3627ac7c848187235ffceed467be9d35c8ece4099cc0c91f41923c59d642614
3
+ metadata.gz: 26802dffce343b9b2af71c2538c302f8b7805c4dc0942e72c828249a67281398
4
+ data.tar.gz: 8922f8b0a06254686de2bcaae6bd993238e4047e9a02f61ee07267fba9b75927
5
5
  SHA512:
6
- metadata.gz: 0f617dcaa67ce3e59de0ccf8383698416886ce609c69154f42cf10ba7ddafdcb0b092e5d46f681f7fb23249dba8f6e4a40280260ce7fe7bc3793f60738f87b03
7
- data.tar.gz: 591ce6d2f8eeeac5584ae47b32b788dedcc3221c920db500e85e3b4fc2065886ea7501e7e0044dec99dc49eb969d950afd4b3b108cf1b810cf06978ceb9f1916
6
+ metadata.gz: 50a71ebad94e3f1b74c50d503469a812781ad805857b1056a55927d4a9dd7b33200cfc0201635eb43bae2695eb1c27e4b52166021b191626bd2214cb01393222
7
+ data.tar.gz: 3250e16dcdfe047eec4fd9ca013485795b7dd7cab2f247041e5bd5027472577bdf5d214017332f2693301b54fef73c7a644e28e220282a1d05c24230c958f8f0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.108.0 (2024-03-29)
5
+ ------------------
6
+
7
+ * Feature - Add new fleet status code for Reserved Capacity.
8
+
4
9
  1.107.0 (2024-03-25)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.107.0
1
+ 1.108.0
@@ -773,7 +773,7 @@ module Aws::CodeBuild
773
773
  # resp.fleets[0].id #=> String
774
774
  # resp.fleets[0].created #=> Time
775
775
  # resp.fleets[0].last_modified #=> Time
776
- # resp.fleets[0].status.status_code #=> String, one of "CREATING", "UPDATING", "ROTATING", "DELETING", "CREATE_FAILED", "UPDATE_ROLLBACK_FAILED", "ACTIVE"
776
+ # resp.fleets[0].status.status_code #=> String, one of "CREATING", "UPDATING", "ROTATING", "PENDING_DELETION", "DELETING", "CREATE_FAILED", "UPDATE_ROLLBACK_FAILED", "ACTIVE"
777
777
  # resp.fleets[0].status.context #=> String, one of "CREATE_FAILED", "UPDATE_FAILED"
778
778
  # resp.fleets[0].status.message #=> String
779
779
  # resp.fleets[0].base_capacity #=> Integer
@@ -1211,7 +1211,7 @@ module Aws::CodeBuild
1211
1211
  # resp.fleet.id #=> String
1212
1212
  # resp.fleet.created #=> Time
1213
1213
  # resp.fleet.last_modified #=> Time
1214
- # resp.fleet.status.status_code #=> String, one of "CREATING", "UPDATING", "ROTATING", "DELETING", "CREATE_FAILED", "UPDATE_ROLLBACK_FAILED", "ACTIVE"
1214
+ # resp.fleet.status.status_code #=> String, one of "CREATING", "UPDATING", "ROTATING", "PENDING_DELETION", "DELETING", "CREATE_FAILED", "UPDATE_ROLLBACK_FAILED", "ACTIVE"
1215
1215
  # resp.fleet.status.context #=> String, one of "CREATE_FAILED", "UPDATE_FAILED"
1216
1216
  # resp.fleet.status.message #=> String
1217
1217
  # resp.fleet.base_capacity #=> Integer
@@ -4936,7 +4936,7 @@ module Aws::CodeBuild
4936
4936
  # resp.fleet.id #=> String
4937
4937
  # resp.fleet.created #=> Time
4938
4938
  # resp.fleet.last_modified #=> Time
4939
- # resp.fleet.status.status_code #=> String, one of "CREATING", "UPDATING", "ROTATING", "DELETING", "CREATE_FAILED", "UPDATE_ROLLBACK_FAILED", "ACTIVE"
4939
+ # resp.fleet.status.status_code #=> String, one of "CREATING", "UPDATING", "ROTATING", "PENDING_DELETION", "DELETING", "CREATE_FAILED", "UPDATE_ROLLBACK_FAILED", "ACTIVE"
4940
4940
  # resp.fleet.status.context #=> String, one of "CREATE_FAILED", "UPDATE_FAILED"
4941
4941
  # resp.fleet.status.message #=> String
4942
4942
  # resp.fleet.base_capacity #=> Integer
@@ -5642,7 +5642,7 @@ module Aws::CodeBuild
5642
5642
  params: params,
5643
5643
  config: config)
5644
5644
  context[:gem_name] = 'aws-sdk-codebuild'
5645
- context[:gem_version] = '1.107.0'
5645
+ context[:gem_version] = '1.108.0'
5646
5646
  Seahorse::Client::Request.new(handlers, context)
5647
5647
  end
5648
5648
 
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-codebuild/customizations'
52
52
  # @!group service
53
53
  module Aws::CodeBuild
54
54
 
55
- GEM_VERSION = '1.107.0'
55
+ GEM_VERSION = '1.108.0'
56
56
 
57
57
  end
data/sig/types.rbs CHANGED
@@ -490,7 +490,7 @@ module Aws::CodeBuild
490
490
  end
491
491
 
492
492
  class FleetStatus
493
- attr_accessor status_code: ("CREATING" | "UPDATING" | "ROTATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_ROLLBACK_FAILED" | "ACTIVE")
493
+ attr_accessor status_code: ("CREATING" | "UPDATING" | "ROTATING" | "PENDING_DELETION" | "DELETING" | "CREATE_FAILED" | "UPDATE_ROLLBACK_FAILED" | "ACTIVE")
494
494
  attr_accessor context: ("CREATE_FAILED" | "UPDATE_FAILED")
495
495
  attr_accessor message: ::String
496
496
  SENSITIVE: []
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-codebuild
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.107.0
4
+ version: 1.108.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-03-25 00:00:00.000000000 Z
11
+ date: 2024-03-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core