Show / Hide Table of Contents

Class SecretGenerationContext

Captures a configurable set of secret generation rules such as length, base characters, additional characters, and so on.

Inheritance
object
SecretGenerationContext
BytesGenerationContext
PassphraseGenerationContext
SshKeyGenerationContext
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.VaultService.Models
Assembly: OCI.DotNetSDK.Vault.dll
Syntax
[JsonConverter(typeof(SecretGenerationContextModelConverter))]
public class SecretGenerationContext

Properties

SecretTemplate

Declaration
[JsonProperty(PropertyName = "secretTemplate")]
public string SecretTemplate { get; set; }
Property Value
Type Description
string

SecretTemplate captures structure in which customer wants to store secrets. This is optional and a default structure is available for each secret type. The template can have any structure with static values that are not generated. Within the template, you can insert predefined placeholders to store secrets. These placeholders are later replaced with the generated content and saved as a Base64 encoded content.

In this article
Back to top