1. Packages
  2. Azure Native
  3. API Docs
  4. billing
  5. InvoiceSection
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.63.0 published on Tuesday, Sep 24, 2024 by Pulumi

azure-native.billing.InvoiceSection

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.63.0 published on Tuesday, Sep 24, 2024 by Pulumi

    An invoice section. Azure REST API version: 2024-04-01.

    Example Usage

    InvoiceSectionsCreateOrUpdate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var invoiceSection = new AzureNative.Billing.InvoiceSection("invoiceSection", new()
        {
            BillingAccountName = "00000000-0000-0000-0000-000000000000:00000000-0000-0000-0000-000000000000_2019-05-31",
            BillingProfileName = "xxxx-xxxx-xxx-xxx",
            InvoiceSectionName = "invoice-section-1",
            Properties = new AzureNative.Billing.Inputs.InvoiceSectionPropertiesArgs
            {
                DisplayName = "Invoice Section 1",
                Tags = 
                {
                    { "costCategory", "Support" },
                    { "pcCode", "A123456" },
                },
            },
        });
    
    });
    
    package main
    
    import (
    	billing "github.com/pulumi/pulumi-azure-native-sdk/billing/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := billing.NewInvoiceSection(ctx, "invoiceSection", &billing.InvoiceSectionArgs{
    			BillingAccountName: pulumi.String("00000000-0000-0000-0000-000000000000:00000000-0000-0000-0000-000000000000_2019-05-31"),
    			BillingProfileName: pulumi.String("xxxx-xxxx-xxx-xxx"),
    			InvoiceSectionName: pulumi.String("invoice-section-1"),
    			Properties: &billing.InvoiceSectionPropertiesArgs{
    				DisplayName: pulumi.String("Invoice Section 1"),
    				Tags: pulumi.StringMap{
    					"costCategory": pulumi.String("Support"),
    					"pcCode":       pulumi.String("A123456"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.billing.InvoiceSection;
    import com.pulumi.azurenative.billing.InvoiceSectionArgs;
    import com.pulumi.azurenative.billing.inputs.InvoiceSectionPropertiesArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var invoiceSection = new InvoiceSection("invoiceSection", InvoiceSectionArgs.builder()
                .billingAccountName("00000000-0000-0000-0000-000000000000:00000000-0000-0000-0000-000000000000_2019-05-31")
                .billingProfileName("xxxx-xxxx-xxx-xxx")
                .invoiceSectionName("invoice-section-1")
                .properties(InvoiceSectionPropertiesArgs.builder()
                    .displayName("Invoice Section 1")
                    .tags(Map.ofEntries(
                        Map.entry("costCategory", "Support"),
                        Map.entry("pcCode", "A123456")
                    ))
                    .build())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    invoice_section = azure_native.billing.InvoiceSection("invoiceSection",
        billing_account_name="00000000-0000-0000-0000-000000000000:00000000-0000-0000-0000-000000000000_2019-05-31",
        billing_profile_name="xxxx-xxxx-xxx-xxx",
        invoice_section_name="invoice-section-1",
        properties={
            "display_name": "Invoice Section 1",
            "tags": {
                "cost_category": "Support",
                "pc_code": "A123456",
            },
        })
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const invoiceSection = new azure_native.billing.InvoiceSection("invoiceSection", {
        billingAccountName: "00000000-0000-0000-0000-000000000000:00000000-0000-0000-0000-000000000000_2019-05-31",
        billingProfileName: "xxxx-xxxx-xxx-xxx",
        invoiceSectionName: "invoice-section-1",
        properties: {
            displayName: "Invoice Section 1",
            tags: {
                costCategory: "Support",
                pcCode: "A123456",
            },
        },
    });
    
    resources:
      invoiceSection:
        type: azure-native:billing:InvoiceSection
        properties:
          billingAccountName: 00000000-0000-0000-0000-000000000000:00000000-0000-0000-0000-000000000000_2019-05-31
          billingProfileName: xxxx-xxxx-xxx-xxx
          invoiceSectionName: invoice-section-1
          properties:
            displayName: Invoice Section 1
            tags:
              costCategory: Support
              pcCode: A123456
    

    Create InvoiceSection Resource

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

    Constructor syntax

    new InvoiceSection(name: string, args: InvoiceSectionArgs, opts?: CustomResourceOptions);
    @overload
    def InvoiceSection(resource_name: str,
                       args: InvoiceSectionArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def InvoiceSection(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       billing_account_name: Optional[str] = None,
                       billing_profile_name: Optional[str] = None,
                       invoice_section_name: Optional[str] = None,
                       properties: Optional[InvoiceSectionPropertiesArgs] = None,
                       tags: Optional[Mapping[str, str]] = None)
    func NewInvoiceSection(ctx *Context, name string, args InvoiceSectionArgs, opts ...ResourceOption) (*InvoiceSection, error)
    public InvoiceSection(string name, InvoiceSectionArgs args, CustomResourceOptions? opts = null)
    public InvoiceSection(String name, InvoiceSectionArgs args)
    public InvoiceSection(String name, InvoiceSectionArgs args, CustomResourceOptions options)
    
    type: azure-native:billing:InvoiceSection
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args InvoiceSectionArgs
    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 InvoiceSectionArgs
    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 InvoiceSectionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args InvoiceSectionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args InvoiceSectionArgs
    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 invoiceSectionResource = new AzureNative.Billing.InvoiceSection("invoiceSectionResource", new()
    {
        BillingAccountName = "string",
        BillingProfileName = "string",
        InvoiceSectionName = "string",
        Properties = new AzureNative.Billing.Inputs.InvoiceSectionPropertiesArgs
        {
            DisplayName = "string",
            ReasonCode = "string",
            State = "string",
            Tags = 
            {
                { "string", "string" },
            },
            TargetCloud = "string",
        },
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := billing.NewInvoiceSection(ctx, "invoiceSectionResource", &billing.InvoiceSectionArgs{
    	BillingAccountName: pulumi.String("string"),
    	BillingProfileName: pulumi.String("string"),
    	InvoiceSectionName: pulumi.String("string"),
    	Properties: &billing.InvoiceSectionPropertiesArgs{
    		DisplayName: pulumi.String("string"),
    		ReasonCode:  pulumi.String("string"),
    		State:       pulumi.String("string"),
    		Tags: pulumi.StringMap{
    			"string": pulumi.String("string"),
    		},
    		TargetCloud: pulumi.String("string"),
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var invoiceSectionResource = new InvoiceSection("invoiceSectionResource", InvoiceSectionArgs.builder()
        .billingAccountName("string")
        .billingProfileName("string")
        .invoiceSectionName("string")
        .properties(InvoiceSectionPropertiesArgs.builder()
            .displayName("string")
            .reasonCode("string")
            .state("string")
            .tags(Map.of("string", "string"))
            .targetCloud("string")
            .build())
        .tags(Map.of("string", "string"))
        .build());
    
    invoice_section_resource = azure_native.billing.InvoiceSection("invoiceSectionResource",
        billing_account_name="string",
        billing_profile_name="string",
        invoice_section_name="string",
        properties={
            "displayName": "string",
            "reasonCode": "string",
            "state": "string",
            "tags": {
                "string": "string",
            },
            "targetCloud": "string",
        },
        tags={
            "string": "string",
        })
    
    const invoiceSectionResource = new azure_native.billing.InvoiceSection("invoiceSectionResource", {
        billingAccountName: "string",
        billingProfileName: "string",
        invoiceSectionName: "string",
        properties: {
            displayName: "string",
            reasonCode: "string",
            state: "string",
            tags: {
                string: "string",
            },
            targetCloud: "string",
        },
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:billing:InvoiceSection
    properties:
        billingAccountName: string
        billingProfileName: string
        invoiceSectionName: string
        properties:
            displayName: string
            reasonCode: string
            state: string
            tags:
                string: string
            targetCloud: string
        tags:
            string: string
    

    InvoiceSection Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The InvoiceSection resource accepts the following input properties:

    BillingAccountName string
    The ID that uniquely identifies a billing account.
    BillingProfileName string
    The ID that uniquely identifies a billing profile.
    InvoiceSectionName string
    The ID that uniquely identifies an invoice section.
    Properties Pulumi.AzureNative.Billing.Inputs.InvoiceSectionProperties
    An invoice section.
    Tags Dictionary<string, string>
    Dictionary of metadata associated with the resource. It may not be populated for all resource types. Maximum key/value length supported of 256 characters. Keys/value should not empty value nor null. Keys can not contain < > % & \ ? /
    BillingAccountName string
    The ID that uniquely identifies a billing account.
    BillingProfileName string
    The ID that uniquely identifies a billing profile.
    InvoiceSectionName string
    The ID that uniquely identifies an invoice section.
    Properties InvoiceSectionPropertiesArgs
    An invoice section.
    Tags map[string]string
    Dictionary of metadata associated with the resource. It may not be populated for all resource types. Maximum key/value length supported of 256 characters. Keys/value should not empty value nor null. Keys can not contain < > % & \ ? /
    billingAccountName String
    The ID that uniquely identifies a billing account.
    billingProfileName String
    The ID that uniquely identifies a billing profile.
    invoiceSectionName String
    The ID that uniquely identifies an invoice section.
    properties InvoiceSectionProperties
    An invoice section.
    tags Map<String,String>
    Dictionary of metadata associated with the resource. It may not be populated for all resource types. Maximum key/value length supported of 256 characters. Keys/value should not empty value nor null. Keys can not contain < > % & \ ? /
    billingAccountName string
    The ID that uniquely identifies a billing account.
    billingProfileName string
    The ID that uniquely identifies a billing profile.
    invoiceSectionName string
    The ID that uniquely identifies an invoice section.
    properties InvoiceSectionProperties
    An invoice section.
    tags {[key: string]: string}
    Dictionary of metadata associated with the resource. It may not be populated for all resource types. Maximum key/value length supported of 256 characters. Keys/value should not empty value nor null. Keys can not contain < > % & \ ? /
    billing_account_name str
    The ID that uniquely identifies a billing account.
    billing_profile_name str
    The ID that uniquely identifies a billing profile.
    invoice_section_name str
    The ID that uniquely identifies an invoice section.
    properties InvoiceSectionPropertiesArgs
    An invoice section.
    tags Mapping[str, str]
    Dictionary of metadata associated with the resource. It may not be populated for all resource types. Maximum key/value length supported of 256 characters. Keys/value should not empty value nor null. Keys can not contain < > % & \ ? /
    billingAccountName String
    The ID that uniquely identifies a billing account.
    billingProfileName String
    The ID that uniquely identifies a billing profile.
    invoiceSectionName String
    The ID that uniquely identifies an invoice section.
    properties Property Map
    An invoice section.
    tags Map<String>
    Dictionary of metadata associated with the resource. It may not be populated for all resource types. Maximum key/value length supported of 256 characters. Keys/value should not empty value nor null. Keys can not contain < > % & \ ? /

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.Billing.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    InvoiceSectionProperties, InvoiceSectionPropertiesArgs

    DisplayName string
    The name of the invoice section.
    ReasonCode string | Pulumi.AzureNative.Billing.InvoiceSectionStateReasonCode
    Reason for the specified invoice section status.
    State string | Pulumi.AzureNative.Billing.InvoiceSectionState
    Identifies the status of an invoice section.
    Tags Dictionary<string, string>
    Dictionary of metadata associated with the resource. Maximum key/value length supported of 256 characters. Keys/value should not empty value nor null. Keys can not contain < > % & \ ? /
    TargetCloud string
    Identifies the cloud environments that are associated with an invoice section. This is a system managed optional field and gets updated as the invoice section gets associated with accounts in various clouds.
    DisplayName string
    The name of the invoice section.
    ReasonCode string | InvoiceSectionStateReasonCode
    Reason for the specified invoice section status.
    State string | InvoiceSectionStateEnum
    Identifies the status of an invoice section.
    Tags map[string]string
    Dictionary of metadata associated with the resource. Maximum key/value length supported of 256 characters. Keys/value should not empty value nor null. Keys can not contain < > % & \ ? /
    TargetCloud string
    Identifies the cloud environments that are associated with an invoice section. This is a system managed optional field and gets updated as the invoice section gets associated with accounts in various clouds.
    displayName String
    The name of the invoice section.
    reasonCode String | InvoiceSectionStateReasonCode
    Reason for the specified invoice section status.
    state String | InvoiceSectionState
    Identifies the status of an invoice section.
    tags Map<String,String>
    Dictionary of metadata associated with the resource. Maximum key/value length supported of 256 characters. Keys/value should not empty value nor null. Keys can not contain < > % & \ ? /
    targetCloud String
    Identifies the cloud environments that are associated with an invoice section. This is a system managed optional field and gets updated as the invoice section gets associated with accounts in various clouds.
    displayName string
    The name of the invoice section.
    reasonCode string | InvoiceSectionStateReasonCode
    Reason for the specified invoice section status.
    state string | InvoiceSectionState
    Identifies the status of an invoice section.
    tags {[key: string]: string}
    Dictionary of metadata associated with the resource. Maximum key/value length supported of 256 characters. Keys/value should not empty value nor null. Keys can not contain < > % & \ ? /
    targetCloud string
    Identifies the cloud environments that are associated with an invoice section. This is a system managed optional field and gets updated as the invoice section gets associated with accounts in various clouds.
    display_name str
    The name of the invoice section.
    reason_code str | InvoiceSectionStateReasonCode
    Reason for the specified invoice section status.
    state str | InvoiceSectionState
    Identifies the status of an invoice section.
    tags Mapping[str, str]
    Dictionary of metadata associated with the resource. Maximum key/value length supported of 256 characters. Keys/value should not empty value nor null. Keys can not contain < > % & \ ? /
    target_cloud str
    Identifies the cloud environments that are associated with an invoice section. This is a system managed optional field and gets updated as the invoice section gets associated with accounts in various clouds.
    displayName String
    The name of the invoice section.
    reasonCode String | "Other" | "PastDue" | "UnusualActivity" | "SpendingLimitReached" | "SpendingLimitExpired"
    Reason for the specified invoice section status.
    state String | "Other" | "Active" | "Deleted" | "Disabled" | "UnderReview" | "Warned" | "Restricted"
    Identifies the status of an invoice section.
    tags Map<String>
    Dictionary of metadata associated with the resource. Maximum key/value length supported of 256 characters. Keys/value should not empty value nor null. Keys can not contain < > % & \ ? /
    targetCloud String
    Identifies the cloud environments that are associated with an invoice section. This is a system managed optional field and gets updated as the invoice section gets associated with accounts in various clouds.

    InvoiceSectionPropertiesResponse, InvoiceSectionPropertiesResponseArgs

    ProvisioningState string
    The provisioning state of the resource during a long-running operation.
    SystemId string
    The system generated unique identifier for an invoice section.
    DisplayName string
    The name of the invoice section.
    ReasonCode string
    Reason for the specified invoice section status.
    State string
    Identifies the status of an invoice section.
    Tags Dictionary<string, string>
    Dictionary of metadata associated with the resource. Maximum key/value length supported of 256 characters. Keys/value should not empty value nor null. Keys can not contain < > % & \ ? /
    TargetCloud string
    Identifies the cloud environments that are associated with an invoice section. This is a system managed optional field and gets updated as the invoice section gets associated with accounts in various clouds.
    ProvisioningState string
    The provisioning state of the resource during a long-running operation.
    SystemId string
    The system generated unique identifier for an invoice section.
    DisplayName string
    The name of the invoice section.
    ReasonCode string
    Reason for the specified invoice section status.
    State string
    Identifies the status of an invoice section.
    Tags map[string]string
    Dictionary of metadata associated with the resource. Maximum key/value length supported of 256 characters. Keys/value should not empty value nor null. Keys can not contain < > % & \ ? /
    TargetCloud string
    Identifies the cloud environments that are associated with an invoice section. This is a system managed optional field and gets updated as the invoice section gets associated with accounts in various clouds.
    provisioningState String
    The provisioning state of the resource during a long-running operation.
    systemId String
    The system generated unique identifier for an invoice section.
    displayName String
    The name of the invoice section.
    reasonCode String
    Reason for the specified invoice section status.
    state String
    Identifies the status of an invoice section.
    tags Map<String,String>
    Dictionary of metadata associated with the resource. Maximum key/value length supported of 256 characters. Keys/value should not empty value nor null. Keys can not contain < > % & \ ? /
    targetCloud String
    Identifies the cloud environments that are associated with an invoice section. This is a system managed optional field and gets updated as the invoice section gets associated with accounts in various clouds.
    provisioningState string
    The provisioning state of the resource during a long-running operation.
    systemId string
    The system generated unique identifier for an invoice section.
    displayName string
    The name of the invoice section.
    reasonCode string
    Reason for the specified invoice section status.
    state string
    Identifies the status of an invoice section.
    tags {[key: string]: string}
    Dictionary of metadata associated with the resource. Maximum key/value length supported of 256 characters. Keys/value should not empty value nor null. Keys can not contain < > % & \ ? /
    targetCloud string
    Identifies the cloud environments that are associated with an invoice section. This is a system managed optional field and gets updated as the invoice section gets associated with accounts in various clouds.
    provisioning_state str
    The provisioning state of the resource during a long-running operation.
    system_id str
    The system generated unique identifier for an invoice section.
    display_name str
    The name of the invoice section.
    reason_code str
    Reason for the specified invoice section status.
    state str
    Identifies the status of an invoice section.
    tags Mapping[str, str]
    Dictionary of metadata associated with the resource. Maximum key/value length supported of 256 characters. Keys/value should not empty value nor null. Keys can not contain < > % & \ ? /
    target_cloud str
    Identifies the cloud environments that are associated with an invoice section. This is a system managed optional field and gets updated as the invoice section gets associated with accounts in various clouds.
    provisioningState String
    The provisioning state of the resource during a long-running operation.
    systemId String
    The system generated unique identifier for an invoice section.
    displayName String
    The name of the invoice section.
    reasonCode String
    Reason for the specified invoice section status.
    state String
    Identifies the status of an invoice section.
    tags Map<String>
    Dictionary of metadata associated with the resource. Maximum key/value length supported of 256 characters. Keys/value should not empty value nor null. Keys can not contain < > % & \ ? /
    targetCloud String
    Identifies the cloud environments that are associated with an invoice section. This is a system managed optional field and gets updated as the invoice section gets associated with accounts in various clouds.

    InvoiceSectionState, InvoiceSectionStateArgs

    Other
    Other
    Active
    Active
    Deleted
    Deleted
    Disabled
    Disabled
    UnderReview
    UnderReview
    Warned
    Warned
    Restricted
    Restricted
    InvoiceSectionStateOther
    Other
    InvoiceSectionStateActive
    Active
    InvoiceSectionStateDeleted
    Deleted
    InvoiceSectionStateDisabled
    Disabled
    InvoiceSectionStateUnderReview
    UnderReview
    InvoiceSectionStateWarned
    Warned
    InvoiceSectionStateRestricted
    Restricted
    Other
    Other
    Active
    Active
    Deleted
    Deleted
    Disabled
    Disabled
    UnderReview
    UnderReview
    Warned
    Warned
    Restricted
    Restricted
    Other
    Other
    Active
    Active
    Deleted
    Deleted
    Disabled
    Disabled
    UnderReview
    UnderReview
    Warned
    Warned
    Restricted
    Restricted
    OTHER
    Other
    ACTIVE
    Active
    DELETED
    Deleted
    DISABLED
    Disabled
    UNDER_REVIEW
    UnderReview
    WARNED
    Warned
    RESTRICTED
    Restricted
    "Other"
    Other
    "Active"
    Active
    "Deleted"
    Deleted
    "Disabled"
    Disabled
    "UnderReview"
    UnderReview
    "Warned"
    Warned
    "Restricted"
    Restricted

    InvoiceSectionStateReasonCode, InvoiceSectionStateReasonCodeArgs

    Other
    Other
    PastDue
    PastDue
    UnusualActivity
    UnusualActivity
    SpendingLimitReached
    SpendingLimitReached
    SpendingLimitExpired
    SpendingLimitExpired
    InvoiceSectionStateReasonCodeOther
    Other
    InvoiceSectionStateReasonCodePastDue
    PastDue
    InvoiceSectionStateReasonCodeUnusualActivity
    UnusualActivity
    InvoiceSectionStateReasonCodeSpendingLimitReached
    SpendingLimitReached
    InvoiceSectionStateReasonCodeSpendingLimitExpired
    SpendingLimitExpired
    Other
    Other
    PastDue
    PastDue
    UnusualActivity
    UnusualActivity
    SpendingLimitReached
    SpendingLimitReached
    SpendingLimitExpired
    SpendingLimitExpired
    Other
    Other
    PastDue
    PastDue
    UnusualActivity
    UnusualActivity
    SpendingLimitReached
    SpendingLimitReached
    SpendingLimitExpired
    SpendingLimitExpired
    OTHER
    Other
    PAST_DUE
    PastDue
    UNUSUAL_ACTIVITY
    UnusualActivity
    SPENDING_LIMIT_REACHED
    SpendingLimitReached
    SPENDING_LIMIT_EXPIRED
    SpendingLimitExpired
    "Other"
    Other
    "PastDue"
    PastDue
    "UnusualActivity"
    UnusualActivity
    "SpendingLimitReached"
    SpendingLimitReached
    "SpendingLimitExpired"
    SpendingLimitExpired

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:billing:InvoiceSection invoice-section-1 /providers/Microsoft.Billing/billingAccounts/{billingAccountName}/billingProfiles/{billingProfileName}/invoiceSections/{invoiceSectionName} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.63.0 published on Tuesday, Sep 24, 2024 by Pulumi