Skip to content

Commit 9a52a93

Browse files
chore: Updates version to 1.2.16
1 parent a9ceb3d commit 9a52a93

File tree

408 files changed

+527
-447
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

408 files changed

+527
-447
lines changed

Package.version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.15
1+
1.2.16

Package.version.next

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.16
1+
1.2.17

Sources/Services/AWSACM/Sources/AWSACM/ACMClient.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
6666

6767
public class ACMClient: ClientRuntime.Client {
6868
public static let clientName = "ACMClient"
69-
public static let version = "1.2.15"
69+
public static let version = "1.2.16"
7070
let client: ClientRuntime.SdkHttpClient
7171
let config: ACMClient.ACMClientConfiguration
7272
let serviceName = "ACM"

Sources/Services/AWSACMPCA/Sources/AWSACMPCA/ACMPCAClient.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
6666

6767
public class ACMPCAClient: ClientRuntime.Client {
6868
public static let clientName = "ACMPCAClient"
69-
public static let version = "1.2.15"
69+
public static let version = "1.2.16"
7070
let client: ClientRuntime.SdkHttpClient
7171
let config: ACMPCAClient.ACMPCAClientConfiguration
7272
let serviceName = "ACM PCA"

Sources/Services/AWSACMPCA/Sources/AWSACMPCA/Models.swift

+45
Original file line numberDiff line numberDiff line change
@@ -676,6 +676,35 @@ extension ACMPCAClientTypes {
676676
}
677677
}
678678

679+
extension ACMPCAClientTypes {
680+
681+
public enum CrlType: Swift.Sendable, Swift.Equatable, Swift.RawRepresentable, Swift.CaseIterable, Swift.Hashable {
682+
case complete
683+
case partitioned
684+
case sdkUnknown(Swift.String)
685+
686+
public static var allCases: [CrlType] {
687+
return [
688+
.complete,
689+
.partitioned
690+
]
691+
}
692+
693+
public init?(rawValue: Swift.String) {
694+
let value = Self.allCases.first(where: { $0.rawValue == rawValue })
695+
self = value ?? Self.sdkUnknown(rawValue)
696+
}
697+
698+
public var rawValue: Swift.String {
699+
switch self {
700+
case .complete: return "COMPLETE"
701+
case .partitioned: return "PARTITIONED"
702+
case let .sdkUnknown(s): return s
703+
}
704+
}
705+
}
706+
}
707+
679708
extension ACMPCAClientTypes {
680709

681710
public enum S3ObjectAcl: Swift.Sendable, Swift.Equatable, Swift.RawRepresentable, Swift.CaseIterable, Swift.Hashable {
@@ -753,8 +782,16 @@ extension ACMPCAClientTypes {
753782
public struct CrlConfiguration: Swift.Sendable {
754783
/// Configures the behavior of the CRL Distribution Point extension for certificates issued by your certificate authority. If this field is not provided, then the CRl Distribution Point Extension will be present and contain the default CRL URL.
755784
public var crlDistributionPointExtensionConfiguration: ACMPCAClientTypes.CrlDistributionPointExtensionConfiguration?
785+
/// Choose whether to use a partitioned or complete CRL. Your choice determines the maximum number of certificates that the certificate authority can issue and revoke, as described in the [Amazon Web Services Private CA quotas](https://docs.aws.amazon.com/general/latest/gr/pca.html#limits_pca-connector-ad).
786+
///
787+
/// * PARTITIONED - The default setting. Partitioned CRLs are an especially good option for devices that have limited processing power or storage capacity, such as certain IoT devices. Compared to complete CRLs, partitioned CRLs dramatically increase the number of certificates your private CA can issue. Each certificate that Amazon Web Services Private CA issues is bound to a specific CRL partition through the CRL distribution point (CDP) defined in [RFC 5280](https://datatracker.ietf.org/doc/html/rfc5280). To make sure that your client fetches the CRL from a valid endpoint, we recommend that you programmatically validate that the CRL's issuing distribution point (IDP) URI matches the certificate's CDP URI. Amazon Web Services Private CA marks the IDP extension as critical, which your client must be able to process.
788+
///
789+
/// * COMPLETE - Amazon Web Services Private CA maintains a single CRL file for all unexpired certificates issued by a CA that have been revoked for any reason.
790+
public var crlType: ACMPCAClientTypes.CrlType?
756791
/// Name inserted into the certificate CRL Distribution Points extension that enables the use of an alias for the CRL distribution point. Use this value if you don't want the name of your S3 bucket to be public. The content of a Canonical Name (CNAME) record must conform to [RFC2396](https://www.ietf.org/rfc/rfc2396.txt) restrictions on the use of special characters in URIs. Additionally, the value of the CNAME must not include a protocol prefix such as "http://" or "https://".
757792
public var customCname: Swift.String?
793+
/// Designates a custom file path in S3 for CRL(s). For example, http://<CustomName>/<CustomPath>/<CrlPartition_GUID>.crl. You can change the custom path up to five times.
794+
public var customPath: Swift.String?
758795
/// Boolean value that specifies whether certificate revocation lists (CRLs) are enabled. You can use this value to enable certificate revocation for a new CA when you call the [CreateCertificateAuthority](https://docs.aws.amazon.com/privateca/latest/APIReference/API_CreateCertificateAuthority.html) action or for an existing CA when you call the [UpdateCertificateAuthority](https://docs.aws.amazon.com/privateca/latest/APIReference/API_UpdateCertificateAuthority.html) action.
759796
/// This member is required.
760797
public var enabled: Swift.Bool?
@@ -767,14 +804,18 @@ extension ACMPCAClientTypes {
767804

768805
public init(
769806
crlDistributionPointExtensionConfiguration: ACMPCAClientTypes.CrlDistributionPointExtensionConfiguration? = nil,
807+
crlType: ACMPCAClientTypes.CrlType? = nil,
770808
customCname: Swift.String? = nil,
809+
customPath: Swift.String? = nil,
771810
enabled: Swift.Bool? = false,
772811
expirationInDays: Swift.Int? = nil,
773812
s3BucketName: Swift.String? = nil,
774813
s3ObjectAcl: ACMPCAClientTypes.S3ObjectAcl? = nil
775814
) {
776815
self.crlDistributionPointExtensionConfiguration = crlDistributionPointExtensionConfiguration
816+
self.crlType = crlType
777817
self.customCname = customCname
818+
self.customPath = customPath
778819
self.enabled = enabled
779820
self.expirationInDays = expirationInDays
780821
self.s3BucketName = s3BucketName
@@ -3840,7 +3881,9 @@ extension ACMPCAClientTypes.CrlConfiguration {
38403881
static func write(value: ACMPCAClientTypes.CrlConfiguration?, to writer: SmithyJSON.Writer) throws {
38413882
guard let value else { return }
38423883
try writer["CrlDistributionPointExtensionConfiguration"].write(value.crlDistributionPointExtensionConfiguration, with: ACMPCAClientTypes.CrlDistributionPointExtensionConfiguration.write(value:to:))
3884+
try writer["CrlType"].write(value.crlType)
38433885
try writer["CustomCname"].write(value.customCname)
3886+
try writer["CustomPath"].write(value.customPath)
38443887
try writer["Enabled"].write(value.enabled)
38453888
try writer["ExpirationInDays"].write(value.expirationInDays)
38463889
try writer["S3BucketName"].write(value.s3BucketName)
@@ -3856,6 +3899,8 @@ extension ACMPCAClientTypes.CrlConfiguration {
38563899
value.s3BucketName = try reader["S3BucketName"].readIfPresent()
38573900
value.s3ObjectAcl = try reader["S3ObjectAcl"].readIfPresent()
38583901
value.crlDistributionPointExtensionConfiguration = try reader["CrlDistributionPointExtensionConfiguration"].readIfPresent(with: ACMPCAClientTypes.CrlDistributionPointExtensionConfiguration.read(from:))
3902+
value.crlType = try reader["CrlType"].readIfPresent()
3903+
value.customPath = try reader["CustomPath"].readIfPresent()
38593904
return value
38603905
}
38613906
}

Sources/Services/AWSAPIGateway/Sources/AWSAPIGateway/APIGatewayClient.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
7070

7171
public class APIGatewayClient: ClientRuntime.Client {
7272
public static let clientName = "APIGatewayClient"
73-
public static let version = "1.2.15"
73+
public static let version = "1.2.16"
7474
let client: ClientRuntime.SdkHttpClient
7575
let config: APIGatewayClient.APIGatewayClientConfiguration
7676
let serviceName = "API Gateway"

Sources/Services/AWSARCZonalShift/Sources/AWSARCZonalShift/ARCZonalShiftClient.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
6666

6767
public class ARCZonalShiftClient: ClientRuntime.Client {
6868
public static let clientName = "ARCZonalShiftClient"
69-
public static let version = "1.2.15"
69+
public static let version = "1.2.16"
7070
let client: ClientRuntime.SdkHttpClient
7171
let config: ARCZonalShiftClient.ARCZonalShiftClientConfiguration
7272
let serviceName = "ARC Zonal Shift"

Sources/Services/AWSAccessAnalyzer/Sources/AWSAccessAnalyzer/AccessAnalyzerClient.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
6767

6868
public class AccessAnalyzerClient: ClientRuntime.Client {
6969
public static let clientName = "AccessAnalyzerClient"
70-
public static let version = "1.2.15"
70+
public static let version = "1.2.16"
7171
let client: ClientRuntime.SdkHttpClient
7272
let config: AccessAnalyzerClient.AccessAnalyzerClientConfiguration
7373
let serviceName = "AccessAnalyzer"

Sources/Services/AWSAccount/Sources/AWSAccount/AccountClient.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
6464

6565
public class AccountClient: ClientRuntime.Client {
6666
public static let clientName = "AccountClient"
67-
public static let version = "1.2.15"
67+
public static let version = "1.2.16"
6868
let client: ClientRuntime.SdkHttpClient
6969
let config: AccountClient.AccountClientConfiguration
7070
let serviceName = "Account"

Sources/Services/AWSAmp/Sources/AWSAmp/AmpClient.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
6767

6868
public class AmpClient: ClientRuntime.Client {
6969
public static let clientName = "AmpClient"
70-
public static let version = "1.2.15"
70+
public static let version = "1.2.16"
7171
let client: ClientRuntime.SdkHttpClient
7272
let config: AmpClient.AmpClientConfiguration
7373
let serviceName = "amp"

Sources/Services/AWSAmplify/Sources/AWSAmplify/AmplifyClient.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
6666

6767
public class AmplifyClient: ClientRuntime.Client {
6868
public static let clientName = "AmplifyClient"
69-
public static let version = "1.2.15"
69+
public static let version = "1.2.16"
7070
let client: ClientRuntime.SdkHttpClient
7171
let config: AmplifyClient.AmplifyClientConfiguration
7272
let serviceName = "Amplify"

Sources/Services/AWSAmplifyBackend/Sources/AWSAmplifyBackend/AmplifyBackendClient.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
6464

6565
public class AmplifyBackendClient: ClientRuntime.Client {
6666
public static let clientName = "AmplifyBackendClient"
67-
public static let version = "1.2.15"
67+
public static let version = "1.2.16"
6868
let client: ClientRuntime.SdkHttpClient
6969
let config: AmplifyBackendClient.AmplifyBackendClientConfiguration
7070
let serviceName = "AmplifyBackend"

Sources/Services/AWSAmplifyUIBuilder/Sources/AWSAmplifyUIBuilder/AmplifyUIBuilderClient.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
6767

6868
public class AmplifyUIBuilderClient: ClientRuntime.Client {
6969
public static let clientName = "AmplifyUIBuilderClient"
70-
public static let version = "1.2.15"
70+
public static let version = "1.2.16"
7171
let client: ClientRuntime.SdkHttpClient
7272
let config: AmplifyUIBuilderClient.AmplifyUIBuilderClientConfiguration
7373
let serviceName = "AmplifyUIBuilder"

Sources/Services/AWSApiGatewayManagementApi/Sources/AWSApiGatewayManagementApi/ApiGatewayManagementApiClient.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
6464

6565
public class ApiGatewayManagementApiClient: ClientRuntime.Client {
6666
public static let clientName = "ApiGatewayManagementApiClient"
67-
public static let version = "1.2.15"
67+
public static let version = "1.2.16"
6868
let client: ClientRuntime.SdkHttpClient
6969
let config: ApiGatewayManagementApiClient.ApiGatewayManagementApiClientConfiguration
7070
let serviceName = "ApiGatewayManagementApi"

Sources/Services/AWSApiGatewayV2/Sources/AWSApiGatewayV2/ApiGatewayV2Client.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
6666

6767
public class ApiGatewayV2Client: ClientRuntime.Client {
6868
public static let clientName = "ApiGatewayV2Client"
69-
public static let version = "1.2.15"
69+
public static let version = "1.2.16"
7070
let client: ClientRuntime.SdkHttpClient
7171
let config: ApiGatewayV2Client.ApiGatewayV2ClientConfiguration
7272
let serviceName = "ApiGatewayV2"

Sources/Services/AWSAppConfig/Sources/AWSAppConfig/AppConfigClient.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
6969

7070
public class AppConfigClient: ClientRuntime.Client {
7171
public static let clientName = "AppConfigClient"
72-
public static let version = "1.2.15"
72+
public static let version = "1.2.16"
7373
let client: ClientRuntime.SdkHttpClient
7474
let config: AppConfigClient.AppConfigClientConfiguration
7575
let serviceName = "AppConfig"

Sources/Services/AWSAppConfigData/Sources/AWSAppConfigData/AppConfigDataClient.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
6666

6767
public class AppConfigDataClient: ClientRuntime.Client {
6868
public static let clientName = "AppConfigDataClient"
69-
public static let version = "1.2.15"
69+
public static let version = "1.2.16"
7070
let client: ClientRuntime.SdkHttpClient
7171
let config: AppConfigDataClient.AppConfigDataClientConfiguration
7272
let serviceName = "AppConfigData"

Sources/Services/AWSAppFabric/Sources/AWSAppFabric/AppFabricClient.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
6666

6767
public class AppFabricClient: ClientRuntime.Client {
6868
public static let clientName = "AppFabricClient"
69-
public static let version = "1.2.15"
69+
public static let version = "1.2.16"
7070
let client: ClientRuntime.SdkHttpClient
7171
let config: AppFabricClient.AppFabricClientConfiguration
7272
let serviceName = "AppFabric"

Sources/Services/AWSAppIntegrations/Sources/AWSAppIntegrations/AppIntegrationsClient.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
6767

6868
public class AppIntegrationsClient: ClientRuntime.Client {
6969
public static let clientName = "AppIntegrationsClient"
70-
public static let version = "1.2.15"
70+
public static let version = "1.2.16"
7171
let client: ClientRuntime.SdkHttpClient
7272
let config: AppIntegrationsClient.AppIntegrationsClientConfiguration
7373
let serviceName = "AppIntegrations"

Sources/Services/AWSAppMesh/Sources/AWSAppMesh/AppMeshClient.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
6666

6767
public class AppMeshClient: ClientRuntime.Client {
6868
public static let clientName = "AppMeshClient"
69-
public static let version = "1.2.15"
69+
public static let version = "1.2.16"
7070
let client: ClientRuntime.SdkHttpClient
7171
let config: AppMeshClient.AppMeshClientConfiguration
7272
let serviceName = "App Mesh"

Sources/Services/AWSAppRunner/Sources/AWSAppRunner/AppRunnerClient.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
6565

6666
public class AppRunnerClient: ClientRuntime.Client {
6767
public static let clientName = "AppRunnerClient"
68-
public static let version = "1.2.15"
68+
public static let version = "1.2.16"
6969
let client: ClientRuntime.SdkHttpClient
7070
let config: AppRunnerClient.AppRunnerClientConfiguration
7171
let serviceName = "AppRunner"

Sources/Services/AWSAppStream/Sources/AWSAppStream/AppStreamClient.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
6666

6767
public class AppStreamClient: ClientRuntime.Client {
6868
public static let clientName = "AppStreamClient"
69-
public static let version = "1.2.15"
69+
public static let version = "1.2.16"
7070
let client: ClientRuntime.SdkHttpClient
7171
let config: AppStreamClient.AppStreamClientConfiguration
7272
let serviceName = "AppStream"

Sources/Services/AWSAppSync/Sources/AWSAppSync/AppSyncClient.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
6666

6767
public class AppSyncClient: ClientRuntime.Client {
6868
public static let clientName = "AppSyncClient"
69-
public static let version = "1.2.15"
69+
public static let version = "1.2.16"
7070
let client: ClientRuntime.SdkHttpClient
7171
let config: AppSyncClient.AppSyncClientConfiguration
7272
let serviceName = "AppSync"

Sources/Services/AWSAppSync/Sources/AWSAppSync/Models.swift

+12-3
Original file line numberDiff line numberDiff line change
@@ -476,12 +476,14 @@ extension AppSyncClientTypes {
476476

477477
public enum ApiCachingBehavior: Swift.Sendable, Swift.Equatable, Swift.RawRepresentable, Swift.CaseIterable, Swift.Hashable {
478478
case fullRequestCaching
479+
case operationLevelCaching
479480
case perResolverCaching
480481
case sdkUnknown(Swift.String)
481482

482483
public static var allCases: [ApiCachingBehavior] {
483484
return [
484485
.fullRequestCaching,
486+
.operationLevelCaching,
485487
.perResolverCaching
486488
]
487489
}
@@ -494,6 +496,7 @@ extension AppSyncClientTypes {
494496
public var rawValue: Swift.String {
495497
switch self {
496498
case .fullRequestCaching: return "FULL_REQUEST_CACHING"
499+
case .operationLevelCaching: return "OPERATION_LEVEL_CACHING"
497500
case .perResolverCaching: return "PER_RESOLVER_CACHING"
498501
case let .sdkUnknown(s): return s
499502
}
@@ -642,9 +645,11 @@ extension AppSyncClientTypes {
642645
public struct ApiCache: Swift.Sendable {
643646
/// Caching behavior.
644647
///
645-
/// * FULL_REQUEST_CACHING: All requests are fully cached.
648+
/// * FULL_REQUEST_CACHING: All requests from the same user are cached. Individual resolvers are automatically cached. All API calls will try to return responses from the cache.
646649
///
647650
/// * PER_RESOLVER_CACHING: Individual resolvers that you specify are cached.
651+
///
652+
/// * OPERATION_LEVEL_CACHING: Full requests are cached together and returned without executing resolvers.
648653
public var apiCachingBehavior: AppSyncClientTypes.ApiCachingBehavior?
649654
/// At-rest encryption flag for cache. You cannot update this setting after creation.
650655
public var atRestEncryptionEnabled: Swift.Bool
@@ -1506,9 +1511,11 @@ public struct CreateApiOutput: Swift.Sendable {
15061511
public struct CreateApiCacheInput: Swift.Sendable {
15071512
/// Caching behavior.
15081513
///
1509-
/// * FULL_REQUEST_CACHING: All requests are fully cached.
1514+
/// * FULL_REQUEST_CACHING: All requests from the same user are cached. Individual resolvers are automatically cached. All API calls will try to return responses from the cache.
15101515
///
15111516
/// * PER_RESOLVER_CACHING: Individual resolvers that you specify are cached.
1517+
///
1518+
/// * OPERATION_LEVEL_CACHING: Full requests are cached together and returned without executing resolvers.
15121519
/// This member is required.
15131520
public var apiCachingBehavior: AppSyncClientTypes.ApiCachingBehavior?
15141521
/// The GraphQL API ID.
@@ -5199,9 +5206,11 @@ public struct UpdateApiOutput: Swift.Sendable {
51995206
public struct UpdateApiCacheInput: Swift.Sendable {
52005207
/// Caching behavior.
52015208
///
5202-
/// * FULL_REQUEST_CACHING: All requests are fully cached.
5209+
/// * FULL_REQUEST_CACHING: All requests from the same user are cached. Individual resolvers are automatically cached. All API calls will try to return responses from the cache.
52035210
///
52045211
/// * PER_RESOLVER_CACHING: Individual resolvers that you specify are cached.
5212+
///
5213+
/// * OPERATION_LEVEL_CACHING: Full requests are cached together and returned without executing resolvers.
52055214
/// This member is required.
52065215
public var apiCachingBehavior: AppSyncClientTypes.ApiCachingBehavior?
52075216
/// The GraphQL API ID.

Sources/Services/AWSAppTest/Sources/AWSAppTest/AppTestClient.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
6767

6868
public class AppTestClient: ClientRuntime.Client {
6969
public static let clientName = "AppTestClient"
70-
public static let version = "1.2.15"
70+
public static let version = "1.2.16"
7171
let client: ClientRuntime.SdkHttpClient
7272
let config: AppTestClient.AppTestClientConfiguration
7373
let serviceName = "AppTest"

Sources/Services/AWSAppflow/Sources/AWSAppflow/AppflowClient.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
6767

6868
public class AppflowClient: ClientRuntime.Client {
6969
public static let clientName = "AppflowClient"
70-
public static let version = "1.2.15"
70+
public static let version = "1.2.16"
7171
let client: ClientRuntime.SdkHttpClient
7272
let config: AppflowClient.AppflowClientConfiguration
7373
let serviceName = "Appflow"

Sources/Services/AWSApplicationAutoScaling/Sources/AWSApplicationAutoScaling/ApplicationAutoScalingClient.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
6666

6767
public class ApplicationAutoScalingClient: ClientRuntime.Client {
6868
public static let clientName = "ApplicationAutoScalingClient"
69-
public static let version = "1.2.15"
69+
public static let version = "1.2.16"
7070
let client: ClientRuntime.SdkHttpClient
7171
let config: ApplicationAutoScalingClient.ApplicationAutoScalingClientConfiguration
7272
let serviceName = "Application Auto Scaling"

Sources/Services/AWSApplicationCostProfiler/Sources/AWSApplicationCostProfiler/ApplicationCostProfilerClient.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
6666

6767
public class ApplicationCostProfilerClient: ClientRuntime.Client {
6868
public static let clientName = "ApplicationCostProfilerClient"
69-
public static let version = "1.2.15"
69+
public static let version = "1.2.16"
7070
let client: ClientRuntime.SdkHttpClient
7171
let config: ApplicationCostProfilerClient.ApplicationCostProfilerClientConfiguration
7272
let serviceName = "ApplicationCostProfiler"

Sources/Services/AWSApplicationDiscoveryService/Sources/AWSApplicationDiscoveryService/ApplicationDiscoveryClient.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
6767

6868
public class ApplicationDiscoveryClient: ClientRuntime.Client {
6969
public static let clientName = "ApplicationDiscoveryClient"
70-
public static let version = "1.2.15"
70+
public static let version = "1.2.16"
7171
let client: ClientRuntime.SdkHttpClient
7272
let config: ApplicationDiscoveryClient.ApplicationDiscoveryClientConfiguration
7373
let serviceName = "Application Discovery"

0 commit comments

Comments
 (0)