LogicExtensions.GetIntegrationServiceEnvironments Method

Definition

Overloads

GetIntegrationServiceEnvironments(SubscriptionResource, Nullable<Int32>, CancellationToken)

Gets a list of integration service environments by subscription.

  • Request Path: /subscriptions/{subscriptionId}/providers/Microsoft.Logic/integrationServiceEnvironments
  • Operation Id: IntegrationServiceEnvironments_ListBySubscription
GetIntegrationServiceEnvironments(ResourceGroupResource)

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

GetIntegrationServiceEnvironments(SubscriptionResource, Nullable<Int32>, CancellationToken)

Source:
LogicExtensions.cs
Source:
LogicExtensions.cs

Gets a list of integration service environments by subscription.

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

Parameters

subscriptionResource
SubscriptionResource

The SubscriptionResource instance the method will execute against.

top
Nullable<Int32>

The number of items to be included in the result.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

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

Exceptions

subscriptionResource is null.

Applies to

GetIntegrationServiceEnvironments(ResourceGroupResource)

Source:
LogicExtensions.cs
Source:
LogicExtensions.cs

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

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

Parameters

resourceGroupResource
ResourceGroupResource

The ResourceGroupResource instance the method will execute against.

Returns

An object representing collection of IntegrationServiceEnvironmentResources and their operations over a IntegrationServiceEnvironmentResource.

Exceptions

resourceGroupResource is null.

Applies to