Dela via


Extensions.GetComposeDeploymentStatusPagedListAsync Method

Definition

Overloads

GetComposeDeploymentStatusPagedListAsync(FabricClient+QueryClient, ComposeDeploymentStatusQueryDescription)

Gets the status of compose deployments created that match filters specified in query description (if any). If the compose deployments do not fit in a page, one page of results is returned as well as a continuation token which can be used to get the next page.

GetComposeDeploymentStatusPagedListAsync(FabricClient+QueryClient, ComposeDeploymentStatusQueryDescription, TimeSpan)

Gets the status of compose deployments created that match filters specified in query description (if any). If the compose deployments do not fit in a page, one page of results is returned as well as a continuation token which can be used to get the next page.

GetComposeDeploymentStatusPagedListAsync(FabricClient+QueryClient, ComposeDeploymentStatusQueryDescription, TimeSpan, CancellationToken)

Gets the status of compose deployments created that match filters specified in query description (if any). If the compose deployments do not fit in a page, one page of results is returned as well as a continuation token which can be used to get the next page.

GetComposeDeploymentStatusPagedListAsync(FabricClient+QueryClient, ComposeDeploymentStatusQueryDescription)

Gets the status of compose deployments created that match filters specified in query description (if any). If the compose deployments do not fit in a page, one page of results is returned as well as a continuation token which can be used to get the next page.

public static System.Threading.Tasks.Task<Microsoft.ServiceFabric.Preview.Client.Query.ComposeDeploymentStatusList> GetComposeDeploymentStatusPagedListAsync (this System.Fabric.FabricClient.QueryClient client, Microsoft.ServiceFabric.Preview.Client.Description.ComposeDeploymentStatusQueryDescription composeDeploymentQueryDescription);
static member GetComposeDeploymentStatusPagedListAsync : System.Fabric.FabricClient.QueryClient * Microsoft.ServiceFabric.Preview.Client.Description.ComposeDeploymentStatusQueryDescription -> System.Threading.Tasks.Task<Microsoft.ServiceFabric.Preview.Client.Query.ComposeDeploymentStatusList>
<Extension()>
Public Function GetComposeDeploymentStatusPagedListAsync (client As FabricClient.QueryClient, composeDeploymentQueryDescription As ComposeDeploymentStatusQueryDescription) As Task(Of ComposeDeploymentStatusList)

Parameters

composeDeploymentQueryDescription
ComposeDeploymentStatusQueryDescription

The ComposeDeploymentStatusQueryDescription that determines which compose deployments should be queried.

Returns

A Task that represents the asynchronous query operation. The value of TResult parameter is an ComposeDeploymentStatusList that represents the list of compose deployments that respect the filters in the ComposeDeploymentStatusQueryDescription and fit the page. If the provided query description has no matching compose deployments, it will return a list of 0 entries.

Exceptions

Applies to

GetComposeDeploymentStatusPagedListAsync(FabricClient+QueryClient, ComposeDeploymentStatusQueryDescription, TimeSpan)

Gets the status of compose deployments created that match filters specified in query description (if any). If the compose deployments do not fit in a page, one page of results is returned as well as a continuation token which can be used to get the next page.

public static System.Threading.Tasks.Task<Microsoft.ServiceFabric.Preview.Client.Query.ComposeDeploymentStatusList> GetComposeDeploymentStatusPagedListAsync (this System.Fabric.FabricClient.QueryClient client, Microsoft.ServiceFabric.Preview.Client.Description.ComposeDeploymentStatusQueryDescription composeDeploymentQueryDescription, TimeSpan timeout);
static member GetComposeDeploymentStatusPagedListAsync : System.Fabric.FabricClient.QueryClient * Microsoft.ServiceFabric.Preview.Client.Description.ComposeDeploymentStatusQueryDescription * TimeSpan -> System.Threading.Tasks.Task<Microsoft.ServiceFabric.Preview.Client.Query.ComposeDeploymentStatusList>
<Extension()>
Public Function GetComposeDeploymentStatusPagedListAsync (client As FabricClient.QueryClient, composeDeploymentQueryDescription As ComposeDeploymentStatusQueryDescription, timeout As TimeSpan) As Task(Of ComposeDeploymentStatusList)

Parameters

composeDeploymentQueryDescription
ComposeDeploymentStatusQueryDescription

The ComposeDeploymentStatusQueryDescription that determines which compose deployments should be queried.

timeout
TimeSpan

Defines the maximum amount of time the system will allow this operation to continue before returning TimeoutException.

Returns

A Task that represents the asynchronous query operation. The value of TResult parameter is an ComposeDeploymentStatusList that represents the list of compose deployments that respect the filters in the ComposeDeploymentStatusQueryDescription and fit the page. If the provided query description has no matching compose deployments, it will return a list of 0 entries.

Exceptions

Applies to

GetComposeDeploymentStatusPagedListAsync(FabricClient+QueryClient, ComposeDeploymentStatusQueryDescription, TimeSpan, CancellationToken)

Gets the status of compose deployments created that match filters specified in query description (if any). If the compose deployments do not fit in a page, one page of results is returned as well as a continuation token which can be used to get the next page.

public static System.Threading.Tasks.Task<Microsoft.ServiceFabric.Preview.Client.Query.ComposeDeploymentStatusList> GetComposeDeploymentStatusPagedListAsync (this System.Fabric.FabricClient.QueryClient client, Microsoft.ServiceFabric.Preview.Client.Description.ComposeDeploymentStatusQueryDescription composeDeploymentQueryDescription, TimeSpan timeout, System.Threading.CancellationToken cancellationToken);
static member GetComposeDeploymentStatusPagedListAsync : System.Fabric.FabricClient.QueryClient * Microsoft.ServiceFabric.Preview.Client.Description.ComposeDeploymentStatusQueryDescription * TimeSpan * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.ServiceFabric.Preview.Client.Query.ComposeDeploymentStatusList>
<Extension()>
Public Function GetComposeDeploymentStatusPagedListAsync (client As FabricClient.QueryClient, composeDeploymentQueryDescription As ComposeDeploymentStatusQueryDescription, timeout As TimeSpan, cancellationToken As CancellationToken) As Task(Of ComposeDeploymentStatusList)

Parameters

composeDeploymentQueryDescription
ComposeDeploymentStatusQueryDescription

The ComposeDeploymentStatusQueryDescription that determines which compose deployments should be queried.

timeout
TimeSpan

Defines the maximum amount of time the system will allow this operation to continue before returning TimeoutException.

cancellationToken
CancellationToken

The CancellationToken that the operation is observing. It can be used to propagate notification that the operation should be canceled.

Returns

A Task that represents the asynchronous query operation. The value of TResult parameter is an ComposeDeploymentStatusList that represents the list of compose deployments that respect the filters in the ComposeDeploymentStatusQueryDescription and fit the page. If the provided query description has no matching compose deployments, it will return a list of 0 entries.

Exceptions

Applies to