Show / Hide Table of Contents

Class GiResourceIdFilter

Related resource Ids to include in the discovery.

Inheritance
object
GiFleetDiscoveryFilter
GiResourceIdFilter
Inherited Members
GiFleetDiscoveryFilter.Mode
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.FleetsoftwareupdateService.Models
Assembly: OCI.DotNetSDK.Fleetsoftwareupdate.dll
Syntax
public class GiResourceIdFilter : GiFleetDiscoveryFilter

Properties

EntityType

Declaration
[Required(ErrorMessage = "EntityType is required.")]
[JsonProperty(PropertyName = "entityType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public GiResourceIdFilter.EntityTypeEnum? EntityType { get; set; }
Property Value
Type Description
GiResourceIdFilter.EntityTypeEnum?

Type of resource to match in the discovery.

Remarks

Required

Identifiers

Declaration
[Required(ErrorMessage = "Identifiers is required.")]
[JsonProperty(PropertyName = "identifiers")]
public List<string> Identifiers { get; set; }
Property Value
Type Description
List<string>

Related resource Ids to include in the discovery. All must match the specified entityType.

Remarks

Required

Operator

Declaration
[JsonProperty(PropertyName = "operator")]
[JsonConverter(typeof(ResponseEnumConverter))]
public FleetDiscoveryOperators? Operator { get; set; }
Property Value
Type Description
FleetDiscoveryOperators?

Type of join for each element in this filter.

In this article
Back to top