Skip to content

Commit 821b96a

Browse files
chore: Updates version to 0.37.0
1 parent 161781d commit 821b96a

File tree

83 files changed

+19621
-1041
lines changed

Some content is hidden

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

83 files changed

+19621
-1041
lines changed

Package.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ func addResolvedTargets() {
236236
// MARK: - Generated
237237

238238
addDependencies(
239-
clientRuntimeVersion: "0.41.0",
239+
clientRuntimeVersion: "0.42.0",
240240
crtVersion: "0.26.0"
241241
)
242242

@@ -270,6 +270,7 @@ let serviceTargets: [String] = [
270270
"AWSApplicationCostProfiler",
271271
"AWSApplicationDiscoveryService",
272272
"AWSApplicationInsights",
273+
"AWSArtifact",
273274
"AWSAthena",
274275
"AWSAuditManager",
275276
"AWSAutoScaling",
@@ -287,6 +288,7 @@ let serviceTargets: [String] = [
287288
"AWSBillingconductor",
288289
"AWSBraket",
289290
"AWSBudgets",
291+
"AWSChatbot",
290292
"AWSChime",
291293
"AWSChimeSDKIdentity",
292294
"AWSChimeSDKMediaPipelines",

Package.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.36.0
1+
0.37.0

Sources/Core/AWSSDKForSwift/Documentation.docc/AWSSDKForSwift.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ This SDK is open-source. Code is available on Github [here](https://github.com/
6363

6464
[AWSApplicationInsights](../../../../../swift/api/awsapplicationinsights/latest)
6565

66+
[AWSArtifact](../../../../../swift/api/awsartifact/latest)
67+
6668
[AWSAthena](../../../../../swift/api/awsathena/latest)
6769

6870
[AWSAuditManager](../../../../../swift/api/awsauditmanager/latest)
@@ -97,6 +99,8 @@ This SDK is open-source. Code is available on Github [here](https://github.com/
9799

98100
[AWSBudgets](../../../../../swift/api/awsbudgets/latest)
99101

102+
[AWSChatbot](../../../../../swift/api/awschatbot/latest)
103+
100104
[AWSChime](../../../../../swift/api/awschime/latest)
101105

102106
[AWSChimeSDKIdentity](../../../../../swift/api/awschimesdkidentity/latest)

Sources/Services/AWSAPIGateway/APIGatewayClient.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6005,7 +6005,7 @@ extension APIGatewayClient {
60056005

60066006
/// Performs the `UpdateModel` operation on the `BackplaneControlService` service.
60076007
///
6008-
/// Changes information about a model.
6008+
/// Changes information about a model. The maximum size of the model is 400 KB.
60096009
///
60106010
/// - Parameter UpdateModelInput : Request to update an existing model in an existing RestApi resource.
60116011
///

Sources/Services/AWSAPIGateway/models/Models.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2842,7 +2842,7 @@ public struct CreateModelInput: Swift.Equatable {
28422842
/// The RestApi identifier under which the Model will be created.
28432843
/// This member is required.
28442844
public var restApiId: Swift.String?
2845-
/// The schema for the model. For application/json models, this should be JSON schema draft 4 model.
2845+
/// The schema for the model. For application/json models, this should be JSON schema draft 4 model. The maximum size of the model is 400 KB.
28462846
public var schema: Swift.String?
28472847

28482848
public init(
@@ -3972,7 +3972,7 @@ extension CreateStageOutput: ClientRuntime.HttpResponseBinding {
39723972
public struct CreateStageOutput: Swift.Equatable {
39733973
/// Settings for logging access in this stage.
39743974
public var accessLogSettings: APIGatewayClientTypes.AccessLogSettings?
3975-
/// Specifies whether a cache cluster is enabled for the stage.
3975+
/// Specifies whether a cache cluster is enabled for the stage. To activate a method-level cache, set CachingEnabled to true for a method.
39763976
public var cacheClusterEnabled: Swift.Bool
39773977
/// The stage's cache capacity in GB. For more information about choosing a cache size, see [Enabling API caching to enhance responsiveness](https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-caching.html).
39783978
public var cacheClusterSize: APIGatewayClientTypes.CacheClusterSize?
@@ -13038,7 +13038,7 @@ extension GetStageOutput: ClientRuntime.HttpResponseBinding {
1303813038
public struct GetStageOutput: Swift.Equatable {
1303913039
/// Settings for logging access in this stage.
1304013040
public var accessLogSettings: APIGatewayClientTypes.AccessLogSettings?
13041-
/// Specifies whether a cache cluster is enabled for the stage.
13041+
/// Specifies whether a cache cluster is enabled for the stage. To activate a method-level cache, set CachingEnabled to true for a method.
1304213042
public var cacheClusterEnabled: Swift.Bool
1304313043
/// The stage's cache capacity in GB. For more information about choosing a cache size, see [Enabling API caching to enhance responsiveness](https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-caching.html).
1304413044
public var cacheClusterSize: APIGatewayClientTypes.CacheClusterSize?
@@ -19153,7 +19153,7 @@ extension APIGatewayClientTypes {
1915319153
public struct Stage: Swift.Equatable {
1915419154
/// Settings for logging access in this stage.
1915519155
public var accessLogSettings: APIGatewayClientTypes.AccessLogSettings?
19156-
/// Specifies whether a cache cluster is enabled for the stage.
19156+
/// Specifies whether a cache cluster is enabled for the stage. To activate a method-level cache, set CachingEnabled to true for a method.
1915719157
public var cacheClusterEnabled: Swift.Bool
1915819158
/// The stage's cache capacity in GB. For more information about choosing a cache size, see [Enabling API caching to enhance responsiveness](https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-caching.html).
1915919159
public var cacheClusterSize: APIGatewayClientTypes.CacheClusterSize?
@@ -24172,7 +24172,7 @@ extension UpdateStageOutput: ClientRuntime.HttpResponseBinding {
2417224172
public struct UpdateStageOutput: Swift.Equatable {
2417324173
/// Settings for logging access in this stage.
2417424174
public var accessLogSettings: APIGatewayClientTypes.AccessLogSettings?
24175-
/// Specifies whether a cache cluster is enabled for the stage.
24175+
/// Specifies whether a cache cluster is enabled for the stage. To activate a method-level cache, set CachingEnabled to true for a method.
2417624176
public var cacheClusterEnabled: Swift.Bool
2417724177
/// The stage's cache capacity in GB. For more information about choosing a cache size, see [Enabling API caching to enhance responsiveness](https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-caching.html).
2417824178
public var cacheClusterSize: APIGatewayClientTypes.CacheClusterSize?

0 commit comments

Comments
 (0)