Skip to content

Commit 8583e6c

Browse files
chore: Updates version to 1.6.108
1 parent 09c4ad1 commit 8583e6c

15 files changed

Lines changed: 5001 additions & 817 deletions

File tree

Package.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.6.107
1+
1.6.108

Package.version.next

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.6.108
1+
1.6.109

Sources/Core/AWSSDKDynamic/Sources/AWSSDKDynamic/PackageVersion.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77

88
// Code is auto-generated. DO NOT EDIT!
99

10-
public let packageVersion = "1.6.107"
10+
public let packageVersion = "1.6.108"

Sources/Services/AWSCloudFront/Sources/AWSCloudFront/Models.swift

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7461,21 +7461,25 @@ public struct CreateFunctionInput: Swift.Sendable {
74617461
/// A name to identify the function.
74627462
/// This member is required.
74637463
public var name: Swift.String?
7464+
/// A complex type that contains zero or more Tag elements.
7465+
public var tags: CloudFrontClientTypes.Tags?
74647466

74657467
public init(
74667468
functionCode: Foundation.Data? = nil,
74677469
functionConfig: CloudFrontClientTypes.FunctionConfig? = nil,
7468-
name: Swift.String? = nil
7470+
name: Swift.String? = nil,
7471+
tags: CloudFrontClientTypes.Tags? = nil
74697472
) {
74707473
self.functionCode = functionCode
74717474
self.functionConfig = functionConfig
74727475
self.name = name
7476+
self.tags = tags
74737477
}
74747478
}
74757479

74767480
extension CreateFunctionInput: Swift.CustomDebugStringConvertible {
74777481
public var debugDescription: Swift.String {
7478-
"CreateFunctionInput(functionConfig: \(Swift.String(describing: functionConfig)), name: \(Swift.String(describing: name)), functionCode: \"CONTENT_REDACTED\")"}
7482+
"CreateFunctionInput(functionConfig: \(Swift.String(describing: functionConfig)), name: \(Swift.String(describing: name)), tags: \(Swift.String(describing: tags)), functionCode: \"CONTENT_REDACTED\")"}
74797483
}
74807484

74817485
extension CloudFrontClientTypes {
@@ -7923,15 +7927,19 @@ public struct CreateKeyValueStoreInput: Swift.Sendable {
79237927
/// The name of the key value store. The minimum length is 1 character and the maximum length is 64 characters.
79247928
/// This member is required.
79257929
public var name: Swift.String?
7930+
/// A complex type that contains zero or more Tag elements.
7931+
public var tags: CloudFrontClientTypes.Tags?
79267932

79277933
public init(
79287934
comment: Swift.String? = nil,
79297935
importSource: CloudFrontClientTypes.ImportSource? = nil,
7930-
name: Swift.String? = nil
7936+
name: Swift.String? = nil,
7937+
tags: CloudFrontClientTypes.Tags? = nil
79317938
) {
79327939
self.comment = comment
79337940
self.importSource = importSource
79347941
self.name = name
7942+
self.tags = tags
79357943
}
79367944
}
79377945

@@ -19486,6 +19494,7 @@ extension CreateFunctionInput {
1948619494
try writer["FunctionCode"].write(value.functionCode)
1948719495
try writer["FunctionConfig"].write(value.functionConfig, with: CloudFrontClientTypes.FunctionConfig.write(value:to:))
1948819496
try writer["Name"].write(value.name)
19497+
try writer["Tags"].write(value.tags, with: CloudFrontClientTypes.Tags.write(value:to:))
1948919498
}
1949019499
}
1949119500

@@ -19520,6 +19529,7 @@ extension CreateKeyValueStoreInput {
1952019529
try writer["Comment"].write(value.comment)
1952119530
try writer["ImportSource"].write(value.importSource, with: CloudFrontClientTypes.ImportSource.write(value:to:))
1952219531
try writer["Name"].write(value.name)
19532+
try writer["Tags"].write(value.tags, with: CloudFrontClientTypes.Tags.write(value:to:))
1952319533
}
1952419534
}
1952519535

Sources/Services/AWSMarketplaceAgreement/Sources/AWSMarketplaceAgreement/MarketplaceAgreementClient.swift

Lines changed: 817 additions & 42 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)