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.azure.automation.kotlin.IntVariable.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.automation.kotlin
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.Int
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
/**
* Builder for [IntVariable].
*/
@PulumiTagMarker
public class IntVariableResourceBuilder internal constructor() {
public var name: String? = null
public var args: IntVariableArgs = IntVariableArgs()
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 IntVariableArgsBuilder.() -> Unit) {
val builder = IntVariableArgsBuilder()
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(): IntVariable {
val builtJavaResource = com.pulumi.azure.automation.IntVariable(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return IntVariable(builtJavaResource)
}
}
/**
* Manages a integer variable in Azure Automation
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as azure from "@pulumi/azure";
* const example = new azure.core.ResourceGroup("example", {
* name: "tfex-example-rg",
* location: "West Europe",
* });
* const exampleAccount = new azure.automation.Account("example", {
* name: "tfex-example-account",
* location: example.location,
* resourceGroupName: example.name,
* skuName: "Basic",
* });
* const exampleIntVariable = new azure.automation.IntVariable("example", {
* name: "tfex-example-var",
* resourceGroupName: example.name,
* automationAccountName: exampleAccount.name,
* value: 1234,
* });
* ```
* ```python
* import pulumi
* import pulumi_azure as azure
* example = azure.core.ResourceGroup("example",
* name="tfex-example-rg",
* location="West Europe")
* example_account = azure.automation.Account("example",
* name="tfex-example-account",
* location=example.location,
* resource_group_name=example.name,
* sku_name="Basic")
* example_int_variable = azure.automation.IntVariable("example",
* name="tfex-example-var",
* resource_group_name=example.name,
* automation_account_name=example_account.name,
* value=1234)
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Azure = Pulumi.Azure;
* return await Deployment.RunAsync(() =>
* {
* var example = new Azure.Core.ResourceGroup("example", new()
* {
* Name = "tfex-example-rg",
* Location = "West Europe",
* });
* var exampleAccount = new Azure.Automation.Account("example", new()
* {
* Name = "tfex-example-account",
* Location = example.Location,
* ResourceGroupName = example.Name,
* SkuName = "Basic",
* });
* var exampleIntVariable = new Azure.Automation.IntVariable("example", new()
* {
* Name = "tfex-example-var",
* ResourceGroupName = example.Name,
* AutomationAccountName = exampleAccount.Name,
* Value = 1234,
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/automation"
* "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
* Name: pulumi.String("tfex-example-rg"),
* Location: pulumi.String("West Europe"),
* })
* if err != nil {
* return err
* }
* exampleAccount, err := automation.NewAccount(ctx, "example", &automation.AccountArgs{
* Name: pulumi.String("tfex-example-account"),
* Location: example.Location,
* ResourceGroupName: example.Name,
* SkuName: pulumi.String("Basic"),
* })
* if err != nil {
* return err
* }
* _, err = automation.NewIntVariable(ctx, "example", &automation.IntVariableArgs{
* Name: pulumi.String("tfex-example-var"),
* ResourceGroupName: example.Name,
* AutomationAccountName: exampleAccount.Name,
* Value: pulumi.Int(1234),
* })
* 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.azure.core.ResourceGroup;
* import com.pulumi.azure.core.ResourceGroupArgs;
* import com.pulumi.azure.automation.Account;
* import com.pulumi.azure.automation.AccountArgs;
* import com.pulumi.azure.automation.IntVariable;
* import com.pulumi.azure.automation.IntVariableArgs;
* 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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
* .name("tfex-example-rg")
* .location("West Europe")
* .build());
* var exampleAccount = new Account("exampleAccount", AccountArgs.builder()
* .name("tfex-example-account")
* .location(example.location())
* .resourceGroupName(example.name())
* .skuName("Basic")
* .build());
* var exampleIntVariable = new IntVariable("exampleIntVariable", IntVariableArgs.builder()
* .name("tfex-example-var")
* .resourceGroupName(example.name())
* .automationAccountName(exampleAccount.name())
* .value(1234)
* .build());
* }
* }
* ```
* ```yaml
* resources:
* example:
* type: azure:core:ResourceGroup
* properties:
* name: tfex-example-rg
* location: West Europe
* exampleAccount:
* type: azure:automation:Account
* name: example
* properties:
* name: tfex-example-account
* location: ${example.location}
* resourceGroupName: ${example.name}
* skuName: Basic
* exampleIntVariable:
* type: azure:automation:IntVariable
* name: example
* properties:
* name: tfex-example-var
* resourceGroupName: ${example.name}
* automationAccountName: ${exampleAccount.name}
* value: 1234
* ```
*
* ## Import
* Automation Int Variable can be imported using the `resource id`, e.g.
* ```sh
* $ pulumi import azure:automation/intVariable:IntVariable example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tfex-example-rg/providers/Microsoft.Automation/automationAccounts/tfex-example-account/variables/tfex-example-var
* ```
*/
public class IntVariable internal constructor(
override val javaResource: com.pulumi.azure.automation.IntVariable,
) : KotlinCustomResource(javaResource, IntVariableMapper) {
/**
* The name of the automation account in which the Variable is created. Changing this forces a new resource to be created.
*/
public val automationAccountName: Output
get() = javaResource.automationAccountName().applyValue({ args0 -> args0 })
/**
* The description of the Automation Variable.
*/
public val description: Output?
get() = javaResource.description().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* Specifies if the Automation Variable is encrypted. Defaults to `false`.
*/
public val encrypted: Output?
get() = javaResource.encrypted().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })
/**
* The name of the Automation Variable. Changing this forces a new resource to be created.
*/
public val name: Output
get() = javaResource.name().applyValue({ args0 -> args0 })
/**
* The name of the resource group in which to create the Automation Variable. Changing this forces a new resource to be created.
*/
public val resourceGroupName: Output
get() = javaResource.resourceGroupName().applyValue({ args0 -> args0 })
/**
* The value of the Automation Variable as a `integer`.
*/
public val `value`: Output?
get() = javaResource.`value`().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })
}
public object IntVariableMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.azure.automation.IntVariable::class == javaResource::class
override fun map(javaResource: Resource): IntVariable = IntVariable(
javaResource as
com.pulumi.azure.automation.IntVariable,
)
}
/**
* @see [IntVariable].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [IntVariable].
*/
public suspend fun intVariable(name: String, block: suspend IntVariableResourceBuilder.() -> Unit): IntVariable {
val builder = IntVariableResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [IntVariable].
* @param name The _unique_ name of the resulting resource.
*/
public fun intVariable(name: String): IntVariable {
val builder = IntVariableResourceBuilder()
builder.name(name)
return builder.build()
}