Show / Hide Table of Contents

Class AssociateMonitoredResourcesDetails

The information required to create new monitored resource association.

Inheritance
object
AssociateMonitoredResourcesDetails
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 AssociateMonitoredResourcesDetails

Properties

AssociationType

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

Association type to be created between source and destination resources.

Remarks

Required

CompartmentId

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

Compartment Identifier OCID.

Remarks

Required

DestinationResourceId

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

Destination Monitored Resource Identifier OCID.

Remarks

Required

SourceResourceId

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

Source Monitored Resource Identifier OCID.

Remarks

Required

In this article
Back to top