AssociatedTenant

class AssociatedTenant : KotlinCustomResource

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}

Properties

Link copied to clipboard
val azureApiVersion: Output<String>

The Azure API version of the resource.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val name: Output<String>

The name of the resource

Link copied to clipboard

An associated tenant.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Azure Resource Manager metadata containing createdBy and modifiedBy information.

Link copied to clipboard
val tags: Output<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 < % & \ ? /

Link copied to clipboard
val type: Output<String>

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Link copied to clipboard
val urn: Output<String>