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

com.pulumi.azurenative.costmanagement.kotlin.SettingArgs.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.costmanagement.kotlin

import com.pulumi.azurenative.costmanagement.SettingArgs.builder
import com.pulumi.azurenative.costmanagement.kotlin.inputs.SettingsPropertiesCacheArgs
import com.pulumi.azurenative.costmanagement.kotlin.inputs.SettingsPropertiesCacheArgsBuilder
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.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName

/**
 * State of the myscope setting.
 * Azure REST API version: 2019-11-01. Prior API version in Azure Native 1.x: 2019-11-01.
 * ## Example Usage
 * ### CreateOrUpdateSetting
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using AzureNative = Pulumi.AzureNative;
 * return await Deployment.RunAsync(() =>
 * {
 *     var setting = new AzureNative.CostManagement.Setting("setting", new()
 *     {
 *         Cache = new[]
 *         {
 *             new AzureNative.CostManagement.Inputs.SettingsPropertiesCacheArgs
 *             {
 *                 Channel = "Modern",
 *                 Id = "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47",
 *                 Name = "72f988bf-86f1-41af-91ab-2d7cd011db47",
 *                 Parent = "/providers/Microsoft.Management/managementGroups/acm",
 *                 Status = "enabled",
 *                 Subchannel = "NotApplicable",
 *             },
 *         },
 *         Scope = "/subscriptions/00000000-0000-0000-0000-000000000000",
 *         SettingName = "myscope",
 *         StartOn = "LastUsed",
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	costmanagement "github.com/pulumi/pulumi-azure-native-sdk/costmanagement/v2"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		_, err := costmanagement.NewSetting(ctx, "setting", &costmanagement.SettingArgs{
 * 			Cache: costmanagement.SettingsPropertiesCacheArray{
 * 				&costmanagement.SettingsPropertiesCacheArgs{
 * 					Channel:    pulumi.String("Modern"),
 * 					Id:         pulumi.String("/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47"),
 * 					Name:       pulumi.String("72f988bf-86f1-41af-91ab-2d7cd011db47"),
 * 					Parent:     pulumi.String("/providers/Microsoft.Management/managementGroups/acm"),
 * 					Status:     pulumi.String("enabled"),
 * 					Subchannel: pulumi.String("NotApplicable"),
 * 				},
 * 			},
 * 			Scope:       pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000"),
 * 			SettingName: pulumi.String("myscope"),
 * 			StartOn:     pulumi.String("LastUsed"),
 * 		})
 * 		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.costmanagement.Setting;
 * import com.pulumi.azurenative.costmanagement.SettingArgs;
 * import com.pulumi.azurenative.costmanagement.inputs.SettingsPropertiesCacheArgs;
 * 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 setting = new Setting("setting", SettingArgs.builder()
 *             .cache(SettingsPropertiesCacheArgs.builder()
 *                 .channel("Modern")
 *                 .id("/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47")
 *                 .name("72f988bf-86f1-41af-91ab-2d7cd011db47")
 *                 .parent("/providers/Microsoft.Management/managementGroups/acm")
 *                 .status("enabled")
 *                 .subchannel("NotApplicable")
 *                 .build())
 *             .scope("/subscriptions/00000000-0000-0000-0000-000000000000")
 *             .settingName("myscope")
 *             .startOn("LastUsed")
 *             .build());
 *     }
 * }
 * ```
 * ## Import
 * An existing resource can be imported using its type token, name, and identifier, e.g.
 * ```sh
 * $ pulumi import azure-native:costmanagement:Setting myscope /providers/Microsoft.CostManagement/settings/{settingName}
 * ```
 * @property cache Array of scopes with additional details used by Cost Management in the Azure portal.
 * @property scope Sets the default scope the current user will see when they sign into Azure Cost Management in the Azure portal.
 * @property settingName Name of the setting. Allowed values: myscope
 * @property startOn Indicates what scope Cost Management in the Azure portal should default to. Allowed values: LastUsed.
 */
public data class SettingArgs(
    public val cache: Output>? = null,
    public val scope: Output? = null,
    public val settingName: Output? = null,
    public val startOn: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azurenative.costmanagement.SettingArgs =
        com.pulumi.azurenative.costmanagement.SettingArgs.builder()
            .cache(cache?.applyValue({ args0 -> args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) }) }))
            .scope(scope?.applyValue({ args0 -> args0 }))
            .settingName(settingName?.applyValue({ args0 -> args0 }))
            .startOn(startOn?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [SettingArgs].
 */
@PulumiTagMarker
public class SettingArgsBuilder internal constructor() {
    private var cache: Output>? = null

    private var scope: Output? = null

    private var settingName: Output? = null

    private var startOn: Output? = null

    /**
     * @param value Array of scopes with additional details used by Cost Management in the Azure portal.
     */
    @JvmName("edcojsabprcnmixe")
    public suspend fun cache(`value`: Output>) {
        this.cache = value
    }

    @JvmName("qkfcdkbvbbjaefay")
    public suspend fun cache(vararg values: Output) {
        this.cache = Output.all(values.asList())
    }

    /**
     * @param values Array of scopes with additional details used by Cost Management in the Azure portal.
     */
    @JvmName("jqmhjpckcpstwgpc")
    public suspend fun cache(values: List>) {
        this.cache = Output.all(values)
    }

    /**
     * @param value Sets the default scope the current user will see when they sign into Azure Cost Management in the Azure portal.
     */
    @JvmName("gfedavhbbksvmusw")
    public suspend fun scope(`value`: Output) {
        this.scope = value
    }

    /**
     * @param value Name of the setting. Allowed values: myscope
     */
    @JvmName("urpxiuiuenntxgkq")
    public suspend fun settingName(`value`: Output) {
        this.settingName = value
    }

    /**
     * @param value Indicates what scope Cost Management in the Azure portal should default to. Allowed values: LastUsed.
     */
    @JvmName("mjjwadeedhxhjobr")
    public suspend fun startOn(`value`: Output) {
        this.startOn = value
    }

    /**
     * @param value Array of scopes with additional details used by Cost Management in the Azure portal.
     */
    @JvmName("krievvrjlttwwhpr")
    public suspend fun cache(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.cache = mapped
    }

    /**
     * @param argument Array of scopes with additional details used by Cost Management in the Azure portal.
     */
    @JvmName("qkegjvkqrhibqcqs")
    public suspend fun cache(argument: List Unit>) {
        val toBeMapped = argument.toList().map {
            SettingsPropertiesCacheArgsBuilder().applySuspend {
                it()
            }.build()
        }
        val mapped = of(toBeMapped)
        this.cache = mapped
    }

    /**
     * @param argument Array of scopes with additional details used by Cost Management in the Azure portal.
     */
    @JvmName("nnqasaafyqrmmors")
    public suspend fun cache(vararg argument: suspend SettingsPropertiesCacheArgsBuilder.() -> Unit) {
        val toBeMapped = argument.toList().map {
            SettingsPropertiesCacheArgsBuilder().applySuspend {
                it()
            }.build()
        }
        val mapped = of(toBeMapped)
        this.cache = mapped
    }

    /**
     * @param argument Array of scopes with additional details used by Cost Management in the Azure portal.
     */
    @JvmName("hdledbuqsqobwngu")
    public suspend fun cache(argument: suspend SettingsPropertiesCacheArgsBuilder.() -> Unit) {
        val toBeMapped = listOf(
            SettingsPropertiesCacheArgsBuilder().applySuspend {
                argument()
            }.build(),
        )
        val mapped = of(toBeMapped)
        this.cache = mapped
    }

    /**
     * @param values Array of scopes with additional details used by Cost Management in the Azure portal.
     */
    @JvmName("mjacxojhsoyfifpe")
    public suspend fun cache(vararg values: SettingsPropertiesCacheArgs) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.cache = mapped
    }

    /**
     * @param value Sets the default scope the current user will see when they sign into Azure Cost Management in the Azure portal.
     */
    @JvmName("ysldmsafcmjinsco")
    public suspend fun scope(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.scope = mapped
    }

    /**
     * @param value Name of the setting. Allowed values: myscope
     */
    @JvmName("qinkgohchyiktwtk")
    public suspend fun settingName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.settingName = mapped
    }

    /**
     * @param value Indicates what scope Cost Management in the Azure portal should default to. Allowed values: LastUsed.
     */
    @JvmName("tkkospfcnrqefmnj")
    public suspend fun startOn(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.startOn = mapped
    }

    internal fun build(): SettingArgs = SettingArgs(
        cache = cache,
        scope = scope,
        settingName = settingName,
        startOn = startOn,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy