Skip to content

Commit 3f0372f

Browse files
chore: Updates version to 0.25.0
1 parent bbbe467 commit 3f0372f

File tree

117 files changed

+37768
-704
lines changed

Some content is hidden

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

117 files changed

+37768
-704
lines changed

Package.swift

Lines changed: 5 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -106,24 +106,11 @@ func addServiceTarget(_ name: String) {
106106

107107
func addIntegrationTestTarget(_ name: String) {
108108
let integrationTestName = "\(name)IntegrationTests"
109-
var additionalDependencies: [PackageDescription.Target.Dependency] = []
110-
var exclusions: [String] = []
111-
switch name {
112-
case "AWSECS":
113-
additionalDependencies = ["AWSCloudWatchLogs", "AWSEC2", "AWSIAM"]
114-
exclusions = [
115-
"README.md",
116-
"Resources/ECSIntegTestApp/"
117-
]
118-
default:
119-
break
120-
}
121109
package.targets += [
122110
.testTarget(
123111
name: integrationTestName,
124-
dependencies: [.crt, .clientRuntime, .awsClientRuntime, .byName(name: name), .smithyTestUtils] + additionalDependencies,
112+
dependencies: [.crt, .clientRuntime, .awsClientRuntime, .byName(name: name), .smithyTestUtils],
125113
path: "./IntegrationTests/Services/\(integrationTestName)",
126-
exclude: exclusions,
127114
resources: [.process("Resources")]
128115
)
129116
]
@@ -182,7 +169,7 @@ func addProtocolTests() {
182169
// MARK: - Generated
183170

184171
addDependencies(
185-
clientRuntimeVersion: "0.28.0",
172+
clientRuntimeVersion: "0.29.0",
186173
crtVersion: "0.13.0"
187174
)
188175

@@ -419,6 +406,7 @@ let serviceTargets: [String] = [
419406
"AWSMobile",
420407
"AWSMq",
421408
"AWSNeptune",
409+
"AWSNeptunedata",
422410
"AWSNetworkFirewall",
423411
"AWSNetworkManager",
424412
"AWSNimble",
@@ -435,6 +423,7 @@ let serviceTargets: [String] = [
435423
"AWSPanorama",
436424
"AWSPaymentCryptography",
437425
"AWSPaymentCryptographyData",
426+
"AWSPcaConnectorAd",
438427
"AWSPersonalize",
439428
"AWSPersonalizeEvents",
440429
"AWSPersonalizeRuntime",
@@ -549,4 +538,4 @@ let servicesWithIntegrationTests: [String] = [
549538
servicesWithIntegrationTests.forEach(addIntegrationTestTarget)
550539

551540
// Uncomment this line to enable protocol tests
552-
// addProtocolTests()
541+
// addProtocolTests()

Package.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.24.0
1+
0.25.0

Sources/Services/AWSAppRunner/AppRunnerClient.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ extension AppRunnerClient: AppRunnerClientProtocol {
161161
return result
162162
}
163163

164-
/// Create an App Runner connection resource. App Runner requires a connection resource when you create App Runner services that access private repositories from certain third-party providers. You can share a connection across multiple services. A connection resource is needed to access GitHub repositories. GitHub requires a user interface approval process through the App Runner console before you can use the connection.
164+
/// Create an App Runner connection resource. App Runner requires a connection resource when you create App Runner services that access private repositories from certain third-party providers. You can share a connection across multiple services. A connection resource is needed to access GitHub and Bitbucket repositories. Both require a user interface approval process through the App Runner console before you can use the connection.
165165
///
166166
/// - Parameter CreateConnectionInput : [no documentation found]
167167
///

Sources/Services/AWSAppRunner/AppRunnerClientProtocol.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public protocol AppRunnerClientProtocol {
3030
/// - `InvalidRequestException` : One or more input parameters aren't valid. Refer to the API action's document page, correct the input parameters, and try the action again.
3131
/// - `ServiceQuotaExceededException` : App Runner can't create this resource. You've reached your account quota for this resource type. For App Runner per-resource quotas, see [App Runner endpoints and quotas](https://docs.aws.amazon.com/general/latest/gr/apprunner.html) in the Amazon Web Services General Reference.
3232
func createAutoScalingConfiguration(input: CreateAutoScalingConfigurationInput) async throws -> CreateAutoScalingConfigurationOutputResponse
33-
/// Create an App Runner connection resource. App Runner requires a connection resource when you create App Runner services that access private repositories from certain third-party providers. You can share a connection across multiple services. A connection resource is needed to access GitHub repositories. GitHub requires a user interface approval process through the App Runner console before you can use the connection.
33+
/// Create an App Runner connection resource. App Runner requires a connection resource when you create App Runner services that access private repositories from certain third-party providers. You can share a connection across multiple services. A connection resource is needed to access GitHub and Bitbucket repositories. Both require a user interface approval process through the App Runner console before you can use the connection.
3434
///
3535
/// - Parameter CreateConnectionInput : [no documentation found]
3636
///

Sources/Services/AWSAppRunner/models/Models.swift

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5982,11 +5982,13 @@ extension PauseServiceOutputResponseBody: Swift.Decodable {
59825982

59835983
extension AppRunnerClientTypes {
59845984
public enum ProviderType: Swift.Equatable, Swift.RawRepresentable, Swift.CaseIterable, Swift.Codable, Swift.Hashable {
5985+
case bitbucket
59855986
case github
59865987
case sdkUnknown(Swift.String)
59875988

59885989
public static var allCases: [ProviderType] {
59895990
return [
5991+
.bitbucket,
59905992
.github,
59915993
.sdkUnknown("")
59925994
]
@@ -5997,6 +5999,7 @@ extension AppRunnerClientTypes {
59975999
}
59986000
public var rawValue: Swift.String {
59996001
switch self {
6002+
case .bitbucket: return "BITBUCKET"
60006003
case .github: return "GITHUB"
60016004
case let .sdkUnknown(s): return s
60026005
}
@@ -6375,7 +6378,7 @@ extension AppRunnerClientTypes {
63756378
public var sourceConfiguration: AppRunnerClientTypes.SourceConfiguration?
63766379
/// The current state of the App Runner service. These particular values mean the following.
63776380
///
6378-
/// * CREATE_FAILED – The service failed to create. To troubleshoot this failure, read the failure events and logs, change any parameters that need to be fixed, and retry the call to create the service. The failed service isn't usable, and still counts towards your service quota. When you're done analyzing the failure, delete the service.
6381+
/// * CREATE_FAILED – The service failed to create. The failed service isn't usable, and still counts towards your service quota. To troubleshoot this failure, read the failure events and logs, change any parameters that need to be fixed, and rebuild your service using UpdateService.
63796382
///
63806383
/// * DELETE_FAILED – The service failed to delete and can't be successfully recovered. Retry the service deletion call to ensure that all related resources are removed.
63816384
/// This member is required.
@@ -6637,7 +6640,7 @@ extension AppRunnerClientTypes {
66376640
public var serviceUrl: Swift.String?
66386641
/// The current state of the App Runner service. These particular values mean the following.
66396642
///
6640-
/// * CREATE_FAILED – The service failed to create. Read the failure events and logs, change any parameters that need to be fixed, and retry the call to create the service. The failed service isn't usable, and still counts towards your service quota. When you're done analyzing the failure, delete the service.
6643+
/// * CREATE_FAILED – The service failed to create. The failed service isn't usable, and still counts towards your service quota. To troubleshoot this failure, read the failure events and logs, change any parameters that need to be fixed, and rebuild your service using UpdateService.
66416644
///
66426645
/// * DELETE_FAILED – The service failed to delete and can't be successfully recovered. Retry the service deletion call to ensure that all related resources are removed.
66436646
public var status: AppRunnerClientTypes.ServiceStatus?

Sources/Services/AWSAppflow/AppflowClient.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,7 @@ extension AppflowClient: AppflowClientProtocol {
180180
/// - Throws: One of the exceptions listed below __Possible Exceptions__.
181181
///
182182
/// __Possible Exceptions:__
183+
/// - `AccessDeniedException` : AppFlow/Requester has invalid or missing permissions.
183184
/// - `ConflictException` : There was a conflict when processing the request (for example, a flow with the given name already exists within the account. Check for conflicting resource names and try again.
184185
/// - `ConnectorAuthenticationException` : An error occurred when authenticating with the connector endpoint.
185186
/// - `ConnectorServerException` : An error occurred when retrieving data from the connector endpoint.
@@ -1251,6 +1252,7 @@ extension AppflowClient: AppflowClientProtocol {
12511252
/// - Throws: One of the exceptions listed below __Possible Exceptions__.
12521253
///
12531254
/// __Possible Exceptions:__
1255+
/// - `AccessDeniedException` : AppFlow/Requester has invalid or missing permissions.
12541256
/// - `ConflictException` : There was a conflict when processing the request (for example, a flow with the given name already exists within the account. Check for conflicting resource names and try again.
12551257
/// - `ConnectorAuthenticationException` : An error occurred when authenticating with the connector endpoint.
12561258
/// - `ConnectorServerException` : An error occurred when retrieving data from the connector endpoint.

Sources/Services/AWSAppflow/AppflowClientProtocol.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ public protocol AppflowClientProtocol {
5454
/// - Throws: One of the exceptions listed below __Possible Exceptions__.
5555
///
5656
/// __Possible Exceptions:__
57+
/// - `AccessDeniedException` : AppFlow/Requester has invalid or missing permissions.
5758
/// - `ConflictException` : There was a conflict when processing the request (for example, a flow with the given name already exists within the account. Check for conflicting resource names and try again.
5859
/// - `ConnectorAuthenticationException` : An error occurred when authenticating with the connector endpoint.
5960
/// - `ConnectorServerException` : An error occurred when retrieving data from the connector endpoint.
@@ -364,6 +365,7 @@ public protocol AppflowClientProtocol {
364365
/// - Throws: One of the exceptions listed below __Possible Exceptions__.
365366
///
366367
/// __Possible Exceptions:__
368+
/// - `AccessDeniedException` : AppFlow/Requester has invalid or missing permissions.
367369
/// - `ConflictException` : There was a conflict when processing the request (for example, a flow with the given name already exists within the account. Check for conflicting resource names and try again.
368370
/// - `ConnectorAuthenticationException` : An error occurred when authenticating with the connector endpoint.
369371
/// - `ConnectorServerException` : An error occurred when retrieving data from the connector endpoint.

0 commit comments

Comments
 (0)