Skip to content

Commit d29f997

Browse files
chore: Updates version to 1.6.35
1 parent 502ad06 commit d29f997

File tree

18 files changed

+2098
-231
lines changed

18 files changed

+2098
-231
lines changed

Package.swift

Lines changed: 1 addition & 1 deletion
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.178.0"
18+
let clientRuntimeVersion: Version = "0.179.0"
1919
let crtVersion: Version = "0.56.1"
2020

2121
let excludeRuntimeUnitTests = false

Package.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.6.34
1+
1.6.35

Package.version.next

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.6.35
1+
1.6.36

Sources/Core/AWSSDKDynamic/Sources/AWSSDKDynamic/PackageVersion.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77

88
// Code is auto-generated. DO NOT EDIT!
99

10-
public let packageVersion = "1.6.34"
10+
public let packageVersion = "1.6.35"

Sources/Core/AWSSDKDynamic/Sources/AWSSDKDynamic/Partitions.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ public let partitions = #"""
162162
"regionRegex" : "^eusc\\-(de)\\-\\w+\\-\\d+$",
163163
"regions" : {
164164
"eusc-de-east-1" : {
165-
"description" : "EU (Germany)"
165+
"description" : "AWS European Sovereign Cloud (Germany)"
166166
}
167167
}
168168
}, {

Sources/Services/AWSCleanRooms/Sources/AWSCleanRooms/Models.swift

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@ extension CleanRoomsClientTypes {
735735
public struct AnalysisParameter: Swift.Sendable {
736736
/// Optional. The default value that is applied in the analysis template. The member who can query can override this value in the query editor.
737737
public var defaultValue: Swift.String?
738-
/// The name of the parameter. The name must use only alphanumeric, underscore (_), or hyphen (-) characters but cannot start or end with a hyphen.
738+
/// The name of the parameter. The name must use only alphanumeric or underscore (_) characters.
739739
/// This member is required.
740740
public var name: Swift.String?
741741
/// The type of parameter.
@@ -8880,15 +8880,24 @@ extension CleanRoomsClientTypes {
88808880
/// The ARN of the analysis template.
88818881
/// This member is required.
88828882
public var analysisTemplateArn: Swift.String?
8883+
/// Runtime configuration values passed to the PySpark analysis script. Parameter names and types must match those defined in the analysis template.
8884+
public var parameters: [Swift.String: Swift.String]?
88838885

88848886
public init(
8885-
analysisTemplateArn: Swift.String? = nil
8887+
analysisTemplateArn: Swift.String? = nil,
8888+
parameters: [Swift.String: Swift.String]? = nil
88868889
) {
88878890
self.analysisTemplateArn = analysisTemplateArn
8891+
self.parameters = parameters
88888892
}
88898893
}
88908894
}
88918895

8896+
extension CleanRoomsClientTypes.ProtectedJobParameters: Swift.CustomDebugStringConvertible {
8897+
public var debugDescription: Swift.String {
8898+
"ProtectedJobParameters(analysisTemplateArn: \(Swift.String(describing: analysisTemplateArn)), parameters: \"CONTENT_REDACTED\")"}
8899+
}
8900+
88928901
extension CleanRoomsClientTypes {
88938902

88948903
/// Details about the member who received the job result.
@@ -17469,12 +17478,14 @@ extension CleanRoomsClientTypes.ProtectedJobParameters {
1746917478
static func write(value: CleanRoomsClientTypes.ProtectedJobParameters?, to writer: SmithyJSON.Writer) throws {
1747017479
guard let value else { return }
1747117480
try writer["analysisTemplateArn"].write(value.analysisTemplateArn)
17481+
try writer["parameters"].writeMap(value.parameters, valueWritingClosure: SmithyReadWrite.WritingClosures.writeString(value:to:), keyNodeInfo: "key", valueNodeInfo: "value", isFlattened: false)
1747217482
}
1747317483

1747417484
static func read(from reader: SmithyJSON.Reader) throws -> CleanRoomsClientTypes.ProtectedJobParameters {
1747517485
guard reader.hasContent else { throw SmithyReadWrite.ReaderError.requiredValueNotPresent }
1747617486
var value = CleanRoomsClientTypes.ProtectedJobParameters()
1747717487
value.analysisTemplateArn = try reader["analysisTemplateArn"].readIfPresent() ?? ""
17488+
value.parameters = try reader["parameters"].readMapIfPresent(valueReadingClosure: SmithyReadWrite.ReadingClosures.readString(from:), keyNodeInfo: "key", valueNodeInfo: "value", isFlattened: false)
1747817489
return value
1747917490
}
1748017491
}

Sources/Services/AWSDeadline/Sources/AWSDeadline/Models.swift

Lines changed: 240 additions & 93 deletions
Large diffs are not rendered by default.

Sources/Services/AWSEC2/Sources/AWSEC2/EC2Client.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42038,7 +42038,7 @@ extension EC2Client {
4203842038

4203942039
/// Performs the `ModifyVolume` operation on the `EC2` service.
4204042040
///
42041-
/// You can modify several parameters of an existing EBS volume, including volume size, volume type, and IOPS capacity. If your EBS volume is attached to a current-generation EC2 instance type, you might be able to apply these changes without stopping the instance or detaching the volume from it. For more information about modifying EBS volumes, see [Amazon EBS Elastic Volumes](https://docs.aws.amazon.com/ebs/latest/userguide/ebs-modify-volume.html) in the Amazon EBS User Guide. When you complete a resize operation on your volume, you need to extend the volume's file-system size to take advantage of the new storage capacity. For more information, see [Extend the file system](https://docs.aws.amazon.com/ebs/latest/userguide/recognize-expanded-volume-linux.html). For more information, see [Monitor the progress of volume modifications](https://docs.aws.amazon.com/ebs/latest/userguide/monitoring-volume-modifications.html) in the Amazon EBS User Guide. With previous-generation instance types, resizing an EBS volume might require detaching and reattaching the volume or stopping and restarting the instance. After modifying a volume, you must wait at least six hours and ensure that the volume is in the in-use or available state before you can modify the same volume. This is sometimes referred to as a cooldown period.
42041+
/// You can modify several parameters of an existing EBS volume, including volume size, volume type, and IOPS capacity. If your EBS volume is attached to a current-generation EC2 instance type, you might be able to apply these changes without stopping the instance or detaching the volume from it. For more information about modifying EBS volumes, see [Amazon EBS Elastic Volumes](https://docs.aws.amazon.com/ebs/latest/userguide/ebs-modify-volume.html) in the Amazon EBS User Guide. When you complete a resize operation on your volume, you need to extend the volume's file-system size to take advantage of the new storage capacity. For more information, see [Extend the file system](https://docs.aws.amazon.com/ebs/latest/userguide/recognize-expanded-volume-linux.html). For more information, see [Monitor the progress of volume modifications](https://docs.aws.amazon.com/ebs/latest/userguide/monitoring-volume-modifications.html) in the Amazon EBS User Guide. With previous-generation instance types, resizing an EBS volume might require detaching and reattaching the volume or stopping and restarting the instance. After you initiate a volume modification, you must wait for that modification to reach the completed state before you can initiate another modification for the same volume. You can modify a volume up to four times within a rolling 24-hour period, as long as the volume is in the in-use or available state, and all previous modifications for that volume are completed. If you exceed this limit, you get an error message that indicates when you can perform your next modification.
4204242042
///
4204342043
/// - Parameter input: [no documentation found] (Type: `ModifyVolumeInput`)
4204442044
///

Sources/Services/AWSEC2/Sources/AWSEC2/Models.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68177,7 +68177,7 @@ extension EC2ClientTypes {
6817768177

6817868178
/// The Amazon Web Services Organizations target for an IPAM policy.
6817968179
public struct IpamPolicyOrganizationTarget: Swift.Sendable {
68180-
/// The ID of a Amazon Web Services Organizations target for an IPAM policy.
68180+
/// The ID of the Amazon Web Services Organizations target. A target can be an individual Amazon Web Services account or an entity within an Amazon Web Services Organization to which an IPAM policy can be applied.
6818168181
public var organizationTargetId: Swift.String?
6818268182

6818368183
public init(
@@ -68191,7 +68191,7 @@ extension EC2ClientTypes {
6819168191
public struct GetIpamPolicyOrganizationTargetsOutput: Swift.Sendable {
6819268192
/// The token to use to retrieve the next page of results.
6819368193
public var nextToken: Swift.String?
68194-
/// The Amazon Web Services Organizations targets for an IPAM policy.
68194+
/// The IDs of the Amazon Web Services Organizations targets. A target can be an individual Amazon Web Services account or an entity within an Amazon Web Services Organization to which an IPAM policy can be applied.
6819568195
public var organizationTargets: [EC2ClientTypes.IpamPolicyOrganizationTarget]?
6819668196

6819768197
public init(

Sources/Services/AWSECS/Sources/AWSECS/Models.swift

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1190,6 +1190,8 @@ extension ECSClientTypes {
11901190
/// The Amazon Resource Name (ARN) of the instance profile that Amazon ECS applies to Amazon ECS Managed Instances. This instance profile must include the necessary permissions for your tasks to access Amazon Web Services services and resources. For more information, see [Amazon ECS instance profile for Managed Instances](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/managed-instances-instance-profile.html) in the Amazon ECS Developer Guide.
11911191
/// This member is required.
11921192
public var ec2InstanceProfileArn: Swift.String?
1193+
/// Determines whether to enable FIPS 140-2 validated cryptographic modules on EC2 instances launched by the capacity provider. If true, instances use FIPS-compliant cryptographic algorithms and modules for enhanced security compliance. If false, instances use standard cryptographic implementations. If not specified, instances are launched with FIPS enabled in AWS GovCloud (US) regions and FIPS disabled in other regions.
1194+
public var fipsEnabled: Swift.Bool?
11931195
/// The instance requirements. You can specify:
11941196
///
11951197
/// * The instance types
@@ -1210,13 +1212,15 @@ extension ECSClientTypes {
12101212
public init(
12111213
capacityOptionType: ECSClientTypes.CapacityOptionType? = nil,
12121214
ec2InstanceProfileArn: Swift.String? = nil,
1215+
fipsEnabled: Swift.Bool? = nil,
12131216
instanceRequirements: ECSClientTypes.InstanceRequirementsRequest? = nil,
12141217
monitoring: ECSClientTypes.ManagedInstancesMonitoringOptions? = nil,
12151218
networkConfiguration: ECSClientTypes.ManagedInstancesNetworkConfiguration? = nil,
12161219
storageConfiguration: ECSClientTypes.ManagedInstancesStorageConfiguration? = nil
12171220
) {
12181221
self.capacityOptionType = capacityOptionType
12191222
self.ec2InstanceProfileArn = ec2InstanceProfileArn
1223+
self.fipsEnabled = fipsEnabled
12201224
self.instanceRequirements = instanceRequirements
12211225
self.monitoring = monitoring
12221226
self.networkConfiguration = networkConfiguration
@@ -16176,6 +16180,7 @@ extension ECSClientTypes.InstanceLaunchTemplate {
1617616180
guard let value else { return }
1617716181
try writer["capacityOptionType"].write(value.capacityOptionType)
1617816182
try writer["ec2InstanceProfileArn"].write(value.ec2InstanceProfileArn)
16183+
try writer["fipsEnabled"].write(value.fipsEnabled)
1617916184
try writer["instanceRequirements"].write(value.instanceRequirements, with: ECSClientTypes.InstanceRequirementsRequest.write(value:to:))
1618016185
try writer["monitoring"].write(value.monitoring)
1618116186
try writer["networkConfiguration"].write(value.networkConfiguration, with: ECSClientTypes.ManagedInstancesNetworkConfiguration.write(value:to:))
@@ -16191,6 +16196,7 @@ extension ECSClientTypes.InstanceLaunchTemplate {
1619116196
value.monitoring = try reader["monitoring"].readIfPresent()
1619216197
value.capacityOptionType = try reader["capacityOptionType"].readIfPresent()
1619316198
value.instanceRequirements = try reader["instanceRequirements"].readIfPresent(with: ECSClientTypes.InstanceRequirementsRequest.read(from:))
16199+
value.fipsEnabled = try reader["fipsEnabled"].readIfPresent()
1619416200
return value
1619516201
}
1619616202
}

0 commit comments

Comments
 (0)