Skip to content

Commit cef69ad

Browse files
chore: Updates version to 1.6.59
1 parent d38a3db commit cef69ad

File tree

6 files changed

+31
-14
lines changed

6 files changed

+31
-14
lines changed

Package.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.6.58
1+
1.6.59

Package.version.next

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.6.59
1+
1.6.60

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

Sources/Services/AWSBCMDashboards/Sources/AWSBCMDashboards/Models.swift

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1183,6 +1183,8 @@ extension BCMDashboardsClientTypes {
11831183
public var height: Swift.Int?
11841184
/// Specifies the starting column position of the widget in the dashboard's grid layout. Used to control widget placement.
11851185
public var horizontalOffset: Swift.Int
1186+
/// The unique identifier for the widget.
1187+
public var id: Swift.String?
11861188
/// The title of the widget.
11871189
/// This member is required.
11881190
public var title: Swift.String?
@@ -1194,13 +1196,15 @@ extension BCMDashboardsClientTypes {
11941196
description: Swift.String? = nil,
11951197
height: Swift.Int? = 7,
11961198
horizontalOffset: Swift.Int = 0,
1199+
id: Swift.String? = nil,
11971200
title: Swift.String? = nil,
11981201
width: Swift.Int? = 4
11991202
) {
12001203
self.configs = configs
12011204
self.description = description
12021205
self.height = height
12031206
self.horizontalOffset = horizontalOffset
1207+
self.id = id
12041208
self.title = title
12051209
self.width = width
12061210
}
@@ -2160,13 +2164,15 @@ extension BCMDashboardsClientTypes.Widget {
21602164
try writer["description"].write(value.description)
21612165
try writer["height"].write(value.height)
21622166
try writer["horizontalOffset"].write(value.horizontalOffset)
2167+
try writer["id"].write(value.id)
21632168
try writer["title"].write(value.title)
21642169
try writer["width"].write(value.width)
21652170
}
21662171

21672172
static func read(from reader: SmithyJSON.Reader) throws -> BCMDashboardsClientTypes.Widget {
21682173
guard reader.hasContent else { throw SmithyReadWrite.ReaderError.requiredValueNotPresent }
21692174
var value = BCMDashboardsClientTypes.Widget()
2175+
value.id = try reader["id"].readIfPresent()
21702176
value.title = try reader["title"].readIfPresent() ?? ""
21712177
value.description = try reader["description"].readIfPresent()
21722178
value.width = try reader["width"].readIfPresent() ?? 4

Sources/Services/AWSPcaConnectorScep/Sources/AWSPcaConnectorScep/Models.swift

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ extension PcaConnectorScepClientTypes {
161161

162162
extension PcaConnectorScepClientTypes {
163163

164-
/// Details about the specified challenge, returned by the [GetChallengeMetadata](https://docs.aws.amazon.com/C4SCEP_API/pca-connector-scep/latest/APIReference/API_GetChallengeMetadata.html) action.
164+
/// Details about the specified challenge, returned by the [GetChallengeMetadata](https://docs.aws.amazon.com/pca-connector-scep/latest/APIReference/API_GetChallengeMetadata.html) action.
165165
public struct ChallengeMetadataSummary: Swift.Sendable {
166166
/// The Amazon Resource Name (ARN) of the challenge.
167167
public var arn: Swift.String?
@@ -414,7 +414,7 @@ public struct ValidationException: ClientRuntime.ModeledError, AWSClientRuntime.
414414
}
415415

416416
public struct CreateChallengeInput: Swift.Sendable {
417-
/// Custom string that can be used to distinguish between calls to the [CreateChallenge](https://docs.aws.amazon.com/C4SCEP_API/pca-connector-scep/latest/APIReference/API_CreateChallenge.html) action. Client tokens for CreateChallenge time out after five minutes. Therefore, if you call CreateChallenge multiple times with the same client token within five minutes, Connector for SCEP recognizes that you are requesting only one challenge and will only respond with one. If you change the client token for each call, Connector for SCEP recognizes that you are requesting multiple challenge passwords.
417+
/// Custom string that can be used to distinguish between calls to the [CreateChallenge](https://docs.aws.amazon.com/pca-connector-scep/latest/APIReference/API_CreateChallenge.html) action. Client tokens for CreateChallenge time out after five minutes. Therefore, if you call CreateChallenge multiple times with the same client token within five minutes, Connector for SCEP recognizes that you are requesting only one challenge and will only respond with one. If you change the client token for each call, Connector for SCEP recognizes that you are requesting multiple challenge passwords.
418418
public var clientToken: Swift.String?
419419
/// The Amazon Resource Name (ARN) of the connector that you want to create a challenge for.
420420
/// This member is required.
@@ -638,14 +638,18 @@ extension PcaConnectorScepClientTypes {
638638
case privatecaAccessDenied
639639
case privatecaInvalidState
640640
case privatecaResourceNotFound
641+
case vpcEndpointDnsEntriesNotFound
642+
case vpcEndpointResourceNotFound
641643
case sdkUnknown(Swift.String)
642644

643645
public static var allCases: [ConnectorStatusReason] {
644646
return [
645647
.internalFailure,
646648
.privatecaAccessDenied,
647649
.privatecaInvalidState,
648-
.privatecaResourceNotFound
650+
.privatecaResourceNotFound,
651+
.vpcEndpointDnsEntriesNotFound,
652+
.vpcEndpointResourceNotFound
649653
]
650654
}
651655

@@ -660,6 +664,8 @@ extension PcaConnectorScepClientTypes {
660664
case .privatecaAccessDenied: return "PRIVATECA_ACCESS_DENIED"
661665
case .privatecaInvalidState: return "PRIVATECA_INVALID_STATE"
662666
case .privatecaResourceNotFound: return "PRIVATECA_RESOURCE_NOT_FOUND"
667+
case .vpcEndpointDnsEntriesNotFound: return "VPC_ENDPOINT_DNS_ENTRIES_NOT_FOUND"
668+
case .vpcEndpointResourceNotFound: return "VPC_ENDPOINT_RESOURCE_NOT_FOUND"
663669
case let .sdkUnknown(s): return s
664670
}
665671
}
@@ -801,23 +807,27 @@ public struct CreateConnectorInput: Swift.Sendable {
801807
/// The Amazon Resource Name (ARN) of the Amazon Web Services Private Certificate Authority certificate authority to use with this connector. Due to security vulnerabilities present in the SCEP protocol, we recommend using a private CA that's dedicated for use with the connector. To retrieve the private CAs associated with your account, you can call [ListCertificateAuthorities](https://docs.aws.amazon.com/privateca/latest/APIReference/API_ListCertificateAuthorities.html) using the Amazon Web Services Private CA API.
802808
/// This member is required.
803809
public var certificateAuthorityArn: Swift.String?
804-
/// Custom string that can be used to distinguish between calls to the [CreateChallenge](https://docs.aws.amazon.com/C4SCEP_API/pca-connector-scep/latest/APIReference/API_CreateChallenge.html) action. Client tokens for CreateChallenge time out after five minutes. Therefore, if you call CreateChallenge multiple times with the same client token within five minutes, Connector for SCEP recognizes that you are requesting only one challenge and will only respond with one. If you change the client token for each call, Connector for SCEP recognizes that you are requesting multiple challenge passwords.
810+
/// Custom string that can be used to distinguish between calls to the [CreateChallenge](https://docs.aws.amazon.com/pca-connector-scep/latest/APIReference/API_CreateChallenge.html) action. Client tokens for CreateChallenge time out after five minutes. Therefore, if you call CreateChallenge multiple times with the same client token within five minutes, Connector for SCEP recognizes that you are requesting only one challenge and will only respond with one. If you change the client token for each call, Connector for SCEP recognizes that you are requesting multiple challenge passwords.
805811
public var clientToken: Swift.String?
806812
/// If you don't supply a value, by default Connector for SCEP creates a connector for general-purpose use. A general-purpose connector is designed to work with clients or endpoints that support the SCEP protocol, except Connector for SCEP for Microsoft Intune. With connectors for general-purpose use, you manage SCEP challenge passwords using Connector for SCEP. For information about considerations and limitations with using Connector for SCEP, see [Considerations and Limitations](https://docs.aws.amazon.com/privateca/latest/userguide/scep-connector.htmlc4scep-considerations-limitations.html). If you provide an IntuneConfiguration, Connector for SCEP creates a connector for use with Microsoft Intune, and you manage the challenge passwords using Microsoft Intune. For more information, see [Using Connector for SCEP for Microsoft Intune](https://docs.aws.amazon.com/privateca/latest/userguide/scep-connector.htmlconnector-for-scep-intune.html).
807813
public var mobileDeviceManagement: PcaConnectorScepClientTypes.MobileDeviceManagement?
808814
/// The key-value pairs to associate with the resource.
809815
public var tags: [Swift.String: Swift.String]?
816+
/// If you don't supply a value, by default Connector for SCEP creates a connector accessible over the public internet. If you provide a VPC endpoint ID, creates a connector accessible only through that specific VPC endpoint.
817+
public var vpcEndpointId: Swift.String?
810818

811819
public init(
812820
certificateAuthorityArn: Swift.String? = nil,
813821
clientToken: Swift.String? = nil,
814822
mobileDeviceManagement: PcaConnectorScepClientTypes.MobileDeviceManagement? = nil,
815-
tags: [Swift.String: Swift.String]? = nil
823+
tags: [Swift.String: Swift.String]? = nil,
824+
vpcEndpointId: Swift.String? = nil
816825
) {
817826
self.certificateAuthorityArn = certificateAuthorityArn
818827
self.clientToken = clientToken
819828
self.mobileDeviceManagement = mobileDeviceManagement
820829
self.tags = tags
830+
self.vpcEndpointId = vpcEndpointId
821831
}
822832
}
823833

@@ -1134,6 +1144,7 @@ extension CreateConnectorInput {
11341144
try writer["ClientToken"].write(value.clientToken)
11351145
try writer["MobileDeviceManagement"].write(value.mobileDeviceManagement, with: PcaConnectorScepClientTypes.MobileDeviceManagement.write(value:to:))
11361146
try writer["Tags"].writeMap(value.tags, valueWritingClosure: SmithyReadWrite.WritingClosures.writeString(value:to:), keyNodeInfo: "key", valueNodeInfo: "value", isFlattened: false)
1147+
try writer["VpcEndpointId"].write(value.vpcEndpointId)
11371148
}
11381149
}
11391150

Sources/Services/AWSPcaConnectorScep/Sources/AWSPcaConnectorScep/PcaConnectorScepClient.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -614,7 +614,7 @@ extension PcaConnectorScepClient {
614614
extension PcaConnectorScepClient {
615615
/// Performs the `CreateChallenge` operation on the `PcaConnectorScep` service.
616616
///
617-
/// For general-purpose connectors. Creates a challenge password for the specified connector. The SCEP protocol uses a challenge password to authenticate a request before issuing a certificate from a certificate authority (CA). Your SCEP clients include the challenge password as part of their certificate request to Connector for SCEP. To retrieve the connector Amazon Resource Names (ARNs) for the connectors in your account, call [ListConnectors](https://docs.aws.amazon.com/C4SCEP_API/pca-connector-scep/latest/APIReference/API_ListConnectors.html). To create additional challenge passwords for the connector, call CreateChallenge again. We recommend frequently rotating your challenge passwords.
617+
/// For general-purpose connectors. Creates a challenge password for the specified connector. The SCEP protocol uses a challenge password to authenticate a request before issuing a certificate from a certificate authority (CA). Your SCEP clients include the challenge password as part of their certificate request to Connector for SCEP. To retrieve the connector Amazon Resource Names (ARNs) for the connectors in your account, call [ListConnectors](https://docs.aws.amazon.com/pca-connector-scep/latest/APIReference/API_ListConnectors.html). To create additional challenge passwords for the connector, call CreateChallenge again. We recommend frequently rotating your challenge passwords.
618618
///
619619
/// - Parameter input: [no documentation found] (Type: `CreateChallengeInput`)
620620
///
@@ -765,7 +765,7 @@ extension PcaConnectorScepClient {
765765

766766
/// Performs the `DeleteChallenge` operation on the `PcaConnectorScep` service.
767767
///
768-
/// Deletes the specified [Challenge](https://docs.aws.amazon.com/C4SCEP_API/pca-connector-scep/latest/APIReference/API_Challenge.html).
768+
/// Deletes the specified [Challenge](https://docs.aws.amazon.com/pca-connector-scep/latest/APIReference/API_Challenge.html).
769769
///
770770
/// - Parameter input: [no documentation found] (Type: `DeleteChallengeInput`)
771771
///
@@ -835,7 +835,7 @@ extension PcaConnectorScepClient {
835835

836836
/// Performs the `DeleteConnector` operation on the `PcaConnectorScep` service.
837837
///
838-
/// Deletes the specified [Connector](https://docs.aws.amazon.com/C4SCEP_API/pca-connector-scep/latest/APIReference/API_Connector.html). This operation also deletes any challenges associated with the connector.
838+
/// Deletes the specified [Connector](https://docs.aws.amazon.com/pca-connector-scep/latest/APIReference/API_Connector.html). This operation also deletes any challenges associated with the connector.
839839
///
840840
/// - Parameter input: [no documentation found] (Type: `DeleteConnectorInput`)
841841
///
@@ -905,7 +905,7 @@ extension PcaConnectorScepClient {
905905

906906
/// Performs the `GetChallengeMetadata` operation on the `PcaConnectorScep` service.
907907
///
908-
/// Retrieves the metadata for the specified [Challenge](https://docs.aws.amazon.com/C4SCEP_API/pca-connector-scep/latest/APIReference/API_Challenge.html).
908+
/// Retrieves the metadata for the specified [Challenge](https://docs.aws.amazon.com/pca-connector-scep/latest/APIReference/API_Challenge.html).
909909
///
910910
/// - Parameter input: [no documentation found] (Type: `GetChallengeMetadataInput`)
911911
///
@@ -974,7 +974,7 @@ extension PcaConnectorScepClient {
974974

975975
/// Performs the `GetChallengePassword` operation on the `PcaConnectorScep` service.
976976
///
977-
/// Retrieves the challenge password for the specified [Challenge](https://docs.aws.amazon.com/C4SCEP_API/pca-connector-scep/latest/APIReference/API_Challenge.html).
977+
/// Retrieves the challenge password for the specified [Challenge](https://docs.aws.amazon.com/pca-connector-scep/latest/APIReference/API_Challenge.html).
978978
///
979979
/// - Parameter input: [no documentation found] (Type: `GetChallengePasswordInput`)
980980
///
@@ -1043,7 +1043,7 @@ extension PcaConnectorScepClient {
10431043

10441044
/// Performs the `GetConnector` operation on the `PcaConnectorScep` service.
10451045
///
1046-
/// Retrieves details about the specified [Connector](https://docs.aws.amazon.com/C4SCEP_API/pca-connector-scep/latest/APIReference/API_Connector.html). Calling this action returns important details about the connector, such as the public SCEP URL where your clients can request certificates.
1046+
/// Retrieves details about the specified [Connector](https://docs.aws.amazon.com/pca-connector-scep/latest/APIReference/API_Connector.html). Calling this action returns important details about the connector, such as the public SCEP URL where your clients can request certificates.
10471047
///
10481048
/// - Parameter input: [no documentation found] (Type: `GetConnectorInput`)
10491049
///

0 commit comments

Comments
 (0)