ArmClient Class

Definition

Typed client for arm connector.

public class ArmClient : Azure.Connectors.Sdk.ConnectorClientBase
type ArmClient = class
    inherit ConnectorClientBase
Public Class ArmClient
Inherits ConnectorClientBase
Inheritance

Constructors

Name Description
ArmClient()
ArmClient(String)

Creates a new ArmClient with the specified connection runtime URL string. Uses ManagedIdentityCredential by default.

ArmClient(Uri, TokenCredential, ConnectorClientOptions)

Creates a new ArmClient with the specified connection runtime URL and credential.

ArmClient(Uri, TokenCredential)

Creates a new ArmClient with the specified connection runtime URL and credential.

ArmClient(Uri)

Creates a new ArmClient with the specified connection runtime URL. Uses ManagedIdentityCredential by default.

Properties

Name Description
ConnectorName
Pipeline

Gets the HTTP pipeline for making connector requests.

(Inherited from ConnectorClientBase)

Methods

Name Description
CallConnectorAsync(HttpMethod, String, Object, CancellationToken)

Sends a connector API request with no response body. Uses the Azure.Core HttpPipeline for retry, authentication, and diagnostics.

(Inherited from ConnectorClientBase)
CallConnectorAsync<TResponse>(HttpMethod, String, Object, CancellationToken)

Sends a connector API request and deserializes the JSON response. Uses the Azure.Core HttpPipeline for retry, authentication, and diagnostics.

(Inherited from ConnectorClientBase)
DeploymentOperationsGetAsync(String, String, String, String, CancellationToken)

Read a template deployment operation

DeploymentOperationsListAsync(String, String, String, Nullable<Int32>, CancellationToken)

Lists template deployment operations

DeploymentsCancelAsync(String, String, String, CancellationToken)

Cancel a template deployment

DeploymentsCreateOrUpdateAsync(String, String, String, Deployment, Nullable<Boolean>, CancellationToken)

Create or update a template deployment

DeploymentsDeleteAsync(String, String, String, CancellationToken)

Delete template deployment

DeploymentsExportTemplateAsync(String, String, String, CancellationToken)

Export deployment template

DeploymentsGetAsync(String, String, String, Nullable<Boolean>, CancellationToken)

Read a template deployment

DeploymentsListAsync(String, String, String, Nullable<Int32>, CancellationToken)

List template deployments

DeploymentsValidateAsync(String, String, String, Deployment, CancellationToken)

Validate a template deployment

Dispose() (Inherited from ConnectorClientBase)
Dispose(Boolean)

Disposes the connector client resources.

(Inherited from ConnectorClientBase)
ProviderResourcesGetByIdAsync(String, String, String, String, CancellationToken)

Read a resource in provider

ProviderResourcesInvokeAsync(String, String, String, ProviderResourcesInvokeInput, String, CancellationToken)

Invoke resource operation in provider

ProvidersGetAsync(String, String, String, CancellationToken)

Read resource provider

ProvidersListAsync(String, Nullable<Int32>, String, CancellationToken)

List resource providers

ProvidersRegisterAsync(String, String, CancellationToken)

Register resource provider

ProvidersUnregisterAsync(String, String, CancellationToken)

Unregister resource provider

ResolveUrl(String)

Resolves a relative path or validates an absolute URL against the connection runtime URL. When the NextLink host matches the connection URL, it's used as-is. When it doesn't match (codeless connectors like ARM return nextLink pointing to the backend host e.g. management.azure.com), the path+query is extracted and routed through the APIM proxy. This is safe because the request still goes through the connection runtime URL with API Hub auth.

(Inherited from ConnectorClientBase)
ResourceGroupsCreateOrUpdateAsync(String, String, ResourceGroup, CancellationToken)

Create or update a resource group

ResourceGroupsDeleteAsync(String, String, CancellationToken)

Delete a resource group

ResourceGroupsExportTemplateAsync(String, String, ExportTemplateRequest, CancellationToken)

Export a resource group template

ResourceGroupsGetAsync(String, String, CancellationToken)

Read a resource group

ResourceGroupsListAsync(String, String, Nullable<Int32>, CancellationToken)

List resource groups

ResourceGroupsListResourcesAsync(String, String, String, String, Nullable<Int32>, CancellationToken)

List resources by resource group

ResourceGroupsPatchAsync(String, String, ResourceGroup, CancellationToken)

Update an existing resource group

ResourcesCreateOrUpdateByIdAsync(String, String, String, String, GenericResource, String, CancellationToken)

Create or update a resource

ResourcesDeleteByIdAsync(String, String, String, String, String, CancellationToken)

Delete a resource

ResourcesGetByIdAsync(String, String, String, String, String, CancellationToken)

Read a resource

ResourcesInvokeAsync(String, String, String, String, String, ResourcesInvokeInput, String, CancellationToken)

Invoke resource operation

ResourcesListAsync(String, String, String, Nullable<Int32>, CancellationToken)

List resources by subscription

SubscriptionsGetAsync(String, CancellationToken)

Read a subscription

SubscriptionsListAsync(CancellationToken)

List subscriptions

SubscriptionsListLocationsAsync(String, CancellationToken)

Lists the subscription locations

TagsCreateOrUpdateAsync(String, String, CancellationToken)

Create or update a subscription resource tag name

TagsCreateOrUpdateValueAsync(String, String, String, CancellationToken)

Create or update a subscription resource tag value

TagsDeleteAsync(String, String, CancellationToken)

Delete a subscription resource tag name

TagsDeleteValueAsync(String, String, String, CancellationToken)

Delete a subscription resource tag value

TagsListAsync(String, CancellationToken)

List subscription resource tags

Applies to