Show / Hide Table of Contents

Class EncryptedCredentials

Encrypted credentials [indicated by the type property in CredentialStore].

Inheritance
object
MonitoredResourceCredential
EncryptedCredentials
Inherited Members
MonitoredResourceCredential.Source
MonitoredResourceCredential.Name
MonitoredResourceCredential.Type
MonitoredResourceCredential.Description
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.StackmonitoringService.Models
Assembly: OCI.DotNetSDK.Stackmonitoring.dll
Syntax
public class EncryptedCredentials : MonitoredResourceCredential

Properties

KeyId

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

The master key should be created in OCI Vault owned by the client of this API. The user should have permission to access the vault key.

Remarks

Required

Properties

Declaration
[Required(ErrorMessage = "Properties is required.")]
[JsonProperty(PropertyName = "properties")]
public List<CredentialProperty> Properties { get; set; }
Property Value
Type Description
List<CredentialProperty>

The credential properties list. Credential property values will be encrypted format.

Remarks

Required

In this article
Back to top