Every API here is available over the APIs.io API and to AI agents over MCP.
{
"swagger": "2.0",
"info": {
"title": "PowerPlatform",
"version": "2020-10-30-preview",
"description": "// (missing-service-description) Add service description",
"x-typespec-generated": [
{
"emitter": "@azure-tools/typespec-autorest"
}
]
},
"schemes": [
"https"
],
"host": "management.azure.com",
"produces": [
"application/json"
],
"consumes": [
"application/json"
],
"security": [
{
"azure_auth": [
"user_impersonation"
]
}
],
"securityDefinitions": {
"azure_auth": {
"type": "oauth2",
"description": "Azure Active Directory OAuth2 Flow.",
"flow": "implicit",
"authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize",
"scopes": {
"user_impersonation": "impersonate your user account"
}
}
},
"tags": [
{
"name": "Operations"
},
{
"name": "Accounts"
},
{
"name": "EnterprisePolicies"
},
{
"name": "PrivateEndpointConnections"
},
{
"name": "PrivateLinkResources"
}
],
"paths": {
"/providers/Microsoft.PowerPlatform/operations": {
"get": {
"operationId": "Operations_List",
"tags": [
"Operations"
],
"description": "Lists all of the available PowerPlatform REST API operations.",
"parameters": [
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "Azure operation completed successfully.",
"schema": {
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/OperationListResult"
}
},
"default": {
"description": "An unexpected error response.",
"schema": {
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Lists all of the available PowerPlatform REST API operations": {
"$ref": "./examples/listOperations.json"
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
}
}
},
"/subscriptions/{subscriptionId}/providers/Microsoft.PowerPlatform/accounts": {
"get": {
"operationId": "Accounts_ListBySubscription",
"tags": [
"Accounts"
],
"description": "Retrieve a list of accounts within a subscription.",
"parameters": [
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter"
}
],
"responses": {
"200": {
"description": "Azure operation completed successfully.",
"schema": {
"$ref": "#/definitions/AccountList"
}
},
"default": {
"description": "An unexpected error response.",
"schema": {
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"List accounts by subscription": {
"$ref": "./examples/listAccountsBySubscription.json"
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
}
}
},
"/subscriptions/{subscriptionId}/providers/Microsoft.PowerPlatform/enterprisePolicies": {
"get": {
"operationId": "EnterprisePolicies_ListBySubscription",
"tags": [
"EnterprisePolicies"
],
"description": "Retrieve a list of EnterprisePolicies within a subscription",
"parameters": [
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter"
}
],
"responses": {
"200": {
"description": "Azure operation completed successfully.",
"schema": {
"$ref": "#/definitions/EnterprisePolicyList"
}
},
"default": {
"description": "An unexpected error response.",
"schema": {
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"List EnterprisePolicies by subscription": {
"$ref": "./examples/listEnterprisePoliciesBySubscription.json"
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.PowerPlatform/accounts": {
"get": {
"operationId": "Accounts_ListByResourceGroup",
"tags": [
"Accounts"
],
"description": "Retrieve a list of accounts within a given resource group.",
"parameters": [
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter"
}
],
"responses": {
"200": {
"description": "Azure operation completed successfully.",
"schema": {
"$ref": "#/definitions/AccountList"
}
},
"default": {
"description": "An unexpected error response.",
"schema": {
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"List accounts by resource group": {
"$ref": "./examples/listAccountsByResourceGroup.json"
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.PowerPlatform/accounts/{accountName}": {
"get": {
"operationId": "Accounts_Get",
"tags": [
"Accounts"
],
"description": "Get information about an account.",
"parameters": [
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter"
},
{
"name": "accountName",
"in": "path",
"description": "Name of the account.",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "Azure operation completed successfully.",
"schema": {
"$ref": "#/definitions/Account"
}
},
"default": {
"description": "An unexpected error response.",
"schema": {
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Get account": {
"$ref": "./examples/getAccount.json"
}
}
},
"put": {
"operationId": "Accounts_CreateOrUpdate",
"tags": [
"Accounts"
],
"description": "Creates an account.",
"parameters": [
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter"
},
{
"name": "accountName",
"in": "path",
"description": "Name of the account.",
"required": true,
"type": "string"
},
{
"name": "parameters",
"in": "body",
"description": "Parameters supplied to create or update an account.",
"required": true,
"schema": {
"$ref": "#/definitions/Account"
}
}
],
"responses": {
"200": {
"description": "Resource 'Account' update operation succeeded",
"schema": {
"$ref": "#/definitions/Account"
}
},
"201": {
"description": "Resource 'Account' create operation succeeded",
"schema": {
"$ref": "#/definitions/Account"
}
},
"default": {
"description": "An unexpected error response.",
"schema": {
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Create or update account": {
"$ref": "./examples/createOrUpdateAccount.json"
}
}
},
"patch": {
"operationId": "Accounts_Update",
"tags": [
"Accounts"
],
"description": "Updates an account.",
"parameters": [
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter"
},
{
"name": "accountName",
"in": "path",
"description": "Name of the account.",
"required": true,
"type": "string"
},
{
"name": "parameters",
"in": "body",
"description": "Parameters supplied to update an account.",
"required": true,
"schema": {
"$ref": "#/definitions/PatchAccount"
}
}
],
"responses": {
"200": {
"description": "Azure operation completed successfully.",
"schema": {
"$ref": "#/definitions/Account"
}
},
"default": {
"description": "An unexpected error response.",
"schema": {
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Update account": {
"$ref": "./examples/updateAccount.json"
}
}
},
"delete": {
"operationId": "Accounts_Delete",
"tags": [
"Accounts"
],
"description": "Delete an account.",
"parameters": [
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter"
},
{
"name": "accountName",
"in": "path",
"description": "Name of the account.",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "Resource deleted successfully."
},
"204": {
"description": "Resource does not exist."
},
"default": {
"description": "An unexpected error response.",
"schema": {
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Delete account": {
"$ref": "./examples/deleteAccount.json"
}
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.PowerPlatform/enterprisePolicies": {
"get": {
"operationId": "EnterprisePolicies_ListByResourceGroup",
"tags": [
"EnterprisePolicies"
],
"description": "Retrieve a list of EnterprisePolicies within a given resource group",
"parameters": [
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter"
}
],
"responses": {
"200": {
"description": "Azure operation completed successfully.",
"schema": {
"$ref": "#/definitions/EnterprisePolicyList"
}
},
"default": {
"description": "An unexpected error response.",
"schema": {
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"List EnterprisePolicies by resource group": {
"$ref": "./examples/listEnterprisePoliciesByResourceGroup.json"
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.PowerPlatform/enterprisePolicies/{enterprisePolicyName}": {
"get": {
"operationId": "EnterprisePolicies_Get",
"tags": [
"EnterprisePolicies"
],
"description": "Get information about an EnterprisePolicy",
"parameters": [
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter"
},
{
"name": "enterprisePolicyName",
"in": "path",
"description": "The EnterprisePolicy name.",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "Azure operation completed successfully.",
"schema": {
"$ref": "#/definitions/EnterprisePolicy"
}
},
"default": {
"description": "An unexpected error response.",
"schema": {
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Get an EnterprisePolicy": {
"$ref": "./examples/getEnterprisePolicy.json"
}
}
},
"put": {
"operationId": "EnterprisePolicies_CreateOrUpdate",
"tags": [
"EnterprisePolicies"
],
"description": "Creates an EnterprisePolicy",
"parameters": [
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter"
},
{
"name": "enterprisePolicyName",
"in": "path",
"description": "The EnterprisePolicy name.",
"required": true,
"type": "string"
},
{
"name": "parameters",
"in": "body",
"description": "Parameters supplied to create or update EnterprisePolicy.",
"required": true,
"schema": {
"$ref": "#/definitions/EnterprisePolicy"
}
}
],
"responses": {
"200": {
"description": "Resource 'EnterprisePolicy' update operation succeeded",
"schema": {
"$ref": "#/definitions/EnterprisePolicy"
}
},
"201": {
"description": "Resource 'EnterprisePolicy' create operation succeeded",
"schema": {
"$ref": "#/definitions/EnterprisePolicy"
}
},
"default": {
"description": "An unexpected error response.",
"schema": {
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Create or update EnterprisePolicy": {
"$ref": "./examples/createOrUpdateEnterprisePolicy.json"
}
}
},
"patch": {
"operationId": "EnterprisePolicies_Update",
"tags": [
"EnterprisePolicies"
],
"description": "Updates an EnterprisePolicy",
"parameters": [
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter"
},
{
"name": "enterprisePolicyName",
"in": "path",
"description": "The EnterprisePolicy name.",
"required": true,
"type": "string"
},
{
"name": "parameters",
"in": "body",
"description": "Parameters supplied to update EnterprisePolicy.",
"required": true,
"schema": {
"$ref": "#/definitions/PatchEnterprisePolicy"
}
}
],
"responses": {
"200": {
"description": "Azure operation completed successfully.",
"schema": {
"$ref": "#/definitions/EnterprisePolicy"
}
},
"default": {
"description": "An unexpected error response.",
"schema": {
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Update EnterprisePolicy": {
"$ref": "./examples/updateEnterprisePolicy.json"
}
}
},
"delete": {
"operationId": "EnterprisePolicies_Delete",
"tags": [
"EnterprisePolicies"
],
"description": "Delete an EnterprisePolicy",
"parameters": [
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter"
},
{
"name": "enterprisePolicyName",
"in": "path",
"description": "The EnterprisePolicy name.",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "Resource deleted successfully."
},
"204": {
"description": "Resource does not exist."
},
"default": {
"description": "An unexpected error response.",
"schema": {
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Delete an EnterprisePolicy": {
"$ref": "./examples/deleteEnterprisePolicy.json"
}
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.PowerPlatform/enterprisePolicies/{enterprisePolicyName}/privateEndpointConnections": {
"get": {
"operationId": "PrivateEndpointConnections_ListByEnterprisePolicy",
"tags": [
"PrivateEndpointConnections"
],
"description": "List all private endpoint connections on an EnterprisePolicy.",
"parameters": [
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter"
},
{
"name": "enterprisePolicyName",
"in": "path",
"description": "The EnterprisePolicy name.",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "Azure operation completed successfully.",
"schema": {
"$ref": "#/definitions/PrivateEndpointConnectionListResult"
}
},
"default": {
"description": "An unexpected error response.",
"schema": {
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Gets private endpoint connection.": {
"$ref": "./examples/PrivateEndpointConnectionListGet.json"
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.PowerPlatform/enterprisePolicies/{enterprisePolicyName}/privateEndpointConnections/{privateEndpointConnectionName}": {
"get": {
"operationId": "PrivateEndpointConnections_Get",
"tags": [
"PrivateEndpointConnections"
],
"description": "Gets a private endpoint connection.",
"parameters": [
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter"
},
{
"name": "enterprisePolicyName",
"in": "path",
"description": "The EnterprisePolicy name.",
"required": true,
"type": "string"
},
{
"name": "privateEndpointConnectionName",
"in": "path",
"description": "The name of the private endpoint connection.",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "Azure operation completed successfully.",
"schema": {
"$ref": "#/definitions/PrivateEndpointConnection"
}
},
"default": {
"description": "An unexpected error response.",
"schema": {
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Gets private endpoint connection.": {
"$ref": "./examples/PrivateEndpointConnectionGet.json"
}
}
},
"put": {
"operationId": "PrivateEndpointConnections_CreateOrUpdate",
"tags": [
"PrivateEndpointConnections"
],
"description": "Approve or reject a private endpoint connection with a given name.",
"parameters": [
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter"
},
{
"name": "enterprisePolicyName",
"in": "path",
"description": "The EnterprisePolicy name.",
"required": true,
"type": "string"
},
{
"name": "privateEndpointConnectionName",
"in": "path",
"description": "The name of the private endpoint connection.",
"required": true,
"type": "string"
},
{
"name": "parameters",
"in": "body",
"description": "Parameters supplied to create or update a private endpoint connection.",
"required": true,
"schema": {
"$ref": "#/definitions/PrivateEndpointConnection"
}
}
],
"responses": {
"200": {
"description": "Resource 'PrivateEndpointConnection' update operation succeeded",
"schema": {
"$ref": "#/definitions/PrivateEndpointConnection"
}
},
"default": {
"description": "An unexpected error response.",
"schema": {
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Approve or reject a private endpoint connection with a given name.": {
"$ref": "./examples/PrivateEndpointConnectionUpdate.json"
}
}
},
"delete": {
"operationId": "PrivateEndpointConnections_Delete",
"tags": [
"PrivateEndpointConnections"
],
"description": "Deletes a private endpoint connection with a given name.",
"parameters": [
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter"
},
{
"name": "enterprisePolicyName",
"in": "path",
"description": "The EnterprisePolicy name.",
"required": true,
"type": "string"
},
{
"name": "privateEndpointConnectionName",
"in": "path",
"description": "The name of the private endpoint connection.",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "Resource deleted successfully."
},
"204": {
"description": "Resource does not exist."
},
"default": {
"description": "An unexpected error response.",
"schema": {
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Deletes a private endpoint connection with a given name.": {
"$ref": "./examples/PrivateEndpointConnectionDelete.json"
}
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.PowerPlatform/enterprisePolicies/{enterprisePolicyName}/privateLinkResources": {
"get": {
"operationId": "PrivateLinkResources_ListByEnterprisePolicy",
"tags": [
"PrivateLinkResources"
],
"description": "Gets the private link resources that need to be created for enterprisePolicy.",
"parameters": [
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter"
},
{
"name": "enterprisePolicyName",
"in": "path",
"description": "The EnterprisePolicy name.",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "Azure operation completed successfully.",
"schema": {
"$ref": "#/definitions/PrivateLinkResourceListResult"
}
},
"default": {
"description": "An unexpected error response.",
"schema": {
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Gets private endpoint connection.": {
"$ref": "./examples/PrivateLinkResourceListGet.json"
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.PowerPlatform/enterprisePolicies/{enterprisePolicyName}/privateLinkResources/{groupName}": {
"get": {
"operationId": "PrivateLinkResources_Get",
"tags": [
"PrivateLinkResources"
],
"description": "Gets the private link resources that need to be created for an EnterprisePolicy.",
"parameters": [
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter"
},
{
"name": "enterprisePolicyName",
"in": "path",
"description": "The EnterprisePolicy name.",
"required": true,
"type": "string"
},
{
# --- truncated at 32 KB (47 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/microsoft-power-platform/refs/heads/main/openapi/_original/microsoft-power-platform-enterprise-policies-openapi.json