Skip to content

Commit e834059

Browse files
chore: Updates version to 1.7.37
1 parent b61c41a commit e834059

11 files changed

Lines changed: 590 additions & 27 deletions

File tree

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import PackageDescription
1515

1616
// MARK: - Dynamic Content
1717

18-
let clientRuntimeVersion: Version = "0.232.0"
18+
let clientRuntimeVersion: Version = "0.233.0"
1919
let crtVersion: Version = "0.63.0"
2020

2121
let excludeRuntimeUnitTests = false

Package.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.7.36
1+
1.7.37

Package.version.next

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.7.37
1+
1.7.38

Sources/Core/AWSSDKDynamic/Sources/AWSSDKDynamic/PackageVersion.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77

88
// Code is auto-generated. DO NOT EDIT!
99

10-
public let packageVersion = "1.7.36"
10+
public let packageVersion = "1.7.37"

Sources/Services/AWSElasticsearchService/Sources/AWSElasticsearchService/Models.swift

Lines changed: 170 additions & 0 deletions
Large diffs are not rendered by default.

Sources/Services/AWSGameLift/Sources/AWSGameLift/GameLiftClient.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1751,6 +1751,7 @@ extension GameLiftClient {
17511751
/// - `LimitExceededException` : The requested operation would cause the resource to exceed the allowed service limit. Resolve the issue before retrying.
17521752
/// - `TaggingFailedException` : The requested tagging operation did not succeed. This may be due to invalid tag format or the maximum tag limit may have been exceeded. Resolve the issue before retrying.
17531753
/// - `UnauthorizedException` : The client failed authentication. Clients should not retry such requests.
1754+
/// - `UnsupportedRegionException` : The requested operation is not supported in the Region specified.
17541755
public func createLocation(input: CreateLocationInput) async throws -> CreateLocationOutput {
17551756
var config = config
17561757
let plugins: [any ClientRuntime.Plugin] = [SmithyRPCv2CBOR.Plugin(), AWSClientRuntime.UnknownAWSHTTPServiceErrorPlugin()]
@@ -3123,6 +3124,7 @@ extension GameLiftClient {
31233124
/// - `InvalidRequestException` : One or more parameter values in the request are invalid. Correct the invalid parameter values before retrying.
31243125
/// - `NotFoundException` : The requested resource was not found. The resource was either not created yet or deleted.
31253126
/// - `UnauthorizedException` : The client failed authentication. Clients should not retry such requests.
3127+
/// - `UnsupportedRegionException` : The requested operation is not supported in the Region specified.
31263128
public func deleteLocation(input: DeleteLocationInput) async throws -> DeleteLocationOutput {
31273129
var config = config
31283130
let plugins: [any ClientRuntime.Plugin] = [SmithyRPCv2CBOR.Plugin(), AWSClientRuntime.UnknownAWSHTTPServiceErrorPlugin()]
@@ -3689,6 +3691,7 @@ extension GameLiftClient {
36893691
/// - `InvalidRequestException` : One or more parameter values in the request are invalid. Correct the invalid parameter values before retrying.
36903692
/// - `NotFoundException` : The requested resource was not found. The resource was either not created yet or deleted.
36913693
/// - `UnauthorizedException` : The client failed authentication. Clients should not retry such requests.
3694+
/// - `UnsupportedRegionException` : The requested operation is not supported in the Region specified.
36923695
public func deregisterCompute(input: DeregisterComputeInput) async throws -> DeregisterComputeOutput {
36933696
var config = config
36943697
let plugins: [any ClientRuntime.Plugin] = [SmithyRPCv2CBOR.Plugin(), AWSClientRuntime.UnknownAWSHTTPServiceErrorPlugin()]
@@ -8245,6 +8248,7 @@ extension GameLiftClient {
82458248
/// - `LimitExceededException` : The requested operation would cause the resource to exceed the allowed service limit. Resolve the issue before retrying.
82468249
/// - `NotReadyException` : The operation failed because Amazon GameLift Servers has not yet finished validating this compute. We recommend attempting 8 to 10 retries over 3 to 5 minutes with [exponential backoffs and jitter](http://aws.amazon.com/blogs/https:/aws.amazon.com/blogs/architecture/exponential-backoff-and-jitter/).
82478250
/// - `UnauthorizedException` : The client failed authentication. Clients should not retry such requests.
8251+
/// - `UnsupportedRegionException` : The requested operation is not supported in the Region specified.
82488252
public func registerCompute(input: RegisterComputeInput) async throws -> RegisterComputeOutput {
82498253
var config = config
82508254
let plugins: [any ClientRuntime.Plugin] = [SmithyRPCv2CBOR.Plugin(), AWSClientRuntime.UnknownAWSHTTPServiceErrorPlugin()]

Sources/Services/AWSGameLift/Sources/AWSGameLift/Models.swift

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2857,6 +2857,7 @@ extension GameLiftClientTypes {
28572857
case created
28582858
case creating
28592859
case deleting
2860+
case expired
28602861
case pending
28612862
case updating
28622863
case sdkUnknown(Swift.String)
@@ -2868,6 +2869,7 @@ extension GameLiftClientTypes {
28682869
.created,
28692870
.creating,
28702871
.deleting,
2872+
.expired,
28712873
.pending,
28722874
.updating
28732875
]
@@ -2885,6 +2887,7 @@ extension GameLiftClientTypes {
28852887
case .created: return "CREATED"
28862888
case .creating: return "CREATING"
28872889
case .deleting: return "DELETING"
2890+
case .expired: return "EXPIRED"
28882891
case .pending: return "PENDING"
28892892
case .updating: return "UPDATING"
28902893
case let .sdkUnknown(s): return s
@@ -2918,6 +2921,8 @@ extension GameLiftClientTypes {
29182921
/// * ACTIVE -- The container fleet has been deployed and is ready to host game sessions.
29192922
///
29202923
/// * UPDATING -- Updates to the container fleet is being updated. A deployment is in progress.
2924+
///
2925+
/// * EXPIRED -- The container fleet has been expired. The fleet is scaled down to zero instances and cannot host new game sessions.
29212926
public var status: GameLiftClientTypes.ContainerFleetLocationStatus?
29222927

29232928
public init(
@@ -3062,6 +3067,7 @@ extension GameLiftClientTypes {
30623067
case created
30633068
case creating
30643069
case deleting
3070+
case expired
30653071
case pending
30663072
case updating
30673073
case sdkUnknown(Swift.String)
@@ -3073,6 +3079,7 @@ extension GameLiftClientTypes {
30733079
.created,
30743080
.creating,
30753081
.deleting,
3082+
.expired,
30763083
.pending,
30773084
.updating
30783085
]
@@ -3090,6 +3097,7 @@ extension GameLiftClientTypes {
30903097
case .created: return "CREATED"
30913098
case .creating: return "CREATING"
30923099
case .deleting: return "DELETING"
3100+
case .expired: return "EXPIRED"
30933101
case .pending: return "PENDING"
30943102
case .updating: return "UPDATING"
30953103
case let .sdkUnknown(s): return s
@@ -3169,6 +3177,8 @@ extension GameLiftClientTypes {
31693177
/// * ACTIVE -- The container fleet has been deployed and is ready to host game sessions.
31703178
///
31713179
/// * UPDATING -- Updates to the container fleet is being updated. A deployment is in progress.
3180+
///
3181+
/// * EXPIRED -- The container fleet has been expired. The fleet is scaled down to zero instances and cannot host new game sessions.
31723182
public var status: GameLiftClientTypes.ContainerFleetStatus?
31733183

31743184
public init(
@@ -4684,6 +4694,7 @@ extension GameLiftClientTypes {
46844694
case deleting
46854695
case downloading
46864696
case error
4697+
case expired
46874698
case new
46884699
case notFound
46894700
case terminated
@@ -4698,6 +4709,7 @@ extension GameLiftClientTypes {
46984709
.deleting,
46994710
.downloading,
47004711
.error,
4712+
.expired,
47014713
.new,
47024714
.notFound,
47034715
.terminated,
@@ -4718,6 +4730,7 @@ extension GameLiftClientTypes {
47184730
case .deleting: return "DELETING"
47194731
case .downloading: return "DOWNLOADING"
47204732
case .error: return "ERROR"
4733+
case .expired: return "EXPIRED"
47214734
case .new: return "NEW"
47224735
case .notFound: return "NOT_FOUND"
47234736
case .terminated: return "TERMINATED"
@@ -4831,6 +4844,8 @@ extension GameLiftClientTypes {
48314844
///
48324845
/// * ERROR -- An error occurred when downloading, validating, building, or activating the fleet.
48334846
///
4847+
/// * EXPIRED -- The fleet has been expired. The fleet is scaled down to zero instances and cannot host new game sessions.
4848+
///
48344849
/// * DELETING -- Hosts are responding to a delete fleet request.
48354850
///
48364851
/// * TERMINATED -- The fleet no longer exists.
@@ -8090,6 +8105,7 @@ extension GameLiftClientTypes {
80908105
case fleetCreationRunningInstaller
80918106
case fleetCreationValidatingRuntimeConfig
80928107
case fleetDeleted
8108+
case fleetExpired
80938109
case fleetInitializationFailed
80948110
case fleetNewGameSessionProtectionPolicyUpdated
80958111
case fleetScalingEvent
@@ -8150,6 +8166,7 @@ extension GameLiftClientTypes {
81508166
.fleetCreationRunningInstaller,
81518167
.fleetCreationValidatingRuntimeConfig,
81528168
.fleetDeleted,
8169+
.fleetExpired,
81538170
.fleetInitializationFailed,
81548171
.fleetNewGameSessionProtectionPolicyUpdated,
81558172
.fleetScalingEvent,
@@ -8216,6 +8233,7 @@ extension GameLiftClientTypes {
82168233
case .fleetCreationRunningInstaller: return "FLEET_CREATION_RUNNING_INSTALLER"
82178234
case .fleetCreationValidatingRuntimeConfig: return "FLEET_CREATION_VALIDATING_RUNTIME_CONFIG"
82188235
case .fleetDeleted: return "FLEET_DELETED"
8236+
case .fleetExpired: return "FLEET_EXPIRED"
82198237
case .fleetInitializationFailed: return "FLEET_INITIALIZATION_FAILED"
82208238
case .fleetNewGameSessionProtectionPolicyUpdated: return "FLEET_NEW_GAME_SESSION_PROTECTION_POLICY_UPDATED"
82218239
case .fleetScalingEvent: return "FLEET_SCALING_EVENT"
@@ -8363,6 +8381,8 @@ extension GameLiftClientTypes {
83638381
///
83648382
/// * FLEET_DELETED -- A request to delete a fleet was initiated.
83658383
///
8384+
/// * FLEET_EXPIRED -- The fleet has been expired. The fleet is scaled down to zero instances and can no longer host game sessions.
8385+
///
83668386
/// * GENERIC_EVENT -- An unspecified event has occurred.
83678387
public var eventCode: GameLiftClientTypes.EventCode?
83688388
/// A unique identifier for a fleet event.

0 commit comments

Comments
 (0)