All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.billing.kotlin.BillingProfileArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 2.82.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.billing.kotlin

import com.pulumi.azurenative.billing.BillingProfileArgs.builder
import com.pulumi.azurenative.billing.kotlin.inputs.BillingProfilePropertiesArgs
import com.pulumi.azurenative.billing.kotlin.inputs.BillingProfilePropertiesArgsBuilder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.Map
import kotlin.jvm.JvmName

/**
 * A billing profile.
 * Azure REST API version: 2024-04-01.
 * ## Example Usage
 * ### BillingProfilesCreateOrUpdate
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using AzureNative = Pulumi.AzureNative;
 * return await Deployment.RunAsync(() =>
 * {
 *     var billingProfile = new AzureNative.Billing.BillingProfile("billingProfile", new()
 *     {
 *         BillingAccountName = "00000000-0000-0000-0000-000000000000:00000000-0000-0000-0000-000000000000_2019-05-31",
 *         BillingProfileName = "xxxx-xxxx-xxx-xxx",
 *         Properties = new AzureNative.Billing.Inputs.BillingProfilePropertiesArgs
 *         {
 *             BillTo = new AzureNative.Billing.Inputs.BillingProfilePropertiesBillToArgs
 *             {
 *                 AddressLine1 = "Test Address1",
 *                 AddressLine2 = "Test Address2",
 *                 AddressLine3 = "Test Address3",
 *                 City = "City",
 *                 CompanyName = "Contoso",
 *                 Country = "US",
 *                 Email = "[email protected]",
 *                 FirstName = "Test",
 *                 IsValidAddress = true,
 *                 LastName = "User",
 *                 PhoneNumber = "000-000-0000",
 *                 PostalCode = "00000",
 *                 Region = "WA",
 *             },
 *             DisplayName = "Billing Profile 1",
 *             EnabledAzurePlans = new[]
 *             {
 *                 new AzureNative.Billing.Inputs.AzurePlanArgs
 *                 {
 *                     SkuId = "0001",
 *                 },
 *                 new AzureNative.Billing.Inputs.AzurePlanArgs
 *                 {
 *                     SkuId = "0002",
 *                 },
 *             },
 *             InvoiceEmailOptIn = true,
 *             PoNumber = "ABC12345",
 *             ShipTo = new AzureNative.Billing.Inputs.BillingProfilePropertiesShipToArgs
 *             {
 *                 AddressLine1 = "Test Address1",
 *                 AddressLine2 = "Test Address2",
 *                 AddressLine3 = "Test Address3",
 *                 City = "City",
 *                 CompanyName = "Contoso",
 *                 Country = "US",
 *                 Email = "[email protected]",
 *                 FirstName = "Test",
 *                 IsValidAddress = true,
 *                 LastName = "User",
 *                 PhoneNumber = "000-000-0000",
 *                 PostalCode = "00000",
 *                 Region = "WA",
 *             },
 *         },
 *     });
 * });
 * ```
 * ```go
 * 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.NewBillingProfile(ctx, "billingProfile", &billing.BillingProfileArgs{
 * 			BillingAccountName: pulumi.String("00000000-0000-0000-0000-000000000000:00000000-0000-0000-0000-000000000000_2019-05-31"),
 * 			BillingProfileName: pulumi.String("xxxx-xxxx-xxx-xxx"),
 * 			Properties: &billing.BillingProfilePropertiesArgs{
 * 				BillTo: &billing.BillingProfilePropertiesBillToArgs{
 * 					AddressLine1:   pulumi.String("Test Address1"),
 * 					AddressLine2:   pulumi.String("Test Address2"),
 * 					AddressLine3:   pulumi.String("Test Address3"),
 * 					City:           pulumi.String("City"),
 * 					CompanyName:    pulumi.String("Contoso"),
 * 					Country:        pulumi.String("US"),
 * 					Email:          pulumi.String("[email protected]"),
 * 					FirstName:      pulumi.String("Test"),
 * 					IsValidAddress: pulumi.Bool(true),
 * 					LastName:       pulumi.String("User"),
 * 					PhoneNumber:    pulumi.String("000-000-0000"),
 * 					PostalCode:     pulumi.String("00000"),
 * 					Region:         pulumi.String("WA"),
 * 				},
 * 				DisplayName: pulumi.String("Billing Profile 1"),
 * 				EnabledAzurePlans: billing.AzurePlanArray{
 * 					&billing.AzurePlanArgs{
 * 						SkuId: pulumi.String("0001"),
 * 					},
 * 					&billing.AzurePlanArgs{
 * 						SkuId: pulumi.String("0002"),
 * 					},
 * 				},
 * 				InvoiceEmailOptIn: pulumi.Bool(true),
 * 				PoNumber:          pulumi.String("ABC12345"),
 * 				ShipTo: &billing.BillingProfilePropertiesShipToArgs{
 * 					AddressLine1:   pulumi.String("Test Address1"),
 * 					AddressLine2:   pulumi.String("Test Address2"),
 * 					AddressLine3:   pulumi.String("Test Address3"),
 * 					City:           pulumi.String("City"),
 * 					CompanyName:    pulumi.String("Contoso"),
 * 					Country:        pulumi.String("US"),
 * 					Email:          pulumi.String("[email protected]"),
 * 					FirstName:      pulumi.String("Test"),
 * 					IsValidAddress: pulumi.Bool(true),
 * 					LastName:       pulumi.String("User"),
 * 					PhoneNumber:    pulumi.String("000-000-0000"),
 * 					PostalCode:     pulumi.String("00000"),
 * 					Region:         pulumi.String("WA"),
 * 				},
 * 			},
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		return nil
 * 	})
 * }
 * ```
 * ```java
 * package generated_program;
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.azurenative.billing.BillingProfile;
 * import com.pulumi.azurenative.billing.BillingProfileArgs;
 * import com.pulumi.azurenative.billing.inputs.BillingProfilePropertiesArgs;
 * import com.pulumi.azurenative.billing.inputs.BillingProfilePropertiesBillToArgs;
 * import com.pulumi.azurenative.billing.inputs.BillingProfilePropertiesShipToArgs;
 * 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 billingProfile = new BillingProfile("billingProfile", BillingProfileArgs.builder()
 *             .billingAccountName("00000000-0000-0000-0000-000000000000:00000000-0000-0000-0000-000000000000_2019-05-31")
 *             .billingProfileName("xxxx-xxxx-xxx-xxx")
 *             .properties(BillingProfilePropertiesArgs.builder()
 *                 .billTo(BillingProfilePropertiesBillToArgs.builder()
 *                     .addressLine1("Test Address1")
 *                     .addressLine2("Test Address2")
 *                     .addressLine3("Test Address3")
 *                     .city("City")
 *                     .companyName("Contoso")
 *                     .country("US")
 *                     .email("[email protected]")
 *                     .firstName("Test")
 *                     .isValidAddress(true)
 *                     .lastName("User")
 *                     .phoneNumber("000-000-0000")
 *                     .postalCode("00000")
 *                     .region("WA")
 *                     .build())
 *                 .displayName("Billing Profile 1")
 *                 .enabledAzurePlans(
 *                     AzurePlanArgs.builder()
 *                         .skuId("0001")
 *                         .build(),
 *                     AzurePlanArgs.builder()
 *                         .skuId("0002")
 *                         .build())
 *                 .invoiceEmailOptIn(true)
 *                 .poNumber("ABC12345")
 *                 .shipTo(BillingProfilePropertiesShipToArgs.builder()
 *                     .addressLine1("Test Address1")
 *                     .addressLine2("Test Address2")
 *                     .addressLine3("Test Address3")
 *                     .city("City")
 *                     .companyName("Contoso")
 *                     .country("US")
 *                     .email("[email protected]")
 *                     .firstName("Test")
 *                     .isValidAddress(true)
 *                     .lastName("User")
 *                     .phoneNumber("000-000-0000")
 *                     .postalCode("00000")
 *                     .region("WA")
 *                     .build())
 *                 .build())
 *             .build());
 *     }
 * }
 * ```
 * ## Import
 * An existing resource can be imported using its type token, name, and identifier, e.g.
 * ```sh
 * $ pulumi import azure-native:billing:BillingProfile xxxx-xxxx-xxx-xxx /providers/Microsoft.Billing/billingAccounts/{billingAccountName}/billingProfiles/{billingProfileName}
 * ```
 * @property billingAccountName The ID that uniquely identifies a billing account.
 * @property billingProfileName The ID that uniquely identifies a billing profile.
 * @property properties A billing profile.
 * @property tags 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 < > % & \ ? /
 */
public data class BillingProfileArgs(
    public val billingAccountName: Output? = null,
    public val billingProfileName: Output? = null,
    public val properties: Output? = null,
    public val tags: Output>? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azurenative.billing.BillingProfileArgs =
        com.pulumi.azurenative.billing.BillingProfileArgs.builder()
            .billingAccountName(billingAccountName?.applyValue({ args0 -> args0 }))
            .billingProfileName(billingProfileName?.applyValue({ args0 -> args0 }))
            .properties(properties?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .tags(
                tags?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.key.to(args0.value)
                    }).toMap()
                }),
            ).build()
}

/**
 * Builder for [BillingProfileArgs].
 */
@PulumiTagMarker
public class BillingProfileArgsBuilder internal constructor() {
    private var billingAccountName: Output? = null

    private var billingProfileName: Output? = null

    private var properties: Output? = null

    private var tags: Output>? = null

    /**
     * @param value The ID that uniquely identifies a billing account.
     */
    @JvmName("cpxgamaxknytubvd")
    public suspend fun billingAccountName(`value`: Output) {
        this.billingAccountName = value
    }

    /**
     * @param value The ID that uniquely identifies a billing profile.
     */
    @JvmName("rhvwomhihbcxlvwt")
    public suspend fun billingProfileName(`value`: Output) {
        this.billingProfileName = value
    }

    /**
     * @param value A billing profile.
     */
    @JvmName("lrtaarftsqoyttir")
    public suspend fun properties(`value`: Output) {
        this.properties = value
    }

    /**
     * @param value 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 < > % & \ ? /
     */
    @JvmName("tfkjfxanomqipjat")
    public suspend fun tags(`value`: Output>) {
        this.tags = value
    }

    /**
     * @param value The ID that uniquely identifies a billing account.
     */
    @JvmName("qykqpmebetewnmfm")
    public suspend fun billingAccountName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.billingAccountName = mapped
    }

    /**
     * @param value The ID that uniquely identifies a billing profile.
     */
    @JvmName("tcafbfuonxsohfgw")
    public suspend fun billingProfileName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.billingProfileName = mapped
    }

    /**
     * @param value A billing profile.
     */
    @JvmName("veffrwqiujneajtu")
    public suspend fun properties(`value`: BillingProfilePropertiesArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.properties = mapped
    }

    /**
     * @param argument A billing profile.
     */
    @JvmName("tiuxlabpmnyemaku")
    public suspend fun properties(argument: suspend BillingProfilePropertiesArgsBuilder.() -> Unit) {
        val toBeMapped = BillingProfilePropertiesArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.properties = mapped
    }

    /**
     * @param value 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 < > % & \ ? /
     */
    @JvmName("vngaixffjdxbdfaw")
    public suspend fun tags(`value`: Map?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    /**
     * @param values 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 < > % & \ ? /
     */
    @JvmName("fybgmwsqpmacrsee")
    public fun tags(vararg values: Pair) {
        val toBeMapped = values.toMap()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    internal fun build(): BillingProfileArgs = BillingProfileArgs(
        billingAccountName = billingAccountName,
        billingProfileName = billingProfileName,
        properties = properties,
        tags = tags,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy