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.cognitiveservices.kotlin.SharedCommitmentPlan.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.cognitiveservices.kotlin
import com.pulumi.azurenative.cognitiveservices.kotlin.outputs.CommitmentPlanPropertiesResponse
import com.pulumi.azurenative.cognitiveservices.kotlin.outputs.SkuResponse
import com.pulumi.azurenative.cognitiveservices.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.cognitiveservices.kotlin.outputs.CommitmentPlanPropertiesResponse.Companion.toKotlin as commitmentPlanPropertiesResponseToKotlin
import com.pulumi.azurenative.cognitiveservices.kotlin.outputs.SkuResponse.Companion.toKotlin as skuResponseToKotlin
import com.pulumi.azurenative.cognitiveservices.kotlin.outputs.SystemDataResponse.Companion.toKotlin as systemDataResponseToKotlin
/**
* Builder for [SharedCommitmentPlan].
*/
@PulumiTagMarker
public class SharedCommitmentPlanResourceBuilder internal constructor() {
public var name: String? = null
public var args: SharedCommitmentPlanArgs = SharedCommitmentPlanArgs()
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 SharedCommitmentPlanArgsBuilder.() -> Unit) {
val builder = SharedCommitmentPlanArgsBuilder()
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(): SharedCommitmentPlan {
val builtJavaResource =
com.pulumi.azurenative.cognitiveservices.SharedCommitmentPlan(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return SharedCommitmentPlan(builtJavaResource)
}
}
/**
* Cognitive Services account commitment plan.
* Azure REST API version: 2023-05-01.
* Other available API versions: 2023-10-01-preview, 2024-04-01-preview, 2024-06-01-preview.
* ## Example Usage
* ### Create Commitment Plan
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using AzureNative = Pulumi.AzureNative;
* return await Deployment.RunAsync(() =>
* {
* var sharedCommitmentPlan = new AzureNative.CognitiveServices.SharedCommitmentPlan("sharedCommitmentPlan", new()
* {
* CommitmentPlanName = "commitmentPlanName",
* Kind = "SpeechServices",
* Location = "West US",
* Properties = new AzureNative.CognitiveServices.Inputs.CommitmentPlanPropertiesArgs
* {
* AutoRenew = true,
* Current = new AzureNative.CognitiveServices.Inputs.CommitmentPeriodArgs
* {
* Tier = "T1",
* },
* HostingModel = AzureNative.CognitiveServices.HostingModel.Web,
* PlanType = "STT",
* },
* ResourceGroupName = "resourceGroupName",
* Sku = new AzureNative.CognitiveServices.Inputs.SkuArgs
* {
* Name = "S0",
* },
* });
* });
* ```
* ```go
* package main
* import (
* cognitiveservices "github.com/pulumi/pulumi-azure-native-sdk/cognitiveservices/v2"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* _, err := cognitiveservices.NewSharedCommitmentPlan(ctx, "sharedCommitmentPlan", &cognitiveservices.SharedCommitmentPlanArgs{
* CommitmentPlanName: pulumi.String("commitmentPlanName"),
* Kind: pulumi.String("SpeechServices"),
* Location: pulumi.String("West US"),
* Properties: &cognitiveservices.CommitmentPlanPropertiesArgs{
* AutoRenew: pulumi.Bool(true),
* Current: &cognitiveservices.CommitmentPeriodArgs{
* Tier: pulumi.String("T1"),
* },
* HostingModel: pulumi.String(cognitiveservices.HostingModelWeb),
* PlanType: pulumi.String("STT"),
* },
* ResourceGroupName: pulumi.String("resourceGroupName"),
* Sku: &cognitiveservices.SkuArgs{
* Name: pulumi.String("S0"),
* },
* })
* 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.cognitiveservices.SharedCommitmentPlan;
* import com.pulumi.azurenative.cognitiveservices.SharedCommitmentPlanArgs;
* import com.pulumi.azurenative.cognitiveservices.inputs.CommitmentPlanPropertiesArgs;
* import com.pulumi.azurenative.cognitiveservices.inputs.CommitmentPeriodArgs;
* import com.pulumi.azurenative.cognitiveservices.inputs.SkuArgs;
* 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 sharedCommitmentPlan = new SharedCommitmentPlan("sharedCommitmentPlan", SharedCommitmentPlanArgs.builder()
* .commitmentPlanName("commitmentPlanName")
* .kind("SpeechServices")
* .location("West US")
* .properties(CommitmentPlanPropertiesArgs.builder()
* .autoRenew(true)
* .current(CommitmentPeriodArgs.builder()
* .tier("T1")
* .build())
* .hostingModel("Web")
* .planType("STT")
* .build())
* .resourceGroupName("resourceGroupName")
* .sku(SkuArgs.builder()
* .name("S0")
* .build())
* .build());
* }
* }
* ```
* ## Import
* An existing resource can be imported using its type token, name, and identifier, e.g.
* ```sh
* $ pulumi import azure-native:cognitiveservices:SharedCommitmentPlan commitmentPlanName /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.CognitiveServices/commitmentPlans/{commitmentPlanName}
* ```
*/
public class SharedCommitmentPlan internal constructor(
override val javaResource: com.pulumi.azurenative.cognitiveservices.SharedCommitmentPlan,
) : KotlinCustomResource(javaResource, SharedCommitmentPlanMapper) {
/**
* Resource Etag.
*/
public val etag: Output
get() = javaResource.etag().applyValue({ args0 -> args0 })
/**
* The Kind of the resource.
*/
public val kind: Output?
get() = javaResource.kind().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })
/**
* The geo-location where the resource lives
*/
public val location: Output?
get() = javaResource.location().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })
/**
* The name of the resource
*/
public val name: Output
get() = javaResource.name().applyValue({ args0 -> args0 })
/**
* Properties of Cognitive Services account commitment plan.
*/
public val properties: Output
get() = javaResource.properties().applyValue({ args0 ->
args0.let({ args0 ->
commitmentPlanPropertiesResponseToKotlin(args0)
})
})
/**
* The resource model definition representing SKU
*/
public val sku: Output?
get() = javaResource.sku().applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
skuResponseToKotlin(args0)
})
}).orElse(null)
})
/**
* Metadata pertaining to creation and last modification of the resource.
*/
public val systemData: Output
get() = javaResource.systemData().applyValue({ args0 ->
args0.let({ args0 ->
systemDataResponseToKotlin(args0)
})
})
/**
* Resource tags.
*/
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 SharedCommitmentPlanMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.azurenative.cognitiveservices.SharedCommitmentPlan::class == javaResource::class
override fun map(javaResource: Resource): SharedCommitmentPlan = SharedCommitmentPlan(
javaResource
as com.pulumi.azurenative.cognitiveservices.SharedCommitmentPlan,
)
}
/**
* @see [SharedCommitmentPlan].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [SharedCommitmentPlan].
*/
public suspend fun sharedCommitmentPlan(
name: String,
block: suspend SharedCommitmentPlanResourceBuilder.() -> Unit,
): SharedCommitmentPlan {
val builder = SharedCommitmentPlanResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [SharedCommitmentPlan].
* @param name The _unique_ name of the resulting resource.
*/
public fun sharedCommitmentPlan(name: String): SharedCommitmentPlan {
val builder = SharedCommitmentPlanResourceBuilder()
builder.name(name)
return builder.build()
}