Show / Hide Table of Contents

Class SearchAssociatedResourcesDetails

The criteria for searching associated monitored resources.

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

Properties

AssociationTypes

Declaration
[JsonProperty(PropertyName = "associationTypes")]
public List<string> AssociationTypes { get; set; }
Property Value
Type Description
List<string>

Association types filter to be searched for finding 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

LimitLevel

Declaration
[JsonProperty(PropertyName = "limitLevel")]
public int? LimitLevel { get; set; }
Property Value
Type Description
int?

The field which determines the depth of hierarchy while searching for associated resources. Possible values - 0 for all levels. And positive number to indicate different levels. Default value is 1, which indicates 1st level associations.

ResourceId

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

Monitored resource identifier for which the associated resources should be fetched. Either resourceId or resourceType should be provided.

ResourceType

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

A filter to return associated resources that match resources of type. Either resourceId or resourceType should be provided.

In this article
Back to top