Skip to content

Commit

Permalink
chore: Updates version to 0.33.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aws-sdk-swift-automation committed Dec 20, 2023
1 parent 50628c6 commit b0ff4a7
Show file tree
Hide file tree
Showing 111 changed files with 35,653 additions and 6,934 deletions.
3 changes: 2 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ func addResolvedTargets() {
// MARK: - Generated

addDependencies(
clientRuntimeVersion: "0.36.0",
clientRuntimeVersion: "0.37.0",
crtVersion: "0.17.0"
)

Expand Down Expand Up @@ -484,6 +484,7 @@ let serviceTargets: [String] = [
"AWSMobile",
"AWSMq",
"AWSNeptune",
"AWSNeptuneGraph",
"AWSNeptunedata",
"AWSNetworkFirewall",
"AWSNetworkManager",
Expand Down
2 changes: 1 addition & 1 deletion Package.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.32.0
0.33.0
Original file line number Diff line number Diff line change
Expand Up @@ -503,6 +503,8 @@ This SDK is open-source. Code is available on Github [here](https://github.com/

[AWSNeptune](../../../../../swift/api/awsneptune/latest)

[AWSNeptuneGraph](../../../../../swift/api/awsneptunegraph/latest)

[AWSNeptunedata](../../../../../swift/api/awsneptunedata/latest)

[AWSNetworkFirewall](../../../../../swift/api/awsnetworkfirewall/latest)
Expand Down
3 changes: 3 additions & 0 deletions Sources/Services/AWSAppStream/models/Models.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12311,6 +12311,7 @@ extension AppStreamClientTypes {
case windows
case windowsServer2016
case windowsServer2019
case windowsServer2022
case sdkUnknown(Swift.String)

public static var allCases: [PlatformType] {
Expand All @@ -12319,6 +12320,7 @@ extension AppStreamClientTypes {
.windows,
.windowsServer2016,
.windowsServer2019,
.windowsServer2022,
.sdkUnknown("")
]
}
Expand All @@ -12332,6 +12334,7 @@ extension AppStreamClientTypes {
case .windows: return "WINDOWS"
case .windowsServer2016: return "WINDOWS_SERVER_2016"
case .windowsServer2019: return "WINDOWS_SERVER_2019"
case .windowsServer2022: return "WINDOWS_SERVER_2022"
case let .sdkUnknown(s): return s
}
}
Expand Down
134 changes: 134 additions & 0 deletions Sources/Services/AWSAppSync/models/Models.swift

Large diffs are not rendered by default.

9 changes: 6 additions & 3 deletions Sources/Services/AWSAthena/Paginators.swift
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,8 @@ extension ListDatabasesInput: ClientRuntime.PaginateToken {
return ListDatabasesInput(
catalogName: self.catalogName,
maxResults: self.maxResults,
nextToken: token
nextToken: token,
workGroup: self.workGroup
)}
}

Expand Down Expand Up @@ -138,7 +139,8 @@ extension ListDataCatalogsInput: ClientRuntime.PaginateToken {
public func usingPaginationToken(_ token: Swift.String) -> ListDataCatalogsInput {
return ListDataCatalogsInput(
maxResults: self.maxResults,
nextToken: token
nextToken: token,
workGroup: self.workGroup
)}
}

Expand Down Expand Up @@ -304,7 +306,8 @@ extension ListTableMetadataInput: ClientRuntime.PaginateToken {
databaseName: self.databaseName,
expression: self.expression,
maxResults: self.maxResults,
nextToken: token
nextToken: token,
workGroup: self.workGroup
)}
}

Expand Down
Loading

0 comments on commit b0ff4a7

Please sign in to comment.