You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Sources/Services/AWSGameLift/Sources/AWSGameLift/GameLiftClient.swift
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1751,6 +1751,7 @@ extension GameLiftClient {
1751
1751
/// - `LimitExceededException` : The requested operation would cause the resource to exceed the allowed service limit. Resolve the issue before retrying.
1752
1752
/// - `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.
1753
1753
/// - `UnauthorizedException` : The client failed authentication. Clients should not retry such requests.
1754
+
/// - `UnsupportedRegionException` : The requested operation is not supported in the Region specified.
1754
1755
public func createLocation(input: CreateLocationInput) async throws -> CreateLocationOutput {
1755
1756
var config = config
1756
1757
let plugins: [any ClientRuntime.Plugin] = [SmithyRPCv2CBOR.Plugin(), AWSClientRuntime.UnknownAWSHTTPServiceErrorPlugin()]
@@ -3123,6 +3124,7 @@ extension GameLiftClient {
3123
3124
/// - `InvalidRequestException` : One or more parameter values in the request are invalid. Correct the invalid parameter values before retrying.
3124
3125
/// - `NotFoundException` : The requested resource was not found. The resource was either not created yet or deleted.
3125
3126
/// - `UnauthorizedException` : The client failed authentication. Clients should not retry such requests.
3127
+
/// - `UnsupportedRegionException` : The requested operation is not supported in the Region specified.
3126
3128
public func deleteLocation(input: DeleteLocationInput) async throws -> DeleteLocationOutput {
3127
3129
var config = config
3128
3130
let plugins: [any ClientRuntime.Plugin] = [SmithyRPCv2CBOR.Plugin(), AWSClientRuntime.UnknownAWSHTTPServiceErrorPlugin()]
@@ -3689,6 +3691,7 @@ extension GameLiftClient {
3689
3691
/// - `InvalidRequestException` : One or more parameter values in the request are invalid. Correct the invalid parameter values before retrying.
3690
3692
/// - `NotFoundException` : The requested resource was not found. The resource was either not created yet or deleted.
3691
3693
/// - `UnauthorizedException` : The client failed authentication. Clients should not retry such requests.
3694
+
/// - `UnsupportedRegionException` : The requested operation is not supported in the Region specified.
3692
3695
public func deregisterCompute(input: DeregisterComputeInput) async throws -> DeregisterComputeOutput {
3693
3696
var config = config
3694
3697
let plugins: [any ClientRuntime.Plugin] = [SmithyRPCv2CBOR.Plugin(), AWSClientRuntime.UnknownAWSHTTPServiceErrorPlugin()]
@@ -8245,6 +8248,7 @@ extension GameLiftClient {
8245
8248
/// - `LimitExceededException` : The requested operation would cause the resource to exceed the allowed service limit. Resolve the issue before retrying.
8246
8249
/// - `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/).
8247
8250
/// - `UnauthorizedException` : The client failed authentication. Clients should not retry such requests.
8251
+
/// - `UnsupportedRegionException` : The requested operation is not supported in the Region specified.
8248
8252
public func registerCompute(input: RegisterComputeInput) async throws -> RegisterComputeOutput {
8249
8253
var config = config
8250
8254
let plugins: [any ClientRuntime.Plugin] = [SmithyRPCv2CBOR.Plugin(), AWSClientRuntime.UnknownAWSHTTPServiceErrorPlugin()]
0 commit comments