Skip to main content

manifests

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

Overview

Namemanifests
TypeResource
Idazure_stack.subscriptions_admin.manifests

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringThe unique identifier of the registration.
alwaysRoutablebooleanA value indicating whether the manifest is always routable by all subscriptions.
displayNamestringThe display name.
enabledbooleanA value indicating whether this resource provider is enabled.
extensionCollectionobjectThe extensions.
linkedNotificationRulesobjectThe linked notification rules.
metadataobjectThe metadata.
namespacestringThe namespace.
providerAuthorizationobjectThe resource provider authorization.
providerLocationstringThe location of the provider.
providerTypestringThe type of the provider.
provisioningStatestringThe provisioning state.
resourceGroupNamestringThe name of the resource group.
resourceHydrationAccountsobjectThe resource hydration accounts.
resourceLocationstringThe location of the resource.
resourceTagsobjectThe resource tags.
resourceTypesobjectThe resource types
routingResourceManagerTypestringThe routing resource manager type.
subscriptionIdstringThe subscription ID under which RP is registered.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, manifestNameGet the specified manifest.
listselectsubscriptionIdGet 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.

NameDatatypeDescription
manifestNamestringThe manifest name.
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 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
;