Show / Hide Table of Contents

Class ListContainersRequest

Inheritance
object
ListContainersRequest
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 ListContainersRequest : IOciRequest
Examples

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

Properties

ContainerName

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

Filter results by the container name.

DisplayName

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

Filter results by its user-friendly name.

IsLatest

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

if true, this returns latest version of container.

LifecycleState

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

Filter results by the specified lifecycle state. Must be a valid state for the resource type.

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

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.

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.

TagQueryParam

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

Filter results by the container version tag.

TargetWorkload

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

Filter results by the target workload.

UsageQueryParam

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

Filter results by the usage.

Implements

IOciRequest
In this article
Back to top