Microsoft.Features (stable:2021-07-01)

2025/12/05 • 11 new, 11 deleted methods

SubscriptionFeatureRegistrations_Get (new)
Description Returns a feature registration
Reference Link ¶

⚼ Request

GET:  /subscriptions/{subscriptionId}/providers/Microsoft.Features/featureProviders/{providerNamespace}/subscriptionFeatureRegistrations/{featureName}
{
api-version: string ,
subscriptionId: string ,
providerNamespace: string ,
featureName: string ,
}

⚐ Response (200)

{
properties:
{
tenantId: string ,
subscriptionId: string ,
featureName: string ,
displayName: string ,
providerNamespace: string ,
state: enum ,
authorizationProfile:
{
requestedTime: string ,
requester: string ,
requesterObjectId: string ,
approvedTime: string ,
approver: string ,
}
,
metadata: object ,
releaseDate: string ,
registrationDate: string ,
documentationLink: string ,
approvalType: enum ,
shouldFeatureDisplayInPortal: boolean ,
description: string ,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details:
[
string ,
]
,
}
,
}
SubscriptionFeatureRegistrations_CreateOrUpdate (new)
Description Create or update a feature registration.
Reference Link ¶

⚼ Request

PUT:  /subscriptions/{subscriptionId}/providers/Microsoft.Features/featureProviders/{providerNamespace}/subscriptionFeatureRegistrations/{featureName}
{
api-version: string ,
subscriptionId: string ,
providerNamespace: string ,
featureName: string ,
SubscriptionFeatureRegistrationType:
{
properties:
{
tenantId: string ,
subscriptionId: string ,
featureName: string ,
displayName: string ,
providerNamespace: string ,
state: enum ,
authorizationProfile:
{
requestedTime: string ,
requester: string ,
requesterObjectId: string ,
approvedTime: string ,
approver: string ,
}
,
metadata: object ,
releaseDate: string ,
registrationDate: string ,
documentationLink: string ,
approvalType: enum ,
shouldFeatureDisplayInPortal: boolean ,
description: string ,
}
,
}
,
}

⚐ Response (200)

{
properties:
{
tenantId: string ,
subscriptionId: string ,
featureName: string ,
displayName: string ,
providerNamespace: string ,
state: enum ,
authorizationProfile:
{
requestedTime: string ,
requester: string ,
requesterObjectId: string ,
approvedTime: string ,
approver: string ,
}
,
metadata: object ,
releaseDate: string ,
registrationDate: string ,
documentationLink: string ,
approvalType: enum ,
shouldFeatureDisplayInPortal: boolean ,
description: string ,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details:
[
string ,
]
,
}
,
}
SubscriptionFeatureRegistrations_Delete (new)
Description Deletes a feature registration
Reference Link ¶

⚼ Request

DELETE:  /subscriptions/{subscriptionId}/providers/Microsoft.Features/featureProviders/{providerNamespace}/subscriptionFeatureRegistrations/{featureName}
{
api-version: string ,
subscriptionId: string ,
providerNamespace: string ,
featureName: string ,
}

⚐ Response (200)

{}

⚐ Response (204)

{}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details:
[
string ,
]
,
}
,
}
SubscriptionFeatureRegistrations_ListBySubscription (new)
Description Returns subscription feature registrations for given subscription and provider namespace.
Reference Link ¶

⚼ Request

GET:  /subscriptions/{subscriptionId}/providers/Microsoft.Features/featureProviders/{providerNamespace}/subscriptionFeatureRegistrations
{
api-version: string ,
subscriptionId: string ,
providerNamespace: string ,
}

⚐ Response (200)

{
nextLink: string ,
value:
[
{
properties:
{
tenantId: string ,
subscriptionId: string ,
featureName: string ,
displayName: string ,
providerNamespace: string ,
state: enum ,
authorizationProfile:
{
requestedTime: string ,
requester: string ,
requesterObjectId: string ,
approvedTime: string ,
approver: string ,
}
,
metadata: object ,
releaseDate: string ,
registrationDate: string ,
documentationLink: string ,
approvalType: enum ,
shouldFeatureDisplayInPortal: boolean ,
description: string ,
}
,
}
,
]
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details:
[
string ,
]
,
}
,
}
SubscriptionFeatureRegistrations_ListAllBySubscription (new)
Description Returns subscription feature registrations for given subscription.
Reference Link ¶

⚼ Request

GET:  /subscriptions/{subscriptionId}/providers/Microsoft.Features/subscriptionFeatureRegistrations
{
api-version: string ,
subscriptionId: string ,
}

⚐ Response (200)

{
nextLink: string ,
value:
[
{
properties:
{
tenantId: string ,
subscriptionId: string ,
featureName: string ,
displayName: string ,
providerNamespace: string ,
state: enum ,
authorizationProfile:
{
requestedTime: string ,
requester: string ,
requesterObjectId: string ,
approvedTime: string ,
approver: string ,
}
,
metadata: object ,
releaseDate: string ,
registrationDate: string ,
documentationLink: string ,
approvalType: enum ,
shouldFeatureDisplayInPortal: boolean ,
description: string ,
}
,
}
,
]
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details:
[
string ,
]
,
}
,
}
ListOperations (new)
Description Lists all of the available Microsoft.Features REST API operations.
Reference Link ¶

⚼ Request

GET:  /providers/Microsoft.Features/operations
{
api-version: string ,
}

⚐ Response (200)

{
value:
[
{
name: string ,
display:
{
provider: string ,
resource: string ,
operation: string ,
}
,
}
,
]
,
nextLink: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details:
[
string ,
]
,
}
,
}
Features_ListAll (new)
Description Gets all the preview features that are available through AFEC for the subscription.
Reference Link ¶

⚼ Request

GET:  /subscriptions/{subscriptionId}/providers/Microsoft.Features/features
{
api-version: string ,
subscriptionId: string ,
}

⚐ Response (200)

{
value:
[
{
name: string ,
properties:
{
state: string ,
}
,
id: string ,
type: string ,
}
,
]
,
nextLink: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details:
[
string ,
]
,
}
,
}
Features_List (new)
Description Gets all the preview features in a provider namespace that are available through AFEC for the subscription.
Reference Link ¶

⚼ Request

GET:  /subscriptions/{subscriptionId}/providers/Microsoft.Features/providers/{resourceProviderNamespace}/features
{
resourceProviderNamespace: string ,
api-version: string ,
subscriptionId: string ,
}

⚐ Response (200)

{
value:
[
{
name: string ,
properties:
{
state: string ,
}
,
id: string ,
type: string ,
}
,
]
,
nextLink: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details:
[
string ,
]
,
}
,
}
Features_Get (new)
Description Gets the preview feature with the specified name.
Reference Link ¶

⚼ Request

GET:  /subscriptions/{subscriptionId}/providers/Microsoft.Features/providers/{resourceProviderNamespace}/features/{featureName}
{
resourceProviderNamespace: string ,
featureName: string ,
api-version: string ,
subscriptionId: string ,
}

⚐ Response (200)

{
name: string ,
properties:
{
state: string ,
}
,
id: string ,
type: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details:
[
string ,
]
,
}
,
}
Features_Register (new)
Description Registers the preview feature for the subscription.
Reference Link ¶

⚼ Request

POST:  /subscriptions/{subscriptionId}/providers/Microsoft.Features/providers/{resourceProviderNamespace}/features/{featureName}/register
{
resourceProviderNamespace: string ,
featureName: string ,
api-version: string ,
subscriptionId: string ,
}

⚐ Response (200)

{
name: string ,
properties:
{
state: string ,
}
,
id: string ,
type: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details:
[
string ,
]
,
}
,
}
Features_Unregister (new)
Description Unregisters the preview feature for the subscription.
Reference Link ¶

⚼ Request

POST:  /subscriptions/{subscriptionId}/providers/Microsoft.Features/providers/{resourceProviderNamespace}/features/{featureName}/unregister
{
resourceProviderNamespace: string ,
featureName: string ,
api-version: string ,
subscriptionId: string ,
}

⚐ Response (200)

{
name: string ,
properties:
{
state: string ,
}
,
id: string ,
type: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details:
[
string ,
]
,
}
,
}
SubscriptionFeatureRegistrations_Get (removed)
Description Returns a feature registration
Reference Link ¶

⚼ Request

GET:  /subscriptions/{subscriptionId}/providers/Microsoft.Features/featureProviders/{providerNamespace}/subscriptionFeatureRegistrations/{featureName}
{
api-version: string ,
subscriptionId: string ,
providerNamespace: string ,
featureName: string ,
}

⚐ Response (200)

{
properties:
{
tenantId: string ,
subscriptionId: string ,
featureName: string ,
displayName: string ,
providerNamespace: string ,
state: enum ,
authorizationProfile:
{
requestedTime: string ,
requester: string ,
requesterObjectId: string ,
approvedTime: string ,
approver: string ,
}
,
metadata: object ,
releaseDate: string ,
registrationDate: string ,
documentationLink: string ,
approvalType: enum ,
shouldFeatureDisplayInPortal: boolean ,
description: string ,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details:
[
string ,
]
,
}
,
}
SubscriptionFeatureRegistrations_CreateOrUpdate (removed)
Description Create or update a feature registration.
Reference Link ¶

⚼ Request

PUT:  /subscriptions/{subscriptionId}/providers/Microsoft.Features/featureProviders/{providerNamespace}/subscriptionFeatureRegistrations/{featureName}
{
api-version: string ,
subscriptionId: string ,
providerNamespace: string ,
featureName: string ,
SubscriptionFeatureRegistrationType:
{
properties:
{
tenantId: string ,
subscriptionId: string ,
featureName: string ,
displayName: string ,
providerNamespace: string ,
state: enum ,
authorizationProfile:
{
requestedTime: string ,
requester: string ,
requesterObjectId: string ,
approvedTime: string ,
approver: string ,
}
,
metadata: object ,
releaseDate: string ,
registrationDate: string ,
documentationLink: string ,
approvalType: enum ,
shouldFeatureDisplayInPortal: boolean ,
description: string ,
}
,
}
,
}

⚐ Response (200)

{
properties:
{
tenantId: string ,
subscriptionId: string ,
featureName: string ,
displayName: string ,
providerNamespace: string ,
state: enum ,
authorizationProfile:
{
requestedTime: string ,
requester: string ,
requesterObjectId: string ,
approvedTime: string ,
approver: string ,
}
,
metadata: object ,
releaseDate: string ,
registrationDate: string ,
documentationLink: string ,
approvalType: enum ,
shouldFeatureDisplayInPortal: boolean ,
description: string ,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details:
[
string ,
]
,
}
,
}
SubscriptionFeatureRegistrations_Delete (removed)
Description Deletes a feature registration
Reference Link ¶

⚼ Request

DELETE:  /subscriptions/{subscriptionId}/providers/Microsoft.Features/featureProviders/{providerNamespace}/subscriptionFeatureRegistrations/{featureName}
{
api-version: string ,
subscriptionId: string ,
providerNamespace: string ,
featureName: string ,
}

⚐ Response (200)

{}

⚐ Response (204)

{}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details:
[
string ,
]
,
}
,
}
SubscriptionFeatureRegistrations_ListBySubscription (removed)
Description Returns subscription feature registrations for given subscription and provider namespace.
Reference Link ¶

⚼ Request

GET:  /subscriptions/{subscriptionId}/providers/Microsoft.Features/featureProviders/{providerNamespace}/subscriptionFeatureRegistrations
{
api-version: string ,
subscriptionId: string ,
providerNamespace: string ,
}

⚐ Response (200)

{
nextLink: string ,
value:
[
{
properties:
{
tenantId: string ,
subscriptionId: string ,
featureName: string ,
displayName: string ,
providerNamespace: string ,
state: enum ,
authorizationProfile:
{
requestedTime: string ,
requester: string ,
requesterObjectId: string ,
approvedTime: string ,
approver: string ,
}
,
metadata: object ,
releaseDate: string ,
registrationDate: string ,
documentationLink: string ,
approvalType: enum ,
shouldFeatureDisplayInPortal: boolean ,
description: string ,
}
,
}
,
]
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details:
[
string ,
]
,
}
,
}
SubscriptionFeatureRegistrations_ListAllBySubscription (removed)
Description Returns subscription feature registrations for given subscription.
Reference Link ¶

⚼ Request

GET:  /subscriptions/{subscriptionId}/providers/Microsoft.Features/subscriptionFeatureRegistrations
{
api-version: string ,
subscriptionId: string ,
}

⚐ Response (200)

{
nextLink: string ,
value:
[
{
properties:
{
tenantId: string ,
subscriptionId: string ,
featureName: string ,
displayName: string ,
providerNamespace: string ,
state: enum ,
authorizationProfile:
{
requestedTime: string ,
requester: string ,
requesterObjectId: string ,
approvedTime: string ,
approver: string ,
}
,
metadata: object ,
releaseDate: string ,
registrationDate: string ,
documentationLink: string ,
approvalType: enum ,
shouldFeatureDisplayInPortal: boolean ,
description: string ,
}
,
}
,
]
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details:
[
string ,
]
,
}
,
}
ListOperations (removed)
Description Lists all of the available Microsoft.Features REST API operations.
Reference Link ¶

⚼ Request

GET:  /providers/Microsoft.Features/operations
{
api-version: string ,
}

⚐ Response (200)

{
value:
[
{
name: string ,
display:
{
provider: string ,
resource: string ,
operation: string ,
}
,
}
,
]
,
nextLink: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details:
[
string ,
]
,
}
,
}
Features_ListAll (removed)
Description Gets all the preview features that are available through AFEC for the subscription.
Reference Link ¶

⚼ Request

GET:  /subscriptions/{subscriptionId}/providers/Microsoft.Features/features
{
api-version: string ,
subscriptionId: string ,
}

⚐ Response (200)

{
value:
[
{
name: string ,
properties:
{
state: string ,
}
,
id: string ,
type: string ,
}
,
]
,
nextLink: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details:
[
string ,
]
,
}
,
}
Features_List (removed)
Description Gets all the preview features in a provider namespace that are available through AFEC for the subscription.
Reference Link ¶

⚼ Request

GET:  /subscriptions/{subscriptionId}/providers/Microsoft.Features/providers/{resourceProviderNamespace}/features
{
resourceProviderNamespace: string ,
api-version: string ,
subscriptionId: string ,
}

⚐ Response (200)

{
value:
[
{
name: string ,
properties:
{
state: string ,
}
,
id: string ,
type: string ,
}
,
]
,
nextLink: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details:
[
string ,
]
,
}
,
}
Features_Get (removed)
Description Gets the preview feature with the specified name.
Reference Link ¶

⚼ Request

GET:  /subscriptions/{subscriptionId}/providers/Microsoft.Features/providers/{resourceProviderNamespace}/features/{featureName}
{
resourceProviderNamespace: string ,
featureName: string ,
api-version: string ,
subscriptionId: string ,
}

⚐ Response (200)

{
name: string ,
properties:
{
state: string ,
}
,
id: string ,
type: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details:
[
string ,
]
,
}
,
}
Features_Register (removed)
Description Registers the preview feature for the subscription.
Reference Link ¶

⚼ Request

POST:  /subscriptions/{subscriptionId}/providers/Microsoft.Features/providers/{resourceProviderNamespace}/features/{featureName}/register
{
resourceProviderNamespace: string ,
featureName: string ,
api-version: string ,
subscriptionId: string ,
}

⚐ Response (200)

{
name: string ,
properties:
{
state: string ,
}
,
id: string ,
type: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details:
[
string ,
]
,
}
,
}
Features_Unregister (removed)
Description Unregisters the preview feature for the subscription.
Reference Link ¶

⚼ Request

POST:  /subscriptions/{subscriptionId}/providers/Microsoft.Features/providers/{resourceProviderNamespace}/features/{featureName}/unregister
{
resourceProviderNamespace: string ,
featureName: string ,
api-version: string ,
subscriptionId: string ,
}

⚐ Response (200)

{
name: string ,
properties:
{
state: string ,
}
,
id: string ,
type: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
details:
[
string ,
]
,
}
,
}