Show / Hide Table of Contents

Class ExportDataFilters

Filters applied when exporting data

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

Properties

ApplicationNameContains

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

List of application names to filter by partial match

ApplicationNameEqualTo

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

List of application names to filter by exact match

JavaMajorVersions

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

List of Java major versions to filter by

JavaVendors

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

List of Java vendors to filter by

JavaVersions

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

List of Java versions to filter by

SecurityStatuses

Declaration
[JsonProperty(PropertyName = "securityStatuses", ItemConverterType = typeof(ResponseEnumConverter))]
public List<JreSecurityStatus> SecurityStatuses { get; set; }
Property Value
Type Description
List<JreSecurityStatus>

The security statuses of the Java Runtime

In this article
Back to top