All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.pulumi.azurenative.billing.kotlin.AssociatedTenant.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.billing.kotlin
import com.pulumi.azurenative.billing.kotlin.outputs.AssociatedTenantPropertiesResponse
import com.pulumi.azurenative.billing.kotlin.outputs.SystemDataResponse
import com.pulumi.core.Output
import com.pulumi.kotlin.KotlinCustomResource
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.ResourceMapper
import com.pulumi.kotlin.options.CustomResourceOptions
import com.pulumi.kotlin.options.CustomResourceOptionsBuilder
import com.pulumi.resources.Resource
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.Map
import com.pulumi.azurenative.billing.kotlin.outputs.AssociatedTenantPropertiesResponse.Companion.toKotlin as associatedTenantPropertiesResponseToKotlin
import com.pulumi.azurenative.billing.kotlin.outputs.SystemDataResponse.Companion.toKotlin as systemDataResponseToKotlin
/**
* Builder for [AssociatedTenant].
*/
@PulumiTagMarker
public class AssociatedTenantResourceBuilder internal constructor() {
public var name: String? = null
public var args: AssociatedTenantArgs = AssociatedTenantArgs()
public var opts: CustomResourceOptions = CustomResourceOptions()
/**
* @param name The _unique_ name of the resulting resource.
*/
public fun name(`value`: String) {
this.name = value
}
/**
* @param block The arguments to use to populate this resource's properties.
*/
public suspend fun args(block: suspend AssociatedTenantArgsBuilder.() -> Unit) {
val builder = AssociatedTenantArgsBuilder()
block(builder)
this.args = builder.build()
}
/**
* @param block A bag of options that control this resource's behavior.
*/
public suspend fun opts(block: suspend CustomResourceOptionsBuilder.() -> Unit) {
this.opts = com.pulumi.kotlin.options.CustomResourceOptions.opts(block)
}
internal fun build(): AssociatedTenant {
val builtJavaResource = com.pulumi.azurenative.billing.AssociatedTenant(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return AssociatedTenant(builtJavaResource)
}
}
/**
* An associated tenant.
* Azure REST API version: 2024-04-01.
* ## Example Usage
* ### AssociatedTenantsCreateOrUpdate
* ```csharp
* 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,
* },
* });
* });
* ```
* ```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.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
* })
* }
* ```
* ```java
* 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.
* ```sh
* $ pulumi import azure-native:billing:AssociatedTenant 11111111-1111-1111-1111-111111111111 /providers/Microsoft.Billing/billingAccounts/{billingAccountName}/associatedTenants/{associatedTenantName}
* ```
*/
public class AssociatedTenant internal constructor(
override val javaResource: com.pulumi.azurenative.billing.AssociatedTenant,
) : KotlinCustomResource(javaResource, AssociatedTenantMapper) {
/**
* The name of the resource
*/
public val name: Output
get() = javaResource.name().applyValue({ args0 -> args0 })
/**
* An associated tenant.
*/
public val properties: Output
get() = javaResource.properties().applyValue({ args0 ->
args0.let({ args0 ->
associatedTenantPropertiesResponseToKotlin(args0)
})
})
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
public val systemData: Output
get() = javaResource.systemData().applyValue({ args0 ->
args0.let({ args0 ->
systemDataResponseToKotlin(args0)
})
})
/**
* 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 val tags: Output>?
get() = javaResource.tags().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 ->
args0.key.to(args0.value)
}).toMap()
}).orElse(null)
})
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
public val type: Output
get() = javaResource.type().applyValue({ args0 -> args0 })
}
public object AssociatedTenantMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.azurenative.billing.AssociatedTenant::class == javaResource::class
override fun map(javaResource: Resource): AssociatedTenant = AssociatedTenant(
javaResource as
com.pulumi.azurenative.billing.AssociatedTenant,
)
}
/**
* @see [AssociatedTenant].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [AssociatedTenant].
*/
public suspend fun associatedTenant(
name: String,
block: suspend AssociatedTenantResourceBuilder.() -> Unit,
): AssociatedTenant {
val builder = AssociatedTenantResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [AssociatedTenant].
* @param name The _unique_ name of the resulting resource.
*/
public fun associatedTenant(name: String): AssociatedTenant {
val builder = AssociatedTenantResourceBuilder()
builder.name(name)
return builder.build()
}