Show / Hide Table of Contents

Class ModuleStreamProfileFilter

Provides the information used to create a filter for module streams and profiles from a vendor software source to create or update a custom software source.

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

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

ModuleName

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

Module name.

Remarks

Required

ProfileName

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

Profile name.

StreamName

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

Stream name.

In this article
Back to top