Skip to main content

resource_provider_states

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

Overview

Nameresource_provider_states
TypeResource
Idazure_stack.network_admin.resource_provider_states

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
namestringThe name of the resource
propertiesobjectAdmin overview properties.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionIdGet an overview of the state of the network resource provider.

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
subscriptionIdstringThe ID of the target subscription.

SELECT examples

Get an overview of the state of the network resource provider.

SELECT
id,
name,
properties,
type
FROM azure_stack.network_admin.resource_provider_states
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;