Show / Hide Table of Contents

Class ListModelDeploymentModelStatesRequest

Inheritance
object
ListModelDeploymentModelStatesRequest
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.DatascienceService.Requests
Assembly: OCI.DotNetSDK.Datascience.dll
Syntax
public class ListModelDeploymentModelStatesRequest : IOciRequest
Examples

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

Properties

CompartmentId

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

Filter results by the OCID of the compartment.

Remarks

Required

DisplayName

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

Filter results by its user-friendly name.

InferenceKey

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

Filter results by the inference key.

Limit

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

For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. 1 is the minimum, 100 is the maximum. See List Pagination.
Example: 50

ModelDeploymentId

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

The OCID of the model deployment.

Remarks

Required

ModelId

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

Filter results by the model ocid.

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, then provide the request ID.

OpcRetryToken

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

A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations. For example, if a resource has been deleted and purged from the system, then a retry of the original creation request might be rejected.

Page

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

For list pagination. The value of the opc-next-page response header from the previous "List" call.
See List Pagination.

ProjectId

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

Filter results by the OCID of the project.

SortBy

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

Specifies the field to sort by. Accepts only one field. By default, when you sort by timeCreated, results are shown in descending order. When you sort by displayName, results are shown in ascending order. Sort order for the displayName field is case sensitive.

SortOrder

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

Specifies sort order to use, either ASC (ascending) or DESC (descending).

Implements

IOciRequest
In this article
Back to top