@aws-sdk/client-kms
Advanced tools
Comparing version 3.687.0 to 3.691.0
@@ -13,7 +13,7 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; | ||
export interface AliasListEntry { | ||
AliasName?: string; | ||
AliasArn?: string; | ||
TargetKeyId?: string; | ||
CreationDate?: Date; | ||
LastUpdatedDate?: Date; | ||
AliasName?: string | undefined; | ||
AliasArn?: string | undefined; | ||
TargetKeyId?: string | undefined; | ||
CreationDate?: Date | undefined; | ||
LastUpdatedDate?: Date | undefined; | ||
} | ||
@@ -31,3 +31,3 @@ export declare class AlreadyExistsException extends __BaseException { | ||
export interface CancelKeyDeletionResponse { | ||
KeyId?: string; | ||
KeyId?: string | undefined; | ||
} | ||
@@ -210,14 +210,16 @@ export declare class DependencyTimeoutException extends __BaseException { | ||
CustomKeyStoreName: string | undefined; | ||
CloudHsmClusterId?: string; | ||
TrustAnchorCertificate?: string; | ||
KeyStorePassword?: string; | ||
CustomKeyStoreType?: CustomKeyStoreType; | ||
XksProxyUriEndpoint?: string; | ||
XksProxyUriPath?: string; | ||
XksProxyVpcEndpointServiceName?: string; | ||
XksProxyAuthenticationCredential?: XksProxyAuthenticationCredentialType; | ||
XksProxyConnectivity?: XksProxyConnectivityType; | ||
CloudHsmClusterId?: string | undefined; | ||
TrustAnchorCertificate?: string | undefined; | ||
KeyStorePassword?: string | undefined; | ||
CustomKeyStoreType?: CustomKeyStoreType | undefined; | ||
XksProxyUriEndpoint?: string | undefined; | ||
XksProxyUriPath?: string | undefined; | ||
XksProxyVpcEndpointServiceName?: string | undefined; | ||
XksProxyAuthenticationCredential?: | ||
| XksProxyAuthenticationCredentialType | ||
| undefined; | ||
XksProxyConnectivity?: XksProxyConnectivityType | undefined; | ||
} | ||
export interface CreateCustomKeyStoreResponse { | ||
CustomKeyStoreId?: string; | ||
CustomKeyStoreId?: string | undefined; | ||
} | ||
@@ -329,4 +331,4 @@ export declare class CustomKeyStoreNameInUseException extends __BaseException { | ||
export interface GrantConstraints { | ||
EncryptionContextSubset?: Record<string, string>; | ||
EncryptionContextEquals?: Record<string, string>; | ||
EncryptionContextSubset?: Record<string, string> | undefined; | ||
EncryptionContextEquals?: Record<string, string> | undefined; | ||
} | ||
@@ -357,12 +359,12 @@ export declare const GrantOperation: { | ||
GranteePrincipal: string | undefined; | ||
RetiringPrincipal?: string; | ||
RetiringPrincipal?: string | undefined; | ||
Operations: GrantOperation[] | undefined; | ||
Constraints?: GrantConstraints; | ||
GrantTokens?: string[]; | ||
Name?: string; | ||
DryRun?: boolean; | ||
Constraints?: GrantConstraints | undefined; | ||
GrantTokens?: string[] | undefined; | ||
Name?: string | undefined; | ||
DryRun?: boolean | undefined; | ||
} | ||
export interface CreateGrantResponse { | ||
GrantToken?: string; | ||
GrantId?: string; | ||
GrantToken?: string | undefined; | ||
GrantId?: string | undefined; | ||
} | ||
@@ -440,13 +442,13 @@ export declare class DisabledException extends __BaseException { | ||
export interface CreateKeyRequest { | ||
Policy?: string; | ||
Description?: string; | ||
KeyUsage?: KeyUsageType; | ||
CustomerMasterKeySpec?: CustomerMasterKeySpec; | ||
KeySpec?: KeySpec; | ||
Origin?: OriginType; | ||
CustomKeyStoreId?: string; | ||
BypassPolicyLockoutSafetyCheck?: boolean; | ||
Tags?: Tag[]; | ||
MultiRegion?: boolean; | ||
XksKeyId?: string; | ||
Policy?: string | undefined; | ||
Description?: string | undefined; | ||
KeyUsage?: KeyUsageType | undefined; | ||
CustomerMasterKeySpec?: CustomerMasterKeySpec | undefined; | ||
KeySpec?: KeySpec | undefined; | ||
Origin?: OriginType | undefined; | ||
CustomKeyStoreId?: string | undefined; | ||
BypassPolicyLockoutSafetyCheck?: boolean | undefined; | ||
Tags?: Tag[] | undefined; | ||
MultiRegion?: boolean | undefined; | ||
XksKeyId?: string | undefined; | ||
} | ||
@@ -504,9 +506,9 @@ export declare const EncryptionAlgorithmSpec: { | ||
export interface MultiRegionKey { | ||
Arn?: string; | ||
Region?: string; | ||
Arn?: string | undefined; | ||
Region?: string | undefined; | ||
} | ||
export interface MultiRegionConfiguration { | ||
MultiRegionKeyType?: MultiRegionKeyType; | ||
PrimaryKey?: MultiRegionKey; | ||
ReplicaKeys?: MultiRegionKey[]; | ||
MultiRegionKeyType?: MultiRegionKeyType | undefined; | ||
PrimaryKey?: MultiRegionKey | undefined; | ||
ReplicaKeys?: MultiRegionKey[] | undefined; | ||
} | ||
@@ -528,33 +530,33 @@ export declare const SigningAlgorithmSpec: { | ||
export interface XksKeyConfigurationType { | ||
Id?: string; | ||
Id?: string | undefined; | ||
} | ||
export interface KeyMetadata { | ||
AWSAccountId?: string; | ||
AWSAccountId?: string | undefined; | ||
KeyId: string | undefined; | ||
Arn?: string; | ||
CreationDate?: Date; | ||
Enabled?: boolean; | ||
Description?: string; | ||
KeyUsage?: KeyUsageType; | ||
KeyState?: KeyState; | ||
DeletionDate?: Date; | ||
ValidTo?: Date; | ||
Origin?: OriginType; | ||
CustomKeyStoreId?: string; | ||
CloudHsmClusterId?: string; | ||
ExpirationModel?: ExpirationModelType; | ||
KeyManager?: KeyManagerType; | ||
CustomerMasterKeySpec?: CustomerMasterKeySpec; | ||
KeySpec?: KeySpec; | ||
EncryptionAlgorithms?: EncryptionAlgorithmSpec[]; | ||
SigningAlgorithms?: SigningAlgorithmSpec[]; | ||
KeyAgreementAlgorithms?: KeyAgreementAlgorithmSpec[]; | ||
MultiRegion?: boolean; | ||
MultiRegionConfiguration?: MultiRegionConfiguration; | ||
PendingDeletionWindowInDays?: number; | ||
MacAlgorithms?: MacAlgorithmSpec[]; | ||
XksKeyConfiguration?: XksKeyConfigurationType; | ||
Arn?: string | undefined; | ||
CreationDate?: Date | undefined; | ||
Enabled?: boolean | undefined; | ||
Description?: string | undefined; | ||
KeyUsage?: KeyUsageType | undefined; | ||
KeyState?: KeyState | undefined; | ||
DeletionDate?: Date | undefined; | ||
ValidTo?: Date | undefined; | ||
Origin?: OriginType | undefined; | ||
CustomKeyStoreId?: string | undefined; | ||
CloudHsmClusterId?: string | undefined; | ||
ExpirationModel?: ExpirationModelType | undefined; | ||
KeyManager?: KeyManagerType | undefined; | ||
CustomerMasterKeySpec?: CustomerMasterKeySpec | undefined; | ||
KeySpec?: KeySpec | undefined; | ||
EncryptionAlgorithms?: EncryptionAlgorithmSpec[] | undefined; | ||
SigningAlgorithms?: SigningAlgorithmSpec[] | undefined; | ||
KeyAgreementAlgorithms?: KeyAgreementAlgorithmSpec[] | undefined; | ||
MultiRegion?: boolean | undefined; | ||
MultiRegionConfiguration?: MultiRegionConfiguration | undefined; | ||
PendingDeletionWindowInDays?: number | undefined; | ||
MacAlgorithms?: MacAlgorithmSpec[] | undefined; | ||
XksKeyConfiguration?: XksKeyConfigurationType | undefined; | ||
} | ||
export interface CreateKeyResponse { | ||
KeyMetadata?: KeyMetadata; | ||
KeyMetadata?: KeyMetadata | undefined; | ||
} | ||
@@ -615,18 +617,18 @@ export declare class MalformedPolicyDocumentException extends __BaseException { | ||
export interface XksProxyConfigurationType { | ||
Connectivity?: XksProxyConnectivityType; | ||
AccessKeyId?: string; | ||
UriEndpoint?: string; | ||
UriPath?: string; | ||
VpcEndpointServiceName?: string; | ||
Connectivity?: XksProxyConnectivityType | undefined; | ||
AccessKeyId?: string | undefined; | ||
UriEndpoint?: string | undefined; | ||
UriPath?: string | undefined; | ||
VpcEndpointServiceName?: string | undefined; | ||
} | ||
export interface CustomKeyStoresListEntry { | ||
CustomKeyStoreId?: string; | ||
CustomKeyStoreName?: string; | ||
CloudHsmClusterId?: string; | ||
TrustAnchorCertificate?: string; | ||
ConnectionState?: ConnectionStateType; | ||
ConnectionErrorCode?: ConnectionErrorCodeType; | ||
CreationDate?: Date; | ||
CustomKeyStoreType?: CustomKeyStoreType; | ||
XksProxyConfiguration?: XksProxyConfigurationType; | ||
CustomKeyStoreId?: string | undefined; | ||
CustomKeyStoreName?: string | undefined; | ||
CloudHsmClusterId?: string | undefined; | ||
TrustAnchorCertificate?: string | undefined; | ||
ConnectionState?: ConnectionStateType | undefined; | ||
ConnectionErrorCode?: ConnectionErrorCodeType | undefined; | ||
CreationDate?: Date | undefined; | ||
CustomKeyStoreType?: CustomKeyStoreType | undefined; | ||
XksProxyConfiguration?: XksProxyConfigurationType | undefined; | ||
} | ||
@@ -656,19 +658,19 @@ export declare const DataKeyPairSpec: { | ||
export interface RecipientInfo { | ||
KeyEncryptionAlgorithm?: KeyEncryptionMechanism; | ||
AttestationDocument?: Uint8Array; | ||
KeyEncryptionAlgorithm?: KeyEncryptionMechanism | undefined; | ||
AttestationDocument?: Uint8Array | undefined; | ||
} | ||
export interface DecryptRequest { | ||
CiphertextBlob: Uint8Array | undefined; | ||
EncryptionContext?: Record<string, string>; | ||
GrantTokens?: string[]; | ||
KeyId?: string; | ||
EncryptionAlgorithm?: EncryptionAlgorithmSpec; | ||
Recipient?: RecipientInfo; | ||
DryRun?: boolean; | ||
EncryptionContext?: Record<string, string> | undefined; | ||
GrantTokens?: string[] | undefined; | ||
KeyId?: string | undefined; | ||
EncryptionAlgorithm?: EncryptionAlgorithmSpec | undefined; | ||
Recipient?: RecipientInfo | undefined; | ||
DryRun?: boolean | undefined; | ||
} | ||
export interface DecryptResponse { | ||
KeyId?: string; | ||
Plaintext?: Uint8Array; | ||
EncryptionAlgorithm?: EncryptionAlgorithmSpec; | ||
CiphertextForRecipient?: Uint8Array; | ||
KeyId?: string | undefined; | ||
Plaintext?: Uint8Array | undefined; | ||
EncryptionAlgorithm?: EncryptionAlgorithmSpec | undefined; | ||
CiphertextForRecipient?: Uint8Array | undefined; | ||
} | ||
@@ -717,23 +719,23 @@ export declare class IncorrectKeyException extends __BaseException { | ||
PublicKey: Uint8Array | undefined; | ||
GrantTokens?: string[]; | ||
DryRun?: boolean; | ||
Recipient?: RecipientInfo; | ||
GrantTokens?: string[] | undefined; | ||
DryRun?: boolean | undefined; | ||
Recipient?: RecipientInfo | undefined; | ||
} | ||
export interface DeriveSharedSecretResponse { | ||
KeyId?: string; | ||
SharedSecret?: Uint8Array; | ||
CiphertextForRecipient?: Uint8Array; | ||
KeyAgreementAlgorithm?: KeyAgreementAlgorithmSpec; | ||
KeyOrigin?: OriginType; | ||
KeyId?: string | undefined; | ||
SharedSecret?: Uint8Array | undefined; | ||
CiphertextForRecipient?: Uint8Array | undefined; | ||
KeyAgreementAlgorithm?: KeyAgreementAlgorithmSpec | undefined; | ||
KeyOrigin?: OriginType | undefined; | ||
} | ||
export interface DescribeCustomKeyStoresRequest { | ||
CustomKeyStoreId?: string; | ||
CustomKeyStoreName?: string; | ||
Limit?: number; | ||
Marker?: string; | ||
CustomKeyStoreId?: string | undefined; | ||
CustomKeyStoreName?: string | undefined; | ||
Limit?: number | undefined; | ||
Marker?: string | undefined; | ||
} | ||
export interface DescribeCustomKeyStoresResponse { | ||
CustomKeyStores?: CustomKeyStoresListEntry[]; | ||
NextMarker?: string; | ||
Truncated?: boolean; | ||
CustomKeyStores?: CustomKeyStoresListEntry[] | undefined; | ||
NextMarker?: string | undefined; | ||
Truncated?: boolean | undefined; | ||
} | ||
@@ -749,6 +751,6 @@ export declare class InvalidMarkerException extends __BaseException { | ||
KeyId: string | undefined; | ||
GrantTokens?: string[]; | ||
GrantTokens?: string[] | undefined; | ||
} | ||
export interface DescribeKeyResponse { | ||
KeyMetadata?: KeyMetadata; | ||
KeyMetadata?: KeyMetadata | undefined; | ||
} | ||
@@ -770,3 +772,3 @@ export interface DisableKeyRequest { | ||
KeyId: string | undefined; | ||
RotationPeriodInDays?: number; | ||
RotationPeriodInDays?: number | undefined; | ||
} | ||
@@ -776,11 +778,11 @@ export interface EncryptRequest { | ||
Plaintext: Uint8Array | undefined; | ||
EncryptionContext?: Record<string, string>; | ||
GrantTokens?: string[]; | ||
EncryptionAlgorithm?: EncryptionAlgorithmSpec; | ||
DryRun?: boolean; | ||
EncryptionContext?: Record<string, string> | undefined; | ||
GrantTokens?: string[] | undefined; | ||
EncryptionAlgorithm?: EncryptionAlgorithmSpec | undefined; | ||
DryRun?: boolean | undefined; | ||
} | ||
export interface EncryptResponse { | ||
CiphertextBlob?: Uint8Array; | ||
KeyId?: string; | ||
EncryptionAlgorithm?: EncryptionAlgorithmSpec; | ||
CiphertextBlob?: Uint8Array | undefined; | ||
KeyId?: string | undefined; | ||
EncryptionAlgorithm?: EncryptionAlgorithmSpec | undefined; | ||
} | ||
@@ -796,55 +798,55 @@ export declare class ExpiredImportTokenException extends __BaseException { | ||
KeyId: string | undefined; | ||
EncryptionContext?: Record<string, string>; | ||
NumberOfBytes?: number; | ||
KeySpec?: DataKeySpec; | ||
GrantTokens?: string[]; | ||
Recipient?: RecipientInfo; | ||
DryRun?: boolean; | ||
EncryptionContext?: Record<string, string> | undefined; | ||
NumberOfBytes?: number | undefined; | ||
KeySpec?: DataKeySpec | undefined; | ||
GrantTokens?: string[] | undefined; | ||
Recipient?: RecipientInfo | undefined; | ||
DryRun?: boolean | undefined; | ||
} | ||
export interface GenerateDataKeyResponse { | ||
CiphertextBlob?: Uint8Array; | ||
Plaintext?: Uint8Array; | ||
KeyId?: string; | ||
CiphertextForRecipient?: Uint8Array; | ||
CiphertextBlob?: Uint8Array | undefined; | ||
Plaintext?: Uint8Array | undefined; | ||
KeyId?: string | undefined; | ||
CiphertextForRecipient?: Uint8Array | undefined; | ||
} | ||
export interface GenerateDataKeyPairRequest { | ||
EncryptionContext?: Record<string, string>; | ||
EncryptionContext?: Record<string, string> | undefined; | ||
KeyId: string | undefined; | ||
KeyPairSpec: DataKeyPairSpec | undefined; | ||
GrantTokens?: string[]; | ||
Recipient?: RecipientInfo; | ||
DryRun?: boolean; | ||
GrantTokens?: string[] | undefined; | ||
Recipient?: RecipientInfo | undefined; | ||
DryRun?: boolean | undefined; | ||
} | ||
export interface GenerateDataKeyPairResponse { | ||
PrivateKeyCiphertextBlob?: Uint8Array; | ||
PrivateKeyPlaintext?: Uint8Array; | ||
PublicKey?: Uint8Array; | ||
KeyId?: string; | ||
KeyPairSpec?: DataKeyPairSpec; | ||
CiphertextForRecipient?: Uint8Array; | ||
PrivateKeyCiphertextBlob?: Uint8Array | undefined; | ||
PrivateKeyPlaintext?: Uint8Array | undefined; | ||
PublicKey?: Uint8Array | undefined; | ||
KeyId?: string | undefined; | ||
KeyPairSpec?: DataKeyPairSpec | undefined; | ||
CiphertextForRecipient?: Uint8Array | undefined; | ||
} | ||
export interface GenerateDataKeyPairWithoutPlaintextRequest { | ||
EncryptionContext?: Record<string, string>; | ||
EncryptionContext?: Record<string, string> | undefined; | ||
KeyId: string | undefined; | ||
KeyPairSpec: DataKeyPairSpec | undefined; | ||
GrantTokens?: string[]; | ||
DryRun?: boolean; | ||
GrantTokens?: string[] | undefined; | ||
DryRun?: boolean | undefined; | ||
} | ||
export interface GenerateDataKeyPairWithoutPlaintextResponse { | ||
PrivateKeyCiphertextBlob?: Uint8Array; | ||
PublicKey?: Uint8Array; | ||
KeyId?: string; | ||
KeyPairSpec?: DataKeyPairSpec; | ||
PrivateKeyCiphertextBlob?: Uint8Array | undefined; | ||
PublicKey?: Uint8Array | undefined; | ||
KeyId?: string | undefined; | ||
KeyPairSpec?: DataKeyPairSpec | undefined; | ||
} | ||
export interface GenerateDataKeyWithoutPlaintextRequest { | ||
KeyId: string | undefined; | ||
EncryptionContext?: Record<string, string>; | ||
KeySpec?: DataKeySpec; | ||
NumberOfBytes?: number; | ||
GrantTokens?: string[]; | ||
DryRun?: boolean; | ||
EncryptionContext?: Record<string, string> | undefined; | ||
KeySpec?: DataKeySpec | undefined; | ||
NumberOfBytes?: number | undefined; | ||
GrantTokens?: string[] | undefined; | ||
DryRun?: boolean | undefined; | ||
} | ||
export interface GenerateDataKeyWithoutPlaintextResponse { | ||
CiphertextBlob?: Uint8Array; | ||
KeyId?: string; | ||
CiphertextBlob?: Uint8Array | undefined; | ||
KeyId?: string | undefined; | ||
} | ||
@@ -855,26 +857,26 @@ export interface GenerateMacRequest { | ||
MacAlgorithm: MacAlgorithmSpec | undefined; | ||
GrantTokens?: string[]; | ||
DryRun?: boolean; | ||
GrantTokens?: string[] | undefined; | ||
DryRun?: boolean | undefined; | ||
} | ||
export interface GenerateMacResponse { | ||
Mac?: Uint8Array; | ||
MacAlgorithm?: MacAlgorithmSpec; | ||
KeyId?: string; | ||
Mac?: Uint8Array | undefined; | ||
MacAlgorithm?: MacAlgorithmSpec | undefined; | ||
KeyId?: string | undefined; | ||
} | ||
export interface GenerateRandomRequest { | ||
NumberOfBytes?: number; | ||
CustomKeyStoreId?: string; | ||
Recipient?: RecipientInfo; | ||
NumberOfBytes?: number | undefined; | ||
CustomKeyStoreId?: string | undefined; | ||
Recipient?: RecipientInfo | undefined; | ||
} | ||
export interface GenerateRandomResponse { | ||
Plaintext?: Uint8Array; | ||
CiphertextForRecipient?: Uint8Array; | ||
Plaintext?: Uint8Array | undefined; | ||
CiphertextForRecipient?: Uint8Array | undefined; | ||
} | ||
export interface GetKeyPolicyRequest { | ||
KeyId: string | undefined; | ||
PolicyName?: string; | ||
PolicyName?: string | undefined; | ||
} | ||
export interface GetKeyPolicyResponse { | ||
Policy?: string; | ||
PolicyName?: string; | ||
Policy?: string | undefined; | ||
PolicyName?: string | undefined; | ||
} | ||
@@ -885,7 +887,7 @@ export interface GetKeyRotationStatusRequest { | ||
export interface GetKeyRotationStatusResponse { | ||
KeyRotationEnabled?: boolean; | ||
KeyId?: string; | ||
RotationPeriodInDays?: number; | ||
NextRotationDate?: Date; | ||
OnDemandRotationStartDate?: Date; | ||
KeyRotationEnabled?: boolean | undefined; | ||
KeyId?: string | undefined; | ||
RotationPeriodInDays?: number | undefined; | ||
NextRotationDate?: Date | undefined; | ||
OnDemandRotationStartDate?: Date | undefined; | ||
} | ||
@@ -906,31 +908,31 @@ export declare const WrappingKeySpec: { | ||
export interface GetParametersForImportResponse { | ||
KeyId?: string; | ||
ImportToken?: Uint8Array; | ||
PublicKey?: Uint8Array; | ||
ParametersValidTo?: Date; | ||
KeyId?: string | undefined; | ||
ImportToken?: Uint8Array | undefined; | ||
PublicKey?: Uint8Array | undefined; | ||
ParametersValidTo?: Date | undefined; | ||
} | ||
export interface GetPublicKeyRequest { | ||
KeyId: string | undefined; | ||
GrantTokens?: string[]; | ||
GrantTokens?: string[] | undefined; | ||
} | ||
export interface GetPublicKeyResponse { | ||
KeyId?: string; | ||
PublicKey?: Uint8Array; | ||
CustomerMasterKeySpec?: CustomerMasterKeySpec; | ||
KeySpec?: KeySpec; | ||
KeyUsage?: KeyUsageType; | ||
EncryptionAlgorithms?: EncryptionAlgorithmSpec[]; | ||
SigningAlgorithms?: SigningAlgorithmSpec[]; | ||
KeyAgreementAlgorithms?: KeyAgreementAlgorithmSpec[]; | ||
KeyId?: string | undefined; | ||
PublicKey?: Uint8Array | undefined; | ||
CustomerMasterKeySpec?: CustomerMasterKeySpec | undefined; | ||
KeySpec?: KeySpec | undefined; | ||
KeyUsage?: KeyUsageType | undefined; | ||
EncryptionAlgorithms?: EncryptionAlgorithmSpec[] | undefined; | ||
SigningAlgorithms?: SigningAlgorithmSpec[] | undefined; | ||
KeyAgreementAlgorithms?: KeyAgreementAlgorithmSpec[] | undefined; | ||
} | ||
export interface GrantListEntry { | ||
KeyId?: string; | ||
GrantId?: string; | ||
Name?: string; | ||
CreationDate?: Date; | ||
GranteePrincipal?: string; | ||
RetiringPrincipal?: string; | ||
IssuingAccount?: string; | ||
Operations?: GrantOperation[]; | ||
Constraints?: GrantConstraints; | ||
KeyId?: string | undefined; | ||
GrantId?: string | undefined; | ||
Name?: string | undefined; | ||
CreationDate?: Date | undefined; | ||
GranteePrincipal?: string | undefined; | ||
RetiringPrincipal?: string | undefined; | ||
IssuingAccount?: string | undefined; | ||
Operations?: GrantOperation[] | undefined; | ||
Constraints?: GrantConstraints | undefined; | ||
} | ||
@@ -941,4 +943,4 @@ export interface ImportKeyMaterialRequest { | ||
EncryptedKeyMaterial: Uint8Array | undefined; | ||
ValidTo?: Date; | ||
ExpirationModel?: ExpirationModelType; | ||
ValidTo?: Date | undefined; | ||
ExpirationModel?: ExpirationModelType | undefined; | ||
} | ||
@@ -968,4 +970,4 @@ export interface ImportKeyMaterialResponse {} | ||
export interface KeyListEntry { | ||
KeyId?: string; | ||
KeyArn?: string; | ||
KeyId?: string | undefined; | ||
KeyArn?: string | undefined; | ||
} | ||
@@ -987,37 +989,37 @@ export declare class KMSInvalidMacException extends __BaseException { | ||
export interface ListAliasesRequest { | ||
KeyId?: string; | ||
Limit?: number; | ||
Marker?: string; | ||
KeyId?: string | undefined; | ||
Limit?: number | undefined; | ||
Marker?: string | undefined; | ||
} | ||
export interface ListAliasesResponse { | ||
Aliases?: AliasListEntry[]; | ||
NextMarker?: string; | ||
Truncated?: boolean; | ||
Aliases?: AliasListEntry[] | undefined; | ||
NextMarker?: string | undefined; | ||
Truncated?: boolean | undefined; | ||
} | ||
export interface ListGrantsRequest { | ||
Limit?: number; | ||
Marker?: string; | ||
Limit?: number | undefined; | ||
Marker?: string | undefined; | ||
KeyId: string | undefined; | ||
GrantId?: string; | ||
GranteePrincipal?: string; | ||
GrantId?: string | undefined; | ||
GranteePrincipal?: string | undefined; | ||
} | ||
export interface ListGrantsResponse { | ||
Grants?: GrantListEntry[]; | ||
NextMarker?: string; | ||
Truncated?: boolean; | ||
Grants?: GrantListEntry[] | undefined; | ||
NextMarker?: string | undefined; | ||
Truncated?: boolean | undefined; | ||
} | ||
export interface ListKeyPoliciesRequest { | ||
KeyId: string | undefined; | ||
Limit?: number; | ||
Marker?: string; | ||
Limit?: number | undefined; | ||
Marker?: string | undefined; | ||
} | ||
export interface ListKeyPoliciesResponse { | ||
PolicyNames?: string[]; | ||
NextMarker?: string; | ||
Truncated?: boolean; | ||
PolicyNames?: string[] | undefined; | ||
NextMarker?: string | undefined; | ||
Truncated?: boolean | undefined; | ||
} | ||
export interface ListKeyRotationsRequest { | ||
KeyId: string | undefined; | ||
Limit?: number; | ||
Marker?: string; | ||
Limit?: number | undefined; | ||
Marker?: string | undefined; | ||
} | ||
@@ -1030,33 +1032,33 @@ export declare const RotationType: { | ||
export interface RotationsListEntry { | ||
KeyId?: string; | ||
RotationDate?: Date; | ||
RotationType?: RotationType; | ||
KeyId?: string | undefined; | ||
RotationDate?: Date | undefined; | ||
RotationType?: RotationType | undefined; | ||
} | ||
export interface ListKeyRotationsResponse { | ||
Rotations?: RotationsListEntry[]; | ||
NextMarker?: string; | ||
Truncated?: boolean; | ||
Rotations?: RotationsListEntry[] | undefined; | ||
NextMarker?: string | undefined; | ||
Truncated?: boolean | undefined; | ||
} | ||
export interface ListKeysRequest { | ||
Limit?: number; | ||
Marker?: string; | ||
Limit?: number | undefined; | ||
Marker?: string | undefined; | ||
} | ||
export interface ListKeysResponse { | ||
Keys?: KeyListEntry[]; | ||
NextMarker?: string; | ||
Truncated?: boolean; | ||
Keys?: KeyListEntry[] | undefined; | ||
NextMarker?: string | undefined; | ||
Truncated?: boolean | undefined; | ||
} | ||
export interface ListResourceTagsRequest { | ||
KeyId: string | undefined; | ||
Limit?: number; | ||
Marker?: string; | ||
Limit?: number | undefined; | ||
Marker?: string | undefined; | ||
} | ||
export interface ListResourceTagsResponse { | ||
Tags?: Tag[]; | ||
NextMarker?: string; | ||
Truncated?: boolean; | ||
Tags?: Tag[] | undefined; | ||
NextMarker?: string | undefined; | ||
Truncated?: boolean | undefined; | ||
} | ||
export interface ListRetirableGrantsRequest { | ||
Limit?: number; | ||
Marker?: string; | ||
Limit?: number | undefined; | ||
Marker?: string | undefined; | ||
RetiringPrincipal: string | undefined; | ||
@@ -1071,23 +1073,23 @@ } | ||
KeyId: string | undefined; | ||
PolicyName?: string; | ||
PolicyName?: string | undefined; | ||
Policy: string | undefined; | ||
BypassPolicyLockoutSafetyCheck?: boolean; | ||
BypassPolicyLockoutSafetyCheck?: boolean | undefined; | ||
} | ||
export interface ReEncryptRequest { | ||
CiphertextBlob: Uint8Array | undefined; | ||
SourceEncryptionContext?: Record<string, string>; | ||
SourceKeyId?: string; | ||
SourceEncryptionContext?: Record<string, string> | undefined; | ||
SourceKeyId?: string | undefined; | ||
DestinationKeyId: string | undefined; | ||
DestinationEncryptionContext?: Record<string, string>; | ||
SourceEncryptionAlgorithm?: EncryptionAlgorithmSpec; | ||
DestinationEncryptionAlgorithm?: EncryptionAlgorithmSpec; | ||
GrantTokens?: string[]; | ||
DryRun?: boolean; | ||
DestinationEncryptionContext?: Record<string, string> | undefined; | ||
SourceEncryptionAlgorithm?: EncryptionAlgorithmSpec | undefined; | ||
DestinationEncryptionAlgorithm?: EncryptionAlgorithmSpec | undefined; | ||
GrantTokens?: string[] | undefined; | ||
DryRun?: boolean | undefined; | ||
} | ||
export interface ReEncryptResponse { | ||
CiphertextBlob?: Uint8Array; | ||
SourceKeyId?: string; | ||
KeyId?: string; | ||
SourceEncryptionAlgorithm?: EncryptionAlgorithmSpec; | ||
DestinationEncryptionAlgorithm?: EncryptionAlgorithmSpec; | ||
CiphertextBlob?: Uint8Array | undefined; | ||
SourceKeyId?: string | undefined; | ||
KeyId?: string | undefined; | ||
SourceEncryptionAlgorithm?: EncryptionAlgorithmSpec | undefined; | ||
DestinationEncryptionAlgorithm?: EncryptionAlgorithmSpec | undefined; | ||
} | ||
@@ -1097,17 +1099,17 @@ export interface ReplicateKeyRequest { | ||
ReplicaRegion: string | undefined; | ||
Policy?: string; | ||
BypassPolicyLockoutSafetyCheck?: boolean; | ||
Description?: string; | ||
Tags?: Tag[]; | ||
Policy?: string | undefined; | ||
BypassPolicyLockoutSafetyCheck?: boolean | undefined; | ||
Description?: string | undefined; | ||
Tags?: Tag[] | undefined; | ||
} | ||
export interface ReplicateKeyResponse { | ||
ReplicaKeyMetadata?: KeyMetadata; | ||
ReplicaPolicy?: string; | ||
ReplicaTags?: Tag[]; | ||
ReplicaKeyMetadata?: KeyMetadata | undefined; | ||
ReplicaPolicy?: string | undefined; | ||
ReplicaTags?: Tag[] | undefined; | ||
} | ||
export interface RetireGrantRequest { | ||
GrantToken?: string; | ||
KeyId?: string; | ||
GrantId?: string; | ||
DryRun?: boolean; | ||
GrantToken?: string | undefined; | ||
KeyId?: string | undefined; | ||
GrantId?: string | undefined; | ||
DryRun?: boolean | undefined; | ||
} | ||
@@ -1117,3 +1119,3 @@ export interface RevokeGrantRequest { | ||
GrantId: string | undefined; | ||
DryRun?: boolean; | ||
DryRun?: boolean | undefined; | ||
} | ||
@@ -1124,13 +1126,13 @@ export interface RotateKeyOnDemandRequest { | ||
export interface RotateKeyOnDemandResponse { | ||
KeyId?: string; | ||
KeyId?: string | undefined; | ||
} | ||
export interface ScheduleKeyDeletionRequest { | ||
KeyId: string | undefined; | ||
PendingWindowInDays?: number; | ||
PendingWindowInDays?: number | undefined; | ||
} | ||
export interface ScheduleKeyDeletionResponse { | ||
KeyId?: string; | ||
DeletionDate?: Date; | ||
KeyState?: KeyState; | ||
PendingWindowInDays?: number; | ||
KeyId?: string | undefined; | ||
DeletionDate?: Date | undefined; | ||
KeyState?: KeyState | undefined; | ||
PendingWindowInDays?: number | undefined; | ||
} | ||
@@ -1140,11 +1142,11 @@ export interface SignRequest { | ||
Message: Uint8Array | undefined; | ||
MessageType?: MessageType; | ||
GrantTokens?: string[]; | ||
MessageType?: MessageType | undefined; | ||
GrantTokens?: string[] | undefined; | ||
SigningAlgorithm: SigningAlgorithmSpec | undefined; | ||
DryRun?: boolean; | ||
DryRun?: boolean | undefined; | ||
} | ||
export interface SignResponse { | ||
KeyId?: string; | ||
Signature?: Uint8Array; | ||
SigningAlgorithm?: SigningAlgorithmSpec; | ||
KeyId?: string | undefined; | ||
Signature?: Uint8Array | undefined; | ||
SigningAlgorithm?: SigningAlgorithmSpec | undefined; | ||
} | ||
@@ -1165,10 +1167,12 @@ export interface TagResourceRequest { | ||
CustomKeyStoreId: string | undefined; | ||
NewCustomKeyStoreName?: string; | ||
KeyStorePassword?: string; | ||
CloudHsmClusterId?: string; | ||
XksProxyUriEndpoint?: string; | ||
XksProxyUriPath?: string; | ||
XksProxyVpcEndpointServiceName?: string; | ||
XksProxyAuthenticationCredential?: XksProxyAuthenticationCredentialType; | ||
XksProxyConnectivity?: XksProxyConnectivityType; | ||
NewCustomKeyStoreName?: string | undefined; | ||
KeyStorePassword?: string | undefined; | ||
CloudHsmClusterId?: string | undefined; | ||
XksProxyUriEndpoint?: string | undefined; | ||
XksProxyUriPath?: string | undefined; | ||
XksProxyVpcEndpointServiceName?: string | undefined; | ||
XksProxyAuthenticationCredential?: | ||
| XksProxyAuthenticationCredentialType | ||
| undefined; | ||
XksProxyConnectivity?: XksProxyConnectivityType | undefined; | ||
} | ||
@@ -1187,12 +1191,12 @@ export interface UpdateCustomKeyStoreResponse {} | ||
Message: Uint8Array | undefined; | ||
MessageType?: MessageType; | ||
MessageType?: MessageType | undefined; | ||
Signature: Uint8Array | undefined; | ||
SigningAlgorithm: SigningAlgorithmSpec | undefined; | ||
GrantTokens?: string[]; | ||
DryRun?: boolean; | ||
GrantTokens?: string[] | undefined; | ||
DryRun?: boolean | undefined; | ||
} | ||
export interface VerifyResponse { | ||
KeyId?: string; | ||
SignatureValid?: boolean; | ||
SigningAlgorithm?: SigningAlgorithmSpec; | ||
KeyId?: string | undefined; | ||
SignatureValid?: boolean | undefined; | ||
SigningAlgorithm?: SigningAlgorithmSpec | undefined; | ||
} | ||
@@ -1204,9 +1208,9 @@ export interface VerifyMacRequest { | ||
Mac: Uint8Array | undefined; | ||
GrantTokens?: string[]; | ||
DryRun?: boolean; | ||
GrantTokens?: string[] | undefined; | ||
DryRun?: boolean | undefined; | ||
} | ||
export interface VerifyMacResponse { | ||
KeyId?: string; | ||
MacValid?: boolean; | ||
MacAlgorithm?: MacAlgorithmSpec; | ||
KeyId?: string | undefined; | ||
MacValid?: boolean | undefined; | ||
MacAlgorithm?: MacAlgorithmSpec | undefined; | ||
} | ||
@@ -1213,0 +1217,0 @@ export declare const XksProxyAuthenticationCredentialTypeFilterSensitiveLog: ( |
{ | ||
"name": "@aws-sdk/client-kms", | ||
"description": "AWS SDK for JavaScript Kms Client for Node.js, Browser and React Native", | ||
"version": "3.687.0", | ||
"version": "3.691.0", | ||
"scripts": { | ||
@@ -23,10 +23,10 @@ "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", | ||
"@aws-crypto/sha256-js": "5.2.0", | ||
"@aws-sdk/client-sso-oidc": "3.687.0", | ||
"@aws-sdk/client-sts": "3.687.0", | ||
"@aws-sdk/core": "3.686.0", | ||
"@aws-sdk/credential-provider-node": "3.687.0", | ||
"@aws-sdk/client-sso-oidc": "3.691.0", | ||
"@aws-sdk/client-sts": "3.691.0", | ||
"@aws-sdk/core": "3.691.0", | ||
"@aws-sdk/credential-provider-node": "3.691.0", | ||
"@aws-sdk/middleware-host-header": "3.686.0", | ||
"@aws-sdk/middleware-logger": "3.686.0", | ||
"@aws-sdk/middleware-recursion-detection": "3.686.0", | ||
"@aws-sdk/middleware-user-agent": "3.687.0", | ||
"@aws-sdk/middleware-user-agent": "3.691.0", | ||
"@aws-sdk/region-config-resolver": "3.686.0", | ||
@@ -36,3 +36,3 @@ "@aws-sdk/types": "3.686.0", | ||
"@aws-sdk/util-user-agent-browser": "3.686.0", | ||
"@aws-sdk/util-user-agent-node": "3.687.0", | ||
"@aws-sdk/util-user-agent-node": "3.691.0", | ||
"@smithy/config-resolver": "^3.0.10", | ||
@@ -39,0 +39,0 @@ "@smithy/core": "^2.5.1", |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1692515
35293
8
+ Added@aws-sdk/client-sso@3.691.0(transitive)
+ Added@aws-sdk/client-sso-oidc@3.691.0(transitive)
+ Added@aws-sdk/client-sts@3.691.0(transitive)
+ Added@aws-sdk/core@3.691.0(transitive)
+ Added@aws-sdk/credential-provider-env@3.691.0(transitive)
+ Added@aws-sdk/credential-provider-http@3.691.0(transitive)
+ Added@aws-sdk/credential-provider-ini@3.691.0(transitive)
+ Added@aws-sdk/credential-provider-node@3.691.0(transitive)
+ Added@aws-sdk/credential-provider-process@3.691.0(transitive)
+ Added@aws-sdk/credential-provider-sso@3.691.0(transitive)
+ Added@aws-sdk/credential-provider-web-identity@3.691.0(transitive)
+ Added@aws-sdk/middleware-user-agent@3.691.0(transitive)
+ Added@aws-sdk/token-providers@3.691.0(transitive)
+ Added@aws-sdk/util-locate-window@3.679.0(transitive)
+ Added@aws-sdk/util-user-agent-node@3.691.0(transitive)
+ Added@smithy/abort-controller@3.1.6(transitive)
+ Added@smithy/config-resolver@3.0.10(transitive)
+ Added@smithy/core@2.5.1(transitive)
+ Added@smithy/credential-provider-imds@3.2.5(transitive)
+ Added@smithy/fetch-http-handler@4.0.0(transitive)
+ Added@smithy/hash-node@3.0.8(transitive)
+ Added@smithy/invalid-dependency@3.0.8(transitive)
+ Added@smithy/middleware-content-length@3.0.10(transitive)
+ Added@smithy/middleware-endpoint@3.2.1(transitive)
+ Added@smithy/middleware-retry@3.0.25(transitive)
+ Added@smithy/middleware-serde@3.0.8(transitive)
+ Added@smithy/middleware-stack@3.0.8(transitive)
+ Added@smithy/node-config-provider@3.1.9(transitive)
+ Added@smithy/node-http-handler@3.2.5(transitive)
+ Added@smithy/property-provider@3.1.8(transitive)
+ Added@smithy/protocol-http@4.1.5(transitive)
+ Added@smithy/querystring-builder@3.0.8(transitive)
+ Added@smithy/querystring-parser@3.0.8(transitive)
+ Added@smithy/service-error-classification@3.0.8(transitive)
+ Added@smithy/shared-ini-file-loader@3.1.9(transitive)
+ Added@smithy/signature-v4@4.2.1(transitive)
+ Added@smithy/smithy-client@3.4.2(transitive)
+ Added@smithy/types@3.6.0(transitive)
+ Added@smithy/url-parser@3.0.8(transitive)
+ Added@smithy/util-defaults-mode-browser@3.0.25(transitive)
+ Added@smithy/util-defaults-mode-node@3.0.25(transitive)
+ Added@smithy/util-endpoints@2.1.4(transitive)
+ Added@smithy/util-middleware@3.0.8(transitive)
+ Added@smithy/util-retry@3.0.8(transitive)
+ Added@smithy/util-stream@3.2.1(transitive)
- Removed@aws-sdk/client-sso@3.687.0(transitive)
- Removed@aws-sdk/client-sso-oidc@3.687.0(transitive)
- Removed@aws-sdk/client-sts@3.687.0(transitive)
- Removed@aws-sdk/core@3.686.0(transitive)
- Removed@aws-sdk/credential-provider-env@3.686.0(transitive)
- Removed@aws-sdk/credential-provider-http@3.686.0(transitive)
- Removed@aws-sdk/credential-provider-ini@3.687.0(transitive)
- Removed@aws-sdk/credential-provider-node@3.687.0(transitive)
- Removed@aws-sdk/credential-provider-process@3.686.0(transitive)
- Removed@aws-sdk/credential-provider-sso@3.687.0(transitive)
- Removed@aws-sdk/credential-provider-web-identity@3.686.0(transitive)
- Removed@aws-sdk/middleware-user-agent@3.687.0(transitive)
- Removed@aws-sdk/token-providers@3.686.0(transitive)
- Removed@aws-sdk/util-locate-window@3.693.0(transitive)
- Removed@aws-sdk/util-user-agent-node@3.687.0(transitive)
- Removed@smithy/abort-controller@3.1.8(transitive)
- Removed@smithy/config-resolver@3.0.12(transitive)
- Removed@smithy/core@2.5.3(transitive)
- Removed@smithy/credential-provider-imds@3.2.7(transitive)
- Removed@smithy/fetch-http-handler@4.1.1(transitive)
- Removed@smithy/hash-node@3.0.10(transitive)
- Removed@smithy/invalid-dependency@3.0.10(transitive)
- Removed@smithy/middleware-content-length@3.0.12(transitive)
- Removed@smithy/middleware-endpoint@3.2.3(transitive)
- Removed@smithy/middleware-retry@3.0.27(transitive)
- Removed@smithy/middleware-serde@3.0.10(transitive)
- Removed@smithy/middleware-stack@3.0.10(transitive)
- Removed@smithy/node-config-provider@3.1.11(transitive)
- Removed@smithy/node-http-handler@3.3.1(transitive)
- Removed@smithy/property-provider@3.1.10(transitive)
- Removed@smithy/protocol-http@4.1.7(transitive)
- Removed@smithy/querystring-builder@3.0.10(transitive)
- Removed@smithy/querystring-parser@3.0.10(transitive)
- Removed@smithy/service-error-classification@3.0.10(transitive)
- Removed@smithy/shared-ini-file-loader@3.1.11(transitive)
- Removed@smithy/signature-v4@4.2.3(transitive)
- Removed@smithy/smithy-client@3.4.4(transitive)
- Removed@smithy/types@3.7.1(transitive)
- Removed@smithy/url-parser@3.0.10(transitive)
- Removed@smithy/util-defaults-mode-browser@3.0.27(transitive)
- Removed@smithy/util-defaults-mode-node@3.0.27(transitive)
- Removed@smithy/util-endpoints@2.1.6(transitive)
- Removed@smithy/util-middleware@3.0.10(transitive)
- Removed@smithy/util-retry@3.0.10(transitive)
- Removed@smithy/util-stream@3.3.1(transitive)
Updated@aws-sdk/client-sts@3.691.0
Updated@aws-sdk/core@3.691.0