Skip to content

Commit d9c5325

Browse files
chore: Updates version to 1.3.29
1 parent 2381135 commit d9c5325

File tree

411 files changed

+1774
-411
lines changed

Some content is hidden

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

411 files changed

+1774
-411
lines changed

Package.swift

Lines changed: 1 addition & 3 deletions
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.133.0"
18+
let clientRuntimeVersion: Version = "0.134.0"
1919
let crtVersion: Version = "0.52.1"
2020

2121
let excludeRuntimeUnitTests = false
@@ -537,8 +537,6 @@ private var runtimeTargets: [Target] {
537537
.clientRuntime,
538538
.smithyRetriesAPI,
539539
.smithyRetries,
540-
.smithyEventStreamsAPI,
541-
.smithyEventStreamsAuthAPI,
542540
.awsSDKCommon,
543541
.awsSDKHTTPAuth,
544542
.awsSDKChecksums,

Package.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.28
1+
1.3.29

Package.version.next

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.29
1+
1.3.30

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
6767

6868
public class ACMClient: ClientRuntime.Client {
6969
public static let clientName = "ACMClient"
70-
public static let version = "1.3.28"
70+
public static let version = "1.3.29"
7171
let client: ClientRuntime.SdkHttpClient
7272
let config: ACMClient.ACMClientConfiguration
7373
let serviceName = "ACM"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
6767

6868
public class ACMPCAClient: ClientRuntime.Client {
6969
public static let clientName = "ACMPCAClient"
70-
public static let version = "1.3.28"
70+
public static let version = "1.3.29"
7171
let client: ClientRuntime.SdkHttpClient
7272
let config: ACMPCAClient.ACMPCAClientConfiguration
7373
let serviceName = "ACM PCA"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
7171

7272
public class APIGatewayClient: ClientRuntime.Client {
7373
public static let clientName = "APIGatewayClient"
74-
public static let version = "1.3.28"
74+
public static let version = "1.3.29"
7575
let client: ClientRuntime.SdkHttpClient
7676
let config: APIGatewayClient.APIGatewayClientConfiguration
7777
let serviceName = "API Gateway"

Sources/Services/AWSAPIGateway/Sources/AWSAPIGateway/Models.swift

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1316,6 +1316,38 @@ extension APIGatewayClientTypes {
13161316
}
13171317
}
13181318

1319+
extension APIGatewayClientTypes {
1320+
1321+
public enum RoutingMode: Swift.Sendable, Swift.Equatable, Swift.RawRepresentable, Swift.CaseIterable, Swift.Hashable {
1322+
case basePathMappingOnly
1323+
case routingRuleOnly
1324+
case routingRuleThenBasePathMapping
1325+
case sdkUnknown(Swift.String)
1326+
1327+
public static var allCases: [RoutingMode] {
1328+
return [
1329+
.basePathMappingOnly,
1330+
.routingRuleOnly,
1331+
.routingRuleThenBasePathMapping
1332+
]
1333+
}
1334+
1335+
public init?(rawValue: Swift.String) {
1336+
let value = Self.allCases.first(where: { $0.rawValue == rawValue })
1337+
self = value ?? Self.sdkUnknown(rawValue)
1338+
}
1339+
1340+
public var rawValue: Swift.String {
1341+
switch self {
1342+
case .basePathMappingOnly: return "BASE_PATH_MAPPING_ONLY"
1343+
case .routingRuleOnly: return "ROUTING_RULE_ONLY"
1344+
case .routingRuleThenBasePathMapping: return "ROUTING_RULE_THEN_BASE_PATH_MAPPING"
1345+
case let .sdkUnknown(s): return s
1346+
}
1347+
}
1348+
}
1349+
}
1350+
13191351
extension APIGatewayClientTypes {
13201352

13211353
public enum SecurityPolicy: Swift.Sendable, Swift.Equatable, Swift.RawRepresentable, Swift.CaseIterable, Swift.Hashable {
@@ -1372,6 +1404,8 @@ public struct CreateDomainNameInput: Swift.Sendable {
13721404
public var regionalCertificateArn: Swift.String?
13731405
/// The user-friendly name of the certificate that will be used by regional endpoint for this domain name.
13741406
public var regionalCertificateName: Swift.String?
1407+
/// The routing mode for this domain name. The routing mode determines how API Gateway sends traffic from your custom domain name to your private APIs.
1408+
public var routingMode: APIGatewayClientTypes.RoutingMode?
13751409
/// The Transport Layer Security (TLS) version + cipher suite for this DomainName. The valid values are TLS_1_0 and TLS_1_2.
13761410
public var securityPolicy: APIGatewayClientTypes.SecurityPolicy?
13771411
/// The key-value map of strings. The valid character set is [a-zA-Z+-=._:/]. The tag key can be up to 128 characters and must not start with aws:. The tag value can be up to 256 characters.
@@ -1390,6 +1424,7 @@ public struct CreateDomainNameInput: Swift.Sendable {
13901424
policy: Swift.String? = nil,
13911425
regionalCertificateArn: Swift.String? = nil,
13921426
regionalCertificateName: Swift.String? = nil,
1427+
routingMode: APIGatewayClientTypes.RoutingMode? = nil,
13931428
securityPolicy: APIGatewayClientTypes.SecurityPolicy? = nil,
13941429
tags: [Swift.String: Swift.String]? = nil
13951430
) {
@@ -1405,6 +1440,7 @@ public struct CreateDomainNameInput: Swift.Sendable {
14051440
self.policy = policy
14061441
self.regionalCertificateArn = regionalCertificateArn
14071442
self.regionalCertificateName = regionalCertificateName
1443+
self.routingMode = routingMode
14081444
self.securityPolicy = securityPolicy
14091445
self.tags = tags
14101446
}
@@ -1511,6 +1547,8 @@ public struct CreateDomainNameOutput: Swift.Sendable {
15111547
public var regionalDomainName: Swift.String?
15121548
/// The region-specific Amazon Route 53 Hosted Zone ID of the regional endpoint. For more information, see Set up a Regional Custom Domain Name and AWS Regions and Endpoints for API Gateway.
15131549
public var regionalHostedZoneId: Swift.String?
1550+
/// The routing mode for this domain name. The routing mode determines how API Gateway sends traffic from your custom domain name to your private APIs.
1551+
public var routingMode: APIGatewayClientTypes.RoutingMode?
15141552
/// The Transport Layer Security (TLS) version + cipher suite for this DomainName. The valid values are TLS_1_0 and TLS_1_2.
15151553
public var securityPolicy: APIGatewayClientTypes.SecurityPolicy?
15161554
/// The collection of tags. Each tag element is associated with a given resource.
@@ -1536,6 +1574,7 @@ public struct CreateDomainNameOutput: Swift.Sendable {
15361574
regionalCertificateName: Swift.String? = nil,
15371575
regionalDomainName: Swift.String? = nil,
15381576
regionalHostedZoneId: Swift.String? = nil,
1577+
routingMode: APIGatewayClientTypes.RoutingMode? = nil,
15391578
securityPolicy: APIGatewayClientTypes.SecurityPolicy? = nil,
15401579
tags: [Swift.String: Swift.String]? = nil
15411580
) {
@@ -1558,6 +1597,7 @@ public struct CreateDomainNameOutput: Swift.Sendable {
15581597
self.regionalCertificateName = regionalCertificateName
15591598
self.regionalDomainName = regionalDomainName
15601599
self.regionalHostedZoneId = regionalHostedZoneId
1600+
self.routingMode = routingMode
15611601
self.securityPolicy = securityPolicy
15621602
self.tags = tags
15631603
}
@@ -4177,6 +4217,8 @@ public struct GetDomainNameOutput: Swift.Sendable {
41774217
public var regionalDomainName: Swift.String?
41784218
/// The region-specific Amazon Route 53 Hosted Zone ID of the regional endpoint. For more information, see Set up a Regional Custom Domain Name and AWS Regions and Endpoints for API Gateway.
41794219
public var regionalHostedZoneId: Swift.String?
4220+
/// The routing mode for this domain name. The routing mode determines how API Gateway sends traffic from your custom domain name to your private APIs.
4221+
public var routingMode: APIGatewayClientTypes.RoutingMode?
41804222
/// The Transport Layer Security (TLS) version + cipher suite for this DomainName. The valid values are TLS_1_0 and TLS_1_2.
41814223
public var securityPolicy: APIGatewayClientTypes.SecurityPolicy?
41824224
/// The collection of tags. Each tag element is associated with a given resource.
@@ -4202,6 +4244,7 @@ public struct GetDomainNameOutput: Swift.Sendable {
42024244
regionalCertificateName: Swift.String? = nil,
42034245
regionalDomainName: Swift.String? = nil,
42044246
regionalHostedZoneId: Swift.String? = nil,
4247+
routingMode: APIGatewayClientTypes.RoutingMode? = nil,
42054248
securityPolicy: APIGatewayClientTypes.SecurityPolicy? = nil,
42064249
tags: [Swift.String: Swift.String]? = nil
42074250
) {
@@ -4224,6 +4267,7 @@ public struct GetDomainNameOutput: Swift.Sendable {
42244267
self.regionalCertificateName = regionalCertificateName
42254268
self.regionalDomainName = regionalDomainName
42264269
self.regionalHostedZoneId = regionalHostedZoneId
4270+
self.routingMode = routingMode
42274271
self.securityPolicy = securityPolicy
42284272
self.tags = tags
42294273
}
@@ -4385,6 +4429,8 @@ extension APIGatewayClientTypes {
43854429
public var regionalDomainName: Swift.String?
43864430
/// The region-specific Amazon Route 53 Hosted Zone ID of the regional endpoint. For more information, see Set up a Regional Custom Domain Name and AWS Regions and Endpoints for API Gateway.
43874431
public var regionalHostedZoneId: Swift.String?
4432+
/// The routing mode for this domain name. The routing mode determines how API Gateway sends traffic from your custom domain name to your private APIs.
4433+
public var routingMode: APIGatewayClientTypes.RoutingMode?
43884434
/// The Transport Layer Security (TLS) version + cipher suite for this DomainName. The valid values are TLS_1_0 and TLS_1_2.
43894435
public var securityPolicy: APIGatewayClientTypes.SecurityPolicy?
43904436
/// The collection of tags. Each tag element is associated with a given resource.
@@ -4410,6 +4456,7 @@ extension APIGatewayClientTypes {
44104456
regionalCertificateName: Swift.String? = nil,
44114457
regionalDomainName: Swift.String? = nil,
44124458
regionalHostedZoneId: Swift.String? = nil,
4459+
routingMode: APIGatewayClientTypes.RoutingMode? = nil,
44134460
securityPolicy: APIGatewayClientTypes.SecurityPolicy? = nil,
44144461
tags: [Swift.String: Swift.String]? = nil
44154462
) {
@@ -4432,6 +4479,7 @@ extension APIGatewayClientTypes {
44324479
self.regionalCertificateName = regionalCertificateName
44334480
self.regionalDomainName = regionalDomainName
44344481
self.regionalHostedZoneId = regionalHostedZoneId
4482+
self.routingMode = routingMode
44354483
self.securityPolicy = securityPolicy
44364484
self.tags = tags
44374485
}
@@ -7736,6 +7784,8 @@ public struct UpdateDomainNameOutput: Swift.Sendable {
77367784
public var regionalDomainName: Swift.String?
77377785
/// The region-specific Amazon Route 53 Hosted Zone ID of the regional endpoint. For more information, see Set up a Regional Custom Domain Name and AWS Regions and Endpoints for API Gateway.
77387786
public var regionalHostedZoneId: Swift.String?
7787+
/// The routing mode for this domain name. The routing mode determines how API Gateway sends traffic from your custom domain name to your private APIs.
7788+
public var routingMode: APIGatewayClientTypes.RoutingMode?
77397789
/// The Transport Layer Security (TLS) version + cipher suite for this DomainName. The valid values are TLS_1_0 and TLS_1_2.
77407790
public var securityPolicy: APIGatewayClientTypes.SecurityPolicy?
77417791
/// The collection of tags. Each tag element is associated with a given resource.
@@ -7761,6 +7811,7 @@ public struct UpdateDomainNameOutput: Swift.Sendable {
77617811
regionalCertificateName: Swift.String? = nil,
77627812
regionalDomainName: Swift.String? = nil,
77637813
regionalHostedZoneId: Swift.String? = nil,
7814+
routingMode: APIGatewayClientTypes.RoutingMode? = nil,
77647815
securityPolicy: APIGatewayClientTypes.SecurityPolicy? = nil,
77657816
tags: [Swift.String: Swift.String]? = nil
77667817
) {
@@ -7783,6 +7834,7 @@ public struct UpdateDomainNameOutput: Swift.Sendable {
77837834
self.regionalCertificateName = regionalCertificateName
77847835
self.regionalDomainName = regionalDomainName
77857836
self.regionalHostedZoneId = regionalHostedZoneId
7837+
self.routingMode = routingMode
77867838
self.securityPolicy = securityPolicy
77877839
self.tags = tags
77887840
}
@@ -10836,6 +10888,7 @@ extension CreateDomainNameInput {
1083610888
try writer["policy"].write(value.policy)
1083710889
try writer["regionalCertificateArn"].write(value.regionalCertificateArn)
1083810890
try writer["regionalCertificateName"].write(value.regionalCertificateName)
10891+
try writer["routingMode"].write(value.routingMode)
1083910892
try writer["securityPolicy"].write(value.securityPolicy)
1084010893
try writer["tags"].writeMap(value.tags, valueWritingClosure: SmithyReadWrite.WritingClosures.writeString(value:to:), keyNodeInfo: "key", valueNodeInfo: "value", isFlattened: false)
1084110894
}
@@ -11391,6 +11444,7 @@ extension CreateDomainNameOutput {
1139111444
value.regionalCertificateName = try reader["regionalCertificateName"].readIfPresent()
1139211445
value.regionalDomainName = try reader["regionalDomainName"].readIfPresent()
1139311446
value.regionalHostedZoneId = try reader["regionalHostedZoneId"].readIfPresent()
11447+
value.routingMode = try reader["routingMode"].readIfPresent()
1139411448
value.securityPolicy = try reader["securityPolicy"].readIfPresent()
1139511449
value.tags = try reader["tags"].readMapIfPresent(valueReadingClosure: SmithyReadWrite.ReadingClosures.readString(from:), keyNodeInfo: "key", valueNodeInfo: "value", isFlattened: false)
1139611450
return value
@@ -11999,6 +12053,7 @@ extension GetDomainNameOutput {
1199912053
value.regionalCertificateName = try reader["regionalCertificateName"].readIfPresent()
1200012054
value.regionalDomainName = try reader["regionalDomainName"].readIfPresent()
1200112055
value.regionalHostedZoneId = try reader["regionalHostedZoneId"].readIfPresent()
12056+
value.routingMode = try reader["routingMode"].readIfPresent()
1200212057
value.securityPolicy = try reader["securityPolicy"].readIfPresent()
1200312058
value.tags = try reader["tags"].readMapIfPresent(valueReadingClosure: SmithyReadWrite.ReadingClosures.readString(from:), keyNodeInfo: "key", valueNodeInfo: "value", isFlattened: false)
1200412059
return value
@@ -12887,6 +12942,7 @@ extension UpdateDomainNameOutput {
1288712942
value.regionalCertificateName = try reader["regionalCertificateName"].readIfPresent()
1288812943
value.regionalDomainName = try reader["regionalDomainName"].readIfPresent()
1288912944
value.regionalHostedZoneId = try reader["regionalHostedZoneId"].readIfPresent()
12945+
value.routingMode = try reader["routingMode"].readIfPresent()
1289012946
value.securityPolicy = try reader["securityPolicy"].readIfPresent()
1289112947
value.tags = try reader["tags"].readMapIfPresent(valueReadingClosure: SmithyReadWrite.ReadingClosures.readString(from:), keyNodeInfo: "key", valueNodeInfo: "value", isFlattened: false)
1289212948
return value
@@ -15878,6 +15934,7 @@ extension APIGatewayClientTypes.DomainName {
1587815934
value.ownershipVerificationCertificateArn = try reader["ownershipVerificationCertificateArn"].readIfPresent()
1587915935
value.managementPolicy = try reader["managementPolicy"].readIfPresent()
1588015936
value.policy = try reader["policy"].readIfPresent()
15937+
value.routingMode = try reader["routingMode"].readIfPresent()
1588115938
return value
1588215939
}
1588315940
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
6767

6868
public class ARCZonalShiftClient: ClientRuntime.Client {
6969
public static let clientName = "ARCZonalShiftClient"
70-
public static let version = "1.3.28"
70+
public static let version = "1.3.29"
7171
let client: ClientRuntime.SdkHttpClient
7272
let config: ARCZonalShiftClient.ARCZonalShiftClientConfiguration
7373
let serviceName = "ARC Zonal Shift"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
6868

6969
public class AccessAnalyzerClient: ClientRuntime.Client {
7070
public static let clientName = "AccessAnalyzerClient"
71-
public static let version = "1.3.28"
71+
public static let version = "1.3.29"
7272
let client: ClientRuntime.SdkHttpClient
7373
let config: AccessAnalyzerClient.AccessAnalyzerClientConfiguration
7474
let serviceName = "AccessAnalyzer"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ import typealias SmithyHTTPAuthAPI.AuthSchemes
6666

6767
public class AccountClient: ClientRuntime.Client {
6868
public static let clientName = "AccountClient"
69-
public static let version = "1.3.28"
69+
public static let version = "1.3.29"
7070
let client: ClientRuntime.SdkHttpClient
7171
let config: AccountClient.AccountClientConfiguration
7272
let serviceName = "Account"

0 commit comments

Comments
 (0)