Class WrappedImportKey
The details of the wrapped import Key.
Inherited Members
Namespace: Oci.KeymanagementService.Models
Assembly: OCI.DotNetSDK.Keymanagement.dll
Syntax
public class WrappedImportKey
Properties
KeyMaterial
Declaration
[Required(ErrorMessage = "KeyMaterial is required.")]
[JsonProperty(PropertyName = "keyMaterial")]
public string KeyMaterial { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The key material to import, wrapped by the vault's RSA public wrapping key and base64-encoded. |
Remarks
Required
WrappingAlgorithm
Declaration
[Required(ErrorMessage = "WrappingAlgorithm is required.")]
[JsonProperty(PropertyName = "wrappingAlgorithm")]
[JsonConverter(typeof(StringEnumConverter))]
public WrappedImportKey.WrappingAlgorithmEnum? WrappingAlgorithm { get; set; }
Property Value
| Type | Description |
|---|---|
| WrappedImportKey.WrappingAlgorithmEnum? | The wrapping mechanism to use during key import.
|
Remarks
Required