Microsoft Azure Consumption Commitment.
Uses Azure REST API version 2025-05-01-preview.
Other available API versions: 2025-12-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native billingbenefits [ApiVersion]. See the version guide for details.
Example Usage
Contributor_Create
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var macc = new AzureNative.BillingBenefits.Macc("macc", new()
{
EndAt = "2024-07-01T00:00:00Z",
EntityType = AzureNative.BillingBenefits.MaccEntityType.Contributor,
Location = "global",
MaccName = "macc_contributor_20230614",
PrimaryResourceId = "/subscriptions/10000000-0000-0000-0000-000000000000/resourceGroups/resource_group_name_02/providers/Microsoft.BillingBenefits/maccs/macc_20230614",
ProductCode = "0001d726-0000-0160-330f-a0b98cdbbdc4",
ResourceGroupName = "resource_group_name_01",
StartAt = "2023-07-01T00:00:00Z",
SystemId = "13810867107109237",
Tags =
{
{ "key1", "value1" },
{ "key2", "value2" },
},
});
});
package main
import (
billingbenefits "github.com/pulumi/pulumi-azure-native-sdk/billingbenefits/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := billingbenefits.NewMacc(ctx, "macc", &billingbenefits.MaccArgs{
EndAt: pulumi.String("2024-07-01T00:00:00Z"),
EntityType: pulumi.String(billingbenefits.MaccEntityTypeContributor),
Location: pulumi.String("global"),
MaccName: pulumi.String("macc_contributor_20230614"),
PrimaryResourceId: pulumi.String("/subscriptions/10000000-0000-0000-0000-000000000000/resourceGroups/resource_group_name_02/providers/Microsoft.BillingBenefits/maccs/macc_20230614"),
ProductCode: pulumi.String("0001d726-0000-0160-330f-a0b98cdbbdc4"),
ResourceGroupName: pulumi.String("resource_group_name_01"),
StartAt: pulumi.String("2023-07-01T00:00:00Z"),
SystemId: pulumi.String("13810867107109237"),
Tags: pulumi.StringMap{
"key1": pulumi.String("value1"),
"key2": pulumi.String("value2"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.billingbenefits.Macc;
import com.pulumi.azurenative.billingbenefits.MaccArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var macc = new Macc("macc", MaccArgs.builder()
.endAt("2024-07-01T00:00:00Z")
.entityType("Contributor")
.location("global")
.maccName("macc_contributor_20230614")
.primaryResourceId("/subscriptions/10000000-0000-0000-0000-000000000000/resourceGroups/resource_group_name_02/providers/Microsoft.BillingBenefits/maccs/macc_20230614")
.productCode("0001d726-0000-0160-330f-a0b98cdbbdc4")
.resourceGroupName("resource_group_name_01")
.startAt("2023-07-01T00:00:00Z")
.systemId("13810867107109237")
.tags(Map.ofEntries(
Map.entry("key1", "value1"),
Map.entry("key2", "value2")
))
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const macc = new azure_native.billingbenefits.Macc("macc", {
endAt: "2024-07-01T00:00:00Z",
entityType: azure_native.billingbenefits.MaccEntityType.Contributor,
location: "global",
maccName: "macc_contributor_20230614",
primaryResourceId: "/subscriptions/10000000-0000-0000-0000-000000000000/resourceGroups/resource_group_name_02/providers/Microsoft.BillingBenefits/maccs/macc_20230614",
productCode: "0001d726-0000-0160-330f-a0b98cdbbdc4",
resourceGroupName: "resource_group_name_01",
startAt: "2023-07-01T00:00:00Z",
systemId: "13810867107109237",
tags: {
key1: "value1",
key2: "value2",
},
});
import pulumi
import pulumi_azure_native as azure_native
macc = azure_native.billingbenefits.Macc("macc",
end_at="2024-07-01T00:00:00Z",
entity_type=azure_native.billingbenefits.MaccEntityType.CONTRIBUTOR,
location="global",
macc_name="macc_contributor_20230614",
primary_resource_id="/subscriptions/10000000-0000-0000-0000-000000000000/resourceGroups/resource_group_name_02/providers/Microsoft.BillingBenefits/maccs/macc_20230614",
product_code="0001d726-0000-0160-330f-a0b98cdbbdc4",
resource_group_name="resource_group_name_01",
start_at="2023-07-01T00:00:00Z",
system_id="13810867107109237",
tags={
"key1": "value1",
"key2": "value2",
})
resources:
macc:
type: azure-native:billingbenefits:Macc
properties:
endAt: 2024-07-01T00:00:00Z
entityType: Contributor
location: global
maccName: macc_contributor_20230614
primaryResourceId: /subscriptions/10000000-0000-0000-0000-000000000000/resourceGroups/resource_group_name_02/providers/Microsoft.BillingBenefits/maccs/macc_20230614
productCode: 0001d726-0000-0160-330f-a0b98cdbbdc4
resourceGroupName: resource_group_name_01
startAt: 2023-07-01T00:00:00Z
systemId: '13810867107109237'
tags:
key1: value1
key2: value2
MaccWithMilestones_Create
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var macc = new AzureNative.BillingBenefits.Macc("macc", new()
{
AllowContributors = true,
Commitment = new AzureNative.BillingBenefits.Inputs.CommitmentArgs
{
Amount = 20000,
CurrencyCode = "USD",
Grain = AzureNative.BillingBenefits.CommitmentGrain.FullTerm,
},
DisplayName = "macc 20230614",
EndAt = "2028-05-01T23:59:59Z",
EntityType = AzureNative.BillingBenefits.MaccEntityType.Primary,
Location = "global",
MaccName = "macc_20230614",
Milestones = new[]
{
new AzureNative.BillingBenefits.Inputs.MaccMilestoneArgs
{
Commitment = new AzureNative.BillingBenefits.Inputs.PriceArgs
{
Amount = 10000,
CurrencyCode = "USD",
},
EndAt = "2026-05-31T23:59:59Z",
},
new AzureNative.BillingBenefits.Inputs.MaccMilestoneArgs
{
Commitment = new AzureNative.BillingBenefits.Inputs.PriceArgs
{
Amount = 15000,
CurrencyCode = "USD",
},
EndAt = "2027-05-31T23:59:59Z",
},
},
ProductCode = "0001d726-0000-0160-330f-a0b98cdbbdc4",
ResourceGroupName = "resource_group_name_01",
StartAt = "2025-05-01T00:00:00Z",
SystemId = "13810867107109237",
Tags =
{
{ "key1", "value1" },
{ "key2", "value2" },
},
});
});
package main
import (
billingbenefits "github.com/pulumi/pulumi-azure-native-sdk/billingbenefits/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := billingbenefits.NewMacc(ctx, "macc", &billingbenefits.MaccArgs{
AllowContributors: pulumi.Bool(true),
Commitment: &billingbenefits.CommitmentArgs{
Amount: pulumi.Float64(20000),
CurrencyCode: pulumi.String("USD"),
Grain: pulumi.String(billingbenefits.CommitmentGrainFullTerm),
},
DisplayName: pulumi.String("macc 20230614"),
EndAt: pulumi.String("2028-05-01T23:59:59Z"),
EntityType: pulumi.String(billingbenefits.MaccEntityTypePrimary),
Location: pulumi.String("global"),
MaccName: pulumi.String("macc_20230614"),
Milestones: billingbenefits.MaccMilestoneArray{
&billingbenefits.MaccMilestoneArgs{
Commitment: &billingbenefits.PriceArgs{
Amount: pulumi.Float64(10000),
CurrencyCode: pulumi.String("USD"),
},
EndAt: pulumi.String("2026-05-31T23:59:59Z"),
},
&billingbenefits.MaccMilestoneArgs{
Commitment: &billingbenefits.PriceArgs{
Amount: pulumi.Float64(15000),
CurrencyCode: pulumi.String("USD"),
},
EndAt: pulumi.String("2027-05-31T23:59:59Z"),
},
},
ProductCode: pulumi.String("0001d726-0000-0160-330f-a0b98cdbbdc4"),
ResourceGroupName: pulumi.String("resource_group_name_01"),
StartAt: pulumi.String("2025-05-01T00:00:00Z"),
SystemId: pulumi.String("13810867107109237"),
Tags: pulumi.StringMap{
"key1": pulumi.String("value1"),
"key2": pulumi.String("value2"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.billingbenefits.Macc;
import com.pulumi.azurenative.billingbenefits.MaccArgs;
import com.pulumi.azurenative.billingbenefits.inputs.CommitmentArgs;
import com.pulumi.azurenative.billingbenefits.inputs.MaccMilestoneArgs;
import com.pulumi.azurenative.billingbenefits.inputs.PriceArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var macc = new Macc("macc", MaccArgs.builder()
.allowContributors(true)
.commitment(CommitmentArgs.builder()
.amount(20000.0)
.currencyCode("USD")
.grain("FullTerm")
.build())
.displayName("macc 20230614")
.endAt("2028-05-01T23:59:59Z")
.entityType("Primary")
.location("global")
.maccName("macc_20230614")
.milestones(
MaccMilestoneArgs.builder()
.commitment(PriceArgs.builder()
.amount(10000.0)
.currencyCode("USD")
.build())
.endAt("2026-05-31T23:59:59Z")
.build(),
MaccMilestoneArgs.builder()
.commitment(PriceArgs.builder()
.amount(15000.0)
.currencyCode("USD")
.build())
.endAt("2027-05-31T23:59:59Z")
.build())
.productCode("0001d726-0000-0160-330f-a0b98cdbbdc4")
.resourceGroupName("resource_group_name_01")
.startAt("2025-05-01T00:00:00Z")
.systemId("13810867107109237")
.tags(Map.ofEntries(
Map.entry("key1", "value1"),
Map.entry("key2", "value2")
))
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const macc = new azure_native.billingbenefits.Macc("macc", {
allowContributors: true,
commitment: {
amount: 20000,
currencyCode: "USD",
grain: azure_native.billingbenefits.CommitmentGrain.FullTerm,
},
displayName: "macc 20230614",
endAt: "2028-05-01T23:59:59Z",
entityType: azure_native.billingbenefits.MaccEntityType.Primary,
location: "global",
maccName: "macc_20230614",
milestones: [
{
commitment: {
amount: 10000,
currencyCode: "USD",
},
endAt: "2026-05-31T23:59:59Z",
},
{
commitment: {
amount: 15000,
currencyCode: "USD",
},
endAt: "2027-05-31T23:59:59Z",
},
],
productCode: "0001d726-0000-0160-330f-a0b98cdbbdc4",
resourceGroupName: "resource_group_name_01",
startAt: "2025-05-01T00:00:00Z",
systemId: "13810867107109237",
tags: {
key1: "value1",
key2: "value2",
},
});
import pulumi
import pulumi_azure_native as azure_native
macc = azure_native.billingbenefits.Macc("macc",
allow_contributors=True,
commitment={
"amount": 20000,
"currency_code": "USD",
"grain": azure_native.billingbenefits.CommitmentGrain.FULL_TERM,
},
display_name="macc 20230614",
end_at="2028-05-01T23:59:59Z",
entity_type=azure_native.billingbenefits.MaccEntityType.PRIMARY,
location="global",
macc_name="macc_20230614",
milestones=[
{
"commitment": {
"amount": 10000,
"currency_code": "USD",
},
"end_at": "2026-05-31T23:59:59Z",
},
{
"commitment": {
"amount": 15000,
"currency_code": "USD",
},
"end_at": "2027-05-31T23:59:59Z",
},
],
product_code="0001d726-0000-0160-330f-a0b98cdbbdc4",
resource_group_name="resource_group_name_01",
start_at="2025-05-01T00:00:00Z",
system_id="13810867107109237",
tags={
"key1": "value1",
"key2": "value2",
})
resources:
macc:
type: azure-native:billingbenefits:Macc
properties:
allowContributors: true
commitment:
amount: 20000
currencyCode: USD
grain: FullTerm
displayName: macc 20230614
endAt: 2028-05-01T23:59:59Z
entityType: Primary
location: global
maccName: macc_20230614
milestones:
- commitment:
amount: 10000
currencyCode: USD
endAt: 2026-05-31T23:59:59Z
- commitment:
amount: 15000
currencyCode: USD
endAt: 2027-05-31T23:59:59Z
productCode: 0001d726-0000-0160-330f-a0b98cdbbdc4
resourceGroupName: resource_group_name_01
startAt: 2025-05-01T00:00:00Z
systemId: '13810867107109237'
tags:
key1: value1
key2: value2
Macc_Create
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var macc = new AzureNative.BillingBenefits.Macc("macc", new()
{
AllowContributors = true,
Commitment = new AzureNative.BillingBenefits.Inputs.CommitmentArgs
{
Amount = 20000,
CurrencyCode = "USD",
Grain = AzureNative.BillingBenefits.CommitmentGrain.FullTerm,
},
DisplayName = "macc 20230614",
EndAt = "2024-07-01T00:00:00Z",
EntityType = AzureNative.BillingBenefits.MaccEntityType.Primary,
Location = "global",
MaccName = "macc_20230614",
ProductCode = "0001d726-0000-0160-330f-a0b98cdbbdc4",
ResourceGroupName = "resource_group_name_01",
StartAt = "2023-07-01T00:00:00Z",
SystemId = "13810867107109237",
Tags =
{
{ "key1", "value1" },
{ "key2", "value2" },
},
});
});
package main
import (
billingbenefits "github.com/pulumi/pulumi-azure-native-sdk/billingbenefits/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := billingbenefits.NewMacc(ctx, "macc", &billingbenefits.MaccArgs{
AllowContributors: pulumi.Bool(true),
Commitment: &billingbenefits.CommitmentArgs{
Amount: pulumi.Float64(20000),
CurrencyCode: pulumi.String("USD"),
Grain: pulumi.String(billingbenefits.CommitmentGrainFullTerm),
},
DisplayName: pulumi.String("macc 20230614"),
EndAt: pulumi.String("2024-07-01T00:00:00Z"),
EntityType: pulumi.String(billingbenefits.MaccEntityTypePrimary),
Location: pulumi.String("global"),
MaccName: pulumi.String("macc_20230614"),
ProductCode: pulumi.String("0001d726-0000-0160-330f-a0b98cdbbdc4"),
ResourceGroupName: pulumi.String("resource_group_name_01"),
StartAt: pulumi.String("2023-07-01T00:00:00Z"),
SystemId: pulumi.String("13810867107109237"),
Tags: pulumi.StringMap{
"key1": pulumi.String("value1"),
"key2": pulumi.String("value2"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.billingbenefits.Macc;
import com.pulumi.azurenative.billingbenefits.MaccArgs;
import com.pulumi.azurenative.billingbenefits.inputs.CommitmentArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var macc = new Macc("macc", MaccArgs.builder()
.allowContributors(true)
.commitment(CommitmentArgs.builder()
.amount(20000.0)
.currencyCode("USD")
.grain("FullTerm")
.build())
.displayName("macc 20230614")
.endAt("2024-07-01T00:00:00Z")
.entityType("Primary")
.location("global")
.maccName("macc_20230614")
.productCode("0001d726-0000-0160-330f-a0b98cdbbdc4")
.resourceGroupName("resource_group_name_01")
.startAt("2023-07-01T00:00:00Z")
.systemId("13810867107109237")
.tags(Map.ofEntries(
Map.entry("key1", "value1"),
Map.entry("key2", "value2")
))
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const macc = new azure_native.billingbenefits.Macc("macc", {
allowContributors: true,
commitment: {
amount: 20000,
currencyCode: "USD",
grain: azure_native.billingbenefits.CommitmentGrain.FullTerm,
},
displayName: "macc 20230614",
endAt: "2024-07-01T00:00:00Z",
entityType: azure_native.billingbenefits.MaccEntityType.Primary,
location: "global",
maccName: "macc_20230614",
productCode: "0001d726-0000-0160-330f-a0b98cdbbdc4",
resourceGroupName: "resource_group_name_01",
startAt: "2023-07-01T00:00:00Z",
systemId: "13810867107109237",
tags: {
key1: "value1",
key2: "value2",
},
});
import pulumi
import pulumi_azure_native as azure_native
macc = azure_native.billingbenefits.Macc("macc",
allow_contributors=True,
commitment={
"amount": 20000,
"currency_code": "USD",
"grain": azure_native.billingbenefits.CommitmentGrain.FULL_TERM,
},
display_name="macc 20230614",
end_at="2024-07-01T00:00:00Z",
entity_type=azure_native.billingbenefits.MaccEntityType.PRIMARY,
location="global",
macc_name="macc_20230614",
product_code="0001d726-0000-0160-330f-a0b98cdbbdc4",
resource_group_name="resource_group_name_01",
start_at="2023-07-01T00:00:00Z",
system_id="13810867107109237",
tags={
"key1": "value1",
"key2": "value2",
})
resources:
macc:
type: azure-native:billingbenefits:Macc
properties:
allowContributors: true
commitment:
amount: 20000
currencyCode: USD
grain: FullTerm
displayName: macc 20230614
endAt: 2024-07-01T00:00:00Z
entityType: Primary
location: global
maccName: macc_20230614
productCode: 0001d726-0000-0160-330f-a0b98cdbbdc4
resourceGroupName: resource_group_name_01
startAt: 2023-07-01T00:00:00Z
systemId: '13810867107109237'
tags:
key1: value1
key2: value2
Create Macc Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Macc(name: string, args: MaccArgs, opts?: CustomResourceOptions);@overload
def Macc(resource_name: str,
args: MaccArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Macc(resource_name: str,
opts: Optional[ResourceOptions] = None,
entity_type: Optional[Union[str, MaccEntityType]] = None,
resource_group_name: Optional[str] = None,
end_at: Optional[str] = None,
identity: Optional[ManagedServiceIdentityArgs] = None,
commitment: Optional[CommitmentArgs] = None,
display_name: Optional[str] = None,
allow_contributors: Optional[bool] = None,
automatic_shortfall_suppress_reason: Optional[AutomaticShortfallSuppressReasonArgs] = None,
milestones: Optional[Sequence[MaccMilestoneArgs]] = None,
kind: Optional[str] = None,
location: Optional[str] = None,
macc_name: Optional[str] = None,
billing_account_resource_id: Optional[str] = None,
managed_by: Optional[str] = None,
automatic_shortfall: Optional[Union[str, EnablementMode]] = None,
primary_billing_account_resource_id: Optional[str] = None,
primary_resource_id: Optional[str] = None,
product_code: Optional[str] = None,
plan: Optional[PlanArgs] = None,
resource_id: Optional[str] = None,
shortfall: Optional[ShortfallArgs] = None,
sku: Optional[SkuArgs] = None,
start_at: Optional[str] = None,
status: Optional[Union[str, MaccStatus]] = None,
system_id: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)func NewMacc(ctx *Context, name string, args MaccArgs, opts ...ResourceOption) (*Macc, error)public Macc(string name, MaccArgs args, CustomResourceOptions? opts = null)type: azure-native:billingbenefits:Macc
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args MaccArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args MaccArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args MaccArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MaccArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MaccArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var maccResource = new AzureNative.BillingBenefits.Macc("maccResource", new()
{
EntityType = "string",
ResourceGroupName = "string",
EndAt = "string",
Identity = new AzureNative.BillingBenefits.Inputs.ManagedServiceIdentityArgs
{
Type = "string",
UserAssignedIdentities = new[]
{
"string",
},
},
Commitment = new AzureNative.BillingBenefits.Inputs.CommitmentArgs
{
Amount = 0,
CurrencyCode = "string",
Grain = "string",
},
DisplayName = "string",
AllowContributors = false,
AutomaticShortfallSuppressReason = new AzureNative.BillingBenefits.Inputs.AutomaticShortfallSuppressReasonArgs
{
Code = "string",
Message = "string",
},
Milestones = new[]
{
new AzureNative.BillingBenefits.Inputs.MaccMilestoneArgs
{
AutomaticShortfall = "string",
AutomaticShortfallSuppressReason = new AzureNative.BillingBenefits.Inputs.AutomaticShortfallSuppressReasonArgs
{
Code = "string",
Message = "string",
},
Commitment = new AzureNative.BillingBenefits.Inputs.PriceArgs
{
Amount = 0,
CurrencyCode = "string",
},
EndAt = "string",
MilestoneId = "string",
Shortfall = new AzureNative.BillingBenefits.Inputs.ShortfallArgs
{
BalanceVersion = 0,
Charge = new AzureNative.BillingBenefits.Inputs.CommitmentArgs
{
Amount = 0,
CurrencyCode = "string",
Grain = "string",
},
EndAt = "string",
ProductCode = "string",
ResourceId = "string",
StartAt = "string",
SystemId = "string",
},
Status = "string",
},
},
Kind = "string",
Location = "string",
MaccName = "string",
BillingAccountResourceId = "string",
ManagedBy = "string",
AutomaticShortfall = "string",
PrimaryBillingAccountResourceId = "string",
PrimaryResourceId = "string",
ProductCode = "string",
Plan = new AzureNative.BillingBenefits.Inputs.PlanArgs
{
Name = "string",
Product = "string",
Publisher = "string",
PromotionCode = "string",
Version = "string",
},
ResourceId = "string",
Shortfall = new AzureNative.BillingBenefits.Inputs.ShortfallArgs
{
BalanceVersion = 0,
Charge = new AzureNative.BillingBenefits.Inputs.CommitmentArgs
{
Amount = 0,
CurrencyCode = "string",
Grain = "string",
},
EndAt = "string",
ProductCode = "string",
ResourceId = "string",
StartAt = "string",
SystemId = "string",
},
Sku = new AzureNative.BillingBenefits.Inputs.SkuArgs
{
Name = "string",
Capacity = 0,
Family = "string",
Size = "string",
Tier = AzureNative.BillingBenefits.SkuTier.Free,
},
StartAt = "string",
Status = "string",
SystemId = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := billingbenefits.NewMacc(ctx, "maccResource", &billingbenefits.MaccArgs{
EntityType: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
EndAt: pulumi.String("string"),
Identity: &billingbenefits.ManagedServiceIdentityArgs{
Type: pulumi.String("string"),
UserAssignedIdentities: pulumi.StringArray{
pulumi.String("string"),
},
},
Commitment: &billingbenefits.CommitmentArgs{
Amount: pulumi.Float64(0),
CurrencyCode: pulumi.String("string"),
Grain: pulumi.String("string"),
},
DisplayName: pulumi.String("string"),
AllowContributors: pulumi.Bool(false),
AutomaticShortfallSuppressReason: &billingbenefits.AutomaticShortfallSuppressReasonArgs{
Code: pulumi.String("string"),
Message: pulumi.String("string"),
},
Milestones: billingbenefits.MaccMilestoneArray{
&billingbenefits.MaccMilestoneArgs{
AutomaticShortfall: pulumi.String("string"),
AutomaticShortfallSuppressReason: &billingbenefits.AutomaticShortfallSuppressReasonArgs{
Code: pulumi.String("string"),
Message: pulumi.String("string"),
},
Commitment: &billingbenefits.PriceArgs{
Amount: pulumi.Float64(0),
CurrencyCode: pulumi.String("string"),
},
EndAt: pulumi.String("string"),
MilestoneId: pulumi.String("string"),
Shortfall: &billingbenefits.ShortfallArgs{
BalanceVersion: pulumi.Float64(0),
Charge: &billingbenefits.CommitmentArgs{
Amount: pulumi.Float64(0),
CurrencyCode: pulumi.String("string"),
Grain: pulumi.String("string"),
},
EndAt: pulumi.String("string"),
ProductCode: pulumi.String("string"),
ResourceId: pulumi.String("string"),
StartAt: pulumi.String("string"),
SystemId: pulumi.String("string"),
},
Status: pulumi.String("string"),
},
},
Kind: pulumi.String("string"),
Location: pulumi.String("string"),
MaccName: pulumi.String("string"),
BillingAccountResourceId: pulumi.String("string"),
ManagedBy: pulumi.String("string"),
AutomaticShortfall: pulumi.String("string"),
PrimaryBillingAccountResourceId: pulumi.String("string"),
PrimaryResourceId: pulumi.String("string"),
ProductCode: pulumi.String("string"),
Plan: &billingbenefits.PlanArgs{
Name: pulumi.String("string"),
Product: pulumi.String("string"),
Publisher: pulumi.String("string"),
PromotionCode: pulumi.String("string"),
Version: pulumi.String("string"),
},
ResourceId: pulumi.String("string"),
Shortfall: &billingbenefits.ShortfallArgs{
BalanceVersion: pulumi.Float64(0),
Charge: &billingbenefits.CommitmentArgs{
Amount: pulumi.Float64(0),
CurrencyCode: pulumi.String("string"),
Grain: pulumi.String("string"),
},
EndAt: pulumi.String("string"),
ProductCode: pulumi.String("string"),
ResourceId: pulumi.String("string"),
StartAt: pulumi.String("string"),
SystemId: pulumi.String("string"),
},
Sku: &billingbenefits.SkuArgs{
Name: pulumi.String("string"),
Capacity: pulumi.Int(0),
Family: pulumi.String("string"),
Size: pulumi.String("string"),
Tier: billingbenefits.SkuTierFree,
},
StartAt: pulumi.String("string"),
Status: pulumi.String("string"),
SystemId: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var maccResource = new Macc("maccResource", MaccArgs.builder()
.entityType("string")
.resourceGroupName("string")
.endAt("string")
.identity(ManagedServiceIdentityArgs.builder()
.type("string")
.userAssignedIdentities("string")
.build())
.commitment(CommitmentArgs.builder()
.amount(0.0)
.currencyCode("string")
.grain("string")
.build())
.displayName("string")
.allowContributors(false)
.automaticShortfallSuppressReason(AutomaticShortfallSuppressReasonArgs.builder()
.code("string")
.message("string")
.build())
.milestones(MaccMilestoneArgs.builder()
.automaticShortfall("string")
.automaticShortfallSuppressReason(AutomaticShortfallSuppressReasonArgs.builder()
.code("string")
.message("string")
.build())
.commitment(PriceArgs.builder()
.amount(0.0)
.currencyCode("string")
.build())
.endAt("string")
.milestoneId("string")
.shortfall(ShortfallArgs.builder()
.balanceVersion(0.0)
.charge(CommitmentArgs.builder()
.amount(0.0)
.currencyCode("string")
.grain("string")
.build())
.endAt("string")
.productCode("string")
.resourceId("string")
.startAt("string")
.systemId("string")
.build())
.status("string")
.build())
.kind("string")
.location("string")
.maccName("string")
.billingAccountResourceId("string")
.managedBy("string")
.automaticShortfall("string")
.primaryBillingAccountResourceId("string")
.primaryResourceId("string")
.productCode("string")
.plan(PlanArgs.builder()
.name("string")
.product("string")
.publisher("string")
.promotionCode("string")
.version("string")
.build())
.resourceId("string")
.shortfall(ShortfallArgs.builder()
.balanceVersion(0.0)
.charge(CommitmentArgs.builder()
.amount(0.0)
.currencyCode("string")
.grain("string")
.build())
.endAt("string")
.productCode("string")
.resourceId("string")
.startAt("string")
.systemId("string")
.build())
.sku(SkuArgs.builder()
.name("string")
.capacity(0)
.family("string")
.size("string")
.tier("Free")
.build())
.startAt("string")
.status("string")
.systemId("string")
.tags(Map.of("string", "string"))
.build());
macc_resource = azure_native.billingbenefits.Macc("maccResource",
entity_type="string",
resource_group_name="string",
end_at="string",
identity={
"type": "string",
"user_assigned_identities": ["string"],
},
commitment={
"amount": 0,
"currency_code": "string",
"grain": "string",
},
display_name="string",
allow_contributors=False,
automatic_shortfall_suppress_reason={
"code": "string",
"message": "string",
},
milestones=[{
"automatic_shortfall": "string",
"automatic_shortfall_suppress_reason": {
"code": "string",
"message": "string",
},
"commitment": {
"amount": 0,
"currency_code": "string",
},
"end_at": "string",
"milestone_id": "string",
"shortfall": {
"balance_version": 0,
"charge": {
"amount": 0,
"currency_code": "string",
"grain": "string",
},
"end_at": "string",
"product_code": "string",
"resource_id": "string",
"start_at": "string",
"system_id": "string",
},
"status": "string",
}],
kind="string",
location="string",
macc_name="string",
billing_account_resource_id="string",
managed_by="string",
automatic_shortfall="string",
primary_billing_account_resource_id="string",
primary_resource_id="string",
product_code="string",
plan={
"name": "string",
"product": "string",
"publisher": "string",
"promotion_code": "string",
"version": "string",
},
resource_id="string",
shortfall={
"balance_version": 0,
"charge": {
"amount": 0,
"currency_code": "string",
"grain": "string",
},
"end_at": "string",
"product_code": "string",
"resource_id": "string",
"start_at": "string",
"system_id": "string",
},
sku={
"name": "string",
"capacity": 0,
"family": "string",
"size": "string",
"tier": azure_native.billingbenefits.SkuTier.FREE,
},
start_at="string",
status="string",
system_id="string",
tags={
"string": "string",
})
const maccResource = new azure_native.billingbenefits.Macc("maccResource", {
entityType: "string",
resourceGroupName: "string",
endAt: "string",
identity: {
type: "string",
userAssignedIdentities: ["string"],
},
commitment: {
amount: 0,
currencyCode: "string",
grain: "string",
},
displayName: "string",
allowContributors: false,
automaticShortfallSuppressReason: {
code: "string",
message: "string",
},
milestones: [{
automaticShortfall: "string",
automaticShortfallSuppressReason: {
code: "string",
message: "string",
},
commitment: {
amount: 0,
currencyCode: "string",
},
endAt: "string",
milestoneId: "string",
shortfall: {
balanceVersion: 0,
charge: {
amount: 0,
currencyCode: "string",
grain: "string",
},
endAt: "string",
productCode: "string",
resourceId: "string",
startAt: "string",
systemId: "string",
},
status: "string",
}],
kind: "string",
location: "string",
maccName: "string",
billingAccountResourceId: "string",
managedBy: "string",
automaticShortfall: "string",
primaryBillingAccountResourceId: "string",
primaryResourceId: "string",
productCode: "string",
plan: {
name: "string",
product: "string",
publisher: "string",
promotionCode: "string",
version: "string",
},
resourceId: "string",
shortfall: {
balanceVersion: 0,
charge: {
amount: 0,
currencyCode: "string",
grain: "string",
},
endAt: "string",
productCode: "string",
resourceId: "string",
startAt: "string",
systemId: "string",
},
sku: {
name: "string",
capacity: 0,
family: "string",
size: "string",
tier: azure_native.billingbenefits.SkuTier.Free,
},
startAt: "string",
status: "string",
systemId: "string",
tags: {
string: "string",
},
});
type: azure-native:billingbenefits:Macc
properties:
allowContributors: false
automaticShortfall: string
automaticShortfallSuppressReason:
code: string
message: string
billingAccountResourceId: string
commitment:
amount: 0
currencyCode: string
grain: string
displayName: string
endAt: string
entityType: string
identity:
type: string
userAssignedIdentities:
- string
kind: string
location: string
maccName: string
managedBy: string
milestones:
- automaticShortfall: string
automaticShortfallSuppressReason:
code: string
message: string
commitment:
amount: 0
currencyCode: string
endAt: string
milestoneId: string
shortfall:
balanceVersion: 0
charge:
amount: 0
currencyCode: string
grain: string
endAt: string
productCode: string
resourceId: string
startAt: string
systemId: string
status: string
plan:
name: string
product: string
promotionCode: string
publisher: string
version: string
primaryBillingAccountResourceId: string
primaryResourceId: string
productCode: string
resourceGroupName: string
resourceId: string
shortfall:
balanceVersion: 0
charge:
amount: 0
currencyCode: string
grain: string
endAt: string
productCode: string
resourceId: string
startAt: string
systemId: string
sku:
capacity: 0
family: string
name: string
size: string
tier: Free
startAt: string
status: string
systemId: string
tags:
string: string
Macc Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Macc resource accepts the following input properties:
- Entity
Type string | Pulumi.Azure Native. Billing Benefits. Macc Entity Type - Represents type of the object being operated on. Possible values are primary or contributor.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Allow
Contributors bool - Setting this to true means multi-entity.
- Automatic
Shortfall string | Pulumi.Azure Native. Billing Benefits. Enablement Mode - Setting this to 'Enable' enables automatic shortfall charging when commitment is not met.
- Automatic
Shortfall Pulumi.Suppress Reason Azure Native. Billing Benefits. Inputs. Automatic Shortfall Suppress Reason - Optional field to record suppression reason for automatic shortfall.
- Billing
Account stringResource Id - Fully-qualified identifier of the billing account where the MACC is applied. Present only for Enterprise Agreement customers. Format must be Azure Resource ID: /providers/Microsoft.Billing/billingAccounts/{acctId:orgId}
- Commitment
Pulumi.
Azure Native. Billing Benefits. Inputs. Commitment - Commitment towards the benefit.
- Display
Name string - Display name
- End
At string - Must be end of month. Timestamp must be in the ISO date format YYYY-MM-DDT23:59:59Z.
- Identity
Pulumi.
Azure Native. Billing Benefits. Inputs. Managed Service Identity - Managed service identity (system assigned and/or user assigned identities)
- Kind string
- Metadata used by portal/tooling/etc to render different UX experiences for resources of the same type. E.g. ApiApps are a kind of Microsoft.Web/sites type. If supported, the resource provider must validate and persist this value.
- Location string
- The geo-location where the resource lives
- Macc
Name string - Name of primary MACC.
- Managed
By string - The fully qualified resource ID of the resource that manages this resource. Indicates if this resource is managed by another Azure resource. If this is present, complete mode deployment will not delete the resource if it is removed from the template since it is managed by another resource.
- Milestones
List<Pulumi.
Azure Native. Billing Benefits. Inputs. Macc Milestone> - List of milestones associated with this MACC.
- Plan
Pulumi.
Azure Native. Billing Benefits. Inputs. Plan - Plan for the resource.
- Primary
Billing stringAccount Resource Id - Fully-qualified billing account resource identifier of the primary MACC. Format must be Azure Resource ID: /providers/Microsoft.Billing/billingAccounts/{acctId:orgId}.
- Primary
Resource stringId - Fully-qualified resource identifier of the primary MACC. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/maccs/{maccName}.
- Product
Code string - Represents catalog UPN.
- Resource
Id string - This is the resource identifier of either the primary MACC or the contributor. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/maccs/{maccName}.
- Shortfall
Pulumi.
Azure Native. Billing Benefits. Inputs. Shortfall - MACC shortfall
- Sku
Pulumi.
Azure Native. Billing Benefits. Inputs. Sku - The resource model definition representing SKU
- Start
At string - Must be start of month. Timestamp must be in the ISO date format YYYY-MM-DDT00:00:00Z.
- Status
string | Pulumi.
Azure Native. Billing Benefits. Macc Status - Represents the current status of the MACC.
- System
Id string - This is the globally unique identifier of the MACC which will not change for the lifetime of the MACC.
- Dictionary<string, string>
- Resource tags.
- Entity
Type string | MaccEntity Type - Represents type of the object being operated on. Possible values are primary or contributor.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Allow
Contributors bool - Setting this to true means multi-entity.
- Automatic
Shortfall string | EnablementMode - Setting this to 'Enable' enables automatic shortfall charging when commitment is not met.
- Automatic
Shortfall AutomaticSuppress Reason Shortfall Suppress Reason Args - Optional field to record suppression reason for automatic shortfall.
- Billing
Account stringResource Id - Fully-qualified identifier of the billing account where the MACC is applied. Present only for Enterprise Agreement customers. Format must be Azure Resource ID: /providers/Microsoft.Billing/billingAccounts/{acctId:orgId}
- Commitment
Commitment
Args - Commitment towards the benefit.
- Display
Name string - Display name
- End
At string - Must be end of month. Timestamp must be in the ISO date format YYYY-MM-DDT23:59:59Z.
- Identity
Managed
Service Identity Args - Managed service identity (system assigned and/or user assigned identities)
- Kind string
- Metadata used by portal/tooling/etc to render different UX experiences for resources of the same type. E.g. ApiApps are a kind of Microsoft.Web/sites type. If supported, the resource provider must validate and persist this value.
- Location string
- The geo-location where the resource lives
- Macc
Name string - Name of primary MACC.
- Managed
By string - The fully qualified resource ID of the resource that manages this resource. Indicates if this resource is managed by another Azure resource. If this is present, complete mode deployment will not delete the resource if it is removed from the template since it is managed by another resource.
- Milestones
[]Macc
Milestone Args - List of milestones associated with this MACC.
- Plan
Plan
Args - Plan for the resource.
- Primary
Billing stringAccount Resource Id - Fully-qualified billing account resource identifier of the primary MACC. Format must be Azure Resource ID: /providers/Microsoft.Billing/billingAccounts/{acctId:orgId}.
- Primary
Resource stringId - Fully-qualified resource identifier of the primary MACC. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/maccs/{maccName}.
- Product
Code string - Represents catalog UPN.
- Resource
Id string - This is the resource identifier of either the primary MACC or the contributor. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/maccs/{maccName}.
- Shortfall
Shortfall
Args - MACC shortfall
- Sku
Sku
Args - The resource model definition representing SKU
- Start
At string - Must be start of month. Timestamp must be in the ISO date format YYYY-MM-DDT00:00:00Z.
- Status
string | Macc
Status - Represents the current status of the MACC.
- System
Id string - This is the globally unique identifier of the MACC which will not change for the lifetime of the MACC.
- map[string]string
- Resource tags.
- entity
Type String | MaccEntity Type - Represents type of the object being operated on. Possible values are primary or contributor.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- allow
Contributors Boolean - Setting this to true means multi-entity.
- automatic
Shortfall String | EnablementMode - Setting this to 'Enable' enables automatic shortfall charging when commitment is not met.
- automatic
Shortfall AutomaticSuppress Reason Shortfall Suppress Reason - Optional field to record suppression reason for automatic shortfall.
- billing
Account StringResource Id - Fully-qualified identifier of the billing account where the MACC is applied. Present only for Enterprise Agreement customers. Format must be Azure Resource ID: /providers/Microsoft.Billing/billingAccounts/{acctId:orgId}
- commitment Commitment
- Commitment towards the benefit.
- display
Name String - Display name
- end
At String - Must be end of month. Timestamp must be in the ISO date format YYYY-MM-DDT23:59:59Z.
- identity
Managed
Service Identity - Managed service identity (system assigned and/or user assigned identities)
- kind String
- Metadata used by portal/tooling/etc to render different UX experiences for resources of the same type. E.g. ApiApps are a kind of Microsoft.Web/sites type. If supported, the resource provider must validate and persist this value.
- location String
- The geo-location where the resource lives
- macc
Name String - Name of primary MACC.
- managed
By String - The fully qualified resource ID of the resource that manages this resource. Indicates if this resource is managed by another Azure resource. If this is present, complete mode deployment will not delete the resource if it is removed from the template since it is managed by another resource.
- milestones
List<Macc
Milestone> - List of milestones associated with this MACC.
- plan Plan
- Plan for the resource.
- primary
Billing StringAccount Resource Id - Fully-qualified billing account resource identifier of the primary MACC. Format must be Azure Resource ID: /providers/Microsoft.Billing/billingAccounts/{acctId:orgId}.
- primary
Resource StringId - Fully-qualified resource identifier of the primary MACC. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/maccs/{maccName}.
- product
Code String - Represents catalog UPN.
- resource
Id String - This is the resource identifier of either the primary MACC or the contributor. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/maccs/{maccName}.
- shortfall Shortfall
- MACC shortfall
- sku Sku
- The resource model definition representing SKU
- start
At String - Must be start of month. Timestamp must be in the ISO date format YYYY-MM-DDT00:00:00Z.
- status
String | Macc
Status - Represents the current status of the MACC.
- system
Id String - This is the globally unique identifier of the MACC which will not change for the lifetime of the MACC.
- Map<String,String>
- Resource tags.
- entity
Type string | MaccEntity Type - Represents type of the object being operated on. Possible values are primary or contributor.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- allow
Contributors boolean - Setting this to true means multi-entity.
- automatic
Shortfall string | EnablementMode - Setting this to 'Enable' enables automatic shortfall charging when commitment is not met.
- automatic
Shortfall AutomaticSuppress Reason Shortfall Suppress Reason - Optional field to record suppression reason for automatic shortfall.
- billing
Account stringResource Id - Fully-qualified identifier of the billing account where the MACC is applied. Present only for Enterprise Agreement customers. Format must be Azure Resource ID: /providers/Microsoft.Billing/billingAccounts/{acctId:orgId}
- commitment Commitment
- Commitment towards the benefit.
- display
Name string - Display name
- end
At string - Must be end of month. Timestamp must be in the ISO date format YYYY-MM-DDT23:59:59Z.
- identity
Managed
Service Identity - Managed service identity (system assigned and/or user assigned identities)
- kind string
- Metadata used by portal/tooling/etc to render different UX experiences for resources of the same type. E.g. ApiApps are a kind of Microsoft.Web/sites type. If supported, the resource provider must validate and persist this value.
- location string
- The geo-location where the resource lives
- macc
Name string - Name of primary MACC.
- managed
By string - The fully qualified resource ID of the resource that manages this resource. Indicates if this resource is managed by another Azure resource. If this is present, complete mode deployment will not delete the resource if it is removed from the template since it is managed by another resource.
- milestones
Macc
Milestone[] - List of milestones associated with this MACC.
- plan Plan
- Plan for the resource.
- primary
Billing stringAccount Resource Id - Fully-qualified billing account resource identifier of the primary MACC. Format must be Azure Resource ID: /providers/Microsoft.Billing/billingAccounts/{acctId:orgId}.
- primary
Resource stringId - Fully-qualified resource identifier of the primary MACC. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/maccs/{maccName}.
- product
Code string - Represents catalog UPN.
- resource
Id string - This is the resource identifier of either the primary MACC or the contributor. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/maccs/{maccName}.
- shortfall Shortfall
- MACC shortfall
- sku Sku
- The resource model definition representing SKU
- start
At string - Must be start of month. Timestamp must be in the ISO date format YYYY-MM-DDT00:00:00Z.
- status
string | Macc
Status - Represents the current status of the MACC.
- system
Id string - This is the globally unique identifier of the MACC which will not change for the lifetime of the MACC.
- {[key: string]: string}
- Resource tags.
- entity_
type str | MaccEntity Type - Represents type of the object being operated on. Possible values are primary or contributor.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- allow_
contributors bool - Setting this to true means multi-entity.
- automatic_
shortfall str | EnablementMode - Setting this to 'Enable' enables automatic shortfall charging when commitment is not met.
- automatic_
shortfall_ Automaticsuppress_ reason Shortfall Suppress Reason Args - Optional field to record suppression reason for automatic shortfall.
- billing_
account_ strresource_ id - Fully-qualified identifier of the billing account where the MACC is applied. Present only for Enterprise Agreement customers. Format must be Azure Resource ID: /providers/Microsoft.Billing/billingAccounts/{acctId:orgId}
- commitment
Commitment
Args - Commitment towards the benefit.
- display_
name str - Display name
- end_
at str - Must be end of month. Timestamp must be in the ISO date format YYYY-MM-DDT23:59:59Z.
- identity
Managed
Service Identity Args - Managed service identity (system assigned and/or user assigned identities)
- kind str
- Metadata used by portal/tooling/etc to render different UX experiences for resources of the same type. E.g. ApiApps are a kind of Microsoft.Web/sites type. If supported, the resource provider must validate and persist this value.
- location str
- The geo-location where the resource lives
- macc_
name str - Name of primary MACC.
- managed_
by str - The fully qualified resource ID of the resource that manages this resource. Indicates if this resource is managed by another Azure resource. If this is present, complete mode deployment will not delete the resource if it is removed from the template since it is managed by another resource.
- milestones
Sequence[Macc
Milestone Args] - List of milestones associated with this MACC.
- plan
Plan
Args - Plan for the resource.
- primary_
billing_ straccount_ resource_ id - Fully-qualified billing account resource identifier of the primary MACC. Format must be Azure Resource ID: /providers/Microsoft.Billing/billingAccounts/{acctId:orgId}.
- primary_
resource_ strid - Fully-qualified resource identifier of the primary MACC. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/maccs/{maccName}.
- product_
code str - Represents catalog UPN.
- resource_
id str - This is the resource identifier of either the primary MACC or the contributor. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/maccs/{maccName}.
- shortfall
Shortfall
Args - MACC shortfall
- sku
Sku
Args - The resource model definition representing SKU
- start_
at str - Must be start of month. Timestamp must be in the ISO date format YYYY-MM-DDT00:00:00Z.
- status
str | Macc
Status - Represents the current status of the MACC.
- system_
id str - This is the globally unique identifier of the MACC which will not change for the lifetime of the MACC.
- Mapping[str, str]
- Resource tags.
- entity
Type String | "Primary" | "Contributor" - Represents type of the object being operated on. Possible values are primary or contributor.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- allow
Contributors Boolean - Setting this to true means multi-entity.
- automatic
Shortfall String | "Unknown" | "Enabled" | "Disabled" - Setting this to 'Enable' enables automatic shortfall charging when commitment is not met.
- automatic
Shortfall Property MapSuppress Reason - Optional field to record suppression reason for automatic shortfall.
- billing
Account StringResource Id - Fully-qualified identifier of the billing account where the MACC is applied. Present only for Enterprise Agreement customers. Format must be Azure Resource ID: /providers/Microsoft.Billing/billingAccounts/{acctId:orgId}
- commitment Property Map
- Commitment towards the benefit.
- display
Name String - Display name
- end
At String - Must be end of month. Timestamp must be in the ISO date format YYYY-MM-DDT23:59:59Z.
- identity Property Map
- Managed service identity (system assigned and/or user assigned identities)
- kind String
- Metadata used by portal/tooling/etc to render different UX experiences for resources of the same type. E.g. ApiApps are a kind of Microsoft.Web/sites type. If supported, the resource provider must validate and persist this value.
- location String
- The geo-location where the resource lives
- macc
Name String - Name of primary MACC.
- managed
By String - The fully qualified resource ID of the resource that manages this resource. Indicates if this resource is managed by another Azure resource. If this is present, complete mode deployment will not delete the resource if it is removed from the template since it is managed by another resource.
- milestones List<Property Map>
- List of milestones associated with this MACC.
- plan Property Map
- Plan for the resource.
- primary
Billing StringAccount Resource Id - Fully-qualified billing account resource identifier of the primary MACC. Format must be Azure Resource ID: /providers/Microsoft.Billing/billingAccounts/{acctId:orgId}.
- primary
Resource StringId - Fully-qualified resource identifier of the primary MACC. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/maccs/{maccName}.
- product
Code String - Represents catalog UPN.
- resource
Id String - This is the resource identifier of either the primary MACC or the contributor. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/maccs/{maccName}.
- shortfall Property Map
- MACC shortfall
- sku Property Map
- The resource model definition representing SKU
- start
At String - Must be start of month. Timestamp must be in the ISO date format YYYY-MM-DDT00:00:00Z.
- status
String | "Unknown" | "Scheduled" | "Active" | "Pending" | "Failed" | "Canceled" | "Completed" | "Stopped" | "Pending
Settlement" | "Shortfall Charged" | "Shortfall Waived" - Represents the current status of the MACC.
- system
Id String - This is the globally unique identifier of the MACC which will not change for the lifetime of the MACC.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the Macc resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Etag string
- The etag field is not required. If it is provided in the response body, it must also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - Provisioning state of MACC as assigned by RPaaS. This indicates the last operation's status. For all practical purposes, this can be ignored. For current status of MACC resource, refer to MaccStatus.
- System
Data Pulumi.Azure Native. Billing Benefits. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Azure
Api stringVersion - The Azure API version of the resource.
- Etag string
- The etag field is not required. If it is provided in the response body, it must also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - Provisioning state of MACC as assigned by RPaaS. This indicates the last operation's status. For all practical purposes, this can be ignored. For current status of MACC resource, refer to MaccStatus.
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api StringVersion - The Azure API version of the resource.
- etag String
- The etag field is not required. If it is provided in the response body, it must also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - Provisioning state of MACC as assigned by RPaaS. This indicates the last operation's status. For all practical purposes, this can be ignored. For current status of MACC resource, refer to MaccStatus.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api stringVersion - The Azure API version of the resource.
- etag string
- The etag field is not required. If it is provided in the response body, it must also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- provisioning
State string - Provisioning state of MACC as assigned by RPaaS. This indicates the last operation's status. For all practical purposes, this can be ignored. For current status of MACC resource, refer to MaccStatus.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure_
api_ strversion - The Azure API version of the resource.
- etag str
- The etag field is not required. If it is provided in the response body, it must also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- provisioning_
state str - Provisioning state of MACC as assigned by RPaaS. This indicates the last operation's status. For all practical purposes, this can be ignored. For current status of MACC resource, refer to MaccStatus.
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api StringVersion - The Azure API version of the resource.
- etag String
- The etag field is not required. If it is provided in the response body, it must also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - Provisioning state of MACC as assigned by RPaaS. This indicates the last operation's status. For all practical purposes, this can be ignored. For current status of MACC resource, refer to MaccStatus.
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
AutomaticShortfallSuppressReason, AutomaticShortfallSuppressReasonArgs
Optional field to record suppression reason for automatic shortfall.AutomaticShortfallSuppressReasonResponse, AutomaticShortfallSuppressReasonResponseArgs
Optional field to record suppression reason for automatic shortfall.Commitment, CommitmentArgs
Commitment towards the benefit.- Amount double
- Currency
Code string - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- Grain
string | Pulumi.
Azure Native. Billing Benefits. Commitment Grain - The grain of the commitment.
- Amount float64
- Currency
Code string - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- Grain
string | Commitment
Grain - The grain of the commitment.
- amount Double
- currency
Code String - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- grain
String | Commitment
Grain - The grain of the commitment.
- amount number
- currency
Code string - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- grain
string | Commitment
Grain - The grain of the commitment.
- amount float
- currency_
code str - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- grain
str | Commitment
Grain - The grain of the commitment.
- amount Number
- currency
Code String - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- grain
String | "Unknown" | "Hourly" | "Full
Term" - The grain of the commitment.
CommitmentGrain, CommitmentGrainArgs
- Unknown
Unknown- Hourly
Hourly- Full
Term FullTerm
- Commitment
Grain Unknown Unknown- Commitment
Grain Hourly Hourly- Commitment
Grain Full Term FullTerm
- Unknown
Unknown- Hourly
Hourly- Full
Term FullTerm
- Unknown
Unknown- Hourly
Hourly- Full
Term FullTerm
- UNKNOWN
Unknown- HOURLY
Hourly- FULL_TERM
FullTerm
- "Unknown"
Unknown- "Hourly"
Hourly- "Full
Term" FullTerm
CommitmentResponse, CommitmentResponseArgs
Commitment towards the benefit.- Amount double
- Currency
Code string - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- Grain string
- The grain of the commitment.
- Amount float64
- Currency
Code string - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- Grain string
- The grain of the commitment.
- amount Double
- currency
Code String - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- grain String
- The grain of the commitment.
- amount number
- currency
Code string - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- grain string
- The grain of the commitment.
- amount float
- currency_
code str - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- grain str
- The grain of the commitment.
- amount Number
- currency
Code String - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- grain String
- The grain of the commitment.
EnablementMode, EnablementModeArgs
- Unknown
Unknown- Enabled
Enabled- Disabled
Disabled
- Enablement
Mode Unknown Unknown- Enablement
Mode Enabled Enabled- Enablement
Mode Disabled Disabled
- Unknown
Unknown- Enabled
Enabled- Disabled
Disabled
- Unknown
Unknown- Enabled
Enabled- Disabled
Disabled
- UNKNOWN
Unknown- ENABLED
Enabled- DISABLED
Disabled
- "Unknown"
Unknown- "Enabled"
Enabled- "Disabled"
Disabled
MaccEntityType, MaccEntityTypeArgs
- Primary
Primary- Contributor
Contributor
- Macc
Entity Type Primary Primary- Macc
Entity Type Contributor Contributor
- Primary
Primary- Contributor
Contributor
- Primary
Primary- Contributor
Contributor
- PRIMARY
Primary- CONTRIBUTOR
Contributor
- "Primary"
Primary- "Contributor"
Contributor
MaccMilestone, MaccMilestoneArgs
MACC milestone represents interim targets within the period of MACC.- Automatic
Shortfall string | Pulumi.Azure Native. Billing Benefits. Enablement Mode - Setting this to 'Enable' enables automatic shortfall invoicing when milestone commitment is not met.
- Automatic
Shortfall Pulumi.Suppress Reason Azure Native. Billing Benefits. Inputs. Automatic Shortfall Suppress Reason - Optional field to record suppression reason for automatic shortfall.
- Commitment
Pulumi.
Azure Native. Billing Benefits. Inputs. Price - Commitment associated with this milestone.
- End
At string - End date time for the milestone. Timestamp must be in the ISO date format YYYY-MM-DDT23:59:59Z.
- Milestone
Id string - Globally unique identifier for the milestone. Format: {guid}
- Shortfall
Pulumi.
Azure Native. Billing Benefits. Inputs. Shortfall - Details of the shortfall associated with this milestone.
- Status
string | Pulumi.
Azure Native. Billing Benefits. Macc Milestone Status - Represents the current status of the Milestone.
- Automatic
Shortfall string | EnablementMode - Setting this to 'Enable' enables automatic shortfall invoicing when milestone commitment is not met.
- Automatic
Shortfall AutomaticSuppress Reason Shortfall Suppress Reason - Optional field to record suppression reason for automatic shortfall.
- Commitment Price
- Commitment associated with this milestone.
- End
At string - End date time for the milestone. Timestamp must be in the ISO date format YYYY-MM-DDT23:59:59Z.
- Milestone
Id string - Globally unique identifier for the milestone. Format: {guid}
- Shortfall Shortfall
- Details of the shortfall associated with this milestone.
- Status
string | Macc
Milestone Status - Represents the current status of the Milestone.
- automatic
Shortfall String | EnablementMode - Setting this to 'Enable' enables automatic shortfall invoicing when milestone commitment is not met.
- automatic
Shortfall AutomaticSuppress Reason Shortfall Suppress Reason - Optional field to record suppression reason for automatic shortfall.
- commitment Price
- Commitment associated with this milestone.
- end
At String - End date time for the milestone. Timestamp must be in the ISO date format YYYY-MM-DDT23:59:59Z.
- milestone
Id String - Globally unique identifier for the milestone. Format: {guid}
- shortfall Shortfall
- Details of the shortfall associated with this milestone.
- status
String | Macc
Milestone Status - Represents the current status of the Milestone.
- automatic
Shortfall string | EnablementMode - Setting this to 'Enable' enables automatic shortfall invoicing when milestone commitment is not met.
- automatic
Shortfall AutomaticSuppress Reason Shortfall Suppress Reason - Optional field to record suppression reason for automatic shortfall.
- commitment Price
- Commitment associated with this milestone.
- end
At string - End date time for the milestone. Timestamp must be in the ISO date format YYYY-MM-DDT23:59:59Z.
- milestone
Id string - Globally unique identifier for the milestone. Format: {guid}
- shortfall Shortfall
- Details of the shortfall associated with this milestone.
- status
string | Macc
Milestone Status - Represents the current status of the Milestone.
- automatic_
shortfall str | EnablementMode - Setting this to 'Enable' enables automatic shortfall invoicing when milestone commitment is not met.
- automatic_
shortfall_ Automaticsuppress_ reason Shortfall Suppress Reason - Optional field to record suppression reason for automatic shortfall.
- commitment Price
- Commitment associated with this milestone.
- end_
at str - End date time for the milestone. Timestamp must be in the ISO date format YYYY-MM-DDT23:59:59Z.
- milestone_
id str - Globally unique identifier for the milestone. Format: {guid}
- shortfall Shortfall
- Details of the shortfall associated with this milestone.
- status
str | Macc
Milestone Status - Represents the current status of the Milestone.
- automatic
Shortfall String | "Unknown" | "Enabled" | "Disabled" - Setting this to 'Enable' enables automatic shortfall invoicing when milestone commitment is not met.
- automatic
Shortfall Property MapSuppress Reason - Optional field to record suppression reason for automatic shortfall.
- commitment Property Map
- Commitment associated with this milestone.
- end
At String - End date time for the milestone. Timestamp must be in the ISO date format YYYY-MM-DDT23:59:59Z.
- milestone
Id String - Globally unique identifier for the milestone. Format: {guid}
- shortfall Property Map
- Details of the shortfall associated with this milestone.
- status
String | "Unknown" | "Scheduled" | "Active" | "Pending" | "Failed" | "Completed" | "Canceled" | "Removed" | "Pending
Settlement" | "Shortfall Charged" | "Shortfall Waived" - Represents the current status of the Milestone.
MaccMilestoneResponse, MaccMilestoneResponseArgs
MACC milestone represents interim targets within the period of MACC.- Automatic
Shortfall string - Setting this to 'Enable' enables automatic shortfall invoicing when milestone commitment is not met.
- Automatic
Shortfall Pulumi.Suppress Reason Azure Native. Billing Benefits. Inputs. Automatic Shortfall Suppress Reason Response - Optional field to record suppression reason for automatic shortfall.
- Commitment
Pulumi.
Azure Native. Billing Benefits. Inputs. Price Response - Commitment associated with this milestone.
- End
At string - End date time for the milestone. Timestamp must be in the ISO date format YYYY-MM-DDT23:59:59Z.
- Milestone
Id string - Globally unique identifier for the milestone. Format: {guid}
- Shortfall
Pulumi.
Azure Native. Billing Benefits. Inputs. Shortfall Response - Details of the shortfall associated with this milestone.
- Status string
- Represents the current status of the Milestone.
- Automatic
Shortfall string - Setting this to 'Enable' enables automatic shortfall invoicing when milestone commitment is not met.
- Automatic
Shortfall AutomaticSuppress Reason Shortfall Suppress Reason Response - Optional field to record suppression reason for automatic shortfall.
- Commitment
Price
Response - Commitment associated with this milestone.
- End
At string - End date time for the milestone. Timestamp must be in the ISO date format YYYY-MM-DDT23:59:59Z.
- Milestone
Id string - Globally unique identifier for the milestone. Format: {guid}
- Shortfall
Shortfall
Response - Details of the shortfall associated with this milestone.
- Status string
- Represents the current status of the Milestone.
- automatic
Shortfall String - Setting this to 'Enable' enables automatic shortfall invoicing when milestone commitment is not met.
- automatic
Shortfall AutomaticSuppress Reason Shortfall Suppress Reason Response - Optional field to record suppression reason for automatic shortfall.
- commitment
Price
Response - Commitment associated with this milestone.
- end
At String - End date time for the milestone. Timestamp must be in the ISO date format YYYY-MM-DDT23:59:59Z.
- milestone
Id String - Globally unique identifier for the milestone. Format: {guid}
- shortfall
Shortfall
Response - Details of the shortfall associated with this milestone.
- status String
- Represents the current status of the Milestone.
- automatic
Shortfall string - Setting this to 'Enable' enables automatic shortfall invoicing when milestone commitment is not met.
- automatic
Shortfall AutomaticSuppress Reason Shortfall Suppress Reason Response - Optional field to record suppression reason for automatic shortfall.
- commitment
Price
Response - Commitment associated with this milestone.
- end
At string - End date time for the milestone. Timestamp must be in the ISO date format YYYY-MM-DDT23:59:59Z.
- milestone
Id string - Globally unique identifier for the milestone. Format: {guid}
- shortfall
Shortfall
Response - Details of the shortfall associated with this milestone.
- status string
- Represents the current status of the Milestone.
- automatic_
shortfall str - Setting this to 'Enable' enables automatic shortfall invoicing when milestone commitment is not met.
- automatic_
shortfall_ Automaticsuppress_ reason Shortfall Suppress Reason Response - Optional field to record suppression reason for automatic shortfall.
- commitment
Price
Response - Commitment associated with this milestone.
- end_
at str - End date time for the milestone. Timestamp must be in the ISO date format YYYY-MM-DDT23:59:59Z.
- milestone_
id str - Globally unique identifier for the milestone. Format: {guid}
- shortfall
Shortfall
Response - Details of the shortfall associated with this milestone.
- status str
- Represents the current status of the Milestone.
- automatic
Shortfall String - Setting this to 'Enable' enables automatic shortfall invoicing when milestone commitment is not met.
- automatic
Shortfall Property MapSuppress Reason - Optional field to record suppression reason for automatic shortfall.
- commitment Property Map
- Commitment associated with this milestone.
- end
At String - End date time for the milestone. Timestamp must be in the ISO date format YYYY-MM-DDT23:59:59Z.
- milestone
Id String - Globally unique identifier for the milestone. Format: {guid}
- shortfall Property Map
- Details of the shortfall associated with this milestone.
- status String
- Represents the current status of the Milestone.
MaccMilestoneStatus, MaccMilestoneStatusArgs
- Unknown
Unknown- Scheduled
Scheduled- Active
Active- Pending
Pending- Failed
Failed- Completed
Completed- Canceled
Canceled- Removed
Removed- Pending
Settlement PendingSettlement- Shortfall
Charged ShortfallCharged- Shortfall
Waived ShortfallWaived
- Macc
Milestone Status Unknown Unknown- Macc
Milestone Status Scheduled Scheduled- Macc
Milestone Status Active Active- Macc
Milestone Status Pending Pending- Macc
Milestone Status Failed Failed- Macc
Milestone Status Completed Completed- Macc
Milestone Status Canceled Canceled- Macc
Milestone Status Removed Removed- Macc
Milestone Status Pending Settlement PendingSettlement- Macc
Milestone Status Shortfall Charged ShortfallCharged- Macc
Milestone Status Shortfall Waived ShortfallWaived
- Unknown
Unknown- Scheduled
Scheduled- Active
Active- Pending
Pending- Failed
Failed- Completed
Completed- Canceled
Canceled- Removed
Removed- Pending
Settlement PendingSettlement- Shortfall
Charged ShortfallCharged- Shortfall
Waived ShortfallWaived
- Unknown
Unknown- Scheduled
Scheduled- Active
Active- Pending
Pending- Failed
Failed- Completed
Completed- Canceled
Canceled- Removed
Removed- Pending
Settlement PendingSettlement- Shortfall
Charged ShortfallCharged- Shortfall
Waived ShortfallWaived
- UNKNOWN
Unknown- SCHEDULED
Scheduled- ACTIVE
Active- PENDING
Pending- FAILED
Failed- COMPLETED
Completed- CANCELED
Canceled- REMOVED
Removed- PENDING_SETTLEMENT
PendingSettlement- SHORTFALL_CHARGED
ShortfallCharged- SHORTFALL_WAIVED
ShortfallWaived
- "Unknown"
Unknown- "Scheduled"
Scheduled- "Active"
Active- "Pending"
Pending- "Failed"
Failed- "Completed"
Completed- "Canceled"
Canceled- "Removed"
Removed- "Pending
Settlement" PendingSettlement- "Shortfall
Charged" ShortfallCharged- "Shortfall
Waived" ShortfallWaived
MaccStatus, MaccStatusArgs
- Unknown
Unknown- Scheduled
Scheduled- Active
Active- Pending
Pending- Failed
Failed- Canceled
Canceled- Completed
Completed- Stopped
Stopped- Pending
Settlement PendingSettlement- Shortfall
Charged ShortfallCharged- Shortfall
Waived ShortfallWaived
- Macc
Status Unknown Unknown- Macc
Status Scheduled Scheduled- Macc
Status Active Active- Macc
Status Pending Pending- Macc
Status Failed Failed- Macc
Status Canceled Canceled- Macc
Status Completed Completed- Macc
Status Stopped Stopped- Macc
Status Pending Settlement PendingSettlement- Macc
Status Shortfall Charged ShortfallCharged- Macc
Status Shortfall Waived ShortfallWaived
- Unknown
Unknown- Scheduled
Scheduled- Active
Active- Pending
Pending- Failed
Failed- Canceled
Canceled- Completed
Completed- Stopped
Stopped- Pending
Settlement PendingSettlement- Shortfall
Charged ShortfallCharged- Shortfall
Waived ShortfallWaived
- Unknown
Unknown- Scheduled
Scheduled- Active
Active- Pending
Pending- Failed
Failed- Canceled
Canceled- Completed
Completed- Stopped
Stopped- Pending
Settlement PendingSettlement- Shortfall
Charged ShortfallCharged- Shortfall
Waived ShortfallWaived
- UNKNOWN
Unknown- SCHEDULED
Scheduled- ACTIVE
Active- PENDING
Pending- FAILED
Failed- CANCELED
Canceled- COMPLETED
Completed- STOPPED
Stopped- PENDING_SETTLEMENT
PendingSettlement- SHORTFALL_CHARGED
ShortfallCharged- SHORTFALL_WAIVED
ShortfallWaived
- "Unknown"
Unknown- "Scheduled"
Scheduled- "Active"
Active- "Pending"
Pending- "Failed"
Failed- "Canceled"
Canceled- "Completed"
Completed- "Stopped"
Stopped- "Pending
Settlement" PendingSettlement- "Shortfall
Charged" ShortfallCharged- "Shortfall
Waived" ShortfallWaived
ManagedServiceIdentity, ManagedServiceIdentityArgs
Managed service identity (system assigned and/or user assigned identities)- Type
string | Pulumi.
Azure Native. Billing Benefits. Managed Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned List<string>Identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- Type
string | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned []stringIdentities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- type
String | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned List<String>Identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- type
string | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned string[]Identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- type
str | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user_
assigned_ Sequence[str]identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- type
String | "None" | "System
Assigned" | "User Assigned" | "System Assigned,User Assigned" - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned List<String>Identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
ManagedServiceIdentityResponse, ManagedServiceIdentityResponseArgs
Managed service identity (system assigned and/or user assigned identities)- Principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id string - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Type string
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Billing Benefits. Inputs. User Assigned Identity Response> - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- Principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id string - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Type string
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned map[string]UserIdentities Assigned Identity Response - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- principal
Id String - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id String - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type String
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned Map<String,UserIdentities Assigned Identity Response> - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id string - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type string
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned {[key: string]: UserIdentities Assigned Identity Response} - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- principal_
id str - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant_
id str - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type str
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user_
assigned_ Mapping[str, Useridentities Assigned Identity Response] - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- principal
Id String - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id String - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type String
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned Map<Property Map>Identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
ManagedServiceIdentityType, ManagedServiceIdentityTypeArgs
- None
None- System
Assigned SystemAssigned- User
Assigned UserAssigned- System
Assigned_User Assigned SystemAssigned,UserAssigned
- Managed
Service Identity Type None None- Managed
Service Identity Type System Assigned SystemAssigned- Managed
Service Identity Type User Assigned UserAssigned- Managed
Service Identity Type_System Assigned_User Assigned SystemAssigned,UserAssigned
- None
None- System
Assigned SystemAssigned- User
Assigned UserAssigned- System
Assigned_User Assigned SystemAssigned,UserAssigned
- None
None- System
Assigned SystemAssigned- User
Assigned UserAssigned- System
Assigned_User Assigned SystemAssigned,UserAssigned
- NONE
None- SYSTEM_ASSIGNED
SystemAssigned- USER_ASSIGNED
UserAssigned- SYSTEM_ASSIGNED_USER_ASSIGNED
SystemAssigned,UserAssigned
- "None"
None- "System
Assigned" SystemAssigned- "User
Assigned" UserAssigned- "System
Assigned,User Assigned" SystemAssigned,UserAssigned
Plan, PlanArgs
Plan for the resource.- Name string
- A user defined name of the 3rd Party Artifact that is being procured.
- Product string
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- Publisher string
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- Promotion
Code string - A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- Version string
- The version of the desired product/artifact.
- Name string
- A user defined name of the 3rd Party Artifact that is being procured.
- Product string
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- Publisher string
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- Promotion
Code string - A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- Version string
- The version of the desired product/artifact.
- name String
- A user defined name of the 3rd Party Artifact that is being procured.
- product String
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- publisher String
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- promotion
Code String - A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- version String
- The version of the desired product/artifact.
- name string
- A user defined name of the 3rd Party Artifact that is being procured.
- product string
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- publisher string
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- promotion
Code string - A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- version string
- The version of the desired product/artifact.
- name str
- A user defined name of the 3rd Party Artifact that is being procured.
- product str
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- publisher str
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- promotion_
code str - A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- version str
- The version of the desired product/artifact.
- name String
- A user defined name of the 3rd Party Artifact that is being procured.
- product String
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- publisher String
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- promotion
Code String - A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- version String
- The version of the desired product/artifact.
PlanResponse, PlanResponseArgs
Plan for the resource.- Name string
- A user defined name of the 3rd Party Artifact that is being procured.
- Product string
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- Publisher string
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- Promotion
Code string - A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- Version string
- The version of the desired product/artifact.
- Name string
- A user defined name of the 3rd Party Artifact that is being procured.
- Product string
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- Publisher string
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- Promotion
Code string - A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- Version string
- The version of the desired product/artifact.
- name String
- A user defined name of the 3rd Party Artifact that is being procured.
- product String
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- publisher String
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- promotion
Code String - A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- version String
- The version of the desired product/artifact.
- name string
- A user defined name of the 3rd Party Artifact that is being procured.
- product string
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- publisher string
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- promotion
Code string - A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- version string
- The version of the desired product/artifact.
- name str
- A user defined name of the 3rd Party Artifact that is being procured.
- product str
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- publisher str
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- promotion_
code str - A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- version str
- The version of the desired product/artifact.
- name String
- A user defined name of the 3rd Party Artifact that is being procured.
- product String
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- publisher String
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- promotion
Code String - A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- version String
- The version of the desired product/artifact.
Price, PriceArgs
- Amount double
- Currency
Code string - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- Amount float64
- Currency
Code string - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- amount Double
- currency
Code String - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- amount number
- currency
Code string - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- amount float
- currency_
code str - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- amount Number
- currency
Code String - The ISO 4217 3-letter currency code for the currency used by this purchase record.
PriceResponse, PriceResponseArgs
- Amount double
- Currency
Code string - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- Amount float64
- Currency
Code string - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- amount Double
- currency
Code String - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- amount number
- currency
Code string - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- amount float
- currency_
code str - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- amount Number
- currency
Code String - The ISO 4217 3-letter currency code for the currency used by this purchase record.
Shortfall, ShortfallArgs
MACC shortfall- Balance
Version double - Points to BalanceVersion document that indicates the remaining commitment balance when the credit was created.
- Charge
Pulumi.
Azure Native. Billing Benefits. Inputs. Commitment - Shortfall amount with grain.
- End
At string - End DateTime in UTC.
- Product
Code string - Represents catalog UPN.
- Resource
Id string - Fully-qualified resource identifier of the credits associated with the shortfall.
- Start
At string - Start DateTime.
- System
Id string - This is an identifier of the shortfall which will not change for its lifetime.
- Balance
Version float64 - Points to BalanceVersion document that indicates the remaining commitment balance when the credit was created.
- Charge Commitment
- Shortfall amount with grain.
- End
At string - End DateTime in UTC.
- Product
Code string - Represents catalog UPN.
- Resource
Id string - Fully-qualified resource identifier of the credits associated with the shortfall.
- Start
At string - Start DateTime.
- System
Id string - This is an identifier of the shortfall which will not change for its lifetime.
- balance
Version Double - Points to BalanceVersion document that indicates the remaining commitment balance when the credit was created.
- charge Commitment
- Shortfall amount with grain.
- end
At String - End DateTime in UTC.
- product
Code String - Represents catalog UPN.
- resource
Id String - Fully-qualified resource identifier of the credits associated with the shortfall.
- start
At String - Start DateTime.
- system
Id String - This is an identifier of the shortfall which will not change for its lifetime.
- balance
Version number - Points to BalanceVersion document that indicates the remaining commitment balance when the credit was created.
- charge Commitment
- Shortfall amount with grain.
- end
At string - End DateTime in UTC.
- product
Code string - Represents catalog UPN.
- resource
Id string - Fully-qualified resource identifier of the credits associated with the shortfall.
- start
At string - Start DateTime.
- system
Id string - This is an identifier of the shortfall which will not change for its lifetime.
- balance_
version float - Points to BalanceVersion document that indicates the remaining commitment balance when the credit was created.
- charge Commitment
- Shortfall amount with grain.
- end_
at str - End DateTime in UTC.
- product_
code str - Represents catalog UPN.
- resource_
id str - Fully-qualified resource identifier of the credits associated with the shortfall.
- start_
at str - Start DateTime.
- system_
id str - This is an identifier of the shortfall which will not change for its lifetime.
- balance
Version Number - Points to BalanceVersion document that indicates the remaining commitment balance when the credit was created.
- charge Property Map
- Shortfall amount with grain.
- end
At String - End DateTime in UTC.
- product
Code String - Represents catalog UPN.
- resource
Id String - Fully-qualified resource identifier of the credits associated with the shortfall.
- start
At String - Start DateTime.
- system
Id String - This is an identifier of the shortfall which will not change for its lifetime.
ShortfallResponse, ShortfallResponseArgs
MACC shortfall- Balance
Version double - Points to BalanceVersion document that indicates the remaining commitment balance when the credit was created.
- Charge
Pulumi.
Azure Native. Billing Benefits. Inputs. Commitment Response - Shortfall amount with grain.
- End
At string - End DateTime in UTC.
- Product
Code string - Represents catalog UPN.
- Resource
Id string - Fully-qualified resource identifier of the credits associated with the shortfall.
- Start
At string - Start DateTime.
- System
Id string - This is an identifier of the shortfall which will not change for its lifetime.
- Balance
Version float64 - Points to BalanceVersion document that indicates the remaining commitment balance when the credit was created.
- Charge
Commitment
Response - Shortfall amount with grain.
- End
At string - End DateTime in UTC.
- Product
Code string - Represents catalog UPN.
- Resource
Id string - Fully-qualified resource identifier of the credits associated with the shortfall.
- Start
At string - Start DateTime.
- System
Id string - This is an identifier of the shortfall which will not change for its lifetime.
- balance
Version Double - Points to BalanceVersion document that indicates the remaining commitment balance when the credit was created.
- charge
Commitment
Response - Shortfall amount with grain.
- end
At String - End DateTime in UTC.
- product
Code String - Represents catalog UPN.
- resource
Id String - Fully-qualified resource identifier of the credits associated with the shortfall.
- start
At String - Start DateTime.
- system
Id String - This is an identifier of the shortfall which will not change for its lifetime.
- balance
Version number - Points to BalanceVersion document that indicates the remaining commitment balance when the credit was created.
- charge
Commitment
Response - Shortfall amount with grain.
- end
At string - End DateTime in UTC.
- product
Code string - Represents catalog UPN.
- resource
Id string - Fully-qualified resource identifier of the credits associated with the shortfall.
- start
At string - Start DateTime.
- system
Id string - This is an identifier of the shortfall which will not change for its lifetime.
- balance_
version float - Points to BalanceVersion document that indicates the remaining commitment balance when the credit was created.
- charge
Commitment
Response - Shortfall amount with grain.
- end_
at str - End DateTime in UTC.
- product_
code str - Represents catalog UPN.
- resource_
id str - Fully-qualified resource identifier of the credits associated with the shortfall.
- start_
at str - Start DateTime.
- system_
id str - This is an identifier of the shortfall which will not change for its lifetime.
- balance
Version Number - Points to BalanceVersion document that indicates the remaining commitment balance when the credit was created.
- charge Property Map
- Shortfall amount with grain.
- end
At String - End DateTime in UTC.
- product
Code String - Represents catalog UPN.
- resource
Id String - Fully-qualified resource identifier of the credits associated with the shortfall.
- start
At String - Start DateTime.
- system
Id String - This is an identifier of the shortfall which will not change for its lifetime.
Sku, SkuArgs
The resource model definition representing SKU- Name string
- The name of the SKU. E.g. P3. It is typically a letter+number code
- Capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- Family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- Size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- Tier
Pulumi.
Azure Native. Billing Benefits. Sku Tier - This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- Name string
- The name of the SKU. E.g. P3. It is typically a letter+number code
- Capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- Family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- Size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- Tier
Sku
Tier - This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name String
- The name of the SKU. E.g. P3. It is typically a letter+number code
- capacity Integer
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family String
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size String
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier
Sku
Tier - This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name string
- The name of the SKU. E.g. P3. It is typically a letter+number code
- capacity number
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier
Sku
Tier - This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name str
- The name of the SKU. E.g. P3. It is typically a letter+number code
- capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family str
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size str
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier
Sku
Tier - This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name String
- The name of the SKU. E.g. P3. It is typically a letter+number code
- capacity Number
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family String
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size String
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier "Free" | "Basic" | "Standard" | "Premium"
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
SkuResponse, SkuResponseArgs
The resource model definition representing SKU- Name string
- The name of the SKU. E.g. P3. It is typically a letter+number code
- Capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- Family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- Size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- Tier string
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- Name string
- The name of the SKU. E.g. P3. It is typically a letter+number code
- Capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- Family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- Size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- Tier string
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name String
- The name of the SKU. E.g. P3. It is typically a letter+number code
- capacity Integer
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family String
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size String
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier String
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name string
- The name of the SKU. E.g. P3. It is typically a letter+number code
- capacity number
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier string
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name str
- The name of the SKU. E.g. P3. It is typically a letter+number code
- capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family str
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size str
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier str
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name String
- The name of the SKU. E.g. P3. It is typically a letter+number code
- capacity Number
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family String
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size String
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier String
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
SkuTier, SkuTierArgs
- Free
Free- Basic
Basic- Standard
Standard- Premium
Premium
- Sku
Tier Free Free- Sku
Tier Basic Basic- Sku
Tier Standard Standard- Sku
Tier Premium Premium
- Free
Free- Basic
Basic- Standard
Standard- Premium
Premium
- Free
Free- Basic
Basic- Standard
Standard- Premium
Premium
- FREE
Free- BASIC
Basic- STANDARD
Standard- PREMIUM
Premium
- "Free"
Free- "Basic"
Basic- "Standard"
Standard- "Premium"
Premium
SystemDataResponse, SystemDataResponseArgs
Metadata pertaining to creation and last modification of the resource.- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs
User assigned identity properties- Client
Id string - The client ID of the assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- Client
Id string - The client ID of the assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- client
Id String - The client ID of the assigned identity.
- principal
Id String - The principal ID of the assigned identity.
- client
Id string - The client ID of the assigned identity.
- principal
Id string - The principal ID of the assigned identity.
- client_
id str - The client ID of the assigned identity.
- principal_
id str - The principal ID of the assigned identity.
- client
Id String - The client ID of the assigned identity.
- principal
Id String - The principal ID of the assigned identity.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:billingbenefits:Macc macc_20230614 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/maccs/{maccName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0
