AssociatedTenantArgs

data class AssociatedTenantArgs(val associatedTenantName: Output<String>? = null, val billingAccountName: Output<String>? = null, val properties: Output<AssociatedTenantPropertiesArgs>? = null, val tags: Output<Map<String, String>>? = null) : ConvertibleToJava<AssociatedTenantArgs>

An associated tenant. Uses Azure REST API version 2024-04-01. In version 2.x of the Azure Native provider, it used API version 2024-04-01.

Example Usage

AssociatedTenantsCreateOrUpdate

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var associatedTenant = new AzureNative.Billing.AssociatedTenant("associatedTenant", new()
{
AssociatedTenantName = "11111111-1111-1111-1111-111111111111",
BillingAccountName = "00000000-0000-0000-0000-000000000000:00000000-0000-0000-0000-000000000000_2019-05-31",
Properties = new AzureNative.Billing.Inputs.AssociatedTenantPropertiesArgs
{
BillingManagementState = AzureNative.Billing.BillingManagementTenantState.Active,
DisplayName = "Contoso Finance",
ProvisioningManagementState = AzureNative.Billing.ProvisioningTenantState.Pending,
},
});
});
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.NewAssociatedTenant(ctx, "associatedTenant", &billing.AssociatedTenantArgs{
AssociatedTenantName: pulumi.String("11111111-1111-1111-1111-111111111111"),
BillingAccountName: pulumi.String("00000000-0000-0000-0000-000000000000:00000000-0000-0000-0000-000000000000_2019-05-31"),
Properties: &billing.AssociatedTenantPropertiesArgs{
BillingManagementState: pulumi.String(billing.BillingManagementTenantStateActive),
DisplayName: pulumi.String("Contoso Finance"),
ProvisioningManagementState: pulumi.String(billing.ProvisioningTenantStatePending),
},
})
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.AssociatedTenant;
import com.pulumi.azurenative.billing.AssociatedTenantArgs;
import com.pulumi.azurenative.billing.inputs.AssociatedTenantPropertiesArgs;
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 associatedTenant = new AssociatedTenant("associatedTenant", AssociatedTenantArgs.builder()
.associatedTenantName("11111111-1111-1111-1111-111111111111")
.billingAccountName("00000000-0000-0000-0000-000000000000:00000000-0000-0000-0000-000000000000_2019-05-31")
.properties(AssociatedTenantPropertiesArgs.builder()
.billingManagementState("Active")
.displayName("Contoso Finance")
.provisioningManagementState("Pending")
.build())
.build());
}
}

Import

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

$ pulumi import azure-native:billing:AssociatedTenant 11111111-1111-1111-1111-111111111111 /providers/Microsoft.Billing/billingAccounts/{billingAccountName}/associatedTenants/{associatedTenantName}

Constructors

Link copied to clipboard
constructor(associatedTenantName: Output<String>? = null, billingAccountName: Output<String>? = null, properties: Output<AssociatedTenantPropertiesArgs>? = null, tags: Output<Map<String, String>>? = null)

Properties

Link copied to clipboard
val associatedTenantName: Output<String>? = null

The ID that uniquely identifies a tenant.

Link copied to clipboard
val billingAccountName: Output<String>? = null

The ID that uniquely identifies a billing account.

Link copied to clipboard

An associated tenant.

Link copied to clipboard
val tags: Output<Map<String, String>>? = null

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 < % & \ ? /

Functions

Link copied to clipboard
open override fun toJava(): AssociatedTenantArgs