Show / Hide Table of Contents

Class ListOutboundConnectorsRequest

Inheritance
object
ListOutboundConnectorsRequest
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.FilestorageService.Requests
Assembly: OCI.DotNetSDK.Filestorage.dll
Syntax
public class ListOutboundConnectorsRequest : IOciRequest
Examples

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

Properties

AvailabilityDomain

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

The name of the availability domain.
Example: Uocm:PHX-AD-1

Remarks

Required

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.

Remarks

Required

DisplayName

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

A user-friendly name. It does not have to be unique, and it is changeable.
Example: My resource

Id

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

Filter results by OCID. Must be an OCID of the correct type for the resouce type.

LifecycleState

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

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, 4096 is the maximum.
For important details about how pagination works, see List Pagination.
Example: 500

OpcRequestId

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

Unique 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

For list pagination. The value of the opc-next-page response header from the previous "List" call.
For important details about how pagination works, see List Pagination.

SortBy

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

The field to sort by. You can choose either value, but not both. By default, when you sort by time created, results are shown in descending order. When you sort by display name, results are shown in ascending order.

SortOrder

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

The sort order to use, either 'asc' or 'desc', where 'asc' is ascending and 'desc' is descending. The default order is 'desc' except for numeric values.

Implements

IOciRequest
In this article
Back to top