Skip to content

Commit

Permalink
Update models from aws-sdk-go-v2 release-2023-10-27
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-fowler authored Oct 30, 2023
1 parent 92623a6 commit 157a68c
Show file tree
Hide file tree
Showing 369 changed files with 79,680 additions and 26,321 deletions.
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ let package = Package(
.library(name: "SotoDataExchange", targets: ["SotoDataExchange"]),
.library(name: "SotoDataPipeline", targets: ["SotoDataPipeline"]),
.library(name: "SotoDataSync", targets: ["SotoDataSync"]),
.library(name: "SotoDataZone", targets: ["SotoDataZone"]),
.library(name: "SotoDatabaseMigrationService", targets: ["SotoDatabaseMigrationService"]),
.library(name: "SotoDetective", targets: ["SotoDetective"]),
.library(name: "SotoDevOpsGuru", targets: ["SotoDevOpsGuru"]),
Expand Down Expand Up @@ -155,7 +156,6 @@ let package = Package(
.library(name: "SotoForecastquery", targets: ["SotoForecastquery"]),
.library(name: "SotoFraudDetector", targets: ["SotoFraudDetector"]),
.library(name: "SotoGameLift", targets: ["SotoGameLift"]),
.library(name: "SotoGameSparks", targets: ["SotoGameSparks"]),
.library(name: "SotoGlacier", targets: ["SotoGlacier"]),
.library(name: "SotoGlobalAccelerator", targets: ["SotoGlobalAccelerator"]),
.library(name: "SotoGlue", targets: ["SotoGlue"]),
Expand Down Expand Up @@ -475,6 +475,7 @@ let package = Package(
.target(name: "SotoDataExchange", dependencies: [.product(name: "SotoCore", package: "soto-core")], path: "./Sources/Soto/Services/DataExchange"),
.target(name: "SotoDataPipeline", dependencies: [.product(name: "SotoCore", package: "soto-core")], path: "./Sources/Soto/Services/DataPipeline"),
.target(name: "SotoDataSync", dependencies: [.product(name: "SotoCore", package: "soto-core")], path: "./Sources/Soto/Services/DataSync"),
.target(name: "SotoDataZone", dependencies: [.product(name: "SotoCore", package: "soto-core")], path: "./Sources/Soto/Services/DataZone"),
.target(name: "SotoDatabaseMigrationService", dependencies: [.product(name: "SotoCore", package: "soto-core")], path: "./Sources/Soto/Services/DatabaseMigrationService"),
.target(name: "SotoDetective", dependencies: [.product(name: "SotoCore", package: "soto-core")], path: "./Sources/Soto/Services/Detective"),
.target(name: "SotoDevOpsGuru", dependencies: [.product(name: "SotoCore", package: "soto-core")], path: "./Sources/Soto/Services/DevOpsGuru"),
Expand Down Expand Up @@ -517,7 +518,6 @@ let package = Package(
.target(name: "SotoForecastquery", dependencies: [.product(name: "SotoCore", package: "soto-core")], path: "./Sources/Soto/Services/Forecastquery"),
.target(name: "SotoFraudDetector", dependencies: [.product(name: "SotoCore", package: "soto-core")], path: "./Sources/Soto/Services/FraudDetector"),
.target(name: "SotoGameLift", dependencies: [.product(name: "SotoCore", package: "soto-core")], path: "./Sources/Soto/Services/GameLift"),
.target(name: "SotoGameSparks", dependencies: [.product(name: "SotoCore", package: "soto-core")], path: "./Sources/Soto/Services/GameSparks"),
.target(name: "SotoGlacier", dependencies: [.product(name: "SotoCore", package: "soto-core")], path: "./Sources/Soto/Services/Glacier"),
.target(name: "SotoGlobalAccelerator", dependencies: [.product(name: "SotoCore", package: "soto-core")], path: "./Sources/Soto/Services/GlobalAccelerator"),
.target(name: "SotoGlue", dependencies: [.product(name: "SotoCore", package: "soto-core")], path: "./Sources/Soto/Services/Glue"),
Expand Down
186 changes: 93 additions & 93 deletions Sources/Soto/Services/AmplifyBackend/AmplifyBackend_shapes.swift

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,11 @@ extension ApiGatewayManagementApi {

public struct Identity: AWSDecodableShape {
/// The source IP address of the TCP connection making the request to API Gateway.
public let sourceIp: String
public let sourceIp: String?
/// The User Agent of the API caller.
public let userAgent: String
public let userAgent: String?

public init(sourceIp: String, userAgent: String) {
public init(sourceIp: String? = nil, userAgent: String? = nil) {
self.sourceIp = sourceIp
self.userAgent = userAgent
}
Expand All @@ -106,9 +106,9 @@ extension ApiGatewayManagementApi {
/// The identifier of the connection that a specific client is using.
public let connectionId: String
/// The data to be sent to the client specified by its connection id.
public let data: AWSPayload
public let data: AWSPayload?

public init(connectionId: String, data: AWSPayload) {
public init(connectionId: String, data: AWSPayload? = nil) {
self.connectionId = connectionId
self.data = data
}
Expand Down
128 changes: 64 additions & 64 deletions Sources/Soto/Services/ApiGatewayV2/ApiGatewayV2_shapes.swift

Large diffs are not rendered by default.

Loading

0 comments on commit 157a68c

Please sign in to comment.