Skip to content

Commit 99b3602

Browse files
chore: Updates version to 1.5.78
1 parent a4c3835 commit 99b3602

File tree

13 files changed

+3547
-253
lines changed

13 files changed

+3547
-253
lines changed

Package.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.5.77
1+
1.5.78

Package.version.next

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.5.78
1+
1.5.79

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.5.77"
10+
public let packageVersion = "1.5.78"

Sources/Services/AWSCloudFront/Sources/AWSCloudFront/CloudFrontClient.swift

Lines changed: 361 additions & 1 deletion
Large diffs are not rendered by default.

Sources/Services/AWSCloudFront/Sources/AWSCloudFront/Models.swift

Lines changed: 556 additions & 32 deletions
Large diffs are not rendered by default.

Sources/Services/AWSDataZone/Sources/AWSDataZone/Models.swift

Lines changed: 222 additions & 10 deletions
Large diffs are not rendered by default.

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

Lines changed: 95 additions & 65 deletions
Large diffs are not rendered by default.

Sources/Services/AWSFSx/Sources/AWSFSx/Models.swift

Lines changed: 24 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1650,6 +1650,8 @@ extension FSxClientTypes {
16501650
public struct SelfManagedActiveDirectoryAttributes: Swift.Sendable {
16511651
/// A list of up to three IP addresses of DNS servers or domain controllers in the self-managed AD directory.
16521652
public var dnsIps: [Swift.String]?
1653+
/// The Amazon Resource Name (ARN) of the Amazon Web Services Secrets Manager secret containing the service account credentials used to join the file system to your self-managed Active Directory domain.
1654+
public var domainJoinServiceAccountSecret: Swift.String?
16531655
/// The fully qualified domain name of the self-managed AD directory.
16541656
public var domainName: Swift.String?
16551657
/// The name of the domain group whose members have administrative privileges for the FSx file system.
@@ -1661,12 +1663,14 @@ extension FSxClientTypes {
16611663

16621664
public init(
16631665
dnsIps: [Swift.String]? = nil,
1666+
domainJoinServiceAccountSecret: Swift.String? = nil,
16641667
domainName: Swift.String? = nil,
16651668
fileSystemAdministratorsGroup: Swift.String? = nil,
16661669
organizationalUnitDistinguishedName: Swift.String? = nil,
16671670
userName: Swift.String? = nil
16681671
) {
16691672
self.dnsIps = dnsIps
1673+
self.domainJoinServiceAccountSecret = domainJoinServiceAccountSecret
16701674
self.domainName = domainName
16711675
self.fileSystemAdministratorsGroup = fileSystemAdministratorsGroup
16721676
self.organizationalUnitDistinguishedName = organizationalUnitDistinguishedName
@@ -5801,6 +5805,15 @@ extension FSxClientTypes {
58015805
/// A list of up to three IP addresses of DNS servers or domain controllers in the self-managed AD directory.
58025806
/// This member is required.
58035807
public var dnsIps: [Swift.String]?
5808+
/// The Amazon Resource Name (ARN) of the Amazon Web Services Secrets Manager secret containing the self-managed Active Directory domain join service account credentials. When provided, Amazon FSx uses the credentials stored in this secret to join the file system to your self-managed Active Directory domain. The secret must contain two key-value pairs:
5809+
///
5810+
/// * CUSTOMER_MANAGED_ACTIVE_DIRECTORY_USERNAME - The username for the service account
5811+
///
5812+
/// * CUSTOMER_MANAGED_ACTIVE_DIRECTORY_PASSWORD - The password for the service account
5813+
///
5814+
///
5815+
/// For more information, see [ Using Amazon FSx for Windows with your self-managed Microsoft Active Directory](https://docs.aws.amazon.com/fsx/latest/WindowsGuide/self-manage-prereqs.html) or [ Using Amazon FSx for ONTAP with your self-managed Microsoft Active Directory](https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/self-manage-prereqs.html).
5816+
public var domainJoinServiceAccountSecret: Swift.String?
58045817
/// The fully qualified domain name of the self-managed AD directory, such as corp.example.com.
58055818
/// This member is required.
58065819
public var domainName: Swift.String?
@@ -5809,21 +5822,21 @@ extension FSxClientTypes {
58095822
/// (Optional) The fully qualified distinguished name of the organizational unit within your self-managed AD directory. Amazon FSx only accepts OU as the direct parent of the file system. An example is OU=FSx,DC=yourdomain,DC=corp,DC=com. To learn more, see [RFC 2253](https://tools.ietf.org/html/rfc2253). If none is provided, the FSx file system is created in the default location of your self-managed AD directory. Only Organizational Unit (OU) objects can be the direct parent of the file system that you're creating.
58105823
public var organizationalUnitDistinguishedName: Swift.String?
58115824
/// The password for the service account on your self-managed AD domain that Amazon FSx will use to join to your AD domain.
5812-
/// This member is required.
58135825
public var password: Swift.String?
58145826
/// The user name for the service account on your self-managed AD domain that Amazon FSx will use to join to your AD domain. This account must have the permission to join computers to the domain in the organizational unit provided in OrganizationalUnitDistinguishedName, or in the default location of your AD domain.
5815-
/// This member is required.
58165827
public var userName: Swift.String?
58175828

58185829
public init(
58195830
dnsIps: [Swift.String]? = nil,
5831+
domainJoinServiceAccountSecret: Swift.String? = nil,
58205832
domainName: Swift.String? = nil,
58215833
fileSystemAdministratorsGroup: Swift.String? = nil,
58225834
organizationalUnitDistinguishedName: Swift.String? = nil,
58235835
password: Swift.String? = nil,
58245836
userName: Swift.String? = nil
58255837
) {
58265838
self.dnsIps = dnsIps
5839+
self.domainJoinServiceAccountSecret = domainJoinServiceAccountSecret
58275840
self.domainName = domainName
58285841
self.fileSystemAdministratorsGroup = fileSystemAdministratorsGroup
58295842
self.organizationalUnitDistinguishedName = organizationalUnitDistinguishedName
@@ -5835,7 +5848,7 @@ extension FSxClientTypes {
58355848

58365849
extension FSxClientTypes.SelfManagedActiveDirectoryConfiguration: Swift.CustomDebugStringConvertible {
58375850
public var debugDescription: Swift.String {
5838-
"SelfManagedActiveDirectoryConfiguration(dnsIps: \(Swift.String(describing: dnsIps)), domainName: \(Swift.String(describing: domainName)), fileSystemAdministratorsGroup: \(Swift.String(describing: fileSystemAdministratorsGroup)), organizationalUnitDistinguishedName: \(Swift.String(describing: organizationalUnitDistinguishedName)), userName: \(Swift.String(describing: userName)), password: \"CONTENT_REDACTED\")"}
5851+
"SelfManagedActiveDirectoryConfiguration(dnsIps: \(Swift.String(describing: dnsIps)), domainJoinServiceAccountSecret: \(Swift.String(describing: domainJoinServiceAccountSecret)), domainName: \(Swift.String(describing: domainName)), fileSystemAdministratorsGroup: \(Swift.String(describing: fileSystemAdministratorsGroup)), organizationalUnitDistinguishedName: \(Swift.String(describing: organizationalUnitDistinguishedName)), userName: \(Swift.String(describing: userName)), password: \"CONTENT_REDACTED\")"}
58395852
}
58405853

58415854
extension FSxClientTypes {
@@ -8948,6 +8961,8 @@ extension FSxClientTypes {
89488961
public struct SelfManagedActiveDirectoryConfigurationUpdates: Swift.Sendable {
89498962
/// A list of up to three DNS server or domain controller IP addresses in your self-managed Active Directory domain.
89508963
public var dnsIps: [Swift.String]?
8964+
/// Specifies the updated Amazon Resource Name (ARN) of the Amazon Web Services Secrets Manager secret containing the self-managed Active Directory domain join service account credentials. Amazon FSx uses this account to join to your self-managed Active Directory domain.
8965+
public var domainJoinServiceAccountSecret: Swift.String?
89518966
/// Specifies an updated fully qualified domain name of your self-managed Active Directory configuration.
89528967
public var domainName: Swift.String?
89538968
/// For FSx for ONTAP file systems only - Specifies the updated name of the self-managed Active Directory domain group whose members are granted administrative privileges for the Amazon FSx resource.
@@ -8961,13 +8976,15 @@ extension FSxClientTypes {
89618976

89628977
public init(
89638978
dnsIps: [Swift.String]? = nil,
8979+
domainJoinServiceAccountSecret: Swift.String? = nil,
89648980
domainName: Swift.String? = nil,
89658981
fileSystemAdministratorsGroup: Swift.String? = nil,
89668982
organizationalUnitDistinguishedName: Swift.String? = nil,
89678983
password: Swift.String? = nil,
89688984
userName: Swift.String? = nil
89698985
) {
89708986
self.dnsIps = dnsIps
8987+
self.domainJoinServiceAccountSecret = domainJoinServiceAccountSecret
89718988
self.domainName = domainName
89728989
self.fileSystemAdministratorsGroup = fileSystemAdministratorsGroup
89738990
self.organizationalUnitDistinguishedName = organizationalUnitDistinguishedName
@@ -8979,7 +8996,7 @@ extension FSxClientTypes {
89798996

89808997
extension FSxClientTypes.SelfManagedActiveDirectoryConfigurationUpdates: Swift.CustomDebugStringConvertible {
89818998
public var debugDescription: Swift.String {
8982-
"SelfManagedActiveDirectoryConfigurationUpdates(dnsIps: \(Swift.String(describing: dnsIps)), domainName: \(Swift.String(describing: domainName)), fileSystemAdministratorsGroup: \(Swift.String(describing: fileSystemAdministratorsGroup)), organizationalUnitDistinguishedName: \(Swift.String(describing: organizationalUnitDistinguishedName)), userName: \(Swift.String(describing: userName)), password: \"CONTENT_REDACTED\")"}
8999+
"SelfManagedActiveDirectoryConfigurationUpdates(dnsIps: \(Swift.String(describing: dnsIps)), domainJoinServiceAccountSecret: \(Swift.String(describing: domainJoinServiceAccountSecret)), domainName: \(Swift.String(describing: domainName)), fileSystemAdministratorsGroup: \(Swift.String(describing: fileSystemAdministratorsGroup)), organizationalUnitDistinguishedName: \(Swift.String(describing: organizationalUnitDistinguishedName)), userName: \(Swift.String(describing: userName)), password: \"CONTENT_REDACTED\")"}
89839000
}
89849001

89859002
extension FSxClientTypes {
@@ -13436,6 +13453,7 @@ extension FSxClientTypes.SelfManagedActiveDirectoryAttributes {
1343613453
value.fileSystemAdministratorsGroup = try reader["FileSystemAdministratorsGroup"].readIfPresent()
1343713454
value.userName = try reader["UserName"].readIfPresent()
1343813455
value.dnsIps = try reader["DnsIps"].readListIfPresent(memberReadingClosure: SmithyReadWrite.ReadingClosures.readString(from:), memberNodeInfo: "member", isFlattened: false)
13456+
value.domainJoinServiceAccountSecret = try reader["DomainJoinServiceAccountSecret"].readIfPresent()
1343913457
return value
1344013458
}
1344113459
}
@@ -14146,6 +14164,7 @@ extension FSxClientTypes.SelfManagedActiveDirectoryConfiguration {
1414614164
static func write(value: FSxClientTypes.SelfManagedActiveDirectoryConfiguration?, to writer: SmithyJSON.Writer) throws {
1414714165
guard let value else { return }
1414814166
try writer["DnsIps"].writeList(value.dnsIps, memberWritingClosure: SmithyReadWrite.WritingClosures.writeString(value:to:), memberNodeInfo: "member", isFlattened: false)
14167+
try writer["DomainJoinServiceAccountSecret"].write(value.domainJoinServiceAccountSecret)
1414914168
try writer["DomainName"].write(value.domainName)
1415014169
try writer["FileSystemAdministratorsGroup"].write(value.fileSystemAdministratorsGroup)
1415114170
try writer["OrganizationalUnitDistinguishedName"].write(value.organizationalUnitDistinguishedName)
@@ -14455,6 +14474,7 @@ extension FSxClientTypes.SelfManagedActiveDirectoryConfigurationUpdates {
1445514474
static func write(value: FSxClientTypes.SelfManagedActiveDirectoryConfigurationUpdates?, to writer: SmithyJSON.Writer) throws {
1445614475
guard let value else { return }
1445714476
try writer["DnsIps"].writeList(value.dnsIps, memberWritingClosure: SmithyReadWrite.WritingClosures.writeString(value:to:), memberNodeInfo: "member", isFlattened: false)
14477+
try writer["DomainJoinServiceAccountSecret"].write(value.domainJoinServiceAccountSecret)
1445814478
try writer["DomainName"].write(value.domainName)
1445914479
try writer["FileSystemAdministratorsGroup"].write(value.fileSystemAdministratorsGroup)
1446014480
try writer["OrganizationalUnitDistinguishedName"].write(value.organizationalUnitDistinguishedName)

0 commit comments

Comments
 (0)