Show / Hide Table of Contents

Class FilterGroup

A group of filters to match announcements against.

Inheritance
object
FilterGroup
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AnnouncementsService.Models
Assembly: OCI.DotNetSDK.Announcementsservice.dll
Syntax
public class FilterGroup

Properties

Filters

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

A list of filters against which the Announcements service matches announcements. You cannot combine the RESOURCE_ID filter with any other type of filter within a given filter group. For filter types that support multiple values, specify the values individually.

Remarks

Required

Name

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

The name of the group. The name must be unique and it cannot be changed. Avoid entering confidential information.

Remarks

Required

In this article
Back to top