LogicExtensions.GetLogicWorkflows Method

Definition

Overloads

GetLogicWorkflows(ResourceGroupResource)

Gets a collection of LogicWorkflowResources in the ResourceGroupResource. MockingTo mock this method, please mock GetLogicWorkflows() instead.

GetLogicWorkflows(SubscriptionResource, Nullable<Int32>, String, CancellationToken)

Gets a list of workflows by subscription.

  • Request Path: /subscriptions/{subscriptionId}/providers/Microsoft.Logic/workflows
  • Operation Id: Workflows_ListBySubscription

GetLogicWorkflows(ResourceGroupResource)

Source:
LogicExtensions.cs
Source:
LogicExtensions.cs

Gets a collection of LogicWorkflowResources in the ResourceGroupResource. MockingTo mock this method, please mock GetLogicWorkflows() instead.

public static Azure.ResourceManager.Logic.LogicWorkflowCollection GetLogicWorkflows (this Azure.ResourceManager.Resources.ResourceGroupResource resourceGroupResource);
static member GetLogicWorkflows : Azure.ResourceManager.Resources.ResourceGroupResource -> Azure.ResourceManager.Logic.LogicWorkflowCollection
<Extension()>
Public Function GetLogicWorkflows (resourceGroupResource As ResourceGroupResource) As LogicWorkflowCollection

Parameters

resourceGroupResource
ResourceGroupResource

The ResourceGroupResource instance the method will execute against.

Returns

An object representing collection of LogicWorkflowResources and their operations over a LogicWorkflowResource.

Exceptions

resourceGroupResource is null.

Applies to

GetLogicWorkflows(SubscriptionResource, Nullable<Int32>, String, CancellationToken)

Source:
LogicExtensions.cs
Source:
LogicExtensions.cs

Gets a list of workflows by subscription.

  • Request Path: /subscriptions/{subscriptionId}/providers/Microsoft.Logic/workflows
  • Operation Id: Workflows_ListBySubscription
public static Azure.Pageable<Azure.ResourceManager.Logic.LogicWorkflowResource> GetLogicWorkflows (this Azure.ResourceManager.Resources.SubscriptionResource subscriptionResource, int? top = default, string filter = default, System.Threading.CancellationToken cancellationToken = default);
static member GetLogicWorkflows : Azure.ResourceManager.Resources.SubscriptionResource * Nullable<int> * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.Logic.LogicWorkflowResource>
<Extension()>
Public Function GetLogicWorkflows (subscriptionResource As SubscriptionResource, Optional top As Nullable(Of Integer) = Nothing, Optional filter As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of LogicWorkflowResource)

Parameters

subscriptionResource
SubscriptionResource

The SubscriptionResource instance the method will execute against.

top
Nullable<Int32>

The number of items to be included in the result.

filter
String

The filter to apply on the operation. Options for filters include: State, Trigger, and ReferencedResourceId.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

A collection of LogicWorkflowResource that may take multiple service requests to iterate over.

Exceptions

subscriptionResource is null.

Applies to