Show / Hide Table of Contents

Class SecretBundle

The contents of the secret, properties of the secret (and secret version), and user-provided contextual metadata for the secret.

Inheritance
object
SecretBundle
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.SecretsService.Models
Assembly: OCI.DotNetSDK.Secrets.dll
Syntax
public class SecretBundle

Properties

Metadata

Declaration
[JsonProperty(PropertyName = "metadata")]
public Dictionary<string, object> Metadata { get; set; }
Property Value
Type Description
Dictionary<string, object>

Customer-provided contextual metadata for the secret.

SecretBundleContent

Declaration
[JsonProperty(PropertyName = "secretBundleContent")]
public SecretBundleContentDetails SecretBundleContent { get; set; }
Property Value
Type Description
SecretBundleContentDetails

SecretId

Declaration
[Required(ErrorMessage = "SecretId is required.")]
[JsonProperty(PropertyName = "secretId")]
public string SecretId { get; set; }
Property Value
Type Description
string

The OCID of the secret.

Remarks

Required

Stages

Declaration
[JsonProperty(PropertyName = "stages", ItemConverterType = typeof(ResponseEnumConverter))]
public List<SecretBundle.StagesEnum> Stages { get; set; }
Property Value
Type Description
List<SecretBundle.StagesEnum>

A list of possible rotation states for the secret version.

TimeCreated

Declaration
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The time when the secret bundle was created.

TimeOfDeletion

Declaration
[JsonProperty(PropertyName = "timeOfDeletion")]
public DateTime? TimeOfDeletion { get; set; }
Property Value
Type Description
DateTime?

An optional property indicating when to delete the secret version, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

TimeOfExpiry

Declaration
[JsonProperty(PropertyName = "timeOfExpiry")]
public DateTime? TimeOfExpiry { get; set; }
Property Value
Type Description
DateTime?

An optional property indicating when the secret version will expire, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

VersionName

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

The name of the secret version. Labels are unique across the different versions of a particular secret.

VersionNumber

Declaration
[Required(ErrorMessage = "VersionNumber is required.")]
[JsonProperty(PropertyName = "versionNumber")]
public long? VersionNumber { get; set; }
Property Value
Type Description
long?

The version number of the secret.

Remarks

Required

In this article
Back to top