Show / Hide Table of Contents

Class MonitoredResourceAliasCredential

Monitored Resource Alias Credential Details

Inheritance
object
MonitoredResourceAliasCredential
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
public class MonitoredResourceAliasCredential

Properties

Credential

Declaration
[Required(ErrorMessage = "Credential is required.")]
[JsonProperty(PropertyName = "credential")]
public MonitoredResourceAliasSourceCredential Credential { get; set; }
Property Value
Type Description
MonitoredResourceAliasSourceCredential
Remarks

Required

Name

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

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

Remarks

Required

Source

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

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

Remarks

Required

In this article
Back to top