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.providerhub.kotlin.SkusArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.providerhub.kotlin
import com.pulumi.azurenative.providerhub.SkusArgs.builder
import com.pulumi.azurenative.providerhub.kotlin.inputs.SkuResourcePropertiesArgs
import com.pulumi.azurenative.providerhub.kotlin.inputs.SkuResourcePropertiesArgsBuilder
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.jvm.JvmName
/**
*
* Azure REST API version: 2021-09-01-preview. Prior API version in Azure Native 1.x: 2020-11-20.
* ## Example Usage
* ### Skus_CreateOrUpdate
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using AzureNative = Pulumi.AzureNative;
* return await Deployment.RunAsync(() =>
* {
* var skus = new AzureNative.ProviderHub.Skus("skus", new()
* {
* Properties = new AzureNative.ProviderHub.Inputs.SkuResourcePropertiesArgs
* {
* SkuSettings = new[]
* {
* new AzureNative.ProviderHub.Inputs.SkuSettingArgs
* {
* Kind = "Standard",
* Name = "freeSku",
* Tier = "Tier1",
* },
* new AzureNative.ProviderHub.Inputs.SkuSettingArgs
* {
* Costs = new[]
* {
* new AzureNative.ProviderHub.Inputs.SkuCostArgs
* {
* MeterId = "xxx",
* },
* },
* Kind = "Premium",
* Name = "premiumSku",
* Tier = "Tier2",
* },
* },
* },
* ProviderNamespace = "Microsoft.Contoso",
* ResourceType = "testResourceType",
* Sku = "testSku",
* });
* });
* ```
* ```go
* package main
* import (
* providerhub "github.com/pulumi/pulumi-azure-native-sdk/providerhub/v2"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* _, err := providerhub.NewSkus(ctx, "skus", &providerhub.SkusArgs{
* Properties: &providerhub.SkuResourcePropertiesArgs{
* SkuSettings: providerhub.SkuSettingArray{
* &providerhub.SkuSettingArgs{
* Kind: pulumi.String("Standard"),
* Name: pulumi.String("freeSku"),
* Tier: pulumi.String("Tier1"),
* },
* &providerhub.SkuSettingArgs{
* Costs: providerhub.SkuCostArray{
* &providerhub.SkuCostArgs{
* MeterId: pulumi.String("xxx"),
* },
* },
* Kind: pulumi.String("Premium"),
* Name: pulumi.String("premiumSku"),
* Tier: pulumi.String("Tier2"),
* },
* },
* },
* ProviderNamespace: pulumi.String("Microsoft.Contoso"),
* ResourceType: pulumi.String("testResourceType"),
* Sku: pulumi.String("testSku"),
* })
* 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.providerhub.Skus;
* import com.pulumi.azurenative.providerhub.SkusArgs;
* import com.pulumi.azurenative.providerhub.inputs.SkuResourcePropertiesArgs;
* 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 skus = new Skus("skus", SkusArgs.builder()
* .properties(SkuResourcePropertiesArgs.builder()
* .skuSettings(
* SkuSettingArgs.builder()
* .kind("Standard")
* .name("freeSku")
* .tier("Tier1")
* .build(),
* SkuSettingArgs.builder()
* .costs(SkuCostArgs.builder()
* .meterId("xxx")
* .build())
* .kind("Premium")
* .name("premiumSku")
* .tier("Tier2")
* .build())
* .build())
* .providerNamespace("Microsoft.Contoso")
* .resourceType("testResourceType")
* .sku("testSku")
* .build());
* }
* }
* ```
* ## Import
* An existing resource can be imported using its type token, name, and identifier, e.g.
* ```sh
* $ pulumi import azure-native:providerhub:Skus Microsoft.Contoso/ /subscriptions/{subscriptionId}/providers/Microsoft.ProviderHub/providerRegistrations/{providerNamespace}/resourcetypeRegistrations/{resourceType}/skus/{sku}
* ```
* @property properties
* @property providerNamespace The name of the resource provider hosted within ProviderHub.
* @property resourceType The resource type.
* @property sku The SKU.
*/
public data class SkusArgs(
public val properties: Output? = null,
public val providerNamespace: Output? = null,
public val resourceType: Output? = null,
public val sku: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.providerhub.SkusArgs =
com.pulumi.azurenative.providerhub.SkusArgs.builder()
.properties(properties?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.providerNamespace(providerNamespace?.applyValue({ args0 -> args0 }))
.resourceType(resourceType?.applyValue({ args0 -> args0 }))
.sku(sku?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [SkusArgs].
*/
@PulumiTagMarker
public class SkusArgsBuilder internal constructor() {
private var properties: Output? = null
private var providerNamespace: Output? = null
private var resourceType: Output? = null
private var sku: Output? = null
/**
* @param value
*/
@JvmName("qsaeqaywxyqoatyy")
public suspend fun properties(`value`: Output) {
this.properties = value
}
/**
* @param value The name of the resource provider hosted within ProviderHub.
*/
@JvmName("glleuekjkgqhjxnh")
public suspend fun providerNamespace(`value`: Output) {
this.providerNamespace = value
}
/**
* @param value The resource type.
*/
@JvmName("mkcawiappmybgweo")
public suspend fun resourceType(`value`: Output) {
this.resourceType = value
}
/**
* @param value The SKU.
*/
@JvmName("frmxdxfacwjnpafo")
public suspend fun sku(`value`: Output) {
this.sku = value
}
/**
* @param value
*/
@JvmName("bqkjxqttklpcdjea")
public suspend fun properties(`value`: SkuResourcePropertiesArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.properties = mapped
}
/**
* @param argument
*/
@JvmName("tuhblkywijkaxkas")
public suspend fun properties(argument: suspend SkuResourcePropertiesArgsBuilder.() -> Unit) {
val toBeMapped = SkuResourcePropertiesArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.properties = mapped
}
/**
* @param value The name of the resource provider hosted within ProviderHub.
*/
@JvmName("proopovjkbxxqqiy")
public suspend fun providerNamespace(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.providerNamespace = mapped
}
/**
* @param value The resource type.
*/
@JvmName("mluwuqnrekjhjvuj")
public suspend fun resourceType(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.resourceType = mapped
}
/**
* @param value The SKU.
*/
@JvmName("yejratomqqmnpoet")
public suspend fun sku(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.sku = mapped
}
internal fun build(): SkusArgs = SkusArgs(
properties = properties,
providerNamespace = providerNamespace,
resourceType = resourceType,
sku = sku,
)
}