Share via


EncryptionKeyWrapMetadata Constructors

Definition

Overloads

EncryptionKeyWrapMetadata(EncryptionKeyWrapMetadata)

Creates a new instance of key wrap metadata based on an existing instance.

EncryptionKeyWrapMetadata(String, String, String, String)

Creates a new instance of key wrap metadata.

EncryptionKeyWrapMetadata(EncryptionKeyWrapMetadata)

Source:
EncryptionKeyWrapMetadata.cs

Creates a new instance of key wrap metadata based on an existing instance.

public EncryptionKeyWrapMetadata (Microsoft.Azure.Cosmos.EncryptionKeyWrapMetadata source);
new Microsoft.Azure.Cosmos.EncryptionKeyWrapMetadata : Microsoft.Azure.Cosmos.EncryptionKeyWrapMetadata -> Microsoft.Azure.Cosmos.EncryptionKeyWrapMetadata
Public Sub New (source As EncryptionKeyWrapMetadata)

Parameters

source
EncryptionKeyWrapMetadata

Existing instance from which to initialize.

Applies to

EncryptionKeyWrapMetadata(String, String, String, String)

Source:
EncryptionKeyWrapMetadata.cs

Creates a new instance of key wrap metadata.

public EncryptionKeyWrapMetadata (string type, string name, string value, string algorithm);
new Microsoft.Azure.Cosmos.EncryptionKeyWrapMetadata : string * string * string * string -> Microsoft.Azure.Cosmos.EncryptionKeyWrapMetadata
Public Sub New (type As String, name As String, value As String, algorithm As String)

Parameters

type
String

Identifier for the key resolver.

name
String

Identifier for the customer managed key.

value
String

Path to the customer managed key.

algorithm
String

Algorithm used in wrapping and unwrapping of the data encryption key.

Applies to