Show / Hide Table of Contents

Class PackageGroupFilter

Provides the information used to create a filter for groups from a vendor software source to create or update a custom software source.

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

Properties

FilterType

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

The type of the filter.

Remarks

Required

PackageGroups

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

List of package group names.

In this article
Back to top