published on Thursday, Jul 9, 2026 by Pulumi
published on Thursday, Jul 9, 2026 by Pulumi
Resource definition for Conditional Credits.
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
ConditionalCreditCreateContributor
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var conditionalCredit = new AzureNative.BillingBenefits.ConditionalCredit("conditionalCredit", new()
{
ConditionalCreditName = "conditionalCredit_contributor_20250801",
Location = "global",
Properties = new AzureNative.BillingBenefits.Inputs.ContributorConditionalCreditPropertiesArgs
{
DisplayName = "Contributor Conditional Credit 20250801",
EntityType = "Contributor",
PrimaryResourceId = "/subscriptions/10000000-0000-0000-0000-000000000000/resourceGroups/resource_group_name_01/providers/Microsoft.BillingBenefits/conditionalCredits/conditionalCredit_20250801",
ProductCode = "000187f7-0000-0260-ab43-b8473ce57f1d",
StartAt = "2025-09-01T00:00:00Z",
},
ResourceGroupName = "resource_group_name_02",
Tags =
{
{ "environment", "dev" },
{ "team", "finance" },
},
});
});
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.NewConditionalCredit(ctx, "conditionalCredit", &billingbenefits.ConditionalCreditArgs{
ConditionalCreditName: pulumi.String("conditionalCredit_contributor_20250801"),
Location: pulumi.String("global"),
Properties: &billingbenefits.ContributorConditionalCreditPropertiesArgs{
DisplayName: pulumi.String("Contributor Conditional Credit 20250801"),
EntityType: pulumi.String("Contributor"),
PrimaryResourceId: pulumi.String("/subscriptions/10000000-0000-0000-0000-000000000000/resourceGroups/resource_group_name_01/providers/Microsoft.BillingBenefits/conditionalCredits/conditionalCredit_20250801"),
ProductCode: pulumi.String("000187f7-0000-0260-ab43-b8473ce57f1d"),
StartAt: pulumi.String("2025-09-01T00:00:00Z"),
},
ResourceGroupName: pulumi.String("resource_group_name_02"),
Tags: pulumi.StringMap{
"environment": pulumi.String("dev"),
"team": pulumi.String("finance"),
},
})
if err != nil {
return err
}
return nil
})
}
pulumi {
required_providers {
azure-native = {
source = "pulumi/azure-native"
}
}
}
resource "azure-native_billingbenefits_conditionalcredit" "conditionalCredit" {
conditional_credit_name = "conditionalCredit_contributor_20250801"
location = "global"
properties = {
"displayName" = "Contributor Conditional Credit 20250801"
"entityType" = "Contributor"
"primaryResourceId" = "/subscriptions/10000000-0000-0000-0000-000000000000/resourceGroups/resource_group_name_01/providers/Microsoft.BillingBenefits/conditionalCredits/conditionalCredit_20250801"
"productCode" = "000187f7-0000-0260-ab43-b8473ce57f1d"
"startAt" = "2025-09-01T00:00:00Z"
}
resource_group_name = "resource_group_name_02"
tags = {
"environment" = "dev"
"team" = "finance"
}
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.billingbenefits.ConditionalCredit;
import com.pulumi.azurenative.billingbenefits.ConditionalCreditArgs;
import java.util.ArrayList;
import java.util.Arrays;
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 conditionalCredit = new ConditionalCredit("conditionalCredit", ConditionalCreditArgs.builder()
.conditionalCreditName("conditionalCredit_contributor_20250801")
.location("global")
.properties(ContributorConditionalCreditPropertiesArgs.builder()
.displayName("Contributor Conditional Credit 20250801")
.entityType("Contributor")
.primaryResourceId("/subscriptions/10000000-0000-0000-0000-000000000000/resourceGroups/resource_group_name_01/providers/Microsoft.BillingBenefits/conditionalCredits/conditionalCredit_20250801")
.productCode("000187f7-0000-0260-ab43-b8473ce57f1d")
.startAt("2025-09-01T00:00:00Z")
.build())
.resourceGroupName("resource_group_name_02")
.tags(Map.ofEntries(
Map.entry("environment", "dev"),
Map.entry("team", "finance")
))
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const conditionalCredit = new azure_native.billingbenefits.ConditionalCredit("conditionalCredit", {
conditionalCreditName: "conditionalCredit_contributor_20250801",
location: "global",
properties: {
displayName: "Contributor Conditional Credit 20250801",
entityType: "Contributor",
primaryResourceId: "/subscriptions/10000000-0000-0000-0000-000000000000/resourceGroups/resource_group_name_01/providers/Microsoft.BillingBenefits/conditionalCredits/conditionalCredit_20250801",
productCode: "000187f7-0000-0260-ab43-b8473ce57f1d",
startAt: "2025-09-01T00:00:00Z",
},
resourceGroupName: "resource_group_name_02",
tags: {
environment: "dev",
team: "finance",
},
});
import pulumi
import pulumi_azure_native as azure_native
conditional_credit = azure_native.billingbenefits.ConditionalCredit("conditionalCredit",
conditional_credit_name="conditionalCredit_contributor_20250801",
location="global",
properties={
"display_name": "Contributor Conditional Credit 20250801",
"entity_type": "Contributor",
"primary_resource_id": "/subscriptions/10000000-0000-0000-0000-000000000000/resourceGroups/resource_group_name_01/providers/Microsoft.BillingBenefits/conditionalCredits/conditionalCredit_20250801",
"product_code": "000187f7-0000-0260-ab43-b8473ce57f1d",
"start_at": "2025-09-01T00:00:00Z",
},
resource_group_name="resource_group_name_02",
tags={
"environment": "dev",
"team": "finance",
})
resources:
conditionalCredit:
type: azure-native:billingbenefits:ConditionalCredit
properties:
conditionalCreditName: conditionalCredit_contributor_20250801
location: global
properties:
displayName: Contributor Conditional Credit 20250801
entityType: Contributor
primaryResourceId: /subscriptions/10000000-0000-0000-0000-000000000000/resourceGroups/resource_group_name_01/providers/Microsoft.BillingBenefits/conditionalCredits/conditionalCredit_20250801
productCode: 000187f7-0000-0260-ab43-b8473ce57f1d
startAt: 2025-09-01T00:00:00Z
resourceGroupName: resource_group_name_02
tags:
environment: dev
team: finance
ConditionalCreditCreatePrimary
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var conditionalCredit = new AzureNative.BillingBenefits.ConditionalCredit("conditionalCredit", new()
{
ConditionalCreditName = "conditionalCredit_20250801",
Location = "global",
Properties = new AzureNative.BillingBenefits.Inputs.PrimaryConditionalCreditPropertiesArgs
{
AllowContributors = AzureNative.BillingBenefits.EnablementMode.Enabled,
DisplayName = "Conditional Credit 20250801",
EntityType = "Primary",
Milestones = new[]
{
new AzureNative.BillingBenefits.Inputs.ConditionalCreditMilestoneArgs
{
Award = new AzureNative.BillingBenefits.Inputs.AwardArgs
{
Credit = new AzureNative.BillingBenefits.Inputs.CommitmentArgs
{
Amount = 5000,
CurrencyCode = "USD",
Grain = AzureNative.BillingBenefits.CommitmentGrain.FullTerm,
},
Duration = "P3M",
},
EndAt = "2025-09-30T23:59:59Z",
Name = "Milestone 1",
SpendTarget = new AzureNative.BillingBenefits.Inputs.PriceArgs
{
Amount = 50000,
CurrencyCode = "USD",
},
},
new AzureNative.BillingBenefits.Inputs.ConditionalCreditMilestoneArgs
{
Award = new AzureNative.BillingBenefits.Inputs.AwardArgs
{
Credit = new AzureNative.BillingBenefits.Inputs.CommitmentArgs
{
Amount = 10000,
CurrencyCode = "USD",
Grain = AzureNative.BillingBenefits.CommitmentGrain.FullTerm,
},
Duration = "P3M",
},
EndAt = "2025-12-31T23:59:59Z",
Name = "Milestone 2",
SpendTarget = new AzureNative.BillingBenefits.Inputs.PriceArgs
{
Amount = 100000,
CurrencyCode = "USD",
},
},
},
ProductCode = "000187f7-0000-0260-ab43-b8473ce57f1d",
StartAt = "2025-07-01T00:00:00Z",
},
ResourceGroupName = "resource_group_name_01",
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.NewConditionalCredit(ctx, "conditionalCredit", &billingbenefits.ConditionalCreditArgs{
ConditionalCreditName: pulumi.String("conditionalCredit_20250801"),
Location: pulumi.String("global"),
Properties: &billingbenefits.PrimaryConditionalCreditPropertiesArgs{
AllowContributors: pulumi.String(billingbenefits.EnablementModeEnabled),
DisplayName: pulumi.String("Conditional Credit 20250801"),
EntityType: pulumi.String("Primary"),
Milestones: billingbenefits.ConditionalCreditMilestoneArray{
&billingbenefits.ConditionalCreditMilestoneArgs{
Award: &billingbenefits.AwardArgs{
Credit: &billingbenefits.CommitmentArgs{
Amount: pulumi.Float64(5000),
CurrencyCode: pulumi.String("USD"),
Grain: pulumi.String(billingbenefits.CommitmentGrainFullTerm),
},
Duration: pulumi.String("P3M"),
},
EndAt: pulumi.String("2025-09-30T23:59:59Z"),
Name: pulumi.String("Milestone 1"),
SpendTarget: &billingbenefits.PriceArgs{
Amount: pulumi.Float64(50000),
CurrencyCode: pulumi.String("USD"),
},
},
&billingbenefits.ConditionalCreditMilestoneArgs{
Award: &billingbenefits.AwardArgs{
Credit: &billingbenefits.CommitmentArgs{
Amount: pulumi.Float64(10000),
CurrencyCode: pulumi.String("USD"),
Grain: pulumi.String(billingbenefits.CommitmentGrainFullTerm),
},
Duration: pulumi.String("P3M"),
},
EndAt: pulumi.String("2025-12-31T23:59:59Z"),
Name: pulumi.String("Milestone 2"),
SpendTarget: &billingbenefits.PriceArgs{
Amount: pulumi.Float64(100000),
CurrencyCode: pulumi.String("USD"),
},
},
},
ProductCode: pulumi.String("000187f7-0000-0260-ab43-b8473ce57f1d"),
StartAt: pulumi.String("2025-07-01T00:00:00Z"),
},
ResourceGroupName: pulumi.String("resource_group_name_01"),
Tags: pulumi.StringMap{
"key1": pulumi.String("value1"),
"key2": pulumi.String("value2"),
},
})
if err != nil {
return err
}
return nil
})
}
pulumi {
required_providers {
azure-native = {
source = "pulumi/azure-native"
}
}
}
resource "azure-native_billingbenefits_conditionalcredit" "conditionalCredit" {
conditional_credit_name = "conditionalCredit_20250801"
location = "global"
properties = {
"allowContributors" = "Enabled"
"displayName" = "Conditional Credit 20250801"
"entityType" = "Primary"
"milestones" = [{
"award" = {
"credit" = {
"amount" = 5000
"currencyCode" = "USD"
"grain" = "FullTerm"
}
"duration" = "P3M"
}
"endAt" = "2025-09-30T23:59:59Z"
"name" = "Milestone 1"
"spendTarget" = {
"amount" = 50000
"currencyCode" = "USD"
}
}, {
"award" = {
"credit" = {
"amount" = 10000
"currencyCode" = "USD"
"grain" = "FullTerm"
}
"duration" = "P3M"
}
"endAt" = "2025-12-31T23:59:59Z"
"name" = "Milestone 2"
"spendTarget" = {
"amount" = 100000
"currencyCode" = "USD"
}
}]
"productCode" = "000187f7-0000-0260-ab43-b8473ce57f1d"
"startAt" = "2025-07-01T00:00:00Z"
}
resource_group_name = "resource_group_name_01"
tags = {
"key1" = "value1"
"key2" = "value2"
}
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.billingbenefits.ConditionalCredit;
import com.pulumi.azurenative.billingbenefits.ConditionalCreditArgs;
import java.util.ArrayList;
import java.util.Arrays;
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 conditionalCredit = new ConditionalCredit("conditionalCredit", ConditionalCreditArgs.builder()
.conditionalCreditName("conditionalCredit_20250801")
.location("global")
.properties(PrimaryConditionalCreditPropertiesArgs.builder()
.allowContributors("Enabled")
.displayName("Conditional Credit 20250801")
.entityType("Primary")
.milestones(
ConditionalCreditMilestoneArgs.builder()
.award(AwardArgs.builder()
.credit(CommitmentArgs.builder()
.amount(5000.0)
.currencyCode("USD")
.grain("FullTerm")
.build())
.duration("P3M")
.build())
.endAt("2025-09-30T23:59:59Z")
.name("Milestone 1")
.spendTarget(PriceArgs.builder()
.amount(50000.0)
.currencyCode("USD")
.build())
.build(),
ConditionalCreditMilestoneArgs.builder()
.award(AwardArgs.builder()
.credit(CommitmentArgs.builder()
.amount(10000.0)
.currencyCode("USD")
.grain("FullTerm")
.build())
.duration("P3M")
.build())
.endAt("2025-12-31T23:59:59Z")
.name("Milestone 2")
.spendTarget(PriceArgs.builder()
.amount(100000.0)
.currencyCode("USD")
.build())
.build())
.productCode("000187f7-0000-0260-ab43-b8473ce57f1d")
.startAt("2025-07-01T00:00:00Z")
.build())
.resourceGroupName("resource_group_name_01")
.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 conditionalCredit = new azure_native.billingbenefits.ConditionalCredit("conditionalCredit", {
conditionalCreditName: "conditionalCredit_20250801",
location: "global",
properties: {
allowContributors: azure_native.billingbenefits.EnablementMode.Enabled,
displayName: "Conditional Credit 20250801",
entityType: "Primary",
milestones: [
{
award: {
credit: {
amount: 5000,
currencyCode: "USD",
grain: azure_native.billingbenefits.CommitmentGrain.FullTerm,
},
duration: "P3M",
},
endAt: "2025-09-30T23:59:59Z",
name: "Milestone 1",
spendTarget: {
amount: 50000,
currencyCode: "USD",
},
},
{
award: {
credit: {
amount: 10000,
currencyCode: "USD",
grain: azure_native.billingbenefits.CommitmentGrain.FullTerm,
},
duration: "P3M",
},
endAt: "2025-12-31T23:59:59Z",
name: "Milestone 2",
spendTarget: {
amount: 100000,
currencyCode: "USD",
},
},
],
productCode: "000187f7-0000-0260-ab43-b8473ce57f1d",
startAt: "2025-07-01T00:00:00Z",
},
resourceGroupName: "resource_group_name_01",
tags: {
key1: "value1",
key2: "value2",
},
});
import pulumi
import pulumi_azure_native as azure_native
conditional_credit = azure_native.billingbenefits.ConditionalCredit("conditionalCredit",
conditional_credit_name="conditionalCredit_20250801",
location="global",
properties={
"allow_contributors": azure_native.billingbenefits.EnablementMode.ENABLED,
"display_name": "Conditional Credit 20250801",
"entity_type": "Primary",
"milestones": [
{
"award": {
"credit": {
"amount": float(5000),
"currency_code": "USD",
"grain": azure_native.billingbenefits.CommitmentGrain.FULL_TERM,
},
"duration": "P3M",
},
"end_at": "2025-09-30T23:59:59Z",
"name": "Milestone 1",
"spend_target": {
"amount": float(50000),
"currency_code": "USD",
},
},
{
"award": {
"credit": {
"amount": float(10000),
"currency_code": "USD",
"grain": azure_native.billingbenefits.CommitmentGrain.FULL_TERM,
},
"duration": "P3M",
},
"end_at": "2025-12-31T23:59:59Z",
"name": "Milestone 2",
"spend_target": {
"amount": float(100000),
"currency_code": "USD",
},
},
],
"product_code": "000187f7-0000-0260-ab43-b8473ce57f1d",
"start_at": "2025-07-01T00:00:00Z",
},
resource_group_name="resource_group_name_01",
tags={
"key1": "value1",
"key2": "value2",
})
resources:
conditionalCredit:
type: azure-native:billingbenefits:ConditionalCredit
properties:
conditionalCreditName: conditionalCredit_20250801
location: global
properties:
allowContributors: Enabled
displayName: Conditional Credit 20250801
entityType: Primary
milestones:
- award:
credit:
amount: 5000
currencyCode: USD
grain: FullTerm
duration: P3M
endAt: 2025-09-30T23:59:59Z
name: Milestone 1
spendTarget:
amount: 50000
currencyCode: USD
- award:
credit:
amount: 10000
currencyCode: USD
grain: FullTerm
duration: P3M
endAt: 2025-12-31T23:59:59Z
name: Milestone 2
spendTarget:
amount: 100000
currencyCode: USD
productCode: 000187f7-0000-0260-ab43-b8473ce57f1d
startAt: 2025-07-01T00:00:00Z
resourceGroupName: resource_group_name_01
tags:
key1: value1
key2: value2
Create ConditionalCredit Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ConditionalCredit(name: string, args: ConditionalCreditArgs, opts?: CustomResourceOptions);@overload
def ConditionalCredit(resource_name: str,
args: ConditionalCreditArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ConditionalCredit(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
conditional_credit_name: Optional[str] = None,
identity: Optional[ManagedServiceIdentityArgs] = None,
kind: Optional[str] = None,
location: Optional[str] = None,
managed_by: Optional[str] = None,
plan: Optional[PlanArgs] = None,
properties: Optional[Union[ContributorConditionalCreditPropertiesArgs, PrimaryConditionalCreditPropertiesArgs]] = None,
sku: Optional[SkuArgs] = None,
tags: Optional[Mapping[str, str]] = None)func NewConditionalCredit(ctx *Context, name string, args ConditionalCreditArgs, opts ...ResourceOption) (*ConditionalCredit, error)public ConditionalCredit(string name, ConditionalCreditArgs args, CustomResourceOptions? opts = null)
public ConditionalCredit(String name, ConditionalCreditArgs args)
public ConditionalCredit(String name, ConditionalCreditArgs args, CustomResourceOptions options)
type: azure-native:billingbenefits:ConditionalCredit
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "azure-native_billingbenefits_conditionalcredit" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args ConditionalCreditArgs
- 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 ConditionalCreditArgs
- 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 ConditionalCreditArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ConditionalCreditArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ConditionalCreditArgs
- 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 conditionalCreditResource = new AzureNative.BillingBenefits.ConditionalCredit("conditionalCreditResource", new()
{
ResourceGroupName = "string",
ConditionalCreditName = "string",
Identity = new AzureNative.BillingBenefits.Inputs.ManagedServiceIdentityArgs
{
Type = "string",
UserAssignedIdentities = new[]
{
"string",
},
},
Kind = "string",
Location = "string",
ManagedBy = "string",
Plan = new AzureNative.BillingBenefits.Inputs.PlanArgs
{
Name = "string",
Product = "string",
Publisher = "string",
PromotionCode = "string",
Version = "string",
},
Properties = new AzureNative.BillingBenefits.Inputs.ContributorConditionalCreditPropertiesArgs
{
EntityType = "Contributor",
BillingAccountResourceId = "string",
DisplayName = "string",
EndAt = "string",
PrimaryBillingAccountResourceId = "string",
PrimaryResourceId = "string",
ProductCode = "string",
ResourceId = "string",
StartAt = "string",
Status = "string",
SystemId = "string",
},
Sku = new AzureNative.BillingBenefits.Inputs.SkuArgs
{
Name = "string",
Capacity = 0,
Family = "string",
Size = "string",
Tier = AzureNative.BillingBenefits.SkuTier.Free,
},
Tags =
{
{ "string", "string" },
},
});
example, err := billingbenefits.NewConditionalCredit(ctx, "conditionalCreditResource", &billingbenefits.ConditionalCreditArgs{
ResourceGroupName: pulumi.String("string"),
ConditionalCreditName: pulumi.String("string"),
Identity: &billingbenefits.ManagedServiceIdentityArgs{
Type: pulumi.String("string"),
UserAssignedIdentities: pulumi.StringArray{
pulumi.String("string"),
},
},
Kind: pulumi.String("string"),
Location: pulumi.String("string"),
ManagedBy: 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"),
},
Properties: &billingbenefits.ContributorConditionalCreditPropertiesArgs{
EntityType: pulumi.String("Contributor"),
BillingAccountResourceId: pulumi.String("string"),
DisplayName: pulumi.String("string"),
EndAt: pulumi.String("string"),
PrimaryBillingAccountResourceId: pulumi.String("string"),
PrimaryResourceId: pulumi.String("string"),
ProductCode: pulumi.String("string"),
ResourceId: pulumi.String("string"),
StartAt: pulumi.String("string"),
Status: 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,
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
resource "azure-native_billingbenefits_conditionalcredit" "conditionalCreditResource" {
resource_group_name = "string"
conditional_credit_name = "string"
identity = {
type = "string"
user_assigned_identities = ["string"]
}
kind = "string"
location = "string"
managed_by = "string"
plan = {
name = "string"
product = "string"
publisher = "string"
promotion_code = "string"
version = "string"
}
properties = {
"entityType" = "Contributor"
"billingAccountResourceId" = "string"
"displayName" = "string"
"endAt" = "string"
"primaryBillingAccountResourceId" = "string"
"primaryResourceId" = "string"
"productCode" = "string"
"resourceId" = "string"
"startAt" = "string"
"status" = "string"
"systemId" = "string"
}
sku = {
name = "string"
capacity = 0
family = "string"
size = "string"
tier = "Free"
}
tags = {
"string" = "string"
}
}
var conditionalCreditResource = new ConditionalCredit("conditionalCreditResource", ConditionalCreditArgs.builder()
.resourceGroupName("string")
.conditionalCreditName("string")
.identity(com.pulumi.azurenative.billingbenefits.inputs.ManagedServiceIdentityArgs.builder()
.type("string")
.userAssignedIdentities("string")
.build())
.kind("string")
.location("string")
.managedBy("string")
.plan(com.pulumi.azurenative.billingbenefits.inputs.PlanArgs.builder()
.name("string")
.product("string")
.publisher("string")
.promotionCode("string")
.version("string")
.build())
.properties(ContributorConditionalCreditPropertiesArgs.builder()
.entityType("Contributor")
.billingAccountResourceId("string")
.displayName("string")
.endAt("string")
.primaryBillingAccountResourceId("string")
.primaryResourceId("string")
.productCode("string")
.resourceId("string")
.startAt("string")
.status("string")
.systemId("string")
.build())
.sku(com.pulumi.azurenative.billingbenefits.inputs.SkuArgs.builder()
.name("string")
.capacity(0)
.family("string")
.size("string")
.tier("Free")
.build())
.tags(Map.of("string", "string"))
.build());
conditional_credit_resource = azure_native.billingbenefits.ConditionalCredit("conditionalCreditResource",
resource_group_name="string",
conditional_credit_name="string",
identity={
"type": "string",
"user_assigned_identities": ["string"],
},
kind="string",
location="string",
managed_by="string",
plan={
"name": "string",
"product": "string",
"publisher": "string",
"promotion_code": "string",
"version": "string",
},
properties={
"entity_type": "Contributor",
"billing_account_resource_id": "string",
"display_name": "string",
"end_at": "string",
"primary_billing_account_resource_id": "string",
"primary_resource_id": "string",
"product_code": "string",
"resource_id": "string",
"start_at": "string",
"status": "string",
"system_id": "string",
},
sku={
"name": "string",
"capacity": 0,
"family": "string",
"size": "string",
"tier": azure_native.billingbenefits.SkuTier.FREE,
},
tags={
"string": "string",
})
const conditionalCreditResource = new azure_native.billingbenefits.ConditionalCredit("conditionalCreditResource", {
resourceGroupName: "string",
conditionalCreditName: "string",
identity: {
type: "string",
userAssignedIdentities: ["string"],
},
kind: "string",
location: "string",
managedBy: "string",
plan: {
name: "string",
product: "string",
publisher: "string",
promotionCode: "string",
version: "string",
},
properties: {
entityType: "Contributor",
billingAccountResourceId: "string",
displayName: "string",
endAt: "string",
primaryBillingAccountResourceId: "string",
primaryResourceId: "string",
productCode: "string",
resourceId: "string",
startAt: "string",
status: "string",
systemId: "string",
},
sku: {
name: "string",
capacity: 0,
family: "string",
size: "string",
tier: azure_native.billingbenefits.SkuTier.Free,
},
tags: {
string: "string",
},
});
type: azure-native:billingbenefits:ConditionalCredit
properties:
conditionalCreditName: string
identity:
type: string
userAssignedIdentities:
- string
kind: string
location: string
managedBy: string
plan:
name: string
product: string
promotionCode: string
publisher: string
version: string
properties:
billingAccountResourceId: string
displayName: string
endAt: string
entityType: Contributor
primaryBillingAccountResourceId: string
primaryResourceId: string
productCode: string
resourceId: string
startAt: string
status: string
systemId: string
resourceGroupName: string
sku:
capacity: 0
family: string
name: string
size: string
tier: Free
tags:
string: string
ConditionalCredit 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 ConditionalCredit resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Conditional
Credit stringName - Name of the conditional credit
- Identity
Pulumi.
Azure Native. Billing Benefits. Inputs. Managed Service Identity - Managed service identity (system assigned and/or user assigned identities)
- Kind string
- Metadata used by portal/tooling/etc to render different UX experiences for resources of the same type. E.g. ApiApps are a kind of Microsoft.Web/sites type. If supported, the resource provider must validate and persist this value.
- Location string
- The geo-location where the resource lives
- Managed
By string - The fully qualified resource ID of the resource that manages this resource. Indicates if this resource is managed by another Azure resource. If this is present, complete mode deployment will not delete the resource if it is removed from the template since it is managed by another resource.
- Plan
Pulumi.
Azure Native. Billing Benefits. Inputs. Plan - Plan for the resource.
- Properties
Pulumi.
Azure | Pulumi.Native. Billing Benefits. Inputs. Contributor Conditional Credit Properties Azure Native. Billing Benefits. Inputs. Primary Conditional Credit Properties - Conditional credit properties
- Sku
Pulumi.
Azure Native. Billing Benefits. Inputs. Sku - The resource model definition representing SKU
- Dictionary<string, string>
- Resource tags.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Conditional
Credit stringName - Name of the conditional credit
- Identity
Managed
Service Identity Args - Managed service identity (system assigned and/or user assigned identities)
- Kind string
- Metadata used by portal/tooling/etc to render different UX experiences for resources of the same type. E.g. ApiApps are a kind of Microsoft.Web/sites type. If supported, the resource provider must validate and persist this value.
- Location string
- The geo-location where the resource lives
- Managed
By string - The fully qualified resource ID of the resource that manages this resource. Indicates if this resource is managed by another Azure resource. If this is present, complete mode deployment will not delete the resource if it is removed from the template since it is managed by another resource.
- Plan
Plan
Args - Plan for the resource.
- Properties
Contributor
Conditional | PrimaryCredit Properties Args Conditional Credit Properties Args - Conditional credit properties
- Sku
Sku
Args - The resource model definition representing SKU
- map[string]string
- Resource tags.
- resource_
group_ stringname - The name of the resource group. The name is case insensitive.
- conditional_
credit_ stringname - Name of the conditional credit
- identity object
- 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
- managed_
by string - The fully qualified resource ID of the resource that manages this resource. Indicates if this resource is managed by another Azure resource. If this is present, complete mode deployment will not delete the resource if it is removed from the template since it is managed by another resource.
- plan object
- Plan for the resource.
- properties object | object
- Conditional credit properties
- sku object
- The resource model definition representing SKU
- map(string)
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- conditional
Credit StringName - Name of the conditional credit
- identity
Managed
Service Identity - Managed service identity (system assigned and/or user assigned identities)
- kind String
- Metadata used by portal/tooling/etc to render different UX experiences for resources of the same type. E.g. ApiApps are a kind of Microsoft.Web/sites type. If supported, the resource provider must validate and persist this value.
- location String
- The geo-location where the resource lives
- managed
By String - The fully qualified resource ID of the resource that manages this resource. Indicates if this resource is managed by another Azure resource. If this is present, complete mode deployment will not delete the resource if it is removed from the template since it is managed by another resource.
- plan Plan
- Plan for the resource.
- properties
Contributor
Conditional | PrimaryCredit Properties Conditional Credit Properties - Conditional credit properties
- sku Sku
- The resource model definition representing SKU
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- conditional
Credit stringName - Name of the conditional credit
- identity
Managed
Service Identity - Managed service identity (system assigned and/or user assigned identities)
- kind string
- Metadata used by portal/tooling/etc to render different UX experiences for resources of the same type. E.g. ApiApps are a kind of Microsoft.Web/sites type. If supported, the resource provider must validate and persist this value.
- location string
- The geo-location where the resource lives
- managed
By string - The fully qualified resource ID of the resource that manages this resource. Indicates if this resource is managed by another Azure resource. If this is present, complete mode deployment will not delete the resource if it is removed from the template since it is managed by another resource.
- plan Plan
- Plan for the resource.
- properties
Contributor
Conditional | PrimaryCredit Properties Conditional Credit Properties - Conditional credit properties
- sku Sku
- The resource model definition representing SKU
- {[key: string]: string}
- Resource tags.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- conditional_
credit_ strname - Name of the conditional credit
- identity
Managed
Service Identity Args - Managed service identity (system assigned and/or user assigned identities)
- kind str
- Metadata used by portal/tooling/etc to render different UX experiences for resources of the same type. E.g. ApiApps are a kind of Microsoft.Web/sites type. If supported, the resource provider must validate and persist this value.
- location str
- The geo-location where the resource lives
- 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
Plan
Args - Plan for the resource.
- properties
Contributor
Conditional | PrimaryCredit Properties Args Conditional Credit Properties Args - Conditional credit properties
- sku
Sku
Args - The resource model definition representing SKU
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- conditional
Credit StringName - Name of the conditional credit
- 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
- managed
By String - The fully qualified resource ID of the resource that manages this resource. Indicates if this resource is managed by another Azure resource. If this is present, complete mode deployment will not delete the resource if it is removed from the template since it is managed by another resource.
- plan Property Map
- Plan for the resource.
- properties Property Map | Property Map
- Conditional credit properties
- sku Property Map
- The resource model definition representing SKU
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the ConditionalCredit resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Etag string
- The etag field is not required. If it is provided in the response body, it must also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. Billing Benefits. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Azure
Api stringVersion - The Azure API version of the resource.
- Etag string
- The etag field is not required. If it is provided in the response body, it must also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure_
api_ stringversion - The Azure API version of the resource.
- etag string
- The etag field is not required. If it is provided in the response body, it must also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- system_
data object - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api StringVersion - The Azure API version of the resource.
- etag String
- The etag field is not required. If it is provided in the response body, it must also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api stringVersion - The Azure API version of the resource.
- etag string
- The etag field is not required. If it is provided in the response body, it must also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure_
api_ strversion - The Azure API version of the resource.
- etag str
- The etag field is not required. If it is provided in the response body, it must also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api StringVersion - The Azure API version of the resource.
- etag String
- The etag field is not required. If it is provided in the response body, it must also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
Award, AwardArgs
Award details for milestone completion- Credit
Pulumi.
Azure Native. Billing Benefits. Inputs. Commitment - Credit amount to be awarded
- Duration string
- Duration for which the benefit is active. Will be in format P{int}M or P{int}Y. Any values representing up to 12 years are valid. Upper limit examples: P144M, P12Y.
- End
At string - End date when the credit expires
- Start
At string - Start date when the credit becomes effective
- Credit Commitment
- Credit amount to be awarded
- Duration string
- Duration for which the benefit is active. Will be in format P{int}M or P{int}Y. Any values representing up to 12 years are valid. Upper limit examples: P144M, P12Y.
- End
At string - End date when the credit expires
- Start
At string - Start date when the credit becomes effective
- credit object
- Credit amount to be awarded
- duration string
- Duration for which the benefit is active. Will be in format P{int}M or P{int}Y. Any values representing up to 12 years are valid. Upper limit examples: P144M, P12Y.
- end_
at string - End date when the credit expires
- start_
at string - Start date when the credit becomes effective
- credit Commitment
- Credit amount to be awarded
- duration String
- Duration for which the benefit is active. Will be in format P{int}M or P{int}Y. Any values representing up to 12 years are valid. Upper limit examples: P144M, P12Y.
- end
At String - End date when the credit expires
- start
At String - Start date when the credit becomes effective
- credit Commitment
- Credit amount to be awarded
- duration string
- Duration for which the benefit is active. Will be in format P{int}M or P{int}Y. Any values representing up to 12 years are valid. Upper limit examples: P144M, P12Y.
- end
At string - End date when the credit expires
- start
At string - Start date when the credit becomes effective
- credit Commitment
- Credit amount to be awarded
- duration str
- Duration for which the benefit is active. Will be in format P{int}M or P{int}Y. Any values representing up to 12 years are valid. Upper limit examples: P144M, P12Y.
- end_
at str - End date when the credit expires
- start_
at str - Start date when the credit becomes effective
- credit Property Map
- Credit amount to be awarded
- duration String
- Duration for which the benefit is active. Will be in format P{int}M or P{int}Y. Any values representing up to 12 years are valid. Upper limit examples: P144M, P12Y.
- end
At String - End date when the credit expires
- start
At String - Start date when the credit becomes effective
AwardResponse, AwardResponseArgs
Award details for milestone completion- Balance
Version double - Points to BalanceVersion document that indicates the remaining commitment balance when the credit was created.
- Resource
Id string - Resource ID for the awarded credit.
- System
Id string - This is the globally unique identifier of the credit which will not change for its lifetime.
- Credit
Pulumi.
Azure Native. Billing Benefits. Inputs. Commitment Response - Credit amount to be awarded
- Duration string
- Duration for which the benefit is active. Will be in format P{int}M or P{int}Y. Any values representing up to 12 years are valid. Upper limit examples: P144M, P12Y.
- End
At string - End date when the credit expires
- Start
At string - Start date when the credit becomes effective
- Balance
Version float64 - Points to BalanceVersion document that indicates the remaining commitment balance when the credit was created.
- Resource
Id string - Resource ID for the awarded credit.
- System
Id string - This is the globally unique identifier of the credit which will not change for its lifetime.
- Credit
Commitment
Response - Credit amount to be awarded
- Duration string
- Duration for which the benefit is active. Will be in format P{int}M or P{int}Y. Any values representing up to 12 years are valid. Upper limit examples: P144M, P12Y.
- End
At string - End date when the credit expires
- Start
At string - Start date when the credit becomes effective
- balance_
version number - Points to BalanceVersion document that indicates the remaining commitment balance when the credit was created.
- resource_
id string - Resource ID for the awarded credit.
- system_
id string - This is the globally unique identifier of the credit which will not change for its lifetime.
- credit object
- Credit amount to be awarded
- duration string
- Duration for which the benefit is active. Will be in format P{int}M or P{int}Y. Any values representing up to 12 years are valid. Upper limit examples: P144M, P12Y.
- end_
at string - End date when the credit expires
- start_
at string - Start date when the credit becomes effective
- balance
Version Double - Points to BalanceVersion document that indicates the remaining commitment balance when the credit was created.
- resource
Id String - Resource ID for the awarded credit.
- system
Id String - This is the globally unique identifier of the credit which will not change for its lifetime.
- credit
Commitment
Response - Credit amount to be awarded
- duration String
- Duration for which the benefit is active. Will be in format P{int}M or P{int}Y. Any values representing up to 12 years are valid. Upper limit examples: P144M, P12Y.
- end
At String - End date when the credit expires
- start
At String - Start date when the credit becomes effective
- balance
Version number - Points to BalanceVersion document that indicates the remaining commitment balance when the credit was created.
- resource
Id string - Resource ID for the awarded credit.
- system
Id string - This is the globally unique identifier of the credit which will not change for its lifetime.
- credit
Commitment
Response - Credit amount to be awarded
- duration string
- Duration for which the benefit is active. Will be in format P{int}M or P{int}Y. Any values representing up to 12 years are valid. Upper limit examples: P144M, P12Y.
- end
At string - End date when the credit expires
- start
At string - Start date when the credit becomes effective
- balance_
version float - Points to BalanceVersion document that indicates the remaining commitment balance when the credit was created.
- resource_
id str - Resource ID for the awarded credit.
- system_
id str - This is the globally unique identifier of the credit which will not change for its lifetime.
- credit
Commitment
Response - Credit amount to be awarded
- duration str
- Duration for which the benefit is active. Will be in format P{int}M or P{int}Y. Any values representing up to 12 years are valid. Upper limit examples: P144M, P12Y.
- end_
at str - End date when the credit expires
- start_
at str - Start date when the credit becomes effective
- balance
Version Number - Points to BalanceVersion document that indicates the remaining commitment balance when the credit was created.
- resource
Id String - Resource ID for the awarded credit.
- system
Id String - This is the globally unique identifier of the credit which will not change for its lifetime.
- credit Property Map
- Credit amount to be awarded
- duration String
- Duration for which the benefit is active. Will be in format P{int}M or P{int}Y. Any values representing up to 12 years are valid. Upper limit examples: P144M, P12Y.
- end
At String - End date when the credit expires
- start
At String - Start date when the credit becomes effective
Commitment, CommitmentArgs
Commitment towards the benefit.- Amount double
- Currency
Code string - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- Grain
string | Pulumi.
Azure Native. Billing Benefits. Commitment Grain - The grain of the commitment.
- Amount float64
- Currency
Code string - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- Grain
string | Commitment
Grain - The grain of the commitment.
- amount number
- currency_
code string - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- grain
string | "Hourly" | "Full
Term" | "Unknown" - The grain of the commitment.
- amount Double
- currency
Code String - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- grain
String | Commitment
Grain - The grain of the commitment.
- amount number
- currency
Code string - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- grain
string | Commitment
Grain - The grain of the commitment.
- amount float
- currency_
code str - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- grain
str | Commitment
Grain - The grain of the commitment.
- amount Number
- currency
Code String - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- grain
String | "Hourly" | "Full
Term" | "Unknown" - The grain of the commitment.
CommitmentGrain, CommitmentGrainArgs
- Hourly
Hourly- Full
Term FullTerm- Unknown
Unknown
- Commitment
Grain Hourly Hourly- Commitment
Grain Full Term FullTerm- Commitment
Grain Unknown Unknown
- "Hourly"
Hourly- "Full
Term" FullTerm- "Unknown"
Unknown
- Hourly
Hourly- Full
Term FullTerm- Unknown
Unknown
- Hourly
Hourly- Full
Term FullTerm- Unknown
Unknown
- HOURLY
Hourly- FULL_TERM
FullTerm- UNKNOWN
Unknown
- "Hourly"
Hourly- "Full
Term" FullTerm- "Unknown"
Unknown
CommitmentResponse, CommitmentResponseArgs
Commitment towards the benefit.- Amount double
- Currency
Code string - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- Grain string
- The grain of the commitment.
- Amount float64
- Currency
Code string - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- Grain string
- The grain of the commitment.
- amount number
- currency_
code string - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- grain string
- The grain of the commitment.
- amount Double
- currency
Code String - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- grain String
- The grain of the commitment.
- amount number
- currency
Code string - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- grain string
- The grain of the commitment.
- amount float
- currency_
code str - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- grain str
- The grain of the commitment.
- amount Number
- currency
Code String - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- grain String
- The grain of the commitment.
ConditionalCreditMilestone, ConditionalCreditMilestoneArgs
Milestone definition within a conditional credit- Award
Pulumi.
Azure Native. Billing Benefits. Inputs. Award - Award details for this milestone (only present for primary conditional credits)
- End
At string - End date for this milestone
- Milestone
Id string - Unique identifier for the milestone
- Name string
- Display name for the milestone
- Spend
Target Pulumi.Azure Native. Billing Benefits. Inputs. Price - Spend target for this milestone
- Status
string | Pulumi.
Azure Native. Billing Benefits. Milestone Status - Current status of the milestone
- Award Award
- Award details for this milestone (only present for primary conditional credits)
- End
At string - End date for this milestone
- Milestone
Id string - Unique identifier for the milestone
- Name string
- Display name for the milestone
- Spend
Target Price - Spend target for this milestone
- Status
string | Milestone
Status - Current status of the milestone
- award object
- Award details for this milestone (only present for primary conditional credits)
- end_
at string - End date for this milestone
- milestone_
id string - Unique identifier for the milestone
- name string
- Display name for the milestone
- spend_
target object - Spend target for this milestone
- status
string | "Unknown" | "Scheduled" | "Active" | "Pending" | "Failed" | "Completed" | "Canceled" | "Removed" | "Pending
Settlement" | "Missed" - Current status of the milestone
- award Award
- Award details for this milestone (only present for primary conditional credits)
- end
At String - End date for this milestone
- milestone
Id String - Unique identifier for the milestone
- name String
- Display name for the milestone
- spend
Target Price - Spend target for this milestone
- status
String | Milestone
Status - Current status of the milestone
- award Award
- Award details for this milestone (only present for primary conditional credits)
- end
At string - End date for this milestone
- milestone
Id string - Unique identifier for the milestone
- name string
- Display name for the milestone
- spend
Target Price - Spend target for this milestone
- status
string | Milestone
Status - Current status of the milestone
- award Award
- Award details for this milestone (only present for primary conditional credits)
- end_
at str - End date for this milestone
- milestone_
id str - Unique identifier for the milestone
- name str
- Display name for the milestone
- spend_
target Price - Spend target for this milestone
- status
str | Milestone
Status - Current status of the milestone
- award Property Map
- Award details for this milestone (only present for primary conditional credits)
- end
At String - End date for this milestone
- milestone
Id String - Unique identifier for the milestone
- name String
- Display name for the milestone
- spend
Target Property Map - Spend target for this milestone
- status
String | "Unknown" | "Scheduled" | "Active" | "Pending" | "Failed" | "Completed" | "Canceled" | "Removed" | "Pending
Settlement" | "Missed" - Current status of the milestone
ConditionalCreditMilestoneResponse, ConditionalCreditMilestoneResponseArgs
Milestone definition within a conditional credit- Award
Pulumi.
Azure Native. Billing Benefits. Inputs. Award Response - Award details for this milestone (only present for primary conditional credits)
- End
At string - End date for this milestone
- Milestone
Id string - Unique identifier for the milestone
- Name string
- Display name for the milestone
- Spend
Target Pulumi.Azure Native. Billing Benefits. Inputs. Price Response - Spend target for this milestone
- Status string
- Current status of the milestone
- Award
Award
Response - Award details for this milestone (only present for primary conditional credits)
- End
At string - End date for this milestone
- Milestone
Id string - Unique identifier for the milestone
- Name string
- Display name for the milestone
- Spend
Target PriceResponse - Spend target for this milestone
- Status string
- Current status of the milestone
- award object
- Award details for this milestone (only present for primary conditional credits)
- end_
at string - End date for this milestone
- milestone_
id string - Unique identifier for the milestone
- name string
- Display name for the milestone
- spend_
target object - Spend target for this milestone
- status string
- Current status of the milestone
- award
Award
Response - Award details for this milestone (only present for primary conditional credits)
- end
At String - End date for this milestone
- milestone
Id String - Unique identifier for the milestone
- name String
- Display name for the milestone
- spend
Target PriceResponse - Spend target for this milestone
- status String
- Current status of the milestone
- award
Award
Response - Award details for this milestone (only present for primary conditional credits)
- end
At string - End date for this milestone
- milestone
Id string - Unique identifier for the milestone
- name string
- Display name for the milestone
- spend
Target PriceResponse - Spend target for this milestone
- status string
- Current status of the milestone
- award
Award
Response - Award details for this milestone (only present for primary conditional credits)
- end_
at str - End date for this milestone
- milestone_
id str - Unique identifier for the milestone
- name str
- Display name for the milestone
- spend_
target PriceResponse - Spend target for this milestone
- status str
- Current status of the milestone
- award Property Map
- Award details for this milestone (only present for primary conditional credits)
- end
At String - End date for this milestone
- milestone
Id String - Unique identifier for the milestone
- name String
- Display name for the milestone
- spend
Target Property Map - Spend target for this milestone
- status String
- Current status of the milestone
ConditionalCreditStatus, ConditionalCreditStatusArgs
- Unknown
Unknown- Scheduled
Scheduled- Active
Active- Pending
Pending- Failed
Failed- Canceled
Canceled- Completed
Completed- Stopped
Stopped- Pending
Settlement PendingSettlement
- Conditional
Credit Status Unknown Unknown- Conditional
Credit Status Scheduled Scheduled- Conditional
Credit Status Active Active- Conditional
Credit Status Pending Pending- Conditional
Credit Status Failed Failed- Conditional
Credit Status Canceled Canceled- Conditional
Credit Status Completed Completed- Conditional
Credit Status Stopped Stopped- Conditional
Credit Status Pending Settlement PendingSettlement
- "Unknown"
Unknown- "Scheduled"
Scheduled- "Active"
Active- "Pending"
Pending- "Failed"
Failed- "Canceled"
Canceled- "Completed"
Completed- "Stopped"
Stopped- "Pending
Settlement" PendingSettlement
- Unknown
Unknown- Scheduled
Scheduled- Active
Active- Pending
Pending- Failed
Failed- Canceled
Canceled- Completed
Completed- Stopped
Stopped- Pending
Settlement PendingSettlement
- Unknown
Unknown- Scheduled
Scheduled- Active
Active- Pending
Pending- Failed
Failed- Canceled
Canceled- Completed
Completed- Stopped
Stopped- Pending
Settlement PendingSettlement
- UNKNOWN
Unknown- SCHEDULED
Scheduled- ACTIVE
Active- PENDING
Pending- FAILED
Failed- CANCELED
Canceled- COMPLETED
Completed- STOPPED
Stopped- PENDING_SETTLEMENT
PendingSettlement
- "Unknown"
Unknown- "Scheduled"
Scheduled- "Active"
Active- "Pending"
Pending- "Failed"
Failed- "Canceled"
Canceled- "Completed"
Completed- "Stopped"
Stopped- "Pending
Settlement" PendingSettlement
ContributorConditionalCreditMilestoneResponse, ContributorConditionalCreditMilestoneResponseArgs
Milestone definition for contributor conditional credit (excludes award details)- Award
Pulumi.
Azure Native. Billing Benefits. Inputs. Award Response - Award details for this milestone (only present for primary conditional credits)
- End
At string - End date for this milestone
- Milestone
Id string - Unique identifier for the milestone
- Name string
- Display name for the milestone
- Spend
Target Pulumi.Azure Native. Billing Benefits. Inputs. Price Response - Spend target for this milestone
- Status string
- Current status of the milestone
- Award
Award
Response - Award details for this milestone (only present for primary conditional credits)
- End
At string - End date for this milestone
- Milestone
Id string - Unique identifier for the milestone
- Name string
- Display name for the milestone
- Spend
Target PriceResponse - Spend target for this milestone
- Status string
- Current status of the milestone
- award object
- Award details for this milestone (only present for primary conditional credits)
- end_
at string - End date for this milestone
- milestone_
id string - Unique identifier for the milestone
- name string
- Display name for the milestone
- spend_
target object - Spend target for this milestone
- status string
- Current status of the milestone
- award
Award
Response - Award details for this milestone (only present for primary conditional credits)
- end
At String - End date for this milestone
- milestone
Id String - Unique identifier for the milestone
- name String
- Display name for the milestone
- spend
Target PriceResponse - Spend target for this milestone
- status String
- Current status of the milestone
- award
Award
Response - Award details for this milestone (only present for primary conditional credits)
- end
At string - End date for this milestone
- milestone
Id string - Unique identifier for the milestone
- name string
- Display name for the milestone
- spend
Target PriceResponse - Spend target for this milestone
- status string
- Current status of the milestone
- award
Award
Response - Award details for this milestone (only present for primary conditional credits)
- end_
at str - End date for this milestone
- milestone_
id str - Unique identifier for the milestone
- name str
- Display name for the milestone
- spend_
target PriceResponse - Spend target for this milestone
- status str
- Current status of the milestone
- award Property Map
- Award details for this milestone (only present for primary conditional credits)
- end
At String - End date for this milestone
- milestone
Id String - Unique identifier for the milestone
- name String
- Display name for the milestone
- spend
Target Property Map - Spend target for this milestone
- status String
- Current status of the milestone
ContributorConditionalCreditProperties, ContributorConditionalCreditPropertiesArgs
Properties for contributor conditional credit.- Billing
Account stringResource Id - The billing account resource ID
- Display
Name string - Display name for the conditional credit
- End
At string - End date of the conditional credit (derived from last milestone)
- Primary
Billing stringAccount Resource Id - Fully-qualified billing account resource identifier of the primary CACO. Format must be Azure Resource ID: /providers/Microsoft.Billing/billingAccounts/{acctId:orgId}.
- Primary
Resource stringId - Resource ID of the primary conditional credit (required for contributors)
- Product
Code string - Product code for the conditional credit
- Resource
Id string - Fully-qualified resource identifier of the resource. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/{benefitType}/{benefitName}.
- Start
At string - Start date of the conditional credit
- Status
string | Pulumi.
Azure Native. Billing Benefits. Conditional Credit Status - The status of the conditional credit
- System
Id string - System identifier shared between primary and contributor conditional credits representing the same conditional credit program
- Billing
Account stringResource Id - The billing account resource ID
- Display
Name string - Display name for the conditional credit
- End
At string - End date of the conditional credit (derived from last milestone)
- Primary
Billing stringAccount Resource Id - Fully-qualified billing account resource identifier of the primary CACO. Format must be Azure Resource ID: /providers/Microsoft.Billing/billingAccounts/{acctId:orgId}.
- Primary
Resource stringId - Resource ID of the primary conditional credit (required for contributors)
- Product
Code string - Product code for the conditional credit
- Resource
Id string - Fully-qualified resource identifier of the resource. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/{benefitType}/{benefitName}.
- Start
At string - Start date of the conditional credit
- Status
string | Conditional
Credit Status - The status of the conditional credit
- System
Id string - System identifier shared between primary and contributor conditional credits representing the same conditional credit program
- billing_
account_ stringresource_ id - The billing account resource ID
- display_
name string - Display name for the conditional credit
- end_
at string - End date of the conditional credit (derived from last milestone)
- primary_
billing_ stringaccount_ resource_ id - Fully-qualified billing account resource identifier of the primary CACO. Format must be Azure Resource ID: /providers/Microsoft.Billing/billingAccounts/{acctId:orgId}.
- primary_
resource_ stringid - Resource ID of the primary conditional credit (required for contributors)
- product_
code string - Product code for the conditional credit
- resource_
id string - Fully-qualified resource identifier of the resource. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/{benefitType}/{benefitName}.
- start_
at string - Start date of the conditional credit
- status
string | "Unknown" | "Scheduled" | "Active" | "Pending" | "Failed" | "Canceled" | "Completed" | "Stopped" | "Pending
Settlement" - The status of the conditional credit
- system_
id string - System identifier shared between primary and contributor conditional credits representing the same conditional credit program
- billing
Account StringResource Id - The billing account resource ID
- display
Name String - Display name for the conditional credit
- end
At String - End date of the conditional credit (derived from last milestone)
- primary
Billing StringAccount Resource Id - Fully-qualified billing account resource identifier of the primary CACO. Format must be Azure Resource ID: /providers/Microsoft.Billing/billingAccounts/{acctId:orgId}.
- primary
Resource StringId - Resource ID of the primary conditional credit (required for contributors)
- product
Code String - Product code for the conditional credit
- resource
Id String - Fully-qualified resource identifier of the resource. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/{benefitType}/{benefitName}.
- start
At String - Start date of the conditional credit
- status
String | Conditional
Credit Status - The status of the conditional credit
- system
Id String - System identifier shared between primary and contributor conditional credits representing the same conditional credit program
- billing
Account stringResource Id - The billing account resource ID
- display
Name string - Display name for the conditional credit
- end
At string - End date of the conditional credit (derived from last milestone)
- primary
Billing stringAccount Resource Id - Fully-qualified billing account resource identifier of the primary CACO. Format must be Azure Resource ID: /providers/Microsoft.Billing/billingAccounts/{acctId:orgId}.
- primary
Resource stringId - Resource ID of the primary conditional credit (required for contributors)
- product
Code string - Product code for the conditional credit
- resource
Id string - Fully-qualified resource identifier of the resource. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/{benefitType}/{benefitName}.
- start
At string - Start date of the conditional credit
- status
string | Conditional
Credit Status - The status of the conditional credit
- system
Id string - System identifier shared between primary and contributor conditional credits representing the same conditional credit program
- billing_
account_ strresource_ id - The billing account resource ID
- display_
name str - Display name for the conditional credit
- end_
at str - End date of the conditional credit (derived from last milestone)
- primary_
billing_ straccount_ resource_ id - Fully-qualified billing account resource identifier of the primary CACO. Format must be Azure Resource ID: /providers/Microsoft.Billing/billingAccounts/{acctId:orgId}.
- primary_
resource_ strid - Resource ID of the primary conditional credit (required for contributors)
- product_
code str - Product code for the conditional credit
- resource_
id str - Fully-qualified resource identifier of the resource. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/{benefitType}/{benefitName}.
- start_
at str - Start date of the conditional credit
- status
str | Conditional
Credit Status - The status of the conditional credit
- system_
id str - System identifier shared between primary and contributor conditional credits representing the same conditional credit program
- billing
Account StringResource Id - The billing account resource ID
- display
Name String - Display name for the conditional credit
- end
At String - End date of the conditional credit (derived from last milestone)
- primary
Billing StringAccount Resource Id - Fully-qualified billing account resource identifier of the primary CACO. Format must be Azure Resource ID: /providers/Microsoft.Billing/billingAccounts/{acctId:orgId}.
- primary
Resource StringId - Resource ID of the primary conditional credit (required for contributors)
- product
Code String - Product code for the conditional credit
- resource
Id String - Fully-qualified resource identifier of the resource. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/{benefitType}/{benefitName}.
- start
At String - Start date of the conditional credit
- status
String | "Unknown" | "Scheduled" | "Active" | "Pending" | "Failed" | "Canceled" | "Completed" | "Stopped" | "Pending
Settlement" - The status of the conditional credit
- system
Id String - System identifier shared between primary and contributor conditional credits representing the same conditional credit program
ContributorConditionalCreditPropertiesResponse, ContributorConditionalCreditPropertiesResponseArgs
Properties for contributor conditional credit.- Benefit
Resource stringId - Fully-qualified identifier of the benefit under applicable benefit list.
- Milestones
List<Pulumi.
Azure Native. Billing Benefits. Inputs. Contributor Conditional Credit Milestone Response> - List of milestones copied from primary conditional credit (excludes award details)
- Provisioning
State string - The provisioning state of the resource
- Billing
Account stringResource Id - The billing account resource ID
- Display
Name string - Display name for the conditional credit
- End
At string - End date of the conditional credit (derived from last milestone)
- Primary
Billing stringAccount Resource Id - Fully-qualified billing account resource identifier of the primary CACO. Format must be Azure Resource ID: /providers/Microsoft.Billing/billingAccounts/{acctId:orgId}.
- Primary
Resource stringId - Resource ID of the primary conditional credit (required for contributors)
- Product
Code string - Product code for the conditional credit
- Resource
Id string - Fully-qualified resource identifier of the resource. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/{benefitType}/{benefitName}.
- Start
At string - Start date of the conditional credit
- Status string
- The status of the conditional credit
- System
Id string - System identifier shared between primary and contributor conditional credits representing the same conditional credit program
- Benefit
Resource stringId - Fully-qualified identifier of the benefit under applicable benefit list.
- Milestones
[]Contributor
Conditional Credit Milestone Response - List of milestones copied from primary conditional credit (excludes award details)
- Provisioning
State string - The provisioning state of the resource
- Billing
Account stringResource Id - The billing account resource ID
- Display
Name string - Display name for the conditional credit
- End
At string - End date of the conditional credit (derived from last milestone)
- Primary
Billing stringAccount Resource Id - Fully-qualified billing account resource identifier of the primary CACO. Format must be Azure Resource ID: /providers/Microsoft.Billing/billingAccounts/{acctId:orgId}.
- Primary
Resource stringId - Resource ID of the primary conditional credit (required for contributors)
- Product
Code string - Product code for the conditional credit
- Resource
Id string - Fully-qualified resource identifier of the resource. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/{benefitType}/{benefitName}.
- Start
At string - Start date of the conditional credit
- Status string
- The status of the conditional credit
- System
Id string - System identifier shared between primary and contributor conditional credits representing the same conditional credit program
- benefit_
resource_ stringid - Fully-qualified identifier of the benefit under applicable benefit list.
- milestones list(object)
- List of milestones copied from primary conditional credit (excludes award details)
- provisioning_
state string - The provisioning state of the resource
- billing_
account_ stringresource_ id - The billing account resource ID
- display_
name string - Display name for the conditional credit
- end_
at string - End date of the conditional credit (derived from last milestone)
- primary_
billing_ stringaccount_ resource_ id - Fully-qualified billing account resource identifier of the primary CACO. Format must be Azure Resource ID: /providers/Microsoft.Billing/billingAccounts/{acctId:orgId}.
- primary_
resource_ stringid - Resource ID of the primary conditional credit (required for contributors)
- product_
code string - Product code for the conditional credit
- resource_
id string - Fully-qualified resource identifier of the resource. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/{benefitType}/{benefitName}.
- start_
at string - Start date of the conditional credit
- status string
- The status of the conditional credit
- system_
id string - System identifier shared between primary and contributor conditional credits representing the same conditional credit program
- benefit
Resource StringId - Fully-qualified identifier of the benefit under applicable benefit list.
- milestones
List<Contributor
Conditional Credit Milestone Response> - List of milestones copied from primary conditional credit (excludes award details)
- provisioning
State String - The provisioning state of the resource
- billing
Account StringResource Id - The billing account resource ID
- display
Name String - Display name for the conditional credit
- end
At String - End date of the conditional credit (derived from last milestone)
- primary
Billing StringAccount Resource Id - Fully-qualified billing account resource identifier of the primary CACO. Format must be Azure Resource ID: /providers/Microsoft.Billing/billingAccounts/{acctId:orgId}.
- primary
Resource StringId - Resource ID of the primary conditional credit (required for contributors)
- product
Code String - Product code for the conditional credit
- resource
Id String - Fully-qualified resource identifier of the resource. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/{benefitType}/{benefitName}.
- start
At String - Start date of the conditional credit
- status String
- The status of the conditional credit
- system
Id String - System identifier shared between primary and contributor conditional credits representing the same conditional credit program
- benefit
Resource stringId - Fully-qualified identifier of the benefit under applicable benefit list.
- milestones
Contributor
Conditional Credit Milestone Response[] - List of milestones copied from primary conditional credit (excludes award details)
- provisioning
State string - The provisioning state of the resource
- billing
Account stringResource Id - The billing account resource ID
- display
Name string - Display name for the conditional credit
- end
At string - End date of the conditional credit (derived from last milestone)
- primary
Billing stringAccount Resource Id - Fully-qualified billing account resource identifier of the primary CACO. Format must be Azure Resource ID: /providers/Microsoft.Billing/billingAccounts/{acctId:orgId}.
- primary
Resource stringId - Resource ID of the primary conditional credit (required for contributors)
- product
Code string - Product code for the conditional credit
- resource
Id string - Fully-qualified resource identifier of the resource. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/{benefitType}/{benefitName}.
- start
At string - Start date of the conditional credit
- status string
- The status of the conditional credit
- system
Id string - System identifier shared between primary and contributor conditional credits representing the same conditional credit program
- benefit_
resource_ strid - Fully-qualified identifier of the benefit under applicable benefit list.
- milestones
Sequence[Contributor
Conditional Credit Milestone Response] - List of milestones copied from primary conditional credit (excludes award details)
- provisioning_
state str - The provisioning state of the resource
- billing_
account_ strresource_ id - The billing account resource ID
- display_
name str - Display name for the conditional credit
- end_
at str - End date of the conditional credit (derived from last milestone)
- primary_
billing_ straccount_ resource_ id - Fully-qualified billing account resource identifier of the primary CACO. Format must be Azure Resource ID: /providers/Microsoft.Billing/billingAccounts/{acctId:orgId}.
- primary_
resource_ strid - Resource ID of the primary conditional credit (required for contributors)
- product_
code str - Product code for the conditional credit
- resource_
id str - Fully-qualified resource identifier of the resource. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/{benefitType}/{benefitName}.
- start_
at str - Start date of the conditional credit
- status str
- The status of the conditional credit
- system_
id str - System identifier shared between primary and contributor conditional credits representing the same conditional credit program
- benefit
Resource StringId - Fully-qualified identifier of the benefit under applicable benefit list.
- milestones List<Property Map>
- List of milestones copied from primary conditional credit (excludes award details)
- provisioning
State String - The provisioning state of the resource
- billing
Account StringResource Id - The billing account resource ID
- display
Name String - Display name for the conditional credit
- end
At String - End date of the conditional credit (derived from last milestone)
- primary
Billing StringAccount Resource Id - Fully-qualified billing account resource identifier of the primary CACO. Format must be Azure Resource ID: /providers/Microsoft.Billing/billingAccounts/{acctId:orgId}.
- primary
Resource StringId - Resource ID of the primary conditional credit (required for contributors)
- product
Code String - Product code for the conditional credit
- resource
Id String - Fully-qualified resource identifier of the resource. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/{benefitType}/{benefitName}.
- start
At String - Start date of the conditional credit
- status String
- The status of the conditional credit
- system
Id String - System identifier shared between primary and contributor conditional credits representing the same conditional credit program
EnablementMode, EnablementModeArgs
- Unknown
Unknown- Enabled
Enabled- Disabled
Disabled
- Enablement
Mode Unknown Unknown- Enablement
Mode Enabled Enabled- Enablement
Mode Disabled Disabled
- "Unknown"
Unknown- "Enabled"
Enabled- "Disabled"
Disabled
- Unknown
Unknown- Enabled
Enabled- Disabled
Disabled
- Unknown
Unknown- Enabled
Enabled- Disabled
Disabled
- UNKNOWN
Unknown- ENABLED
Enabled- DISABLED
Disabled
- "Unknown"
Unknown- "Enabled"
Enabled- "Disabled"
Disabled
ManagedServiceIdentity, ManagedServiceIdentityArgs
Managed service identity (system assigned and/or user assigned identities)- Type
string | Pulumi.
Azure Native. Billing Benefits. Managed Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned List<string>Identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- Type
string | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned []stringIdentities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- type
string | "None" | "System
Assigned" | "User Assigned" | "System Assigned,User Assigned" - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user_
assigned_ list(string)identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- type
String | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned List<String>Identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- type
string | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned string[]Identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- type
str | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user_
assigned_ Sequence[str]identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- type
String | "None" | "System
Assigned" | "User Assigned" | "System Assigned,User Assigned" - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned List<String>Identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
ManagedServiceIdentityResponse, ManagedServiceIdentityResponseArgs
Managed service identity (system assigned and/or user assigned identities)- Principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id string - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Type string
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Billing Benefits. Inputs. User Assigned Identity Response> - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- Principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id string - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Type string
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned map[string]UserIdentities Assigned Identity Response - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- principal_
id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant_
id string - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type string
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user_
assigned_ map(object)identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- principal
Id String - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id String - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type String
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned Map<String,UserIdentities Assigned Identity Response> - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id string - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type string
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned {[key: string]: UserIdentities Assigned Identity Response} - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- principal_
id str - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant_
id str - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type str
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user_
assigned_ Mapping[str, Useridentities Assigned Identity Response] - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- principal
Id String - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id String - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type String
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned Map<Property Map>Identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
ManagedServiceIdentityType, ManagedServiceIdentityTypeArgs
- None
None- System
Assigned SystemAssigned- User
Assigned UserAssigned- System
Assigned_User Assigned SystemAssigned,UserAssigned
- Managed
Service Identity Type None None- Managed
Service Identity Type System Assigned SystemAssigned- Managed
Service Identity Type User Assigned UserAssigned- Managed
Service Identity Type_System Assigned_User Assigned SystemAssigned,UserAssigned
- "None"
None- "System
Assigned" SystemAssigned- "User
Assigned" UserAssigned- "System
Assigned,User Assigned" SystemAssigned,UserAssigned
- None
None- System
Assigned SystemAssigned- User
Assigned UserAssigned- System
Assigned_User Assigned SystemAssigned,UserAssigned
- None
None- System
Assigned SystemAssigned- User
Assigned UserAssigned- System
Assigned_User Assigned SystemAssigned,UserAssigned
- NONE
None- SYSTEM_ASSIGNED
SystemAssigned- USER_ASSIGNED
UserAssigned- SYSTEM_ASSIGNED_USER_ASSIGNED
SystemAssigned,UserAssigned
- "None"
None- "System
Assigned" SystemAssigned- "User
Assigned" UserAssigned- "System
Assigned,User Assigned" SystemAssigned,UserAssigned
MilestoneStatus, MilestoneStatusArgs
- Unknown
Unknown- Scheduled
Scheduled- Active
Active- Pending
Pending- Failed
Failed- Completed
Completed- Canceled
Canceled- Removed
Removed- Pending
Settlement PendingSettlement- Missed
Missed
- Milestone
Status Unknown Unknown- Milestone
Status Scheduled Scheduled- Milestone
Status Active Active- Milestone
Status Pending Pending- Milestone
Status Failed Failed- Milestone
Status Completed Completed- Milestone
Status Canceled Canceled- Milestone
Status Removed Removed- Milestone
Status Pending Settlement PendingSettlement- Milestone
Status Missed Missed
- "Unknown"
Unknown- "Scheduled"
Scheduled- "Active"
Active- "Pending"
Pending- "Failed"
Failed- "Completed"
Completed- "Canceled"
Canceled- "Removed"
Removed- "Pending
Settlement" PendingSettlement- "Missed"
Missed
- Unknown
Unknown- Scheduled
Scheduled- Active
Active- Pending
Pending- Failed
Failed- Completed
Completed- Canceled
Canceled- Removed
Removed- Pending
Settlement PendingSettlement- Missed
Missed
- Unknown
Unknown- Scheduled
Scheduled- Active
Active- Pending
Pending- Failed
Failed- Completed
Completed- Canceled
Canceled- Removed
Removed- Pending
Settlement PendingSettlement- Missed
Missed
- UNKNOWN
Unknown- SCHEDULED
Scheduled- ACTIVE
Active- PENDING
Pending- FAILED
Failed- COMPLETED
Completed- CANCELED
Canceled- REMOVED
Removed- PENDING_SETTLEMENT
PendingSettlement- MISSED
Missed
- "Unknown"
Unknown- "Scheduled"
Scheduled- "Active"
Active- "Pending"
Pending- "Failed"
Failed- "Completed"
Completed- "Canceled"
Canceled- "Removed"
Removed- "Pending
Settlement" PendingSettlement- "Missed"
Missed
Plan, PlanArgs
Plan for the resource.- Name string
- A user defined name of the 3rd Party Artifact that is being procured.
- Product string
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- Publisher string
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- Promotion
Code string - A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- Version string
- The version of the desired product/artifact.
- Name string
- A user defined name of the 3rd Party Artifact that is being procured.
- Product string
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- Publisher string
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- Promotion
Code string - A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- Version string
- The version of the desired product/artifact.
- name string
- A user defined name of the 3rd Party Artifact that is being procured.
- product string
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- publisher string
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- promotion_
code string - A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- version string
- The version of the desired product/artifact.
- name String
- A user defined name of the 3rd Party Artifact that is being procured.
- product String
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- publisher String
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- promotion
Code String - A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- version String
- The version of the desired product/artifact.
- name string
- A user defined name of the 3rd Party Artifact that is being procured.
- product string
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- publisher string
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- promotion
Code string - A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- version string
- The version of the desired product/artifact.
- name str
- A user defined name of the 3rd Party Artifact that is being procured.
- product str
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- publisher str
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- promotion_
code str - A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- version str
- The version of the desired product/artifact.
- name String
- A user defined name of the 3rd Party Artifact that is being procured.
- product String
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- publisher String
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- promotion
Code String - A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- version String
- The version of the desired product/artifact.
PlanResponse, PlanResponseArgs
Plan for the resource.- Name string
- A user defined name of the 3rd Party Artifact that is being procured.
- Product string
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- Publisher string
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- Promotion
Code string - A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- Version string
- The version of the desired product/artifact.
- Name string
- A user defined name of the 3rd Party Artifact that is being procured.
- Product string
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- Publisher string
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- Promotion
Code string - A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- Version string
- The version of the desired product/artifact.
- name string
- A user defined name of the 3rd Party Artifact that is being procured.
- product string
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- publisher string
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- promotion_
code string - A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- version string
- The version of the desired product/artifact.
- name String
- A user defined name of the 3rd Party Artifact that is being procured.
- product String
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- publisher String
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- promotion
Code String - A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- version String
- The version of the desired product/artifact.
- name string
- A user defined name of the 3rd Party Artifact that is being procured.
- product string
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- publisher string
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- promotion
Code string - A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- version string
- The version of the desired product/artifact.
- name str
- A user defined name of the 3rd Party Artifact that is being procured.
- product str
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- publisher str
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- promotion_
code str - A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- version str
- The version of the desired product/artifact.
- name String
- A user defined name of the 3rd Party Artifact that is being procured.
- product String
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- publisher String
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- promotion
Code String - A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- version String
- The version of the desired product/artifact.
Price, PriceArgs
- Amount double
- Currency
Code string - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- Amount float64
- Currency
Code string - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- amount number
- currency_
code string - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- amount Double
- currency
Code String - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- amount number
- currency
Code string - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- amount float
- currency_
code str - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- amount Number
- currency
Code String - The ISO 4217 3-letter currency code for the currency used by this purchase record.
PriceResponse, PriceResponseArgs
- Amount double
- Currency
Code string - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- Amount float64
- Currency
Code string - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- amount number
- currency_
code string - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- amount Double
- currency
Code String - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- amount number
- currency
Code string - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- amount float
- currency_
code str - The ISO 4217 3-letter currency code for the currency used by this purchase record.
- amount Number
- currency
Code String - The ISO 4217 3-letter currency code for the currency used by this purchase record.
PrimaryConditionalCreditProperties, PrimaryConditionalCreditPropertiesArgs
Properties for primary conditional credit.- Allow
Contributors string | Pulumi.Azure Native. Billing Benefits. Enablement Mode - Whether this conditional credit allows contributor billing accounts
- Billing
Account stringResource Id - The billing account resource ID
- Display
Name string - Display name for the conditional credit
- End
At string - End date of the conditional credit (derived from last milestone)
- Milestones
List<Pulumi.
Azure Native. Billing Benefits. Inputs. Conditional Credit Milestone> - List of milestones for this conditional credit (must include awards)
- Product
Code string - Product code for the conditional credit
- Resource
Id string - Fully-qualified resource identifier of the resource. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/{benefitType}/{benefitName}.
- Start
At string - Start date of the conditional credit
- Status
string | Pulumi.
Azure Native. Billing Benefits. Conditional Credit Status - The status of the conditional credit
- System
Id string - System identifier shared between primary and contributor conditional credits representing the same conditional credit program
- Allow
Contributors string | EnablementMode - Whether this conditional credit allows contributor billing accounts
- Billing
Account stringResource Id - The billing account resource ID
- Display
Name string - Display name for the conditional credit
- End
At string - End date of the conditional credit (derived from last milestone)
- Milestones
[]Conditional
Credit Milestone - List of milestones for this conditional credit (must include awards)
- Product
Code string - Product code for the conditional credit
- Resource
Id string - Fully-qualified resource identifier of the resource. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/{benefitType}/{benefitName}.
- Start
At string - Start date of the conditional credit
- Status
string | Conditional
Credit Status - The status of the conditional credit
- System
Id string - System identifier shared between primary and contributor conditional credits representing the same conditional credit program
- allow_
contributors string | "Unknown" | "Enabled" | "Disabled" - Whether this conditional credit allows contributor billing accounts
- billing_
account_ stringresource_ id - The billing account resource ID
- display_
name string - Display name for the conditional credit
- end_
at string - End date of the conditional credit (derived from last milestone)
- milestones list(object)
- List of milestones for this conditional credit (must include awards)
- product_
code string - Product code for the conditional credit
- resource_
id string - Fully-qualified resource identifier of the resource. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/{benefitType}/{benefitName}.
- start_
at string - Start date of the conditional credit
- status
string | "Unknown" | "Scheduled" | "Active" | "Pending" | "Failed" | "Canceled" | "Completed" | "Stopped" | "Pending
Settlement" - The status of the conditional credit
- system_
id string - System identifier shared between primary and contributor conditional credits representing the same conditional credit program
- allow
Contributors String | EnablementMode - Whether this conditional credit allows contributor billing accounts
- billing
Account StringResource Id - The billing account resource ID
- display
Name String - Display name for the conditional credit
- end
At String - End date of the conditional credit (derived from last milestone)
- milestones
List<Conditional
Credit Milestone> - List of milestones for this conditional credit (must include awards)
- product
Code String - Product code for the conditional credit
- resource
Id String - Fully-qualified resource identifier of the resource. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/{benefitType}/{benefitName}.
- start
At String - Start date of the conditional credit
- status
String | Conditional
Credit Status - The status of the conditional credit
- system
Id String - System identifier shared between primary and contributor conditional credits representing the same conditional credit program
- allow
Contributors string | EnablementMode - Whether this conditional credit allows contributor billing accounts
- billing
Account stringResource Id - The billing account resource ID
- display
Name string - Display name for the conditional credit
- end
At string - End date of the conditional credit (derived from last milestone)
- milestones
Conditional
Credit Milestone[] - List of milestones for this conditional credit (must include awards)
- product
Code string - Product code for the conditional credit
- resource
Id string - Fully-qualified resource identifier of the resource. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/{benefitType}/{benefitName}.
- start
At string - Start date of the conditional credit
- status
string | Conditional
Credit Status - The status of the conditional credit
- system
Id string - System identifier shared between primary and contributor conditional credits representing the same conditional credit program
- allow_
contributors str | EnablementMode - Whether this conditional credit allows contributor billing accounts
- billing_
account_ strresource_ id - The billing account resource ID
- display_
name str - Display name for the conditional credit
- end_
at str - End date of the conditional credit (derived from last milestone)
- milestones
Sequence[Conditional
Credit Milestone] - List of milestones for this conditional credit (must include awards)
- product_
code str - Product code for the conditional credit
- resource_
id str - Fully-qualified resource identifier of the resource. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/{benefitType}/{benefitName}.
- start_
at str - Start date of the conditional credit
- status
str | Conditional
Credit Status - The status of the conditional credit
- system_
id str - System identifier shared between primary and contributor conditional credits representing the same conditional credit program
- allow
Contributors String | "Unknown" | "Enabled" | "Disabled" - Whether this conditional credit allows contributor billing accounts
- billing
Account StringResource Id - The billing account resource ID
- display
Name String - Display name for the conditional credit
- end
At String - End date of the conditional credit (derived from last milestone)
- milestones List<Property Map>
- List of milestones for this conditional credit (must include awards)
- product
Code String - Product code for the conditional credit
- resource
Id String - Fully-qualified resource identifier of the resource. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/{benefitType}/{benefitName}.
- start
At String - Start date of the conditional credit
- status
String | "Unknown" | "Scheduled" | "Active" | "Pending" | "Failed" | "Canceled" | "Completed" | "Stopped" | "Pending
Settlement" - The status of the conditional credit
- system
Id String - System identifier shared between primary and contributor conditional credits representing the same conditional credit program
PrimaryConditionalCreditPropertiesResponse, PrimaryConditionalCreditPropertiesResponseArgs
Properties for primary conditional credit.- Benefit
Resource stringId - Fully-qualified identifier of the benefit under applicable benefit list.
- Provisioning
State string - The provisioning state of the resource
- Allow
Contributors string - Whether this conditional credit allows contributor billing accounts
- Billing
Account stringResource Id - The billing account resource ID
- Display
Name string - Display name for the conditional credit
- End
At string - End date of the conditional credit (derived from last milestone)
- Milestones
List<Pulumi.
Azure Native. Billing Benefits. Inputs. Conditional Credit Milestone Response> - List of milestones for this conditional credit (must include awards)
- Product
Code string - Product code for the conditional credit
- Resource
Id string - Fully-qualified resource identifier of the resource. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/{benefitType}/{benefitName}.
- Start
At string - Start date of the conditional credit
- Status string
- The status of the conditional credit
- System
Id string - System identifier shared between primary and contributor conditional credits representing the same conditional credit program
- Benefit
Resource stringId - Fully-qualified identifier of the benefit under applicable benefit list.
- Provisioning
State string - The provisioning state of the resource
- Allow
Contributors string - Whether this conditional credit allows contributor billing accounts
- Billing
Account stringResource Id - The billing account resource ID
- Display
Name string - Display name for the conditional credit
- End
At string - End date of the conditional credit (derived from last milestone)
- Milestones
[]Conditional
Credit Milestone Response - List of milestones for this conditional credit (must include awards)
- Product
Code string - Product code for the conditional credit
- Resource
Id string - Fully-qualified resource identifier of the resource. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/{benefitType}/{benefitName}.
- Start
At string - Start date of the conditional credit
- Status string
- The status of the conditional credit
- System
Id string - System identifier shared between primary and contributor conditional credits representing the same conditional credit program
- benefit_
resource_ stringid - Fully-qualified identifier of the benefit under applicable benefit list.
- provisioning_
state string - The provisioning state of the resource
- allow_
contributors string - Whether this conditional credit allows contributor billing accounts
- billing_
account_ stringresource_ id - The billing account resource ID
- display_
name string - Display name for the conditional credit
- end_
at string - End date of the conditional credit (derived from last milestone)
- milestones list(object)
- List of milestones for this conditional credit (must include awards)
- product_
code string - Product code for the conditional credit
- resource_
id string - Fully-qualified resource identifier of the resource. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/{benefitType}/{benefitName}.
- start_
at string - Start date of the conditional credit
- status string
- The status of the conditional credit
- system_
id string - System identifier shared between primary and contributor conditional credits representing the same conditional credit program
- benefit
Resource StringId - Fully-qualified identifier of the benefit under applicable benefit list.
- provisioning
State String - The provisioning state of the resource
- allow
Contributors String - Whether this conditional credit allows contributor billing accounts
- billing
Account StringResource Id - The billing account resource ID
- display
Name String - Display name for the conditional credit
- end
At String - End date of the conditional credit (derived from last milestone)
- milestones
List<Conditional
Credit Milestone Response> - List of milestones for this conditional credit (must include awards)
- product
Code String - Product code for the conditional credit
- resource
Id String - Fully-qualified resource identifier of the resource. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/{benefitType}/{benefitName}.
- start
At String - Start date of the conditional credit
- status String
- The status of the conditional credit
- system
Id String - System identifier shared between primary and contributor conditional credits representing the same conditional credit program
- benefit
Resource stringId - Fully-qualified identifier of the benefit under applicable benefit list.
- provisioning
State string - The provisioning state of the resource
- allow
Contributors string - Whether this conditional credit allows contributor billing accounts
- billing
Account stringResource Id - The billing account resource ID
- display
Name string - Display name for the conditional credit
- end
At string - End date of the conditional credit (derived from last milestone)
- milestones
Conditional
Credit Milestone Response[] - List of milestones for this conditional credit (must include awards)
- product
Code string - Product code for the conditional credit
- resource
Id string - Fully-qualified resource identifier of the resource. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/{benefitType}/{benefitName}.
- start
At string - Start date of the conditional credit
- status string
- The status of the conditional credit
- system
Id string - System identifier shared between primary and contributor conditional credits representing the same conditional credit program
- benefit_
resource_ strid - Fully-qualified identifier of the benefit under applicable benefit list.
- provisioning_
state str - The provisioning state of the resource
- allow_
contributors str - Whether this conditional credit allows contributor billing accounts
- billing_
account_ strresource_ id - The billing account resource ID
- display_
name str - Display name for the conditional credit
- end_
at str - End date of the conditional credit (derived from last milestone)
- milestones
Sequence[Conditional
Credit Milestone Response] - List of milestones for this conditional credit (must include awards)
- product_
code str - Product code for the conditional credit
- resource_
id str - Fully-qualified resource identifier of the resource. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/{benefitType}/{benefitName}.
- start_
at str - Start date of the conditional credit
- status str
- The status of the conditional credit
- system_
id str - System identifier shared between primary and contributor conditional credits representing the same conditional credit program
- benefit
Resource StringId - Fully-qualified identifier of the benefit under applicable benefit list.
- provisioning
State String - The provisioning state of the resource
- allow
Contributors String - Whether this conditional credit allows contributor billing accounts
- billing
Account StringResource Id - The billing account resource ID
- display
Name String - Display name for the conditional credit
- end
At String - End date of the conditional credit (derived from last milestone)
- milestones List<Property Map>
- List of milestones for this conditional credit (must include awards)
- product
Code String - Product code for the conditional credit
- resource
Id String - Fully-qualified resource identifier of the resource. Format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/{benefitType}/{benefitName}.
- start
At String - Start date of the conditional credit
- status String
- The status of the conditional credit
- system
Id String - System identifier shared between primary and contributor conditional credits representing the same conditional credit program
Sku, SkuArgs
The resource model definition representing SKU- Name string
- The name of the SKU. E.g. P3. It is typically a letter+number code
- Capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- Family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- Size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- Tier
Pulumi.
Azure Native. Billing Benefits. Sku Tier - This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- Name string
- The name of the SKU. E.g. P3. It is typically a letter+number code
- Capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- Family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- Size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- Tier
Sku
Tier - This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name string
- The name of the SKU. E.g. P3. It is typically a letter+number code
- capacity 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.
- name String
- The name of the SKU. E.g. P3. It is typically a letter+number code
- capacity Integer
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family String
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size String
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier
Sku
Tier - This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name string
- The name of the SKU. E.g. P3. It is typically a letter+number code
- capacity number
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier
Sku
Tier - This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name str
- The name of the SKU. E.g. P3. It is typically a letter+number code
- capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family str
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size str
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier
Sku
Tier - This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name String
- The name of the SKU. E.g. P3. It is typically a letter+number code
- capacity Number
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family String
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size String
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier "Free" | "Basic" | "Standard" | "Premium"
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
SkuResponse, SkuResponseArgs
The resource model definition representing SKU- Name string
- The name of the SKU. E.g. P3. It is typically a letter+number code
- Capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- Family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- Size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- Tier string
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- Name string
- The name of the SKU. E.g. P3. It is typically a letter+number code
- Capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- Family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- Size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- Tier string
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name string
- The name of the SKU. E.g. P3. It is typically a letter+number code
- capacity 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 String
- The name of the SKU. E.g. P3. It is typically a letter+number code
- capacity Integer
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family String
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size String
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier String
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name string
- The name of the SKU. E.g. P3. It is typically a letter+number code
- capacity number
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier string
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name str
- The name of the SKU. E.g. P3. It is typically a letter+number code
- capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family str
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size str
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier str
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name String
- The name of the SKU. E.g. P3. It is typically a letter+number code
- capacity Number
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family String
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size String
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier String
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
SkuTier, SkuTierArgs
- Free
Free- Basic
Basic- Standard
Standard- Premium
Premium
- Sku
Tier Free Free- Sku
Tier Basic Basic- Sku
Tier Standard Standard- Sku
Tier Premium Premium
- "Free"
Free- "Basic"
Basic- "Standard"
Standard- "Premium"
Premium
- Free
Free- Basic
Basic- Standard
Standard- Premium
Premium
- Free
Free- Basic
Basic- Standard
Standard- Premium
Premium
- FREE
Free- BASIC
Basic- STANDARD
Standard- PREMIUM
Premium
- "Free"
Free- "Basic"
Basic- "Standard"
Standard- "Premium"
Premium
SystemDataResponse, SystemDataResponseArgs
Metadata pertaining to creation and last modification of the resource.- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at string - The timestamp of resource creation (UTC).
- created_
by string - The identity that created the resource.
- created_
by_ stringtype - The type of identity that created the resource.
- last_
modified_ stringat - The timestamp of resource last modification (UTC)
- last_
modified_ stringby - The identity that last modified the resource.
- last_
modified_ stringby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs
User assigned identity properties- Client
Id string - The client ID of the assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- Client
Id string - The client ID of the assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- client_
id string - The client ID of the assigned identity.
- principal_
id string - The principal ID of the assigned identity.
- client
Id String - The client ID of the assigned identity.
- principal
Id String - The principal ID of the assigned identity.
- client
Id string - The client ID of the assigned identity.
- principal
Id string - The principal ID of the assigned identity.
- client_
id str - The client ID of the assigned identity.
- principal_
id str - The principal ID of the assigned identity.
- client
Id String - The client ID of the assigned identity.
- principal
Id String - The principal ID of the assigned identity.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:billingbenefits:ConditionalCredit conditionalCredit_20250801 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.BillingBenefits/conditionalCredits/{conditionalCreditName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0
published on Thursday, Jul 9, 2026 by Pulumi