Skip to content

Commit

Permalink
chore: Updates version to 1.0.64
Browse files Browse the repository at this point in the history
  • Loading branch information
aws-sdk-swift-automation committed Dec 19, 2024
1 parent 355c24f commit 46b8322
Show file tree
Hide file tree
Showing 810 changed files with 11,558 additions and 10,967 deletions.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import PackageDescription

// MARK: - Dynamic Content

let clientRuntimeVersion: Version = "0.103.0"
let clientRuntimeVersion: Version = "0.104.0"
let crtVersion: Version = "0.40.0"

let excludeRuntimeUnitTests = false
Expand Down
2 changes: 1 addition & 1 deletion Package.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.63
1.0.64
2 changes: 1 addition & 1 deletion Package.version.next
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.64
1.0.65
2 changes: 1 addition & 1 deletion Sources/Services/AWSACM/Sources/AWSACM/ACMClient.swift
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes

public class ACMClient: ClientRuntime.Client {
public static let clientName = "ACMClient"
public static let version = "1.0.63"
public static let version = "1.0.64"
let client: ClientRuntime.SdkHttpClient
let config: ACMClient.ACMClientConfiguration
let serviceName = "ACM"
Expand Down
64 changes: 32 additions & 32 deletions Sources/Services/AWSACM/Sources/AWSACM/Models.swift
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ public struct UpdateCertificateOptionsOutput: Swift.Sendable {
}

/// You do not have access required to perform this action.
public struct AccessDeniedException: ClientRuntime.ModeledError, AWSClientRuntime.AWSServiceError, ClientRuntime.HTTPError, Swift.Error {
public struct AccessDeniedException: ClientRuntime.ModeledError, AWSClientRuntime.AWSServiceError, ClientRuntime.HTTPError, Swift.Error, Swift.Sendable {

public struct Properties {
public struct Properties: Swift.Sendable {
public internal(set) var message: Swift.String? = nil
}

Expand All @@ -94,9 +94,9 @@ public struct AccessDeniedException: ClientRuntime.ModeledError, AWSClientRuntim
}

/// The requested Amazon Resource Name (ARN) does not refer to an existing resource.
public struct InvalidArnException: ClientRuntime.ModeledError, AWSClientRuntime.AWSServiceError, ClientRuntime.HTTPError, Swift.Error {
public struct InvalidArnException: ClientRuntime.ModeledError, AWSClientRuntime.AWSServiceError, ClientRuntime.HTTPError, Swift.Error, Swift.Sendable {

public struct Properties {
public struct Properties: Swift.Sendable {
public internal(set) var message: Swift.String? = nil
}

Expand All @@ -118,9 +118,9 @@ public struct InvalidArnException: ClientRuntime.ModeledError, AWSClientRuntime.
}

/// An input parameter was invalid.
public struct InvalidParameterException: ClientRuntime.ModeledError, AWSClientRuntime.AWSServiceError, ClientRuntime.HTTPError, Swift.Error {
public struct InvalidParameterException: ClientRuntime.ModeledError, AWSClientRuntime.AWSServiceError, ClientRuntime.HTTPError, Swift.Error, Swift.Sendable {

public struct Properties {
public struct Properties: Swift.Sendable {
public internal(set) var message: Swift.String? = nil
}

Expand All @@ -142,9 +142,9 @@ public struct InvalidParameterException: ClientRuntime.ModeledError, AWSClientRu
}

/// One or both of the values that make up the key-value pair is not valid. For example, you cannot specify a tag value that begins with aws:.
public struct InvalidTagException: ClientRuntime.ModeledError, AWSClientRuntime.AWSServiceError, ClientRuntime.HTTPError, Swift.Error {
public struct InvalidTagException: ClientRuntime.ModeledError, AWSClientRuntime.AWSServiceError, ClientRuntime.HTTPError, Swift.Error, Swift.Sendable {

public struct Properties {
public struct Properties: Swift.Sendable {
public internal(set) var message: Swift.String? = nil
}

Expand All @@ -166,9 +166,9 @@ public struct InvalidTagException: ClientRuntime.ModeledError, AWSClientRuntime.
}

/// The specified certificate cannot be found in the caller's account or the caller's account cannot be found.
public struct ResourceNotFoundException: ClientRuntime.ModeledError, AWSClientRuntime.AWSServiceError, ClientRuntime.HTTPError, Swift.Error {
public struct ResourceNotFoundException: ClientRuntime.ModeledError, AWSClientRuntime.AWSServiceError, ClientRuntime.HTTPError, Swift.Error, Swift.Sendable {

public struct Properties {
public struct Properties: Swift.Sendable {
public internal(set) var message: Swift.String? = nil
}

Expand All @@ -190,9 +190,9 @@ public struct ResourceNotFoundException: ClientRuntime.ModeledError, AWSClientRu
}

/// A specified tag did not comply with an existing tag policy and was rejected.
public struct TagPolicyException: ClientRuntime.ModeledError, AWSClientRuntime.AWSServiceError, ClientRuntime.HTTPError, Swift.Error {
public struct TagPolicyException: ClientRuntime.ModeledError, AWSClientRuntime.AWSServiceError, ClientRuntime.HTTPError, Swift.Error, Swift.Sendable {

public struct Properties {
public struct Properties: Swift.Sendable {
public internal(set) var message: Swift.String? = nil
}

Expand All @@ -214,9 +214,9 @@ public struct TagPolicyException: ClientRuntime.ModeledError, AWSClientRuntime.A
}

/// The request was denied because it exceeded a quota.
public struct ThrottlingException: ClientRuntime.ModeledError, AWSClientRuntime.AWSServiceError, ClientRuntime.HTTPError, Swift.Error {
public struct ThrottlingException: ClientRuntime.ModeledError, AWSClientRuntime.AWSServiceError, ClientRuntime.HTTPError, Swift.Error, Swift.Sendable {

public struct Properties {
public struct Properties: Swift.Sendable {
public internal(set) var message: Swift.String? = nil
}

Expand All @@ -238,9 +238,9 @@ public struct ThrottlingException: ClientRuntime.ModeledError, AWSClientRuntime.
}

/// The request contains too many tags. Try the request again with fewer tags.
public struct TooManyTagsException: ClientRuntime.ModeledError, AWSClientRuntime.AWSServiceError, ClientRuntime.HTTPError, Swift.Error {
public struct TooManyTagsException: ClientRuntime.ModeledError, AWSClientRuntime.AWSServiceError, ClientRuntime.HTTPError, Swift.Error, Swift.Sendable {

public struct Properties {
public struct Properties: Swift.Sendable {
public internal(set) var message: Swift.String? = nil
}

Expand Down Expand Up @@ -1130,9 +1130,9 @@ extension ACMClientTypes {
}

/// You are trying to update a resource or configuration that is already being created or updated. Wait for the previous operation to finish and try again.
public struct ConflictException: ClientRuntime.ModeledError, AWSClientRuntime.AWSServiceError, ClientRuntime.HTTPError, Swift.Error {
public struct ConflictException: ClientRuntime.ModeledError, AWSClientRuntime.AWSServiceError, ClientRuntime.HTTPError, Swift.Error, Swift.Sendable {

public struct Properties {
public struct Properties: Swift.Sendable {
public internal(set) var message: Swift.String? = nil
}

Expand All @@ -1154,9 +1154,9 @@ public struct ConflictException: ClientRuntime.ModeledError, AWSClientRuntime.AW
}

/// The certificate is in use by another Amazon Web Services service in the caller's account. Remove the association and try again.
public struct ResourceInUseException: ClientRuntime.ModeledError, AWSClientRuntime.AWSServiceError, ClientRuntime.HTTPError, Swift.Error {
public struct ResourceInUseException: ClientRuntime.ModeledError, AWSClientRuntime.AWSServiceError, ClientRuntime.HTTPError, Swift.Error, Swift.Sendable {

public struct Properties {
public struct Properties: Swift.Sendable {
public internal(set) var message: Swift.String? = nil
}

Expand Down Expand Up @@ -1216,9 +1216,9 @@ public struct DescribeCertificateOutput: Swift.Sendable {
}

/// The certificate request is in process and the certificate in your account has not yet been issued.
public struct RequestInProgressException: ClientRuntime.ModeledError, AWSClientRuntime.AWSServiceError, ClientRuntime.HTTPError, Swift.Error {
public struct RequestInProgressException: ClientRuntime.ModeledError, AWSClientRuntime.AWSServiceError, ClientRuntime.HTTPError, Swift.Error, Swift.Sendable {

public struct Properties {
public struct Properties: Swift.Sendable {
public internal(set) var message: Swift.String? = nil
}

Expand Down Expand Up @@ -1345,9 +1345,9 @@ public struct GetCertificateOutput: Swift.Sendable {
}

/// An ACM quota has been exceeded.
public struct LimitExceededException: ClientRuntime.ModeledError, AWSClientRuntime.AWSServiceError, ClientRuntime.HTTPError, Swift.Error {
public struct LimitExceededException: ClientRuntime.ModeledError, AWSClientRuntime.AWSServiceError, ClientRuntime.HTTPError, Swift.Error, Swift.Sendable {

public struct Properties {
public struct Properties: Swift.Sendable {
public internal(set) var message: Swift.String? = nil
}

Expand Down Expand Up @@ -1416,9 +1416,9 @@ public struct ImportCertificateOutput: Swift.Sendable {
}

/// One or more of of request parameters specified is not valid.
public struct InvalidArgsException: ClientRuntime.ModeledError, AWSClientRuntime.AWSServiceError, ClientRuntime.HTTPError, Swift.Error {
public struct InvalidArgsException: ClientRuntime.ModeledError, AWSClientRuntime.AWSServiceError, ClientRuntime.HTTPError, Swift.Error, Swift.Sendable {

public struct Properties {
public struct Properties: Swift.Sendable {
public internal(set) var message: Swift.String? = nil
}

Expand All @@ -1440,9 +1440,9 @@ public struct InvalidArgsException: ClientRuntime.ModeledError, AWSClientRuntime
}

/// The supplied input failed to satisfy constraints of an Amazon Web Services service.
public struct ValidationException: ClientRuntime.ModeledError, AWSClientRuntime.AWSServiceError, ClientRuntime.HTTPError, Swift.Error {
public struct ValidationException: ClientRuntime.ModeledError, AWSClientRuntime.AWSServiceError, ClientRuntime.HTTPError, Swift.Error, Swift.Sendable {

public struct Properties {
public struct Properties: Swift.Sendable {
public internal(set) var message: Swift.String? = nil
}

Expand Down Expand Up @@ -1748,9 +1748,9 @@ public struct RenewCertificateInput: Swift.Sendable {
}

/// One or more values in the [DomainValidationOption] structure is incorrect.
public struct InvalidDomainValidationOptionsException: ClientRuntime.ModeledError, AWSClientRuntime.AWSServiceError, ClientRuntime.HTTPError, Swift.Error {
public struct InvalidDomainValidationOptionsException: ClientRuntime.ModeledError, AWSClientRuntime.AWSServiceError, ClientRuntime.HTTPError, Swift.Error, Swift.Sendable {

public struct Properties {
public struct Properties: Swift.Sendable {
public internal(set) var message: Swift.String? = nil
}

Expand Down Expand Up @@ -1876,9 +1876,9 @@ public struct RequestCertificateOutput: Swift.Sendable {
}

/// Processing has reached an invalid state.
public struct InvalidStateException: ClientRuntime.ModeledError, AWSClientRuntime.AWSServiceError, ClientRuntime.HTTPError, Swift.Error {
public struct InvalidStateException: ClientRuntime.ModeledError, AWSClientRuntime.AWSServiceError, ClientRuntime.HTTPError, Swift.Error, Swift.Sendable {

public struct Properties {
public struct Properties: Swift.Sendable {
public internal(set) var message: Swift.String? = nil
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes

public class ACMPCAClient: ClientRuntime.Client {
public static let clientName = "ACMPCAClient"
public static let version = "1.0.63"
public static let version = "1.0.64"
let client: ClientRuntime.SdkHttpClient
let config: ACMPCAClient.ACMPCAClientConfiguration
let serviceName = "ACM PCA"
Expand Down
Loading

0 comments on commit 46b8322

Please sign in to comment.