Show / Hide Table of Contents

Class ListApplicationsRequest

Inheritance
object
ListApplicationsRequest
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.FunctionsService.Requests
Assembly: OCI.DotNetSDK.Functions.dll
Syntax
public class ListApplicationsRequest : IOciRequest
Examples

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

Properties

CompartmentId

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

The OCID of the compartment to which this resource belongs.

Remarks

Required

DisplayName

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

A filter to return only applications with display names that match the display name string. Matching is exact.

Id

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

A filter to return only applications with the specified OCID.

LifecycleState

Declaration
[HttpConverter(TargetEnum.Query, "lifecycleState")]
public Application.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
Application.LifecycleStateEnum?

A filter to return only applications that match the lifecycle state in this parameter. Example: Creating

Limit

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

The maximum number of items to return. 1 is the minimum, 50 is the maximum.
Default: 10

OpcRequestId

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

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

Page

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

The pagination token for a list query returned by a previous operation

SortBy

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

Specifies the attribute with which to sort the rules.
Default: displayName

  • timeCreated: Sorts by timeCreated.
  • displayName: Sorts by displayName.
  • id: Sorts by id.

SortOrder

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

Specifies sort order.

  • ASC: Ascending sort order.
  • DESC: Descending sort order.

Implements

IOciRequest
In this article
Back to top