Show / Hide Table of Contents

Class ListPrivateApplicationPackagesRequest

Inheritance
object
ListPrivateApplicationPackagesRequest
Implements
IOciRequest
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ServicecatalogService.Requests
Assembly: OCI.DotNetSDK.Servicecatalog.dll
Syntax
public class ListPrivateApplicationPackagesRequest : IOciRequest
Examples

Click here to see an example of how to use ListPrivateApplicationPackages request.

Properties

DisplayName

Declaration
[HttpConverter(TargetEnum.Query, "displayName")]
public string DisplayName { get; set; }
Property Value
Type Description
string

Exact match name filter.

Limit

Declaration
[HttpConverter(TargetEnum.Query, "limit")]
public int? Limit { get; set; }
Property Value
Type Description
int?

How many records to return. Specify a value greater than zero and less than or equal to 1000. The default is 30.

OpcRequestId

Declaration
[HttpConverter(TargetEnum.Header, "opc-request-id")]
public string OpcRequestId { get; set; }
Property Value
Type Description
string

Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.

PackageType

Declaration
[HttpConverter(TargetEnum.Query, "packageType", CollectionFormatType.Multi)]
public List<PackageTypeEnum> PackageType { get; set; }
Property Value
Type Description
List<PackageTypeEnum>

Name of the package type. If multiple package types are provided, then any resource with one or more matching package types will be returned.

Page

Declaration
[HttpConverter(TargetEnum.Query, "page")]
public string Page { get; set; }
Property Value
Type Description
string

The value of the opc-next-page response header from the previous "List" call.

PrivateApplicationId

Declaration
[Required(ErrorMessage = "PrivateApplicationId is required.")]
[HttpConverter(TargetEnum.Query, "privateApplicationId")]
public string PrivateApplicationId { get; set; }
Property Value
Type Description
string

The unique identifier for the private application.

Remarks

Required

PrivateApplicationPackageId

Declaration
[HttpConverter(TargetEnum.Query, "privateApplicationPackageId")]
public string PrivateApplicationPackageId { get; set; }
Property Value
Type Description
string

The unique identifier for the private application package.

SortBy

Declaration
[HttpConverter(TargetEnum.Query, "sortBy")]
public ListPrivateApplicationPackagesRequest.SortByEnum? SortBy { get; set; }
Property Value
Type Description
ListPrivateApplicationPackagesRequest.SortByEnum?

The field to use to sort listed results. You can only specify one field to sort by. TIMECREATED displays results in descending order by default. You can change your preference by specifying a different sort order.

SortOrder

Declaration
[HttpConverter(TargetEnum.Query, "sortOrder")]
public ListPrivateApplicationPackagesRequest.SortOrderEnum? SortOrder { get; set; }
Property Value
Type Description
ListPrivateApplicationPackagesRequest.SortOrderEnum?

The sort order to apply, either ASC or DESC. Default is ASC.

Implements

IOciRequest
In this article
Back to top