1. Packages
  2. Azure Native
  3. API Docs
  4. billingbenefits
  5. Discount
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native.billingbenefits.Discount

Explore with Pulumi AI

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 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

    Resource definition for Discounts.

    Uses Azure REST API version 2024-11-01-preview.

    Example Usage

    DiscountsCreateAffiliate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var discount = new AzureNative.BillingBenefits.Discount("discount", new()
        {
            DiscountName = "testaffiliatediscount",
            DisplayName = "Virtual Machines D Series",
            EntityType = AzureNative.BillingBenefits.DiscountEntityType.Affiliate,
            Location = "global",
            ProductCode = "0001d726-0000-0160-330f-a0b98cdbbdc4",
            ResourceGroupName = "testrg",
            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/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := billingbenefits.NewDiscount(ctx, "discount", &billingbenefits.DiscountArgs{
    			DiscountName:      pulumi.String("testaffiliatediscount"),
    			DisplayName:       pulumi.String("Virtual Machines D Series"),
    			EntityType:        pulumi.String(billingbenefits.DiscountEntityTypeAffiliate),
    			Location:          pulumi.String("global"),
    			ProductCode:       pulumi.String("0001d726-0000-0160-330f-a0b98cdbbdc4"),
    			ResourceGroupName: pulumi.String("testrg"),
    			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.Discount;
    import com.pulumi.azurenative.billingbenefits.DiscountArgs;
    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 discount = new Discount("discount", DiscountArgs.builder()
                .discountName("testaffiliatediscount")
                .displayName("Virtual Machines D Series")
                .entityType("Affiliate")
                .location("global")
                .productCode("0001d726-0000-0160-330f-a0b98cdbbdc4")
                .resourceGroupName("testrg")
                .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 discount = new azure_native.billingbenefits.Discount("discount", {
        discountName: "testaffiliatediscount",
        displayName: "Virtual Machines D Series",
        entityType: azure_native.billingbenefits.DiscountEntityType.Affiliate,
        location: "global",
        productCode: "0001d726-0000-0160-330f-a0b98cdbbdc4",
        resourceGroupName: "testrg",
        startAt: "2023-07-01T00:00:00Z",
        systemId: "13810867107109237",
        tags: {
            key1: "value1",
            key2: "value2",
        },
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    discount = azure_native.billingbenefits.Discount("discount",
        discount_name="testaffiliatediscount",
        display_name="Virtual Machines D Series",
        entity_type=azure_native.billingbenefits.DiscountEntityType.AFFILIATE,
        location="global",
        product_code="0001d726-0000-0160-330f-a0b98cdbbdc4",
        resource_group_name="testrg",
        start_at="2023-07-01T00:00:00Z",
        system_id="13810867107109237",
        tags={
            "key1": "value1",
            "key2": "value2",
        })
    
    resources:
      discount:
        type: azure-native:billingbenefits:Discount
        properties:
          discountName: testaffiliatediscount
          displayName: Virtual Machines D Series
          entityType: Affiliate
          location: global
          productCode: 0001d726-0000-0160-330f-a0b98cdbbdc4
          resourceGroupName: testrg
          startAt: 2023-07-01T00:00:00Z
          systemId: '13810867107109237'
          tags:
            key1: value1
            key2: value2
    

    DiscountsCreatePrimary

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var discount = new AzureNative.BillingBenefits.Discount("discount", new()
        {
            AppliedScopeType = AzureNative.BillingBenefits.DiscountAppliedScopeType.BillingAccount,
            DiscountName = "testprimarydiscount",
            DisplayName = "Virtual Machines D Series",
            EntityType = AzureNative.BillingBenefits.DiscountEntityType.Primary,
            Location = "global",
            ProductCode = "0001d726-0000-0160-330f-a0b98cdbbdc4",
            ResourceGroupName = "testrg",
            StartAt = "2023-07-01T00:00:00Z",
            Tags = 
            {
                { "key1", "value1" },
                { "key2", "value2" },
            },
        });
    
    });
    
    package main
    
    import (
    	billingbenefits "github.com/pulumi/pulumi-azure-native-sdk/billingbenefits/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := billingbenefits.NewDiscount(ctx, "discount", &billingbenefits.DiscountArgs{
    			AppliedScopeType:  pulumi.String(billingbenefits.DiscountAppliedScopeTypeBillingAccount),
    			DiscountName:      pulumi.String("testprimarydiscount"),
    			DisplayName:       pulumi.String("Virtual Machines D Series"),
    			EntityType:        pulumi.String(billingbenefits.DiscountEntityTypePrimary),
    			Location:          pulumi.String("global"),
    			ProductCode:       pulumi.String("0001d726-0000-0160-330f-a0b98cdbbdc4"),
    			ResourceGroupName: pulumi.String("testrg"),
    			StartAt:           pulumi.String("2023-07-01T00:00:00Z"),
    			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.Discount;
    import com.pulumi.azurenative.billingbenefits.DiscountArgs;
    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 discount = new Discount("discount", DiscountArgs.builder()
                .appliedScopeType("BillingAccount")
                .discountName("testprimarydiscount")
                .displayName("Virtual Machines D Series")
                .entityType("Primary")
                .location("global")
                .productCode("0001d726-0000-0160-330f-a0b98cdbbdc4")
                .resourceGroupName("testrg")
                .startAt("2023-07-01T00:00:00Z")
                .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 discount = new azure_native.billingbenefits.Discount("discount", {
        appliedScopeType: azure_native.billingbenefits.DiscountAppliedScopeType.BillingAccount,
        discountName: "testprimarydiscount",
        displayName: "Virtual Machines D Series",
        entityType: azure_native.billingbenefits.DiscountEntityType.Primary,
        location: "global",
        productCode: "0001d726-0000-0160-330f-a0b98cdbbdc4",
        resourceGroupName: "testrg",
        startAt: "2023-07-01T00:00:00Z",
        tags: {
            key1: "value1",
            key2: "value2",
        },
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    discount = azure_native.billingbenefits.Discount("discount",
        applied_scope_type=azure_native.billingbenefits.DiscountAppliedScopeType.BILLING_ACCOUNT,
        discount_name="testprimarydiscount",
        display_name="Virtual Machines D Series",
        entity_type=azure_native.billingbenefits.DiscountEntityType.PRIMARY,
        location="global",
        product_code="0001d726-0000-0160-330f-a0b98cdbbdc4",
        resource_group_name="testrg",
        start_at="2023-07-01T00:00:00Z",
        tags={
            "key1": "value1",
            "key2": "value2",
        })
    
    resources:
      discount:
        type: azure-native:billingbenefits:Discount
        properties:
          appliedScopeType: BillingAccount
          discountName: testprimarydiscount
          displayName: Virtual Machines D Series
          entityType: Primary
          location: global
          productCode: 0001d726-0000-0160-330f-a0b98cdbbdc4
          resourceGroupName: testrg
          startAt: 2023-07-01T00:00:00Z
          tags:
            key1: value1
            key2: value2
    

    DiscountsCreatePrimaryBackfill

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var discount = new AzureNative.BillingBenefits.Discount("discount", new()
        {
            AppliedScopeType = AzureNative.BillingBenefits.DiscountAppliedScopeType.BillingAccount,
            DiscountName = "testprimarydiscount",
            DisplayName = "Virtual Machines D Series",
            EntityType = AzureNative.BillingBenefits.DiscountEntityType.Primary,
            Location = "global",
            ProductCode = "0001d726-0000-0160-330f-a0b98cdbbdc4",
            ResourceGroupName = "testrg",
            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/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := billingbenefits.NewDiscount(ctx, "discount", &billingbenefits.DiscountArgs{
    			AppliedScopeType:  pulumi.String(billingbenefits.DiscountAppliedScopeTypeBillingAccount),
    			DiscountName:      pulumi.String("testprimarydiscount"),
    			DisplayName:       pulumi.String("Virtual Machines D Series"),
    			EntityType:        pulumi.String(billingbenefits.DiscountEntityTypePrimary),
    			Location:          pulumi.String("global"),
    			ProductCode:       pulumi.String("0001d726-0000-0160-330f-a0b98cdbbdc4"),
    			ResourceGroupName: pulumi.String("testrg"),
    			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.Discount;
    import com.pulumi.azurenative.billingbenefits.DiscountArgs;
    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 discount = new Discount("discount", DiscountArgs.builder()
                .appliedScopeType("BillingAccount")
                .discountName("testprimarydiscount")
                .displayName("Virtual Machines D Series")
                .entityType("Primary")
                .location("global")
                .productCode("0001d726-0000-0160-330f-a0b98cdbbdc4")
                .resourceGroupName("testrg")
                .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 discount = new azure_native.billingbenefits.Discount("discount", {
        appliedScopeType: azure_native.billingbenefits.DiscountAppliedScopeType.BillingAccount,
        discountName: "testprimarydiscount",
        displayName: "Virtual Machines D Series",
        entityType: azure_native.billingbenefits.DiscountEntityType.Primary,
        location: "global",
        productCode: "0001d726-0000-0160-330f-a0b98cdbbdc4",
        resourceGroupName: "testrg",
        startAt: "2023-07-01T00:00:00Z",
        systemId: "13810867107109237",
        tags: {
            key1: "value1",
            key2: "value2",
        },
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    discount = azure_native.billingbenefits.Discount("discount",
        applied_scope_type=azure_native.billingbenefits.DiscountAppliedScopeType.BILLING_ACCOUNT,
        discount_name="testprimarydiscount",
        display_name="Virtual Machines D Series",
        entity_type=azure_native.billingbenefits.DiscountEntityType.PRIMARY,
        location="global",
        product_code="0001d726-0000-0160-330f-a0b98cdbbdc4",
        resource_group_name="testrg",
        start_at="2023-07-01T00:00:00Z",
        system_id="13810867107109237",
        tags={
            "key1": "value1",
            "key2": "value2",
        })
    
    resources:
      discount:
        type: azure-native:billingbenefits:Discount
        properties:
          appliedScopeType: BillingAccount
          discountName: testprimarydiscount
          displayName: Virtual Machines D Series
          entityType: Primary
          location: global
          productCode: 0001d726-0000-0160-330f-a0b98cdbbdc4
          resourceGroupName: testrg
          startAt: 2023-07-01T00:00:00Z
          systemId: '13810867107109237'
          tags:
            key1: value1
            key2: value2
    

    DiscountsCreatePrimaryWithCustomPrice

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var discount = new AzureNative.BillingBenefits.Discount("discount", new()
        {
            AppliedScopeType = AzureNative.BillingBenefits.DiscountAppliedScopeType.BillingAccount,
            DiscountName = "testprimarydiscount",
            DisplayName = "Virtual Machines D Series",
            EntityType = AzureNative.BillingBenefits.DiscountEntityType.Primary,
            Location = "global",
            ProductCode = "0001d726-0000-0160-330f-a0b98cdbbdc4",
            ResourceGroupName = "testrg",
            StartAt = "2023-07-01T00:00:00Z",
            Tags = 
            {
                { "key1", "value1" },
                { "key2", "value2" },
            },
        });
    
    });
    
    package main
    
    import (
    	billingbenefits "github.com/pulumi/pulumi-azure-native-sdk/billingbenefits/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := billingbenefits.NewDiscount(ctx, "discount", &billingbenefits.DiscountArgs{
    			AppliedScopeType:  pulumi.String(billingbenefits.DiscountAppliedScopeTypeBillingAccount),
    			DiscountName:      pulumi.String("testprimarydiscount"),
    			DisplayName:       pulumi.String("Virtual Machines D Series"),
    			EntityType:        pulumi.String(billingbenefits.DiscountEntityTypePrimary),
    			Location:          pulumi.String("global"),
    			ProductCode:       pulumi.String("0001d726-0000-0160-330f-a0b98cdbbdc4"),
    			ResourceGroupName: pulumi.String("testrg"),
    			StartAt:           pulumi.String("2023-07-01T00:00:00Z"),
    			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.Discount;
    import com.pulumi.azurenative.billingbenefits.DiscountArgs;
    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 discount = new Discount("discount", DiscountArgs.builder()
                .appliedScopeType("BillingAccount")
                .discountName("testprimarydiscount")
                .displayName("Virtual Machines D Series")
                .entityType("Primary")
                .location("global")
                .productCode("0001d726-0000-0160-330f-a0b98cdbbdc4")
                .resourceGroupName("testrg")
                .startAt("2023-07-01T00:00:00Z")
                .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 discount = new azure_native.billingbenefits.Discount("discount", {
        appliedScopeType: azure_native.billingbenefits.DiscountAppliedScopeType.BillingAccount,
        discountName: "testprimarydiscount",
        displayName: "Virtual Machines D Series",
        entityType: azure_native.billingbenefits.DiscountEntityType.Primary,
        location: "global",
        productCode: "0001d726-0000-0160-330f-a0b98cdbbdc4",
        resourceGroupName: "testrg",
        startAt: "2023-07-01T00:00:00Z",
        tags: {
            key1: "value1",
            key2: "value2",
        },
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    discount = azure_native.billingbenefits.Discount("discount",
        applied_scope_type=azure_native.billingbenefits.DiscountAppliedScopeType.BILLING_ACCOUNT,
        discount_name="testprimarydiscount",
        display_name="Virtual Machines D Series",
        entity_type=azure_native.billingbenefits.DiscountEntityType.PRIMARY,
        location="global",
        product_code="0001d726-0000-0160-330f-a0b98cdbbdc4",
        resource_group_name="testrg",
        start_at="2023-07-01T00:00:00Z",
        tags={
            "key1": "value1",
            "key2": "value2",
        })
    
    resources:
      discount:
        type: azure-native:billingbenefits:Discount
        properties:
          appliedScopeType: BillingAccount
          discountName: testprimarydiscount
          displayName: Virtual Machines D Series
          entityType: Primary
          location: global
          productCode: 0001d726-0000-0160-330f-a0b98cdbbdc4
          resourceGroupName: testrg
          startAt: 2023-07-01T00:00:00Z
          tags:
            key1: value1
            key2: value2
    

    DiscountsCreatePrimaryWithCustomPriceMultiCurrency

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var discount = new AzureNative.BillingBenefits.Discount("discount", new()
        {
            AppliedScopeType = AzureNative.BillingBenefits.DiscountAppliedScopeType.BillingAccount,
            DiscountName = "testprimarydiscount",
            DisplayName = "Virtual Machines D Series",
            EntityType = AzureNative.BillingBenefits.DiscountEntityType.Primary,
            Location = "global",
            ProductCode = "0001d726-0000-0160-330f-a0b98cdbbdc4",
            ResourceGroupName = "testrg",
            StartAt = "2023-07-01T00:00:00Z",
            Tags = 
            {
                { "key1", "value1" },
                { "key2", "value2" },
            },
        });
    
    });
    
    package main
    
    import (
    	billingbenefits "github.com/pulumi/pulumi-azure-native-sdk/billingbenefits/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := billingbenefits.NewDiscount(ctx, "discount", &billingbenefits.DiscountArgs{
    			AppliedScopeType:  pulumi.String(billingbenefits.DiscountAppliedScopeTypeBillingAccount),
    			DiscountName:      pulumi.String("testprimarydiscount"),
    			DisplayName:       pulumi.String("Virtual Machines D Series"),
    			EntityType:        pulumi.String(billingbenefits.DiscountEntityTypePrimary),
    			Location:          pulumi.String("global"),
    			ProductCode:       pulumi.String("0001d726-0000-0160-330f-a0b98cdbbdc4"),
    			ResourceGroupName: pulumi.String("testrg"),
    			StartAt:           pulumi.String("2023-07-01T00:00:00Z"),
    			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.Discount;
    import com.pulumi.azurenative.billingbenefits.DiscountArgs;
    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 discount = new Discount("discount", DiscountArgs.builder()
                .appliedScopeType("BillingAccount")
                .discountName("testprimarydiscount")
                .displayName("Virtual Machines D Series")
                .entityType("Primary")
                .location("global")
                .productCode("0001d726-0000-0160-330f-a0b98cdbbdc4")
                .resourceGroupName("testrg")
                .startAt("2023-07-01T00:00:00Z")
                .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 discount = new azure_native.billingbenefits.Discount("discount", {
        appliedScopeType: azure_native.billingbenefits.DiscountAppliedScopeType.BillingAccount,
        discountName: "testprimarydiscount",
        displayName: "Virtual Machines D Series",
        entityType: azure_native.billingbenefits.DiscountEntityType.Primary,
        location: "global",
        productCode: "0001d726-0000-0160-330f-a0b98cdbbdc4",
        resourceGroupName: "testrg",
        startAt: "2023-07-01T00:00:00Z",
        tags: {
            key1: "value1",
            key2: "value2",
        },
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    discount = azure_native.billingbenefits.Discount("discount",
        applied_scope_type=azure_native.billingbenefits.DiscountAppliedScopeType.BILLING_ACCOUNT,
        discount_name="testprimarydiscount",
        display_name="Virtual Machines D Series",
        entity_type=azure_native.billingbenefits.DiscountEntityType.PRIMARY,
        location="global",
        product_code="0001d726-0000-0160-330f-a0b98cdbbdc4",
        resource_group_name="testrg",
        start_at="2023-07-01T00:00:00Z",
        tags={
            "key1": "value1",
            "key2": "value2",
        })
    
    resources:
      discount:
        type: azure-native:billingbenefits:Discount
        properties:
          appliedScopeType: BillingAccount
          discountName: testprimarydiscount
          displayName: Virtual Machines D Series
          entityType: Primary
          location: global
          productCode: 0001d726-0000-0160-330f-a0b98cdbbdc4
          resourceGroupName: testrg
          startAt: 2023-07-01T00:00:00Z
          tags:
            key1: value1
            key2: value2
    

    DiscountsCreatePrimaryWithPriceGuarantee

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var discount = new AzureNative.BillingBenefits.Discount("discount", new()
        {
            AppliedScopeType = AzureNative.BillingBenefits.DiscountAppliedScopeType.BillingAccount,
            DiscountName = "testprimarydiscount",
            DisplayName = "Virtual Machines D Series",
            EntityType = AzureNative.BillingBenefits.DiscountEntityType.Primary,
            Location = "global",
            ProductCode = "0001d726-0000-0160-330f-a0b98cdbbdc4",
            ResourceGroupName = "testrg",
            StartAt = "2023-07-01T00:00:00Z",
            Tags = 
            {
                { "key1", "value1" },
                { "key2", "value2" },
            },
        });
    
    });
    
    package main
    
    import (
    	billingbenefits "github.com/pulumi/pulumi-azure-native-sdk/billingbenefits/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := billingbenefits.NewDiscount(ctx, "discount", &billingbenefits.DiscountArgs{
    			AppliedScopeType:  pulumi.String(billingbenefits.DiscountAppliedScopeTypeBillingAccount),
    			DiscountName:      pulumi.String("testprimarydiscount"),
    			DisplayName:       pulumi.String("Virtual Machines D Series"),
    			EntityType:        pulumi.String(billingbenefits.DiscountEntityTypePrimary),
    			Location:          pulumi.String("global"),
    			ProductCode:       pulumi.String("0001d726-0000-0160-330f-a0b98cdbbdc4"),
    			ResourceGroupName: pulumi.String("testrg"),
    			StartAt:           pulumi.String("2023-07-01T00:00:00Z"),
    			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.Discount;
    import com.pulumi.azurenative.billingbenefits.DiscountArgs;
    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 discount = new Discount("discount", DiscountArgs.builder()
                .appliedScopeType("BillingAccount")
                .discountName("testprimarydiscount")
                .displayName("Virtual Machines D Series")
                .entityType("Primary")
                .location("global")
                .productCode("0001d726-0000-0160-330f-a0b98cdbbdc4")
                .resourceGroupName("testrg")
                .startAt("2023-07-01T00:00:00Z")
                .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 discount = new azure_native.billingbenefits.Discount("discount", {
        appliedScopeType: azure_native.billingbenefits.DiscountAppliedScopeType.BillingAccount,
        discountName: "testprimarydiscount",
        displayName: "Virtual Machines D Series",
        entityType: azure_native.billingbenefits.DiscountEntityType.Primary,
        location: "global",
        productCode: "0001d726-0000-0160-330f-a0b98cdbbdc4",
        resourceGroupName: "testrg",
        startAt: "2023-07-01T00:00:00Z",
        tags: {
            key1: "value1",
            key2: "value2",
        },
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    discount = azure_native.billingbenefits.Discount("discount",
        applied_scope_type=azure_native.billingbenefits.DiscountAppliedScopeType.BILLING_ACCOUNT,
        discount_name="testprimarydiscount",
        display_name="Virtual Machines D Series",
        entity_type=azure_native.billingbenefits.DiscountEntityType.PRIMARY,
        location="global",
        product_code="0001d726-0000-0160-330f-a0b98cdbbdc4",
        resource_group_name="testrg",
        start_at="2023-07-01T00:00:00Z",
        tags={
            "key1": "value1",
            "key2": "value2",
        })
    
    resources:
      discount:
        type: azure-native:billingbenefits:Discount
        properties:
          appliedScopeType: BillingAccount
          discountName: testprimarydiscount
          displayName: Virtual Machines D Series
          entityType: Primary
          location: global
          productCode: 0001d726-0000-0160-330f-a0b98cdbbdc4
          resourceGroupName: testrg
          startAt: 2023-07-01T00:00:00Z
          tags:
            key1: value1
            key2: value2
    

    Create Discount Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Discount(name: string, args: DiscountArgs, opts?: CustomResourceOptions);
    @overload
    def Discount(resource_name: str,
                 args: DiscountArgs,
                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def Discount(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 product_code: Optional[str] = None,
                 resource_group_name: Optional[str] = None,
                 start_at: Optional[str] = None,
                 entity_type: Optional[Union[str, DiscountEntityType]] = None,
                 identity: Optional[ManagedServiceIdentityArgs] = None,
                 kind: Optional[str] = None,
                 discount_name: Optional[str] = None,
                 plan: Optional[PlanArgs] = None,
                 location: Optional[str] = None,
                 applied_scope_type: Optional[Union[str, DiscountAppliedScopeType]] = None,
                 managed_by: Optional[str] = None,
                 sku: Optional[SkuArgs] = None,
                 display_name: Optional[str] = None,
                 system_id: Optional[str] = None,
                 tags: Optional[Mapping[str, str]] = None)
    func NewDiscount(ctx *Context, name string, args DiscountArgs, opts ...ResourceOption) (*Discount, error)
    public Discount(string name, DiscountArgs args, CustomResourceOptions? opts = null)
    public Discount(String name, DiscountArgs args)
    public Discount(String name, DiscountArgs args, CustomResourceOptions options)
    
    type: azure-native:billingbenefits:Discount
    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 DiscountArgs
    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 DiscountArgs
    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 DiscountArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DiscountArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DiscountArgs
    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 discountResource = new AzureNative.BillingBenefits.Discount("discountResource", new()
    {
        ProductCode = "string",
        ResourceGroupName = "string",
        StartAt = "string",
        EntityType = "string",
        Identity = new AzureNative.BillingBenefits.Inputs.ManagedServiceIdentityArgs
        {
            Type = "string",
            UserAssignedIdentities = new[]
            {
                "string",
            },
        },
        Kind = "string",
        DiscountName = "string",
        Plan = new AzureNative.BillingBenefits.Inputs.PlanArgs
        {
            Name = "string",
            Product = "string",
            Publisher = "string",
            PromotionCode = "string",
            Version = "string",
        },
        Location = "string",
        AppliedScopeType = "string",
        ManagedBy = "string",
        Sku = new AzureNative.BillingBenefits.Inputs.SkuArgs
        {
            Name = "string",
            Capacity = 0,
            Family = "string",
            Size = "string",
            Tier = AzureNative.BillingBenefits.SkuTier.Free,
        },
        DisplayName = "string",
        SystemId = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := billingbenefits.NewDiscount(ctx, "discountResource", &billingbenefits.DiscountArgs{
    	ProductCode:       pulumi.String("string"),
    	ResourceGroupName: pulumi.String("string"),
    	StartAt:           pulumi.String("string"),
    	EntityType:        pulumi.String("string"),
    	Identity: &billingbenefits.ManagedServiceIdentityArgs{
    		Type: pulumi.String("string"),
    		UserAssignedIdentities: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    	Kind:         pulumi.String("string"),
    	DiscountName: 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"),
    	},
    	Location:         pulumi.String("string"),
    	AppliedScopeType: pulumi.String("string"),
    	ManagedBy:        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,
    	},
    	DisplayName: pulumi.String("string"),
    	SystemId:    pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var discountResource = new Discount("discountResource", DiscountArgs.builder()
        .productCode("string")
        .resourceGroupName("string")
        .startAt("string")
        .entityType("string")
        .identity(ManagedServiceIdentityArgs.builder()
            .type("string")
            .userAssignedIdentities("string")
            .build())
        .kind("string")
        .discountName("string")
        .plan(PlanArgs.builder()
            .name("string")
            .product("string")
            .publisher("string")
            .promotionCode("string")
            .version("string")
            .build())
        .location("string")
        .appliedScopeType("string")
        .managedBy("string")
        .sku(SkuArgs.builder()
            .name("string")
            .capacity(0)
            .family("string")
            .size("string")
            .tier("Free")
            .build())
        .displayName("string")
        .systemId("string")
        .tags(Map.of("string", "string"))
        .build());
    
    discount_resource = azure_native.billingbenefits.Discount("discountResource",
        product_code="string",
        resource_group_name="string",
        start_at="string",
        entity_type="string",
        identity={
            "type": "string",
            "user_assigned_identities": ["string"],
        },
        kind="string",
        discount_name="string",
        plan={
            "name": "string",
            "product": "string",
            "publisher": "string",
            "promotion_code": "string",
            "version": "string",
        },
        location="string",
        applied_scope_type="string",
        managed_by="string",
        sku={
            "name": "string",
            "capacity": 0,
            "family": "string",
            "size": "string",
            "tier": azure_native.billingbenefits.SkuTier.FREE,
        },
        display_name="string",
        system_id="string",
        tags={
            "string": "string",
        })
    
    const discountResource = new azure_native.billingbenefits.Discount("discountResource", {
        productCode: "string",
        resourceGroupName: "string",
        startAt: "string",
        entityType: "string",
        identity: {
            type: "string",
            userAssignedIdentities: ["string"],
        },
        kind: "string",
        discountName: "string",
        plan: {
            name: "string",
            product: "string",
            publisher: "string",
            promotionCode: "string",
            version: "string",
        },
        location: "string",
        appliedScopeType: "string",
        managedBy: "string",
        sku: {
            name: "string",
            capacity: 0,
            family: "string",
            size: "string",
            tier: azure_native.billingbenefits.SkuTier.Free,
        },
        displayName: "string",
        systemId: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:billingbenefits:Discount
    properties:
        appliedScopeType: string
        discountName: string
        displayName: string
        entityType: string
        identity:
            type: string
            userAssignedIdentities:
                - string
        kind: string
        location: string
        managedBy: string
        plan:
            name: string
            product: string
            promotionCode: string
            publisher: string
            version: string
        productCode: string
        resourceGroupName: string
        sku:
            capacity: 0
            family: string
            name: string
            size: string
            tier: Free
        startAt: string
        systemId: string
        tags:
            string: string
    

    Discount 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 Discount resource accepts the following input properties:

    EntityType string | Pulumi.AzureNative.BillingBenefits.DiscountEntityType
    This defines whether the entity being created is primary or affiliate. Supported values: primary, affiliate. Validation: Required, must match one of the 2 values.
    ProductCode string
    This is the catalog UPN for the product.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    StartAt string
    Start date of the discount. Value is the date the discount started or will start in the future.
    AppliedScopeType string | Pulumi.AzureNative.BillingBenefits.DiscountAppliedScopeType
    List of applied scopes supported for discounts.
    DiscountName string
    Name of the discount
    DisplayName string
    This defines a user friendly display name for the discount.
    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
    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.
    Plan Pulumi.AzureNative.BillingBenefits.Inputs.Plan
    Plan for the resource.
    Sku Pulumi.AzureNative.BillingBenefits.Inputs.Sku
    The resource model definition representing SKU
    SystemId string
    This is the globally unique identifier of the Discount which will not change for the lifetime of the Discount.
    Tags Dictionary<string, string>
    Resource tags.
    EntityType string | DiscountEntityType
    This defines whether the entity being created is primary or affiliate. Supported values: primary, affiliate. Validation: Required, must match one of the 2 values.
    ProductCode string
    This is the catalog UPN for the product.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    StartAt string
    Start date of the discount. Value is the date the discount started or will start in the future.
    AppliedScopeType string | DiscountAppliedScopeType
    List of applied scopes supported for discounts.
    DiscountName string
    Name of the discount
    DisplayName string
    This defines a user friendly display name for the discount.
    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
    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.
    Plan PlanArgs
    Plan for the resource.
    Sku SkuArgs
    The resource model definition representing SKU
    SystemId string
    This is the globally unique identifier of the Discount which will not change for the lifetime of the Discount.
    Tags map[string]string
    Resource tags.
    entityType String | DiscountEntityType
    This defines whether the entity being created is primary or affiliate. Supported values: primary, affiliate. Validation: Required, must match one of the 2 values.
    productCode String
    This is the catalog UPN for the product.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    startAt String
    Start date of the discount. Value is the date the discount started or will start in the future.
    appliedScopeType String | DiscountAppliedScopeType
    List of applied scopes supported for discounts.
    discountName String
    Name of the discount
    displayName String
    This defines a user friendly display name for the discount.
    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
    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.
    plan Plan
    Plan for the resource.
    sku Sku
    The resource model definition representing SKU
    systemId String
    This is the globally unique identifier of the Discount which will not change for the lifetime of the Discount.
    tags Map<String,String>
    Resource tags.
    entityType string | DiscountEntityType
    This defines whether the entity being created is primary or affiliate. Supported values: primary, affiliate. Validation: Required, must match one of the 2 values.
    productCode string
    This is the catalog UPN for the product.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    startAt string
    Start date of the discount. Value is the date the discount started or will start in the future.
    appliedScopeType string | DiscountAppliedScopeType
    List of applied scopes supported for discounts.
    discountName string
    Name of the discount
    displayName string
    This defines a user friendly display name for the discount.
    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
    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.
    plan Plan
    Plan for the resource.
    sku Sku
    The resource model definition representing SKU
    systemId string
    This is the globally unique identifier of the Discount which will not change for the lifetime of the Discount.
    tags {[key: string]: string}
    Resource tags.
    entity_type str | DiscountEntityType
    This defines whether the entity being created is primary or affiliate. Supported values: primary, affiliate. Validation: Required, must match one of the 2 values.
    product_code str
    This is the catalog UPN for the product.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    start_at str
    Start date of the discount. Value is the date the discount started or will start in the future.
    applied_scope_type str | DiscountAppliedScopeType
    List of applied scopes supported for discounts.
    discount_name str
    Name of the discount
    display_name str
    This defines a user friendly display name for the discount.
    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
    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.
    plan PlanArgs
    Plan for the resource.
    sku SkuArgs
    The resource model definition representing SKU
    system_id str
    This is the globally unique identifier of the Discount which will not change for the lifetime of the Discount.
    tags Mapping[str, str]
    Resource tags.
    entityType String | "Primary" | "Affiliate"
    This defines whether the entity being created is primary or affiliate. Supported values: primary, affiliate. Validation: Required, must match one of the 2 values.
    productCode String
    This is the catalog UPN for the product.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    startAt String
    Start date of the discount. Value is the date the discount started or will start in the future.
    appliedScopeType String | "BillingAccount" | "BillingProfile" | "Customer"
    List of applied scopes supported for discounts.
    discountName String
    Name of the discount
    displayName String
    This defines a user friendly display name for the discount.
    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
    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.
    plan Property Map
    Plan for the resource.
    sku Property Map
    The resource model definition representing SKU
    systemId String
    This is the globally unique identifier of the Discount which will not change for the lifetime of the Discount.
    tags Map<String>
    Resource tags.

    Outputs

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

    BenefitResourceId string
    Fully-qualified identifier of the benefit under applicable benefit list.
    BillingAccountResourceId string
    Billing account resource id where the discount metadata is present.
    BillingProfileResourceId string
    Billing profile resource id where the discount is scoped to.
    CustomerResourceId string
    Customer resource id where the discount is scoped to.
    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
    The state of the resource. Supported values are Pending, Failed, Succeeded, Canceled.
    Status string
    Represents the current status of the discount.
    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"
    BenefitResourceId string
    Fully-qualified identifier of the benefit under applicable benefit list.
    BillingAccountResourceId string
    Billing account resource id where the discount metadata is present.
    BillingProfileResourceId string
    Billing profile resource id where the discount is scoped to.
    CustomerResourceId string
    Customer resource id where the discount is scoped to.
    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
    The state of the resource. Supported values are Pending, Failed, Succeeded, Canceled.
    Status string
    Represents the current status of the discount.
    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"
    benefitResourceId String
    Fully-qualified identifier of the benefit under applicable benefit list.
    billingAccountResourceId String
    Billing account resource id where the discount metadata is present.
    billingProfileResourceId String
    Billing profile resource id where the discount is scoped to.
    customerResourceId String
    Customer resource id where the discount is scoped to.
    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
    The state of the resource. Supported values are Pending, Failed, Succeeded, Canceled.
    status String
    Represents the current status of the discount.
    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"
    benefitResourceId string
    Fully-qualified identifier of the benefit under applicable benefit list.
    billingAccountResourceId string
    Billing account resource id where the discount metadata is present.
    billingProfileResourceId string
    Billing profile resource id where the discount is scoped to.
    customerResourceId string
    Customer resource id where the discount is scoped to.
    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
    The state of the resource. Supported values are Pending, Failed, Succeeded, Canceled.
    status string
    Represents the current status of the discount.
    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"
    benefit_resource_id str
    Fully-qualified identifier of the benefit under applicable benefit list.
    billing_account_resource_id str
    Billing account resource id where the discount metadata is present.
    billing_profile_resource_id str
    Billing profile resource id where the discount is scoped to.
    customer_resource_id str
    Customer resource id where the discount is scoped to.
    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
    The state of the resource. Supported values are Pending, Failed, Succeeded, Canceled.
    status str
    Represents the current status of the discount.
    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"
    benefitResourceId String
    Fully-qualified identifier of the benefit under applicable benefit list.
    billingAccountResourceId String
    Billing account resource id where the discount metadata is present.
    billingProfileResourceId String
    Billing profile resource id where the discount is scoped to.
    customerResourceId String
    Customer resource id where the discount is scoped to.
    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
    The state of the resource. Supported values are Pending, Failed, Succeeded, Canceled.
    status String
    Represents the current status of the discount.
    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

    DiscountAppliedScopeType, DiscountAppliedScopeTypeArgs

    BillingAccount
    BillingAccount
    BillingProfile
    BillingProfile
    Customer
    Customer
    DiscountAppliedScopeTypeBillingAccount
    BillingAccount
    DiscountAppliedScopeTypeBillingProfile
    BillingProfile
    DiscountAppliedScopeTypeCustomer
    Customer
    BillingAccount
    BillingAccount
    BillingProfile
    BillingProfile
    Customer
    Customer
    BillingAccount
    BillingAccount
    BillingProfile
    BillingProfile
    Customer
    Customer
    BILLING_ACCOUNT
    BillingAccount
    BILLING_PROFILE
    BillingProfile
    CUSTOMER
    Customer
    "BillingAccount"
    BillingAccount
    "BillingProfile"
    BillingProfile
    "Customer"
    Customer

    DiscountEntityType, DiscountEntityTypeArgs

    Primary
    Primary
    Affiliate
    Affiliate
    DiscountEntityTypePrimary
    Primary
    DiscountEntityTypeAffiliate
    Affiliate
    Primary
    Primary
    Affiliate
    Affiliate
    Primary
    Primary
    Affiliate
    Affiliate
    PRIMARY
    Primary
    AFFILIATE
    Affiliate
    "Primary"
    Primary
    "Affiliate"
    Affiliate

    ManagedServiceIdentity, ManagedServiceIdentityArgs

    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

    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

    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

    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.

    Sku, SkuArgs

    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

    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

    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

    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:Discount testprimarydiscount /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/discounts/{discountName} 
    

    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 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi