Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Bicep resource definition
The billingAccounts/billingProfiles/policies resource type can be deployed with operations that target:
- Tenant - See tenant deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Billing/billingAccounts/billingProfiles/policies resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.Billing/billingAccounts/billingProfiles/policies@2019-10-01-preview' = {
parent: resourceSymbolicName
name: 'default'
properties: {
marketplacePurchases: 'string'
reservationPurchases: 'string'
viewCharges: 'string'
}
}
Property Values
Microsoft.Billing/billingAccounts/billingProfiles/policies
Name | Description | Value |
---|---|---|
name | The resource name | 'default' (required) |
parent | In Bicep, you can specify the parent resource for a child resource. You only need to add this property when the child resource is declared outside of the parent resource. For more information, see Child resource outside parent resource. |
Symbolic name for resource of type: billingAccounts/billingProfiles |
properties | The properties of a policy. | PolicyProperties |
PolicyProperties
Name | Description | Value |
---|---|---|
marketplacePurchases | The policy that controls whether Azure marketplace purchases are allowed for a billing profile. | 'AllAllowed' 'NotAllowed' 'OnlyFreeAllowed' |
reservationPurchases | The policy that controls whether Azure reservation purchases are allowed for a billing profile. | 'Allowed' 'NotAllowed' |
viewCharges | The policy that controls whether users with Azure RBAC access to a subscription can view its charges. | 'Allowed' 'NotAllowed' |
ARM template resource definition
The billingAccounts/billingProfiles/policies resource type can be deployed with operations that target:
- Tenant - See tenant deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Billing/billingAccounts/billingProfiles/policies resource, add the following JSON to your template.
{
"type": "Microsoft.Billing/billingAccounts/billingProfiles/policies",
"apiVersion": "2019-10-01-preview",
"name": "string",
"properties": {
"marketplacePurchases": "string",
"reservationPurchases": "string",
"viewCharges": "string"
}
}
Property Values
Microsoft.Billing/billingAccounts/billingProfiles/policies
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2019-10-01-preview' |
name | The resource name | 'default' (required) |
properties | The properties of a policy. | PolicyProperties |
type | The resource type | 'Microsoft.Billing/billingAccounts/billingProfiles/policies' |
PolicyProperties
Name | Description | Value |
---|---|---|
marketplacePurchases | The policy that controls whether Azure marketplace purchases are allowed for a billing profile. | 'AllAllowed' 'NotAllowed' 'OnlyFreeAllowed' |
reservationPurchases | The policy that controls whether Azure reservation purchases are allowed for a billing profile. | 'Allowed' 'NotAllowed' |
viewCharges | The policy that controls whether users with Azure RBAC access to a subscription can view its charges. | 'Allowed' 'NotAllowed' |
Usage Examples
Terraform (AzAPI provider) resource definition
The billingAccounts/billingProfiles/policies resource type can be deployed with operations that target:
- Tenant
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Billing/billingAccounts/billingProfiles/policies resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Billing/billingAccounts/billingProfiles/policies@2019-10-01-preview"
name = "string"
parent_id = "string"
body = {
properties = {
marketplacePurchases = "string"
reservationPurchases = "string"
viewCharges = "string"
}
}
}
Property Values
Microsoft.Billing/billingAccounts/billingProfiles/policies
Name | Description | Value |
---|---|---|
name | The resource name | 'default' (required) |
parent_id | The ID of the resource that is the parent for this resource. | ID for resource of type: billingAccounts/billingProfiles |
properties | The properties of a policy. | PolicyProperties |
type | The resource type | "Microsoft.Billing/billingAccounts/billingProfiles/policies@2019-10-01-preview" |
PolicyProperties
Name | Description | Value |
---|---|---|
marketplacePurchases | The policy that controls whether Azure marketplace purchases are allowed for a billing profile. | 'AllAllowed' 'NotAllowed' 'OnlyFreeAllowed' |
reservationPurchases | The policy that controls whether Azure reservation purchases are allowed for a billing profile. | 'Allowed' 'NotAllowed' |
viewCharges | The policy that controls whether users with Azure RBAC access to a subscription can view its charges. | 'Allowed' 'NotAllowed' |