delegated_providers
Creates, updates, deletes, gets or lists a delegated_providers
resource.
Overview
Name | delegated_providers |
Type | Resource |
Id | azure_stack.subscriptions_admin.delegated_providers |
Fields
The following fields are returned by SELECT
queries:
- get
- list
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified identifier. |
delegatedProviderSubscriptionId | string | Parent DelegatedProvider subscription identifier. |
displayName | string | Subscription name. |
externalReferenceId | string | External reference identifier. |
offerId | string | Identifier of the offer under the scope of a delegated provider. |
owner | string | Subscription owner. |
routingResourceManagerType | string | Routing resource manager type. |
state | string | Subscription state. |
subscriptionId | string | Subscription identifier. |
tenantId | string | Directory tenant identifier. |
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified identifier. |
delegatedProviderSubscriptionId | string | Parent DelegatedProvider subscription identifier. |
displayName | string | Subscription name. |
externalReferenceId | string | External reference identifier. |
offerId | string | Identifier of the offer under the scope of a delegated provider. |
owner | string | Subscription owner. |
routingResourceManagerType | string | Routing resource manager type. |
state | string | Subscription state. |
subscriptionId | string | Subscription identifier. |
tenantId | string | Directory tenant identifier. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , delegatedProvider | Get the specified delegated provider. | |
list | select | subscriptionId | Get 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.
Name | Datatype | Description |
---|---|---|
delegatedProvider | string | DelegatedProvider identifier. |
subscriptionId | string | Subscription credentials which uniquely identify Microsoft Azure subscription.The subscription ID forms part of the URI for every service call. |
SELECT
examples
- get
- list
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
;
Get the list of delegatedProviders.
SELECT
id,
delegatedProviderSubscriptionId,
displayName,
externalReferenceId,
offerId,
owner,
routingResourceManagerType,
state,
subscriptionId,
tenantId
FROM azure_stack.subscriptions_admin.delegated_providers
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;