Skip to main content

delegated_providers

Creates, updates, deletes, gets or lists a delegated_providers resource.

Overview

Namedelegated_providers
TypeResource
Idazure_stack.subscriptions_admin.delegated_providers

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified identifier.
delegatedProviderSubscriptionIdstringParent DelegatedProvider subscription identifier.
displayNamestringSubscription name.
externalReferenceIdstringExternal reference identifier.
offerIdstringIdentifier of the offer under the scope of a delegated provider.
ownerstringSubscription owner.
routingResourceManagerTypestringRouting resource manager type.
statestringSubscription state.
subscriptionIdstringSubscription identifier.
tenantIdstringDirectory tenant identifier.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, delegatedProviderGet the specified delegated provider.
listselectsubscriptionIdGet the list of delegatedProviders.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
delegatedProviderstringDelegatedProvider identifier.
subscriptionIdstringSubscription credentials which uniquely identify Microsoft Azure subscription.The subscription ID forms part of the URI for every service call.

SELECT examples

Get the specified delegated provider.

SELECT
id,
delegatedProviderSubscriptionId,
displayName,
externalReferenceId,
offerId,
owner,
routingResourceManagerType,
state,
subscriptionId,
tenantId
FROM azure_stack.subscriptions_admin.delegated_providers
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND delegatedProvider = '{{ delegatedProvider }}' -- required
;