Show / Hide Table of Contents

Class SearchSoftwareSourceModulesDetails

Provides the information used to search for a set of modules from a list software sources.

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

Properties

Name

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

The name of a module.

NameContains

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

A filter to return modules with a name that contains the given string.

SoftwareSourceIds

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

List of sofware source OCIDs.

Remarks

Required

SortBy

Declaration
[JsonProperty(PropertyName = "sortBy")]
[JsonConverter(typeof(StringEnumConverter))]
public SearchSoftwareSourceModulesDetails.SortByEnum? SortBy { get; set; }
Property Value
Type Description
SearchSoftwareSourceModulesDetails.SortByEnum?

The field to sort by.

SortOrder

Declaration
[JsonProperty(PropertyName = "sortOrder")]
[JsonConverter(typeof(StringEnumConverter))]
public SearchSoftwareSourceModulesDetails.SortOrderEnum? SortOrder { get; set; }
Property Value
Type Description
SearchSoftwareSourceModulesDetails.SortOrderEnum?

The sort order.

In this article
Back to top