1. Packages
  2. Azure Native
  3. API Docs
  4. billingbenefits
  5. Macc
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.13.0 published on Wednesday, Jan 28, 2026 by Pulumi
azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.13.0 published on Wednesday, Jan 28, 2026 by Pulumi

    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)
    public Macc(String name, MaccArgs args)
    public Macc(String name, MaccArgs args, CustomResourceOptions options)
    
    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:

    EntityType string | Pulumi.AzureNative.BillingBenefits.MaccEntityType
    Represents type of the object being operated on. Possible values are primary or contributor.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AllowContributors bool
    Setting this to true means multi-entity.
    AutomaticShortfall string | Pulumi.AzureNative.BillingBenefits.EnablementMode
    Setting this to 'Enable' enables automatic shortfall charging when commitment is not met.
    AutomaticShortfallSuppressReason Pulumi.AzureNative.BillingBenefits.Inputs.AutomaticShortfallSuppressReason
    Optional field to record suppression reason for automatic shortfall.
    BillingAccountResourceId string
    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.AzureNative.BillingBenefits.Inputs.Commitment
    Commitment towards the benefit.
    DisplayName string
    Display name
    EndAt string
    Must be end of month. Timestamp must be in the ISO date format YYYY-MM-DDT23:59:59Z.
    Identity Pulumi.AzureNative.BillingBenefits.Inputs.ManagedServiceIdentity
    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
    MaccName string
    Name of primary MACC.
    ManagedBy 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.AzureNative.BillingBenefits.Inputs.MaccMilestone>
    List of milestones associated with this MACC.
    Plan Pulumi.AzureNative.BillingBenefits.Inputs.Plan
    Plan for the resource.
    PrimaryBillingAccountResourceId string
    Fully-qualified billing account resource identifier of the primary MACC. Format must be Azure Resource ID: /providers/Microsoft.Billing/billingAccounts/{acctId:orgId}.
    PrimaryResourceId string
    Fully-qualified resource identifier of the primary MACC. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/maccs/{maccName}.
    ProductCode string
    Represents catalog UPN.
    ResourceId 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.AzureNative.BillingBenefits.Inputs.Shortfall
    MACC shortfall
    Sku Pulumi.AzureNative.BillingBenefits.Inputs.Sku
    The resource model definition representing SKU
    StartAt string
    Must be start of month. Timestamp must be in the ISO date format YYYY-MM-DDT00:00:00Z.
    Status string | Pulumi.AzureNative.BillingBenefits.MaccStatus
    Represents the current status of the MACC.
    SystemId string
    This is the globally unique identifier of the MACC which will not change for the lifetime of the MACC.
    Tags Dictionary<string, string>
    Resource tags.
    EntityType string | MaccEntityType
    Represents type of the object being operated on. Possible values are primary or contributor.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AllowContributors bool
    Setting this to true means multi-entity.
    AutomaticShortfall string | EnablementMode
    Setting this to 'Enable' enables automatic shortfall charging when commitment is not met.
    AutomaticShortfallSuppressReason AutomaticShortfallSuppressReasonArgs
    Optional field to record suppression reason for automatic shortfall.
    BillingAccountResourceId string
    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 CommitmentArgs
    Commitment towards the benefit.
    DisplayName string
    Display name
    EndAt string
    Must be end of month. Timestamp must be in the ISO date format YYYY-MM-DDT23:59:59Z.
    Identity ManagedServiceIdentityArgs
    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
    MaccName string
    Name of primary MACC.
    ManagedBy 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 []MaccMilestoneArgs
    List of milestones associated with this MACC.
    Plan PlanArgs
    Plan for the resource.
    PrimaryBillingAccountResourceId string
    Fully-qualified billing account resource identifier of the primary MACC. Format must be Azure Resource ID: /providers/Microsoft.Billing/billingAccounts/{acctId:orgId}.
    PrimaryResourceId string
    Fully-qualified resource identifier of the primary MACC. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/maccs/{maccName}.
    ProductCode string
    Represents catalog UPN.
    ResourceId 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 ShortfallArgs
    MACC shortfall
    Sku SkuArgs
    The resource model definition representing SKU
    StartAt string
    Must be start of month. Timestamp must be in the ISO date format YYYY-MM-DDT00:00:00Z.
    Status string | MaccStatus
    Represents the current status of the MACC.
    SystemId string
    This is the globally unique identifier of the MACC which will not change for the lifetime of the MACC.
    Tags map[string]string
    Resource tags.
    entityType String | MaccEntityType
    Represents type of the object being operated on. Possible values are primary or contributor.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    allowContributors Boolean
    Setting this to true means multi-entity.
    automaticShortfall String | EnablementMode
    Setting this to 'Enable' enables automatic shortfall charging when commitment is not met.
    automaticShortfallSuppressReason AutomaticShortfallSuppressReason
    Optional field to record suppression reason for automatic shortfall.
    billingAccountResourceId String
    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.
    displayName String
    Display name
    endAt String
    Must be end of month. Timestamp must be in the ISO date format YYYY-MM-DDT23:59:59Z.
    identity ManagedServiceIdentity
    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
    maccName String
    Name of primary MACC.
    managedBy 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<MaccMilestone>
    List of milestones associated with this MACC.
    plan Plan
    Plan for the resource.
    primaryBillingAccountResourceId String
    Fully-qualified billing account resource identifier of the primary MACC. Format must be Azure Resource ID: /providers/Microsoft.Billing/billingAccounts/{acctId:orgId}.
    primaryResourceId String
    Fully-qualified resource identifier of the primary MACC. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/maccs/{maccName}.
    productCode String
    Represents catalog UPN.
    resourceId 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
    startAt String
    Must be start of month. Timestamp must be in the ISO date format YYYY-MM-DDT00:00:00Z.
    status String | MaccStatus
    Represents the current status of the MACC.
    systemId String
    This is the globally unique identifier of the MACC which will not change for the lifetime of the MACC.
    tags Map<String,String>
    Resource tags.
    entityType string | MaccEntityType
    Represents type of the object being operated on. Possible values are primary or contributor.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    allowContributors boolean
    Setting this to true means multi-entity.
    automaticShortfall string | EnablementMode
    Setting this to 'Enable' enables automatic shortfall charging when commitment is not met.
    automaticShortfallSuppressReason AutomaticShortfallSuppressReason
    Optional field to record suppression reason for automatic shortfall.
    billingAccountResourceId string
    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.
    displayName string
    Display name
    endAt string
    Must be end of month. Timestamp must be in the ISO date format YYYY-MM-DDT23:59:59Z.
    identity ManagedServiceIdentity
    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
    maccName string
    Name of primary MACC.
    managedBy 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 MaccMilestone[]
    List of milestones associated with this MACC.
    plan Plan
    Plan for the resource.
    primaryBillingAccountResourceId string
    Fully-qualified billing account resource identifier of the primary MACC. Format must be Azure Resource ID: /providers/Microsoft.Billing/billingAccounts/{acctId:orgId}.
    primaryResourceId string
    Fully-qualified resource identifier of the primary MACC. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/maccs/{maccName}.
    productCode string
    Represents catalog UPN.
    resourceId 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
    startAt string
    Must be start of month. Timestamp must be in the ISO date format YYYY-MM-DDT00:00:00Z.
    status string | MaccStatus
    Represents the current status of the MACC.
    systemId string
    This is the globally unique identifier of the MACC which will not change for the lifetime of the MACC.
    tags {[key: string]: string}
    Resource tags.
    entity_type str | MaccEntityType
    Represents type of the object being operated on. Possible values are primary or contributor.
    resource_group_name str
    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_suppress_reason AutomaticShortfallSuppressReasonArgs
    Optional field to record suppression reason for automatic shortfall.
    billing_account_resource_id str
    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 CommitmentArgs
    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 ManagedServiceIdentityArgs
    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[MaccMilestoneArgs]
    List of milestones associated with this MACC.
    plan PlanArgs
    Plan for the resource.
    primary_billing_account_resource_id str
    Fully-qualified billing account resource identifier of the primary MACC. Format must be Azure Resource ID: /providers/Microsoft.Billing/billingAccounts/{acctId:orgId}.
    primary_resource_id str
    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 ShortfallArgs
    MACC shortfall
    sku SkuArgs
    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 | MaccStatus
    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.
    tags Mapping[str, str]
    Resource tags.
    entityType String | "Primary" | "Contributor"
    Represents type of the object being operated on. Possible values are primary or contributor.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    allowContributors Boolean
    Setting this to true means multi-entity.
    automaticShortfall String | "Unknown" | "Enabled" | "Disabled"
    Setting this to 'Enable' enables automatic shortfall charging when commitment is not met.
    automaticShortfallSuppressReason Property Map
    Optional field to record suppression reason for automatic shortfall.
    billingAccountResourceId String
    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.
    displayName String
    Display name
    endAt 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
    maccName String
    Name of primary MACC.
    managedBy 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.
    primaryBillingAccountResourceId String
    Fully-qualified billing account resource identifier of the primary MACC. Format must be Azure Resource ID: /providers/Microsoft.Billing/billingAccounts/{acctId:orgId}.
    primaryResourceId String
    Fully-qualified resource identifier of the primary MACC. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/maccs/{maccName}.
    productCode String
    Represents catalog UPN.
    resourceId 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
    startAt 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" | "PendingSettlement" | "ShortfallCharged" | "ShortfallWaived"
    Represents the current status of the MACC.
    systemId String
    This is the globally unique identifier of the MACC which will not change for the lifetime of the MACC.
    tags Map<String>
    Resource tags.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Macc resource produces the following output properties:

    AzureApiVersion string
    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
    ProvisioningState 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.
    SystemData Pulumi.AzureNative.BillingBenefits.Outputs.SystemDataResponse
    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"
    AzureApiVersion string
    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
    ProvisioningState 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.
    SystemData SystemDataResponse
    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"
    azureApiVersion String
    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
    provisioningState 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.
    systemData SystemDataResponse
    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"
    azureApiVersion string
    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
    provisioningState 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.
    systemData SystemDataResponse
    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_version str
    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 SystemDataResponse
    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"
    azureApiVersion String
    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
    provisioningState 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.
    systemData 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.
    Code string
    Code for the suppression reason.
    Message string
    Message for suppression reason.
    Code string
    Code for the suppression reason.
    Message string
    Message for suppression reason.
    code String
    Code for the suppression reason.
    message String
    Message for suppression reason.
    code string
    Code for the suppression reason.
    message string
    Message for suppression reason.
    code str
    Code for the suppression reason.
    message str
    Message for suppression reason.
    code String
    Code for the suppression reason.
    message String
    Message for suppression reason.

    AutomaticShortfallSuppressReasonResponse, AutomaticShortfallSuppressReasonResponseArgs

    Optional field to record suppression reason for automatic shortfall.
    Code string
    Code for the suppression reason.
    Message string
    Message for suppression reason.
    Code string
    Code for the suppression reason.
    Message string
    Message for suppression reason.
    code String
    Code for the suppression reason.
    message String
    Message for suppression reason.
    code string
    Code for the suppression reason.
    message string
    Message for suppression reason.
    code str
    Code for the suppression reason.
    message str
    Message for suppression reason.
    code String
    Code for the suppression reason.
    message String
    Message for suppression reason.

    Commitment, CommitmentArgs

    Commitment towards the benefit.
    Amount double
    CurrencyCode string
    The ISO 4217 3-letter currency code for the currency used by this purchase record.
    Grain string | Pulumi.AzureNative.BillingBenefits.CommitmentGrain
    The grain of the commitment.
    Amount float64
    CurrencyCode string
    The ISO 4217 3-letter currency code for the currency used by this purchase record.
    Grain string | CommitmentGrain
    The grain of the commitment.
    amount Double
    currencyCode String
    The ISO 4217 3-letter currency code for the currency used by this purchase record.
    grain String | CommitmentGrain
    The grain of the commitment.
    amount number
    currencyCode string
    The ISO 4217 3-letter currency code for the currency used by this purchase record.
    grain string | CommitmentGrain
    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 | CommitmentGrain
    The grain of the commitment.
    amount Number
    currencyCode String
    The ISO 4217 3-letter currency code for the currency used by this purchase record.
    grain String | "Unknown" | "Hourly" | "FullTerm"
    The grain of the commitment.

    CommitmentGrain, CommitmentGrainArgs

    Unknown
    Unknown
    Hourly
    Hourly
    FullTerm
    FullTerm
    CommitmentGrainUnknown
    Unknown
    CommitmentGrainHourly
    Hourly
    CommitmentGrainFullTerm
    FullTerm
    Unknown
    Unknown
    Hourly
    Hourly
    FullTerm
    FullTerm
    Unknown
    Unknown
    Hourly
    Hourly
    FullTerm
    FullTerm
    UNKNOWN
    Unknown
    HOURLY
    Hourly
    FULL_TERM
    FullTerm
    "Unknown"
    Unknown
    "Hourly"
    Hourly
    "FullTerm"
    FullTerm

    CommitmentResponse, CommitmentResponseArgs

    Commitment towards the benefit.
    Amount double
    CurrencyCode 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
    CurrencyCode 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
    currencyCode 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
    currencyCode 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
    currencyCode 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
    EnablementModeUnknown
    Unknown
    EnablementModeEnabled
    Enabled
    EnablementModeDisabled
    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
    MaccEntityTypePrimary
    Primary
    MaccEntityTypeContributor
    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.
    AutomaticShortfall string | Pulumi.AzureNative.BillingBenefits.EnablementMode
    Setting this to 'Enable' enables automatic shortfall invoicing when milestone commitment is not met.
    AutomaticShortfallSuppressReason Pulumi.AzureNative.BillingBenefits.Inputs.AutomaticShortfallSuppressReason
    Optional field to record suppression reason for automatic shortfall.
    Commitment Pulumi.AzureNative.BillingBenefits.Inputs.Price
    Commitment associated with this milestone.
    EndAt string
    End date time for the milestone. Timestamp must be in the ISO date format YYYY-MM-DDT23:59:59Z.
    MilestoneId string
    Globally unique identifier for the milestone. Format: {guid}
    Shortfall Pulumi.AzureNative.BillingBenefits.Inputs.Shortfall
    Details of the shortfall associated with this milestone.
    Status string | Pulumi.AzureNative.BillingBenefits.MaccMilestoneStatus
    Represents the current status of the Milestone.
    AutomaticShortfall string | EnablementMode
    Setting this to 'Enable' enables automatic shortfall invoicing when milestone commitment is not met.
    AutomaticShortfallSuppressReason AutomaticShortfallSuppressReason
    Optional field to record suppression reason for automatic shortfall.
    Commitment Price
    Commitment associated with this milestone.
    EndAt string
    End date time for the milestone. Timestamp must be in the ISO date format YYYY-MM-DDT23:59:59Z.
    MilestoneId string
    Globally unique identifier for the milestone. Format: {guid}
    Shortfall Shortfall
    Details of the shortfall associated with this milestone.
    Status string | MaccMilestoneStatus
    Represents the current status of the Milestone.
    automaticShortfall String | EnablementMode
    Setting this to 'Enable' enables automatic shortfall invoicing when milestone commitment is not met.
    automaticShortfallSuppressReason AutomaticShortfallSuppressReason
    Optional field to record suppression reason for automatic shortfall.
    commitment Price
    Commitment associated with this milestone.
    endAt String
    End date time for the milestone. Timestamp must be in the ISO date format YYYY-MM-DDT23:59:59Z.
    milestoneId String
    Globally unique identifier for the milestone. Format: {guid}
    shortfall Shortfall
    Details of the shortfall associated with this milestone.
    status String | MaccMilestoneStatus
    Represents the current status of the Milestone.
    automaticShortfall string | EnablementMode
    Setting this to 'Enable' enables automatic shortfall invoicing when milestone commitment is not met.
    automaticShortfallSuppressReason AutomaticShortfallSuppressReason
    Optional field to record suppression reason for automatic shortfall.
    commitment Price
    Commitment associated with this milestone.
    endAt string
    End date time for the milestone. Timestamp must be in the ISO date format YYYY-MM-DDT23:59:59Z.
    milestoneId string
    Globally unique identifier for the milestone. Format: {guid}
    shortfall Shortfall
    Details of the shortfall associated with this milestone.
    status string | MaccMilestoneStatus
    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_suppress_reason AutomaticShortfallSuppressReason
    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 | MaccMilestoneStatus
    Represents the current status of the Milestone.
    automaticShortfall String | "Unknown" | "Enabled" | "Disabled"
    Setting this to 'Enable' enables automatic shortfall invoicing when milestone commitment is not met.
    automaticShortfallSuppressReason Property Map
    Optional field to record suppression reason for automatic shortfall.
    commitment Property Map
    Commitment associated with this milestone.
    endAt String
    End date time for the milestone. Timestamp must be in the ISO date format YYYY-MM-DDT23:59:59Z.
    milestoneId 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" | "PendingSettlement" | "ShortfallCharged" | "ShortfallWaived"
    Represents the current status of the Milestone.

    MaccMilestoneResponse, MaccMilestoneResponseArgs

    MACC milestone represents interim targets within the period of MACC.
    AutomaticShortfall string
    Setting this to 'Enable' enables automatic shortfall invoicing when milestone commitment is not met.
    AutomaticShortfallSuppressReason Pulumi.AzureNative.BillingBenefits.Inputs.AutomaticShortfallSuppressReasonResponse
    Optional field to record suppression reason for automatic shortfall.
    Commitment Pulumi.AzureNative.BillingBenefits.Inputs.PriceResponse
    Commitment associated with this milestone.
    EndAt string
    End date time for the milestone. Timestamp must be in the ISO date format YYYY-MM-DDT23:59:59Z.
    MilestoneId string
    Globally unique identifier for the milestone. Format: {guid}
    Shortfall Pulumi.AzureNative.BillingBenefits.Inputs.ShortfallResponse
    Details of the shortfall associated with this milestone.
    Status string
    Represents the current status of the Milestone.
    AutomaticShortfall string
    Setting this to 'Enable' enables automatic shortfall invoicing when milestone commitment is not met.
    AutomaticShortfallSuppressReason AutomaticShortfallSuppressReasonResponse
    Optional field to record suppression reason for automatic shortfall.
    Commitment PriceResponse
    Commitment associated with this milestone.
    EndAt string
    End date time for the milestone. Timestamp must be in the ISO date format YYYY-MM-DDT23:59:59Z.
    MilestoneId string
    Globally unique identifier for the milestone. Format: {guid}
    Shortfall ShortfallResponse
    Details of the shortfall associated with this milestone.
    Status string
    Represents the current status of the Milestone.
    automaticShortfall String
    Setting this to 'Enable' enables automatic shortfall invoicing when milestone commitment is not met.
    automaticShortfallSuppressReason AutomaticShortfallSuppressReasonResponse
    Optional field to record suppression reason for automatic shortfall.
    commitment PriceResponse
    Commitment associated with this milestone.
    endAt String
    End date time for the milestone. Timestamp must be in the ISO date format YYYY-MM-DDT23:59:59Z.
    milestoneId String
    Globally unique identifier for the milestone. Format: {guid}
    shortfall ShortfallResponse
    Details of the shortfall associated with this milestone.
    status String
    Represents the current status of the Milestone.
    automaticShortfall string
    Setting this to 'Enable' enables automatic shortfall invoicing when milestone commitment is not met.
    automaticShortfallSuppressReason AutomaticShortfallSuppressReasonResponse
    Optional field to record suppression reason for automatic shortfall.
    commitment PriceResponse
    Commitment associated with this milestone.
    endAt string
    End date time for the milestone. Timestamp must be in the ISO date format YYYY-MM-DDT23:59:59Z.
    milestoneId string
    Globally unique identifier for the milestone. Format: {guid}
    shortfall ShortfallResponse
    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_suppress_reason AutomaticShortfallSuppressReasonResponse
    Optional field to record suppression reason for automatic shortfall.
    commitment PriceResponse
    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 ShortfallResponse
    Details of the shortfall associated with this milestone.
    status str
    Represents the current status of the Milestone.
    automaticShortfall String
    Setting this to 'Enable' enables automatic shortfall invoicing when milestone commitment is not met.
    automaticShortfallSuppressReason Property Map
    Optional field to record suppression reason for automatic shortfall.
    commitment Property Map
    Commitment associated with this milestone.
    endAt String
    End date time for the milestone. Timestamp must be in the ISO date format YYYY-MM-DDT23:59:59Z.
    milestoneId 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
    PendingSettlement
    PendingSettlement
    ShortfallCharged
    ShortfallCharged
    ShortfallWaived
    ShortfallWaived
    MaccMilestoneStatusUnknown
    Unknown
    MaccMilestoneStatusScheduled
    Scheduled
    MaccMilestoneStatusActive
    Active
    MaccMilestoneStatusPending
    Pending
    MaccMilestoneStatusFailed
    Failed
    MaccMilestoneStatusCompleted
    Completed
    MaccMilestoneStatusCanceled
    Canceled
    MaccMilestoneStatusRemoved
    Removed
    MaccMilestoneStatusPendingSettlement
    PendingSettlement
    MaccMilestoneStatusShortfallCharged
    ShortfallCharged
    MaccMilestoneStatusShortfallWaived
    ShortfallWaived
    Unknown
    Unknown
    Scheduled
    Scheduled
    Active
    Active
    Pending
    Pending
    Failed
    Failed
    Completed
    Completed
    Canceled
    Canceled
    Removed
    Removed
    PendingSettlement
    PendingSettlement
    ShortfallCharged
    ShortfallCharged
    ShortfallWaived
    ShortfallWaived
    Unknown
    Unknown
    Scheduled
    Scheduled
    Active
    Active
    Pending
    Pending
    Failed
    Failed
    Completed
    Completed
    Canceled
    Canceled
    Removed
    Removed
    PendingSettlement
    PendingSettlement
    ShortfallCharged
    ShortfallCharged
    ShortfallWaived
    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
    "PendingSettlement"
    PendingSettlement
    "ShortfallCharged"
    ShortfallCharged
    "ShortfallWaived"
    ShortfallWaived

    MaccStatus, MaccStatusArgs

    Unknown
    Unknown
    Scheduled
    Scheduled
    Active
    Active
    Pending
    Pending
    Failed
    Failed
    Canceled
    Canceled
    Completed
    Completed
    Stopped
    Stopped
    PendingSettlement
    PendingSettlement
    ShortfallCharged
    ShortfallCharged
    ShortfallWaived
    ShortfallWaived
    MaccStatusUnknown
    Unknown
    MaccStatusScheduled
    Scheduled
    MaccStatusActive
    Active
    MaccStatusPending
    Pending
    MaccStatusFailed
    Failed
    MaccStatusCanceled
    Canceled
    MaccStatusCompleted
    Completed
    MaccStatusStopped
    Stopped
    MaccStatusPendingSettlement
    PendingSettlement
    MaccStatusShortfallCharged
    ShortfallCharged
    MaccStatusShortfallWaived
    ShortfallWaived
    Unknown
    Unknown
    Scheduled
    Scheduled
    Active
    Active
    Pending
    Pending
    Failed
    Failed
    Canceled
    Canceled
    Completed
    Completed
    Stopped
    Stopped
    PendingSettlement
    PendingSettlement
    ShortfallCharged
    ShortfallCharged
    ShortfallWaived
    ShortfallWaived
    Unknown
    Unknown
    Scheduled
    Scheduled
    Active
    Active
    Pending
    Pending
    Failed
    Failed
    Canceled
    Canceled
    Completed
    Completed
    Stopped
    Stopped
    PendingSettlement
    PendingSettlement
    ShortfallCharged
    ShortfallCharged
    ShortfallWaived
    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
    "PendingSettlement"
    PendingSettlement
    "ShortfallCharged"
    ShortfallCharged
    "ShortfallWaived"
    ShortfallWaived

    ManagedServiceIdentity, ManagedServiceIdentityArgs

    Managed service identity (system assigned and/or user assigned identities)
    Type string | Pulumi.AzureNative.BillingBenefits.ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities List<string>
    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 | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities []string
    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 | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities List<String>
    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 | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities string[]
    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 | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    user_assigned_identities Sequence[str]
    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" | "SystemAssigned" | "UserAssigned" | "SystemAssigned,UserAssigned"
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities List<String>
    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)
    PrincipalId string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    TenantId 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).
    UserAssignedIdentities Dictionary<string, Pulumi.AzureNative.BillingBenefits.Inputs.UserAssignedIdentityResponse>
    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.
    PrincipalId string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    TenantId 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).
    UserAssignedIdentities map[string]UserAssignedIdentityResponse
    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.
    principalId String
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId 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).
    userAssignedIdentities Map<String,UserAssignedIdentityResponse>
    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.
    principalId string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId 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).
    userAssignedIdentities {[key: string]: UserAssignedIdentityResponse}
    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_identities Mapping[str, UserAssignedIdentityResponse]
    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.
    principalId String
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId 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).
    userAssignedIdentities Map<Property Map>
    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
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned,UserAssigned
    ManagedServiceIdentityTypeNone
    None
    ManagedServiceIdentityTypeSystemAssigned
    SystemAssigned
    ManagedServiceIdentityTypeUserAssigned
    UserAssigned
    ManagedServiceIdentityType_SystemAssigned_UserAssigned
    SystemAssigned,UserAssigned
    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned,UserAssigned
    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned,UserAssigned
    NONE
    None
    SYSTEM_ASSIGNED
    SystemAssigned
    USER_ASSIGNED
    UserAssigned
    SYSTEM_ASSIGNED_USER_ASSIGNED
    SystemAssigned,UserAssigned
    "None"
    None
    "SystemAssigned"
    SystemAssigned
    "UserAssigned"
    UserAssigned
    "SystemAssigned,UserAssigned"
    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
    PromotionCode 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
    PromotionCode 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
    promotionCode 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
    promotionCode 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
    promotionCode 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
    PromotionCode 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
    PromotionCode 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
    promotionCode 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
    promotionCode 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
    promotionCode 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
    CurrencyCode string
    The ISO 4217 3-letter currency code for the currency used by this purchase record.
    Amount float64
    CurrencyCode string
    The ISO 4217 3-letter currency code for the currency used by this purchase record.
    amount Double
    currencyCode String
    The ISO 4217 3-letter currency code for the currency used by this purchase record.
    amount number
    currencyCode 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
    currencyCode String
    The ISO 4217 3-letter currency code for the currency used by this purchase record.

    PriceResponse, PriceResponseArgs

    Amount double
    CurrencyCode string
    The ISO 4217 3-letter currency code for the currency used by this purchase record.
    Amount float64
    CurrencyCode string
    The ISO 4217 3-letter currency code for the currency used by this purchase record.
    amount Double
    currencyCode String
    The ISO 4217 3-letter currency code for the currency used by this purchase record.
    amount number
    currencyCode 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
    currencyCode String
    The ISO 4217 3-letter currency code for the currency used by this purchase record.

    Shortfall, ShortfallArgs

    MACC shortfall
    BalanceVersion double
    Points to BalanceVersion document that indicates the remaining commitment balance when the credit was created.
    Charge Pulumi.AzureNative.BillingBenefits.Inputs.Commitment
    Shortfall amount with grain.
    EndAt string
    End DateTime in UTC.
    ProductCode string
    Represents catalog UPN.
    ResourceId string
    Fully-qualified resource identifier of the credits associated with the shortfall.
    StartAt string
    Start DateTime.
    SystemId string
    This is an identifier of the shortfall which will not change for its lifetime.
    BalanceVersion float64
    Points to BalanceVersion document that indicates the remaining commitment balance when the credit was created.
    Charge Commitment
    Shortfall amount with grain.
    EndAt string
    End DateTime in UTC.
    ProductCode string
    Represents catalog UPN.
    ResourceId string
    Fully-qualified resource identifier of the credits associated with the shortfall.
    StartAt string
    Start DateTime.
    SystemId string
    This is an identifier of the shortfall which will not change for its lifetime.
    balanceVersion Double
    Points to BalanceVersion document that indicates the remaining commitment balance when the credit was created.
    charge Commitment
    Shortfall amount with grain.
    endAt String
    End DateTime in UTC.
    productCode String
    Represents catalog UPN.
    resourceId String
    Fully-qualified resource identifier of the credits associated with the shortfall.
    startAt String
    Start DateTime.
    systemId String
    This is an identifier of the shortfall which will not change for its lifetime.
    balanceVersion number
    Points to BalanceVersion document that indicates the remaining commitment balance when the credit was created.
    charge Commitment
    Shortfall amount with grain.
    endAt string
    End DateTime in UTC.
    productCode string
    Represents catalog UPN.
    resourceId string
    Fully-qualified resource identifier of the credits associated with the shortfall.
    startAt string
    Start DateTime.
    systemId 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.
    balanceVersion Number
    Points to BalanceVersion document that indicates the remaining commitment balance when the credit was created.
    charge Property Map
    Shortfall amount with grain.
    endAt String
    End DateTime in UTC.
    productCode String
    Represents catalog UPN.
    resourceId String
    Fully-qualified resource identifier of the credits associated with the shortfall.
    startAt String
    Start DateTime.
    systemId String
    This is an identifier of the shortfall which will not change for its lifetime.

    ShortfallResponse, ShortfallResponseArgs

    MACC shortfall
    BalanceVersion double
    Points to BalanceVersion document that indicates the remaining commitment balance when the credit was created.
    Charge Pulumi.AzureNative.BillingBenefits.Inputs.CommitmentResponse
    Shortfall amount with grain.
    EndAt string
    End DateTime in UTC.
    ProductCode string
    Represents catalog UPN.
    ResourceId string
    Fully-qualified resource identifier of the credits associated with the shortfall.
    StartAt string
    Start DateTime.
    SystemId string
    This is an identifier of the shortfall which will not change for its lifetime.
    BalanceVersion float64
    Points to BalanceVersion document that indicates the remaining commitment balance when the credit was created.
    Charge CommitmentResponse
    Shortfall amount with grain.
    EndAt string
    End DateTime in UTC.
    ProductCode string
    Represents catalog UPN.
    ResourceId string
    Fully-qualified resource identifier of the credits associated with the shortfall.
    StartAt string
    Start DateTime.
    SystemId string
    This is an identifier of the shortfall which will not change for its lifetime.
    balanceVersion Double
    Points to BalanceVersion document that indicates the remaining commitment balance when the credit was created.
    charge CommitmentResponse
    Shortfall amount with grain.
    endAt String
    End DateTime in UTC.
    productCode String
    Represents catalog UPN.
    resourceId String
    Fully-qualified resource identifier of the credits associated with the shortfall.
    startAt String
    Start DateTime.
    systemId String
    This is an identifier of the shortfall which will not change for its lifetime.
    balanceVersion number
    Points to BalanceVersion document that indicates the remaining commitment balance when the credit was created.
    charge CommitmentResponse
    Shortfall amount with grain.
    endAt string
    End DateTime in UTC.
    productCode string
    Represents catalog UPN.
    resourceId string
    Fully-qualified resource identifier of the credits associated with the shortfall.
    startAt string
    Start DateTime.
    systemId 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 CommitmentResponse
    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.
    balanceVersion Number
    Points to BalanceVersion document that indicates the remaining commitment balance when the credit was created.
    charge Property Map
    Shortfall amount with grain.
    endAt String
    End DateTime in UTC.
    productCode String
    Represents catalog UPN.
    resourceId String
    Fully-qualified resource identifier of the credits associated with the shortfall.
    startAt String
    Start DateTime.
    systemId 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.AzureNative.BillingBenefits.SkuTier
    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 SkuTier
    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 SkuTier
    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 SkuTier
    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 SkuTier
    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
    SkuTierFree
    Free
    SkuTierBasic
    Basic
    SkuTierStandard
    Standard
    SkuTierPremium
    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.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    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_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs

    User assigned identity properties
    ClientId string
    The client ID of the assigned identity.
    PrincipalId string
    The principal ID of the assigned identity.
    ClientId string
    The client ID of the assigned identity.
    PrincipalId string
    The principal ID of the assigned identity.
    clientId String
    The client ID of the assigned identity.
    principalId String
    The principal ID of the assigned identity.
    clientId string
    The client ID of the assigned identity.
    principalId 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.
    clientId String
    The client ID of the assigned identity.
    principalId 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
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
    Azure Native v3.13.0 published on Wednesday, Jan 28, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate