Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update models from aws-sdk-go-v2 feature/rds/auth/v1.5.9 #751

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,6 @@ let package = Package(
.library(name: "SotoInternetMonitor", targets: ["SotoInternetMonitor"]),
.library(name: "SotoInvoicing", targets: ["SotoInvoicing"]),
.library(name: "SotoIoT", targets: ["SotoIoT"]),
.library(name: "SotoIoT1ClickDevicesService", targets: ["SotoIoT1ClickDevicesService"]),
.library(name: "SotoIoT1ClickProjects", targets: ["SotoIoT1ClickProjects"]),
.library(name: "SotoIoTAnalytics", targets: ["SotoIoTAnalytics"]),
.library(name: "SotoIoTDataPlane", targets: ["SotoIoTDataPlane"]),
.library(name: "SotoIoTDeviceAdvisor", targets: ["SotoIoTDeviceAdvisor"]),
Expand Down Expand Up @@ -1529,18 +1527,6 @@ let package = Package(
path: "./Sources/Soto/Services/IoT",
swiftSettings: swiftSettings
),
.target(
name: "SotoIoT1ClickDevicesService",
dependencies: [.product(name: "SotoCore", package: "soto-core")],
path: "./Sources/Soto/Services/IoT1ClickDevicesService",
swiftSettings: swiftSettings
),
.target(
name: "SotoIoT1ClickProjects",
dependencies: [.product(name: "SotoCore", package: "soto-core")],
path: "./Sources/Soto/Services/IoT1ClickProjects",
swiftSettings: swiftSettings
),
.target(
name: "SotoIoTAnalytics",
dependencies: [.product(name: "SotoCore", package: "soto-core")],
Expand Down
4 changes: 2 additions & 2 deletions Sources/Soto/Services/APIGateway/APIGateway_api.swift
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ public struct APIGateway: AWSService {
/// Parameters:
/// - basePath: The base path name that callers of the API must provide as part of the URL after the domain name. This value must be unique for all of the mappings across a single API. Specify '(none)' if you do not want callers to specify a base path name after the domain name.
/// - domainName: The domain name of the BasePathMapping resource to create.
/// - domainNameId: The identifier for the domain name resource. Supported only for private custom domain names.
/// - domainNameId: The identifier for the domain name resource. Required for private custom domain names.
/// - restApiId: The string identifier of the associated RestApi.
/// - stage: The name of the API's stage that you want to use for this mapping. Specify '(none)' if you want callers to explicitly specify the stage name after any base path name.
/// - logger: Logger use during operation
Expand Down Expand Up @@ -2193,7 +2193,7 @@ public struct APIGateway: AWSService {
///
/// Parameters:
/// - domainName: The name of the DomainName resource.
/// - domainNameId: The identifier for the domain name resource. Supported only for private custom domain names.
/// - domainNameId: The identifier for the domain name resource. Required for private custom domain names.
/// - logger: Logger use during operation
@inlinable
public func getDomainName(
Expand Down
4 changes: 2 additions & 2 deletions Sources/Soto/Services/APIGateway/APIGateway_shapes.swift
Original file line number Diff line number Diff line change
Expand Up @@ -659,7 +659,7 @@ extension APIGateway {
public let basePath: String?
/// The domain name of the BasePathMapping resource to create.
public let domainName: String
/// The identifier for the domain name resource. Supported only for private custom domain names.
/// The identifier for the domain name resource. Required for private custom domain names.
public let domainNameId: String?
/// The string identifier of the associated RestApi.
public let restApiId: String
Expand Down Expand Up @@ -2628,7 +2628,7 @@ extension APIGateway {
public struct GetDomainNameRequest: AWSEncodableShape {
/// The name of the DomainName resource.
public let domainName: String
/// The identifier for the domain name resource. Supported only for private custom domain names.
/// The identifier for the domain name resource. Required for private custom domain names.
public let domainNameId: String?

@inlinable
Expand Down
6 changes: 6 additions & 0 deletions Sources/Soto/Services/Amp/Amp_api.swift
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,7 @@ public struct Amp: AWSService {
/// - alias: (optional) An alias to associate with the scraper. This is for your use, and does not need to be unique.
/// - clientToken: (Optional) A unique, case-sensitive identifier that you can provide to ensure the idempotency of the request.
/// - destination: The Amazon Managed Service for Prometheus workspace to send metrics to.
/// - roleConfiguration: The scraper role configuration for the workspace.
/// - scrapeConfiguration: The configuration file to use in the new scraper. For more information, see Scraper configuration in the Amazon Managed Service for Prometheus User Guide.
/// - source: The Amazon EKS cluster from which the scraper will collect metrics.
/// - tags: (Optional) The list of tag keys and values to associate with the scraper.
Expand All @@ -238,6 +239,7 @@ public struct Amp: AWSService {
alias: String? = nil,
clientToken: String? = CreateScraperRequest.idempotencyToken(),
destination: Destination,
roleConfiguration: RoleConfiguration? = nil,
scrapeConfiguration: ScrapeConfiguration,
source: Source,
tags: [String: String]? = nil,
Expand All @@ -247,6 +249,7 @@ public struct Amp: AWSService {
alias: alias,
clientToken: clientToken,
destination: destination,
roleConfiguration: roleConfiguration,
scrapeConfiguration: scrapeConfiguration,
source: source,
tags: tags
Expand Down Expand Up @@ -957,6 +960,7 @@ public struct Amp: AWSService {
/// - alias: The new alias of the scraper.
/// - clientToken: A unique identifier that you can provide to ensure the idempotency of the request. Case-sensitive.
/// - destination: The new Amazon Managed Service for Prometheus workspace to send metrics to.
/// - roleConfiguration: The scraper role configuration for the workspace.
/// - scrapeConfiguration: Contains the base-64 encoded YAML configuration for the scraper. For more information about configuring a scraper, see Using an Amazon Web Services managed collector in the Amazon Managed Service for Prometheus User Guide.
/// - scraperId: The ID of the scraper to update.
/// - logger: Logger use during operation
Expand All @@ -965,6 +969,7 @@ public struct Amp: AWSService {
alias: String? = nil,
clientToken: String? = UpdateScraperRequest.idempotencyToken(),
destination: Destination? = nil,
roleConfiguration: RoleConfiguration? = nil,
scrapeConfiguration: ScrapeConfiguration? = nil,
scraperId: String,
logger: Logger = AWSClient.loggingDisabled
Expand All @@ -973,6 +978,7 @@ public struct Amp: AWSService {
alias: alias,
clientToken: clientToken,
destination: destination,
roleConfiguration: roleConfiguration,
scrapeConfiguration: scrapeConfiguration,
scraperId: scraperId
)
Expand Down
Loading