Show / Hide Table of Contents

Class ListStepsRequest

Inheritance
object
ListStepsRequest
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.FleetappsmanagementService.Requests
Assembly: OCI.DotNetSDK.Fleetappsmanagement.dll
Syntax
public class ListStepsRequest : IOciRequest
Examples

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

Properties

JobActivityId

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

unique jobActivity identifier

Remarks

Required

Limit

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

The maximum number of items to return.

OpcRequestId

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

The client request ID for tracing.

Page

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

A token representing the position at which to start retrieving results. This must come from the opc-next-page header field of a previous response.

ResourceTaskId

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

Task Id

SchedulerJobId

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

unique SchedulerJob identifier

Remarks

Required

Sequence

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

Task Order Sequence

SortBy

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

The field to sort by. Only one sort order may be provided. Default order for timeStarted is descending.

SortOrder

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

The sort order to use, either 'ASC' or 'DESC'.

StepName

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

Unique step name

TargetName

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

Unique target name

Implements

IOciRequest
In this article
Back to top