Show / Hide Table of Contents

Class SearchMonitoredResourceAssociationsDetails

The information required to search monitored resource associations.

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

Properties

AssociationType

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

Association type filter to search associated resources.

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
[JsonProperty(PropertyName = "destinationResourceId")]
public string DestinationResourceId { get; set; }
Property Value
Type Description
string

Destination Monitored Resource Identifier OCID.

DestinationResourceName

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

Source Monitored Resource Name.

DestinationResourceType

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

Source Monitored Resource Type.

SortBy

Declaration
[JsonProperty(PropertyName = "sortBy")]
[JsonConverter(typeof(StringEnumConverter))]
public SearchMonitoredResourceAssociationsDetails.SortByEnum? SortBy { get; set; }
Property Value
Type Description
SearchMonitoredResourceAssociationsDetails.SortByEnum?

The field to sort by. Only one sort order may be provided. Default order for timeCreated is descending. Default order for assocType is descending.

SortOrder

Declaration
[JsonProperty(PropertyName = "sortOrder")]
[JsonConverter(typeof(StringEnumConverter))]
public SortOrder? SortOrder { get; set; }
Property Value
Type Description
SortOrder?

The sort order to use, either 'ASC' or 'DESC'.

SourceResourceId

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

Source Monitored Resource Identifier OCID.

SourceResourceName

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

Source Monitored Resource Name.

SourceResourceType

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

Source Monitored Resource Type.

In this article
Back to top