manifests
Creates, updates, deletes, gets or lists a manifests
resource.
Overview
Name | manifests |
Type | Resource |
Id | azure_stack.subscriptions_admin.manifests |
Fields
The following fields are returned by SELECT
queries:
- get
- list
Name | Datatype | Description |
---|---|---|
name | string | The unique identifier of the registration. |
alwaysRoutable | boolean | A value indicating whether the manifest is always routable by all subscriptions. |
displayName | string | The display name. |
enabled | boolean | A value indicating whether this resource provider is enabled. |
extensionCollection | object | The extensions. |
linkedNotificationRules | object | The linked notification rules. |
metadata | object | The metadata. |
namespace | string | The namespace. |
providerAuthorization | object | The resource provider authorization. |
providerLocation | string | The location of the provider. |
providerType | string | The type of the provider. |
provisioningState | string | The provisioning state. |
resourceGroupName | string | The name of the resource group. |
resourceHydrationAccounts | object | The resource hydration accounts. |
resourceLocation | string | The location of the resource. |
resourceTags | object | The resource tags. |
resourceTypes | object | The resource types |
routingResourceManagerType | string | The routing resource manager type. |
subscriptionId | string | The subscription ID under which RP is registered. |
Name | Datatype | Description |
---|---|---|
name | string | The unique identifier of the registration. |
alwaysRoutable | boolean | A value indicating whether the manifest is always routable by all subscriptions. |
displayName | string | The display name. |
enabled | boolean | A value indicating whether this resource provider is enabled. |
extensionCollection | object | The extensions. |
linkedNotificationRules | object | The linked notification rules. |
metadata | object | The metadata. |
namespace | string | The namespace. |
providerAuthorization | object | The resource provider authorization. |
providerLocation | string | The location of the provider. |
providerType | string | The type of the provider. |
provisioningState | string | The provisioning state. |
resourceGroupName | string | The name of the resource group. |
resourceHydrationAccounts | object | The resource hydration accounts. |
resourceLocation | string | The location of the resource. |
resourceTags | object | The resource tags. |
resourceTypes | object | The resource types |
routingResourceManagerType | string | The routing resource manager type. |
subscriptionId | string | The subscription ID under which RP is registered. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , manifestName | Get the specified manifest. | |
list | select | subscriptionId | Get a list of all manifests. |
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 |
---|---|---|
manifestName | string | The manifest name. |
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 manifest.
SELECT
name,
alwaysRoutable,
displayName,
enabled,
extensionCollection,
linkedNotificationRules,
metadata,
namespace,
providerAuthorization,
providerLocation,
providerType,
provisioningState,
resourceGroupName,
resourceHydrationAccounts,
resourceLocation,
resourceTags,
resourceTypes,
routingResourceManagerType,
subscriptionId
FROM azure_stack.subscriptions_admin.manifests
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND manifestName = '{{ manifestName }}' -- required
;
Get a list of all manifests.
SELECT
name,
alwaysRoutable,
displayName,
enabled,
extensionCollection,
linkedNotificationRules,
metadata,
namespace,
providerAuthorization,
providerLocation,
providerType,
provisioningState,
resourceGroupName,
resourceHydrationAccounts,
resourceLocation,
resourceTags,
resourceTypes,
routingResourceManagerType,
subscriptionId
FROM azure_stack.subscriptions_admin.manifests
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;