Show / Hide Table of Contents

Class DbResourceIdFilter

Related resource Ids to include in the discovery.

Inheritance
object
DbFleetDiscoveryFilter
DbResourceIdFilter
Inherited Members
DbFleetDiscoveryFilter.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 DbResourceIdFilter : DbFleetDiscoveryFilter

Properties

EntityType

Declaration
[Required(ErrorMessage = "EntityType is required.")]
[JsonProperty(PropertyName = "entityType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DbResourceIdFilter.EntityTypeEnum? EntityType { get; set; }
Property Value
Type Description
DbResourceIdFilter.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