Show / Hide Table of Contents

Class MonitoredResourceCredential

Monitored Resource Credential Details.

Inheritance
object
MonitoredResourceCredential
EncryptedCredentials
PlainTextCredentials
PreExistingCredentials
Inherited Members
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
[JsonConverter(typeof(MonitoredResourceCredentialModelConverter))]
public class MonitoredResourceCredential

Properties

Description

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

The user-specified textual description of the credential.

Name

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

The name of the credential, within the context of the source.

Source

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

The source type and source name combination, delimited with (.) separator. {source type}.{source name} and source type max char limit is 63.

Type

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

The type of the credential ( ex. JMXCreds,DBCreds).

In this article
Back to top