Show / Hide Table of Contents

Class PackageFilter

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

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

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

PackageName

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

The package name.

PackageNamePattern

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

The package name pattern.

PackageVersion

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

The package version, which is denoted by 'version-release', or 'epoch:version-release'.

In this article
Back to top