LogicWorkflowVersionCollection Class

Definition

A class representing a collection of LogicWorkflowVersionResource and their operations. Each LogicWorkflowVersionResource in the collection will belong to the same instance of LogicWorkflowResource. To get a LogicWorkflowVersionCollection instance call the GetLogicWorkflowVersions method from an instance of LogicWorkflowResource.

public class LogicWorkflowVersionCollection : Azure.ResourceManager.ArmCollection, System.Collections.Generic.IAsyncEnumerable<Azure.ResourceManager.Logic.LogicWorkflowVersionResource>, System.Collections.Generic.IEnumerable<Azure.ResourceManager.Logic.LogicWorkflowVersionResource>
type LogicWorkflowVersionCollection = class
    inherit ArmCollection
    interface seq<LogicWorkflowVersionResource>
    interface IEnumerable
    interface IAsyncEnumerable<LogicWorkflowVersionResource>
Public Class LogicWorkflowVersionCollection
Inherits ArmCollection
Implements IAsyncEnumerable(Of LogicWorkflowVersionResource), IEnumerable(Of LogicWorkflowVersionResource)
Inheritance
LogicWorkflowVersionCollection
Implements

Constructors

LogicWorkflowVersionCollection()

Initializes a new instance of the LogicWorkflowVersionCollection class for mocking.

Properties

Client

Gets the ArmClient this resource client was created from.

(Inherited from ArmCollection)
Diagnostics

Gets the diagnostic options for this resource client.

(Inherited from ArmCollection)
Endpoint

Gets the base uri for this resource client.

(Inherited from ArmCollection)
Id

Gets the resource identifier.

(Inherited from ArmCollection)
Pipeline

Gets the pipeline for this resource client.

(Inherited from ArmCollection)

Methods

Exists(String, CancellationToken)

Checks to see if the resource exists in azure.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/versions/{versionId}
  • Operation Id: WorkflowVersions_Get
ExistsAsync(String, CancellationToken)

Checks to see if the resource exists in azure.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/versions/{versionId}
  • Operation Id: WorkflowVersions_Get
Get(String, CancellationToken)

Gets a workflow version.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/versions/{versionId}
  • Operation Id: WorkflowVersions_Get
GetAll(Nullable<Int32>, CancellationToken)

Gets a list of workflow versions.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/versions
  • Operation Id: WorkflowVersions_List
GetAllAsync(Nullable<Int32>, CancellationToken)

Gets a list of workflow versions.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/versions
  • Operation Id: WorkflowVersions_List
GetAsync(String, CancellationToken)

Gets a workflow version.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/versions/{versionId}
  • Operation Id: WorkflowVersions_Get
GetIfExists(String, CancellationToken)

Tries to get details for this resource from the service.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/versions/{versionId}
  • Operation Id: WorkflowVersions_Get
GetIfExistsAsync(String, CancellationToken)

Tries to get details for this resource from the service.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/versions/{versionId}
  • Operation Id: WorkflowVersions_Get
TryGetApiVersion(ResourceType, String)

Gets the api version override if it has been set for the current client options.

(Inherited from ArmCollection)

Explicit Interface Implementations

IAsyncEnumerable<LogicWorkflowVersionResource>.GetAsyncEnumerator(CancellationToken)

Returns an enumerator that iterates asynchronously through the collection.

IEnumerable.GetEnumerator()

Returns an enumerator that iterates through a collection.

IEnumerable<LogicWorkflowVersionResource>.GetEnumerator()

Returns an enumerator that iterates through the collection.

Applies to