Skip to content

Commit

Permalink
Update models from aws-sdk-go-v2 b3d9e145604fdc1b77a075ed3cc321d0c28c…
Browse files Browse the repository at this point in the history
…f9c3
  • Loading branch information
adam-fowler authored Dec 4, 2023
1 parent 92623a6 commit e14b657
Show file tree
Hide file tree
Showing 888 changed files with 362,372 additions and 64,049 deletions.
42 changes: 38 additions & 4 deletions Package.swift

Large diffs are not rendered by default.

30 changes: 15 additions & 15 deletions Sources/Soto/Services/ACM/ACM_shapes.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import SotoCore
extension ACM {
// MARK: Enums

public enum CertificateStatus: String, CustomStringConvertible, Codable, Sendable {
public enum CertificateStatus: String, CustomStringConvertible, Codable, Sendable, CodingKeyRepresentable {
case expired = "EXPIRED"
case failed = "FAILED"
case inactive = "INACTIVE"
Expand All @@ -37,27 +37,27 @@ extension ACM {
public var description: String { return self.rawValue }
}

public enum CertificateTransparencyLoggingPreference: String, CustomStringConvertible, Codable, Sendable {
public enum CertificateTransparencyLoggingPreference: String, CustomStringConvertible, Codable, Sendable, CodingKeyRepresentable {
case disabled = "DISABLED"
case enabled = "ENABLED"
public var description: String { return self.rawValue }
}

public enum CertificateType: String, CustomStringConvertible, Codable, Sendable {
public enum CertificateType: String, CustomStringConvertible, Codable, Sendable, CodingKeyRepresentable {
case `private` = "PRIVATE"
case amazonIssued = "AMAZON_ISSUED"
case imported = "IMPORTED"
public var description: String { return self.rawValue }
}

public enum DomainStatus: String, CustomStringConvertible, Codable, Sendable {
public enum DomainStatus: String, CustomStringConvertible, Codable, Sendable, CodingKeyRepresentable {
case failed = "FAILED"
case pendingValidation = "PENDING_VALIDATION"
case success = "SUCCESS"
public var description: String { return self.rawValue }
}

public enum ExtendedKeyUsageName: String, CustomStringConvertible, Codable, Sendable {
public enum ExtendedKeyUsageName: String, CustomStringConvertible, Codable, Sendable, CodingKeyRepresentable {
case any = "ANY"
case codeSigning = "CODE_SIGNING"
case custom = "CUSTOM"
Expand All @@ -73,7 +73,7 @@ extension ACM {
public var description: String { return self.rawValue }
}

public enum FailureReason: String, CustomStringConvertible, Codable, Sendable {
public enum FailureReason: String, CustomStringConvertible, Codable, Sendable, CodingKeyRepresentable {
case additionalVerificationRequired = "ADDITIONAL_VERIFICATION_REQUIRED"
case caaError = "CAA_ERROR"
case domainNotAllowed = "DOMAIN_NOT_ALLOWED"
Expand All @@ -94,7 +94,7 @@ extension ACM {
public var description: String { return self.rawValue }
}

public enum KeyAlgorithm: String, CustomStringConvertible, Codable, Sendable {
public enum KeyAlgorithm: String, CustomStringConvertible, Codable, Sendable, CodingKeyRepresentable {
case ecPrime256V1 = "EC_prime256v1"
case ecSecp384R1 = "EC_secp384r1"
case ecSecp521R1 = "EC_secp521r1"
Expand All @@ -105,7 +105,7 @@ extension ACM {
public var description: String { return self.rawValue }
}

public enum KeyUsageName: String, CustomStringConvertible, Codable, Sendable {
public enum KeyUsageName: String, CustomStringConvertible, Codable, Sendable, CodingKeyRepresentable {
case any = "ANY"
case certificateSigning = "CERTIFICATE_SIGNING"
case crlSigning = "CRL_SIGNING"
Expand All @@ -120,26 +120,26 @@ extension ACM {
public var description: String { return self.rawValue }
}

public enum RecordType: String, CustomStringConvertible, Codable, Sendable {
public enum RecordType: String, CustomStringConvertible, Codable, Sendable, CodingKeyRepresentable {
case cname = "CNAME"
public var description: String { return self.rawValue }
}

public enum RenewalEligibility: String, CustomStringConvertible, Codable, Sendable {
public enum RenewalEligibility: String, CustomStringConvertible, Codable, Sendable, CodingKeyRepresentable {
case eligible = "ELIGIBLE"
case ineligible = "INELIGIBLE"
public var description: String { return self.rawValue }
}

public enum RenewalStatus: String, CustomStringConvertible, Codable, Sendable {
public enum RenewalStatus: String, CustomStringConvertible, Codable, Sendable, CodingKeyRepresentable {
case failed = "FAILED"
case pendingAutoRenewal = "PENDING_AUTO_RENEWAL"
case pendingValidation = "PENDING_VALIDATION"
case success = "SUCCESS"
public var description: String { return self.rawValue }
}

public enum RevocationReason: String, CustomStringConvertible, Codable, Sendable {
public enum RevocationReason: String, CustomStringConvertible, Codable, Sendable, CodingKeyRepresentable {
case aACompromise = "A_A_COMPROMISE"
case affiliationChanged = "AFFILIATION_CHANGED"
case caCompromise = "CA_COMPROMISE"
Expand All @@ -153,18 +153,18 @@ extension ACM {
public var description: String { return self.rawValue }
}

public enum SortBy: String, CustomStringConvertible, Codable, Sendable {
public enum SortBy: String, CustomStringConvertible, Codable, Sendable, CodingKeyRepresentable {
case createdAt = "CREATED_AT"
public var description: String { return self.rawValue }
}

public enum SortOrder: String, CustomStringConvertible, Codable, Sendable {
public enum SortOrder: String, CustomStringConvertible, Codable, Sendable, CodingKeyRepresentable {
case ascending = "ASCENDING"
case descending = "DESCENDING"
public var description: String { return self.rawValue }
}

public enum ValidationMethod: String, CustomStringConvertible, Codable, Sendable {
public enum ValidationMethod: String, CustomStringConvertible, Codable, Sendable, CodingKeyRepresentable {
case dns = "DNS"
case email = "EMAIL"
public var description: String { return self.rawValue }
Expand Down
34 changes: 17 additions & 17 deletions Sources/Soto/Services/ACMPCA/ACMPCA_shapes.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,34 +26,34 @@ import SotoCore
extension ACMPCA {
// MARK: Enums

public enum AccessMethodType: String, CustomStringConvertible, Codable, Sendable {
public enum AccessMethodType: String, CustomStringConvertible, Codable, Sendable, CodingKeyRepresentable {
case caRepository = "CA_REPOSITORY"
case resourcePkiManifest = "RESOURCE_PKI_MANIFEST"
case resourcePkiNotify = "RESOURCE_PKI_NOTIFY"
public var description: String { return self.rawValue }
}

public enum ActionType: String, CustomStringConvertible, Codable, Sendable {
public enum ActionType: String, CustomStringConvertible, Codable, Sendable, CodingKeyRepresentable {
case getCertificate = "GetCertificate"
case issueCertificate = "IssueCertificate"
case listPermissions = "ListPermissions"
public var description: String { return self.rawValue }
}

public enum AuditReportResponseFormat: String, CustomStringConvertible, Codable, Sendable {
public enum AuditReportResponseFormat: String, CustomStringConvertible, Codable, Sendable, CodingKeyRepresentable {
case csv = "CSV"
case json = "JSON"
public var description: String { return self.rawValue }
}

public enum AuditReportStatus: String, CustomStringConvertible, Codable, Sendable {
public enum AuditReportStatus: String, CustomStringConvertible, Codable, Sendable, CodingKeyRepresentable {
case creating = "CREATING"
case failed = "FAILED"
case success = "SUCCESS"
public var description: String { return self.rawValue }
}

public enum CertificateAuthorityStatus: String, CustomStringConvertible, Codable, Sendable {
public enum CertificateAuthorityStatus: String, CustomStringConvertible, Codable, Sendable, CodingKeyRepresentable {
case active = "ACTIVE"
case creating = "CREATING"
case deleted = "DELETED"
Expand All @@ -64,19 +64,19 @@ extension ACMPCA {
public var description: String { return self.rawValue }
}

public enum CertificateAuthorityType: String, CustomStringConvertible, Codable, Sendable {
public enum CertificateAuthorityType: String, CustomStringConvertible, Codable, Sendable, CodingKeyRepresentable {
case root = "ROOT"
case subordinate = "SUBORDINATE"
public var description: String { return self.rawValue }
}

public enum CertificateAuthorityUsageMode: String, CustomStringConvertible, Codable, Sendable {
public enum CertificateAuthorityUsageMode: String, CustomStringConvertible, Codable, Sendable, CodingKeyRepresentable {
case generalPurpose = "GENERAL_PURPOSE"
case shortLivedCertificate = "SHORT_LIVED_CERTIFICATE"
public var description: String { return self.rawValue }
}

public enum ExtendedKeyUsageType: String, CustomStringConvertible, Codable, Sendable {
public enum ExtendedKeyUsageType: String, CustomStringConvertible, Codable, Sendable, CodingKeyRepresentable {
case certificateTransparency = "CERTIFICATE_TRANSPARENCY"
case clientAuth = "CLIENT_AUTH"
case codeSigning = "CODE_SIGNING"
Expand All @@ -89,39 +89,39 @@ extension ACMPCA {
public var description: String { return self.rawValue }
}

public enum FailureReason: String, CustomStringConvertible, Codable, Sendable {
public enum FailureReason: String, CustomStringConvertible, Codable, Sendable, CodingKeyRepresentable {
case other = "OTHER"
case requestTimedOut = "REQUEST_TIMED_OUT"
case unsupportedAlgorithm = "UNSUPPORTED_ALGORITHM"
public var description: String { return self.rawValue }
}

public enum KeyAlgorithm: String, CustomStringConvertible, Codable, Sendable {
public enum KeyAlgorithm: String, CustomStringConvertible, Codable, Sendable, CodingKeyRepresentable {
case ecPrime256V1 = "EC_prime256v1"
case ecSecp384R1 = "EC_secp384r1"
case rsa2048 = "RSA_2048"
case rsa4096 = "RSA_4096"
public var description: String { return self.rawValue }
}

public enum KeyStorageSecurityStandard: String, CustomStringConvertible, Codable, Sendable {
public enum KeyStorageSecurityStandard: String, CustomStringConvertible, Codable, Sendable, CodingKeyRepresentable {
case fips1402Level2OrHigher = "FIPS_140_2_LEVEL_2_OR_HIGHER"
case fips1402Level3OrHigher = "FIPS_140_2_LEVEL_3_OR_HIGHER"
public var description: String { return self.rawValue }
}

public enum PolicyQualifierId: String, CustomStringConvertible, Codable, Sendable {
public enum PolicyQualifierId: String, CustomStringConvertible, Codable, Sendable, CodingKeyRepresentable {
case cps = "CPS"
public var description: String { return self.rawValue }
}

public enum ResourceOwner: String, CustomStringConvertible, Codable, Sendable {
public enum ResourceOwner: String, CustomStringConvertible, Codable, Sendable, CodingKeyRepresentable {
case _self = "SELF"
case otherAccounts = "OTHER_ACCOUNTS"
public var description: String { return self.rawValue }
}

public enum RevocationReason: String, CustomStringConvertible, Codable, Sendable {
public enum RevocationReason: String, CustomStringConvertible, Codable, Sendable, CodingKeyRepresentable {
case aACompromise = "A_A_COMPROMISE"
case affiliationChanged = "AFFILIATION_CHANGED"
case certificateAuthorityCompromise = "CERTIFICATE_AUTHORITY_COMPROMISE"
Expand All @@ -133,13 +133,13 @@ extension ACMPCA {
public var description: String { return self.rawValue }
}

public enum S3ObjectAcl: String, CustomStringConvertible, Codable, Sendable {
public enum S3ObjectAcl: String, CustomStringConvertible, Codable, Sendable, CodingKeyRepresentable {
case bucketOwnerFullControl = "BUCKET_OWNER_FULL_CONTROL"
case publicRead = "PUBLIC_READ"
public var description: String { return self.rawValue }
}

public enum SigningAlgorithm: String, CustomStringConvertible, Codable, Sendable {
public enum SigningAlgorithm: String, CustomStringConvertible, Codable, Sendable, CodingKeyRepresentable {
case sha256withecdsa = "SHA256WITHECDSA"
case sha256withrsa = "SHA256WITHRSA"
case sha384withecdsa = "SHA384WITHECDSA"
Expand All @@ -149,7 +149,7 @@ extension ACMPCA {
public var description: String { return self.rawValue }
}

public enum ValidityPeriodType: String, CustomStringConvertible, Codable, Sendable {
public enum ValidityPeriodType: String, CustomStringConvertible, Codable, Sendable, CodingKeyRepresentable {
case absolute = "ABSOLUTE"
case days = "DAYS"
case endDate = "END_DATE"
Expand Down
Loading

0 comments on commit e14b657

Please sign in to comment.