Skip to content

Commit

Permalink
chore: Updates version to 1.2.16
Browse files Browse the repository at this point in the history
  • Loading branch information
aws-sdk-swift-automation committed Feb 11, 2025
1 parent a9ceb3d commit 9a52a93
Show file tree
Hide file tree
Showing 408 changed files with 527 additions and 447 deletions.
2 changes: 1 addition & 1 deletion Package.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.15
1.2.16
2 changes: 1 addition & 1 deletion Package.version.next
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.16
1.2.17
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 @@ -66,7 +66,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes

public class ACMClient: ClientRuntime.Client {
public static let clientName = "ACMClient"
public static let version = "1.2.15"
public static let version = "1.2.16"
let client: ClientRuntime.SdkHttpClient
let config: ACMClient.ACMClientConfiguration
let serviceName = "ACM"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes

public class ACMPCAClient: ClientRuntime.Client {
public static let clientName = "ACMPCAClient"
public static let version = "1.2.15"
public static let version = "1.2.16"
let client: ClientRuntime.SdkHttpClient
let config: ACMPCAClient.ACMPCAClientConfiguration
let serviceName = "ACM PCA"
Expand Down
45 changes: 45 additions & 0 deletions Sources/Services/AWSACMPCA/Sources/AWSACMPCA/Models.swift
Original file line number Diff line number Diff line change
Expand Up @@ -676,6 +676,35 @@ extension ACMPCAClientTypes {
}
}

extension ACMPCAClientTypes {

public enum CrlType: Swift.Sendable, Swift.Equatable, Swift.RawRepresentable, Swift.CaseIterable, Swift.Hashable {
case complete
case partitioned
case sdkUnknown(Swift.String)

public static var allCases: [CrlType] {
return [
.complete,
.partitioned
]
}

public init?(rawValue: Swift.String) {
let value = Self.allCases.first(where: { $0.rawValue == rawValue })
self = value ?? Self.sdkUnknown(rawValue)
}

public var rawValue: Swift.String {
switch self {
case .complete: return "COMPLETE"
case .partitioned: return "PARTITIONED"
case let .sdkUnknown(s): return s
}
}
}
}

extension ACMPCAClientTypes {

public enum S3ObjectAcl: Swift.Sendable, Swift.Equatable, Swift.RawRepresentable, Swift.CaseIterable, Swift.Hashable {
Expand Down Expand Up @@ -753,8 +782,16 @@ extension ACMPCAClientTypes {
public struct CrlConfiguration: Swift.Sendable {
/// 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.
public var crlDistributionPointExtensionConfiguration: ACMPCAClientTypes.CrlDistributionPointExtensionConfiguration?
/// 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).
///
/// * 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.
///
/// * 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.
public var crlType: ACMPCAClientTypes.CrlType?
/// 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://".
public var customCname: Swift.String?
/// 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.
public var customPath: Swift.String?
/// 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.
/// This member is required.
public var enabled: Swift.Bool?
Expand All @@ -767,14 +804,18 @@ extension ACMPCAClientTypes {

public init(
crlDistributionPointExtensionConfiguration: ACMPCAClientTypes.CrlDistributionPointExtensionConfiguration? = nil,
crlType: ACMPCAClientTypes.CrlType? = nil,
customCname: Swift.String? = nil,
customPath: Swift.String? = nil,
enabled: Swift.Bool? = false,
expirationInDays: Swift.Int? = nil,
s3BucketName: Swift.String? = nil,
s3ObjectAcl: ACMPCAClientTypes.S3ObjectAcl? = nil
) {
self.crlDistributionPointExtensionConfiguration = crlDistributionPointExtensionConfiguration
self.crlType = crlType
self.customCname = customCname
self.customPath = customPath
self.enabled = enabled
self.expirationInDays = expirationInDays
self.s3BucketName = s3BucketName
Expand Down Expand Up @@ -3840,7 +3881,9 @@ extension ACMPCAClientTypes.CrlConfiguration {
static func write(value: ACMPCAClientTypes.CrlConfiguration?, to writer: SmithyJSON.Writer) throws {
guard let value else { return }
try writer["CrlDistributionPointExtensionConfiguration"].write(value.crlDistributionPointExtensionConfiguration, with: ACMPCAClientTypes.CrlDistributionPointExtensionConfiguration.write(value:to:))
try writer["CrlType"].write(value.crlType)
try writer["CustomCname"].write(value.customCname)
try writer["CustomPath"].write(value.customPath)
try writer["Enabled"].write(value.enabled)
try writer["ExpirationInDays"].write(value.expirationInDays)
try writer["S3BucketName"].write(value.s3BucketName)
Expand All @@ -3856,6 +3899,8 @@ extension ACMPCAClientTypes.CrlConfiguration {
value.s3BucketName = try reader["S3BucketName"].readIfPresent()
value.s3ObjectAcl = try reader["S3ObjectAcl"].readIfPresent()
value.crlDistributionPointExtensionConfiguration = try reader["CrlDistributionPointExtensionConfiguration"].readIfPresent(with: ACMPCAClientTypes.CrlDistributionPointExtensionConfiguration.read(from:))
value.crlType = try reader["CrlType"].readIfPresent()
value.customPath = try reader["CustomPath"].readIfPresent()
return value
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes

public class APIGatewayClient: ClientRuntime.Client {
public static let clientName = "APIGatewayClient"
public static let version = "1.2.15"
public static let version = "1.2.16"
let client: ClientRuntime.SdkHttpClient
let config: APIGatewayClient.APIGatewayClientConfiguration
let serviceName = "API Gateway"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes

public class ARCZonalShiftClient: ClientRuntime.Client {
public static let clientName = "ARCZonalShiftClient"
public static let version = "1.2.15"
public static let version = "1.2.16"
let client: ClientRuntime.SdkHttpClient
let config: ARCZonalShiftClient.ARCZonalShiftClientConfiguration
let serviceName = "ARC Zonal Shift"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes

public class AccessAnalyzerClient: ClientRuntime.Client {
public static let clientName = "AccessAnalyzerClient"
public static let version = "1.2.15"
public static let version = "1.2.16"
let client: ClientRuntime.SdkHttpClient
let config: AccessAnalyzerClient.AccessAnalyzerClientConfiguration
let serviceName = "AccessAnalyzer"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes

public class AccountClient: ClientRuntime.Client {
public static let clientName = "AccountClient"
public static let version = "1.2.15"
public static let version = "1.2.16"
let client: ClientRuntime.SdkHttpClient
let config: AccountClient.AccountClientConfiguration
let serviceName = "Account"
Expand Down
2 changes: 1 addition & 1 deletion Sources/Services/AWSAmp/Sources/AWSAmp/AmpClient.swift
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes

public class AmpClient: ClientRuntime.Client {
public static let clientName = "AmpClient"
public static let version = "1.2.15"
public static let version = "1.2.16"
let client: ClientRuntime.SdkHttpClient
let config: AmpClient.AmpClientConfiguration
let serviceName = "amp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes

public class AmplifyClient: ClientRuntime.Client {
public static let clientName = "AmplifyClient"
public static let version = "1.2.15"
public static let version = "1.2.16"
let client: ClientRuntime.SdkHttpClient
let config: AmplifyClient.AmplifyClientConfiguration
let serviceName = "Amplify"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes

public class AmplifyBackendClient: ClientRuntime.Client {
public static let clientName = "AmplifyBackendClient"
public static let version = "1.2.15"
public static let version = "1.2.16"
let client: ClientRuntime.SdkHttpClient
let config: AmplifyBackendClient.AmplifyBackendClientConfiguration
let serviceName = "AmplifyBackend"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes

public class AmplifyUIBuilderClient: ClientRuntime.Client {
public static let clientName = "AmplifyUIBuilderClient"
public static let version = "1.2.15"
public static let version = "1.2.16"
let client: ClientRuntime.SdkHttpClient
let config: AmplifyUIBuilderClient.AmplifyUIBuilderClientConfiguration
let serviceName = "AmplifyUIBuilder"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes

public class ApiGatewayManagementApiClient: ClientRuntime.Client {
public static let clientName = "ApiGatewayManagementApiClient"
public static let version = "1.2.15"
public static let version = "1.2.16"
let client: ClientRuntime.SdkHttpClient
let config: ApiGatewayManagementApiClient.ApiGatewayManagementApiClientConfiguration
let serviceName = "ApiGatewayManagementApi"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes

public class ApiGatewayV2Client: ClientRuntime.Client {
public static let clientName = "ApiGatewayV2Client"
public static let version = "1.2.15"
public static let version = "1.2.16"
let client: ClientRuntime.SdkHttpClient
let config: ApiGatewayV2Client.ApiGatewayV2ClientConfiguration
let serviceName = "ApiGatewayV2"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes

public class AppConfigClient: ClientRuntime.Client {
public static let clientName = "AppConfigClient"
public static let version = "1.2.15"
public static let version = "1.2.16"
let client: ClientRuntime.SdkHttpClient
let config: AppConfigClient.AppConfigClientConfiguration
let serviceName = "AppConfig"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes

public class AppConfigDataClient: ClientRuntime.Client {
public static let clientName = "AppConfigDataClient"
public static let version = "1.2.15"
public static let version = "1.2.16"
let client: ClientRuntime.SdkHttpClient
let config: AppConfigDataClient.AppConfigDataClientConfiguration
let serviceName = "AppConfigData"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes

public class AppFabricClient: ClientRuntime.Client {
public static let clientName = "AppFabricClient"
public static let version = "1.2.15"
public static let version = "1.2.16"
let client: ClientRuntime.SdkHttpClient
let config: AppFabricClient.AppFabricClientConfiguration
let serviceName = "AppFabric"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes

public class AppIntegrationsClient: ClientRuntime.Client {
public static let clientName = "AppIntegrationsClient"
public static let version = "1.2.15"
public static let version = "1.2.16"
let client: ClientRuntime.SdkHttpClient
let config: AppIntegrationsClient.AppIntegrationsClientConfiguration
let serviceName = "AppIntegrations"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes

public class AppMeshClient: ClientRuntime.Client {
public static let clientName = "AppMeshClient"
public static let version = "1.2.15"
public static let version = "1.2.16"
let client: ClientRuntime.SdkHttpClient
let config: AppMeshClient.AppMeshClientConfiguration
let serviceName = "App Mesh"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes

public class AppRunnerClient: ClientRuntime.Client {
public static let clientName = "AppRunnerClient"
public static let version = "1.2.15"
public static let version = "1.2.16"
let client: ClientRuntime.SdkHttpClient
let config: AppRunnerClient.AppRunnerClientConfiguration
let serviceName = "AppRunner"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes

public class AppStreamClient: ClientRuntime.Client {
public static let clientName = "AppStreamClient"
public static let version = "1.2.15"
public static let version = "1.2.16"
let client: ClientRuntime.SdkHttpClient
let config: AppStreamClient.AppStreamClientConfiguration
let serviceName = "AppStream"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes

public class AppSyncClient: ClientRuntime.Client {
public static let clientName = "AppSyncClient"
public static let version = "1.2.15"
public static let version = "1.2.16"
let client: ClientRuntime.SdkHttpClient
let config: AppSyncClient.AppSyncClientConfiguration
let serviceName = "AppSync"
Expand Down
15 changes: 12 additions & 3 deletions Sources/Services/AWSAppSync/Sources/AWSAppSync/Models.swift
Original file line number Diff line number Diff line change
Expand Up @@ -476,12 +476,14 @@ extension AppSyncClientTypes {

public enum ApiCachingBehavior: Swift.Sendable, Swift.Equatable, Swift.RawRepresentable, Swift.CaseIterable, Swift.Hashable {
case fullRequestCaching
case operationLevelCaching
case perResolverCaching
case sdkUnknown(Swift.String)

public static var allCases: [ApiCachingBehavior] {
return [
.fullRequestCaching,
.operationLevelCaching,
.perResolverCaching
]
}
Expand All @@ -494,6 +496,7 @@ extension AppSyncClientTypes {
public var rawValue: Swift.String {
switch self {
case .fullRequestCaching: return "FULL_REQUEST_CACHING"
case .operationLevelCaching: return "OPERATION_LEVEL_CACHING"
case .perResolverCaching: return "PER_RESOLVER_CACHING"
case let .sdkUnknown(s): return s
}
Expand Down Expand Up @@ -642,9 +645,11 @@ extension AppSyncClientTypes {
public struct ApiCache: Swift.Sendable {
/// Caching behavior.
///
/// * FULL_REQUEST_CACHING: All requests are fully cached.
/// * 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.
///
/// * PER_RESOLVER_CACHING: Individual resolvers that you specify are cached.
///
/// * OPERATION_LEVEL_CACHING: Full requests are cached together and returned without executing resolvers.
public var apiCachingBehavior: AppSyncClientTypes.ApiCachingBehavior?
/// At-rest encryption flag for cache. You cannot update this setting after creation.
public var atRestEncryptionEnabled: Swift.Bool
Expand Down Expand Up @@ -1506,9 +1511,11 @@ public struct CreateApiOutput: Swift.Sendable {
public struct CreateApiCacheInput: Swift.Sendable {
/// Caching behavior.
///
/// * FULL_REQUEST_CACHING: All requests are fully cached.
/// * 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.
///
/// * PER_RESOLVER_CACHING: Individual resolvers that you specify are cached.
///
/// * OPERATION_LEVEL_CACHING: Full requests are cached together and returned without executing resolvers.
/// This member is required.
public var apiCachingBehavior: AppSyncClientTypes.ApiCachingBehavior?
/// The GraphQL API ID.
Expand Down Expand Up @@ -5199,9 +5206,11 @@ public struct UpdateApiOutput: Swift.Sendable {
public struct UpdateApiCacheInput: Swift.Sendable {
/// Caching behavior.
///
/// * FULL_REQUEST_CACHING: All requests are fully cached.
/// * 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.
///
/// * PER_RESOLVER_CACHING: Individual resolvers that you specify are cached.
///
/// * OPERATION_LEVEL_CACHING: Full requests are cached together and returned without executing resolvers.
/// This member is required.
public var apiCachingBehavior: AppSyncClientTypes.ApiCachingBehavior?
/// The GraphQL API ID.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes

public class AppTestClient: ClientRuntime.Client {
public static let clientName = "AppTestClient"
public static let version = "1.2.15"
public static let version = "1.2.16"
let client: ClientRuntime.SdkHttpClient
let config: AppTestClient.AppTestClientConfiguration
let serviceName = "AppTest"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes

public class AppflowClient: ClientRuntime.Client {
public static let clientName = "AppflowClient"
public static let version = "1.2.15"
public static let version = "1.2.16"
let client: ClientRuntime.SdkHttpClient
let config: AppflowClient.AppflowClientConfiguration
let serviceName = "Appflow"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes

public class ApplicationAutoScalingClient: ClientRuntime.Client {
public static let clientName = "ApplicationAutoScalingClient"
public static let version = "1.2.15"
public static let version = "1.2.16"
let client: ClientRuntime.SdkHttpClient
let config: ApplicationAutoScalingClient.ApplicationAutoScalingClientConfiguration
let serviceName = "Application Auto Scaling"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes

public class ApplicationCostProfilerClient: ClientRuntime.Client {
public static let clientName = "ApplicationCostProfilerClient"
public static let version = "1.2.15"
public static let version = "1.2.16"
let client: ClientRuntime.SdkHttpClient
let config: ApplicationCostProfilerClient.ApplicationCostProfilerClientConfiguration
let serviceName = "ApplicationCostProfiler"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes

public class ApplicationDiscoveryClient: ClientRuntime.Client {
public static let clientName = "ApplicationDiscoveryClient"
public static let version = "1.2.15"
public static let version = "1.2.16"
let client: ClientRuntime.SdkHttpClient
let config: ApplicationDiscoveryClient.ApplicationDiscoveryClientConfiguration
let serviceName = "Application Discovery"
Expand Down
Loading

0 comments on commit 9a52a93

Please sign in to comment.