Share via


DeploymentManagerExtensions.GetServiceTopologyResource Method

Definition

Overloads

GetServiceTopologyResource(ArmClient, ResourceIdentifier)

Gets an object representing a ServiceTopologyResource along with the instance operations that can be performed on it but with no data. You can use CreateResourceIdentifier(String, String, String) to create a ServiceTopologyResourceResourceIdentifier from its components.

GetServiceTopologyResource(ResourceGroupResource, String, CancellationToken)

Gets the service topology.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DeploymentManager/serviceTopologies/{serviceTopologyName}
  • Operation Id: ServiceTopologies_Get

GetServiceTopologyResource(ArmClient, ResourceIdentifier)

Source:
DeploymentManagerExtensions.cs

Gets an object representing a ServiceTopologyResource along with the instance operations that can be performed on it but with no data. You can use CreateResourceIdentifier(String, String, String) to create a ServiceTopologyResourceResourceIdentifier from its components.

public static Azure.ResourceManager.DeploymentManager.ServiceTopologyResource GetServiceTopologyResource (this Azure.ResourceManager.ArmClient client, Azure.Core.ResourceIdentifier id);
static member GetServiceTopologyResource : Azure.ResourceManager.ArmClient * Azure.Core.ResourceIdentifier -> Azure.ResourceManager.DeploymentManager.ServiceTopologyResource
<Extension()>
Public Function GetServiceTopologyResource (client As ArmClient, id As ResourceIdentifier) As ServiceTopologyResource

Parameters

client
ArmClient

The ArmClient instance the method will execute against.

id
ResourceIdentifier

The resource ID of the resource to get.

Returns

Returns a ServiceTopologyResource object.

Applies to

GetServiceTopologyResource(ResourceGroupResource, String, CancellationToken)

Source:
DeploymentManagerExtensions.cs

Gets the service topology.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DeploymentManager/serviceTopologies/{serviceTopologyName}
  • Operation Id: ServiceTopologies_Get
public static Azure.Response<Azure.ResourceManager.DeploymentManager.ServiceTopologyResource> GetServiceTopologyResource (this Azure.ResourceManager.Resources.ResourceGroupResource resourceGroupResource, string serviceTopologyName, System.Threading.CancellationToken cancellationToken = default);
static member GetServiceTopologyResource : Azure.ResourceManager.Resources.ResourceGroupResource * string * System.Threading.CancellationToken -> Azure.Response<Azure.ResourceManager.DeploymentManager.ServiceTopologyResource>
<Extension()>
Public Function GetServiceTopologyResource (resourceGroupResource As ResourceGroupResource, serviceTopologyName As String, Optional cancellationToken As CancellationToken = Nothing) As Response(Of ServiceTopologyResource)

Parameters

resourceGroupResource
ResourceGroupResource

The ResourceGroupResource instance the method will execute against.

serviceTopologyName
String

The name of the service topology .

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Exceptions

serviceTopologyName is an empty string, and was expected to be non-empty.

serviceTopologyName is null.

Applies to