Show / Hide Table of Contents

Class SearchSoftwareSourcePackageGroupsDetails

Provides the software sources and search parameters to get a list of associated package groups.

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

Properties

GroupType

Declaration
[JsonProperty(PropertyName = "groupType")]
[JsonConverter(typeof(StringEnumConverter))]
public PackageGroup.GroupTypeEnum? GroupType { get; set; }
Property Value
Type Description
PackageGroup.GroupTypeEnum?

Indicates if this is a group, category or environment.

NameContains

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

A filter that returns package groups 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 software source OCIDs.

Remarks

Required

SortBy

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

The field to sort by.

SortOrder

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

The sort order.

In this article
Back to top