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.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.appplatform.kotlin
import com.pulumi.azurenative.appplatform.CertificateArgs.builder
import com.pulumi.azurenative.appplatform.kotlin.inputs.ContentCertificatePropertiesArgs
import com.pulumi.azurenative.appplatform.kotlin.inputs.KeyVaultCertificatePropertiesArgs
import com.pulumi.core.Either
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* Certificate resource payload.
* Azure REST API version: 2023-05-01-preview. Prior API version in Azure Native 1.x: 2020-07-01.
* Other available API versions: 2021-06-01-preview, 2023-07-01-preview, 2023-09-01-preview, 2023-11-01-preview, 2023-12-01, 2024-01-01-preview, 2024-05-01-preview.
* ## Example Usage
* ### Certificates_CreateOrUpdate
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using AzureNative = Pulumi.AzureNative;
* return await Deployment.RunAsync(() =>
* {
* var certificate = new AzureNative.AppPlatform.Certificate("certificate", new()
* {
* CertificateName = "mycertificate",
* Properties = new AzureNative.AppPlatform.Inputs.KeyVaultCertificatePropertiesArgs
* {
* CertVersion = "08a219d06d874795a96db47e06fbb01e",
* KeyVaultCertName = "mycert",
* Type = "KeyVaultCertificate",
* VaultUri = "https://myvault.vault.azure.net",
* },
* ResourceGroupName = "myResourceGroup",
* ServiceName = "myservice",
* });
* });
* ```
* ```go
* package main
* import (
* appplatform "github.com/pulumi/pulumi-azure-native-sdk/appplatform/v2"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* _, err := appplatform.NewCertificate(ctx, "certificate", &appplatform.CertificateArgs{
* CertificateName: pulumi.String("mycertificate"),
* Properties: &appplatform.KeyVaultCertificatePropertiesArgs{
* CertVersion: pulumi.String("08a219d06d874795a96db47e06fbb01e"),
* KeyVaultCertName: pulumi.String("mycert"),
* Type: pulumi.String("KeyVaultCertificate"),
* VaultUri: pulumi.String("https://myvault.vault.azure.net"),
* },
* ResourceGroupName: pulumi.String("myResourceGroup"),
* ServiceName: pulumi.String("myservice"),
* })
* 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.appplatform.Certificate;
* import com.pulumi.azurenative.appplatform.CertificateArgs;
* 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 certificate = new Certificate("certificate", CertificateArgs.builder()
* .certificateName("mycertificate")
* .properties(KeyVaultCertificatePropertiesArgs.builder()
* .certVersion("08a219d06d874795a96db47e06fbb01e")
* .keyVaultCertName("mycert")
* .type("KeyVaultCertificate")
* .vaultUri("https://myvault.vault.azure.net")
* .build())
* .resourceGroupName("myResourceGroup")
* .serviceName("myservice")
* .build());
* }
* }
* ```
* ## Import
* An existing resource can be imported using its type token, name, and identifier, e.g.
* ```sh
* $ pulumi import azure-native:appplatform:Certificate mycertificate /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppPlatform/Spring/{serviceName}/certificates/{certificateName}
* ```
* @property certificateName The name of the certificate resource.
* @property properties Properties of the certificate resource payload.
* @property resourceGroupName The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
* @property serviceName The name of the Service resource.
*/
public data class CertificateArgs(
public val certificateName: Output? = null,
public val properties: Output>? = null,
public val resourceGroupName: Output? = null,
public val serviceName: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.appplatform.CertificateArgs =
com.pulumi.azurenative.appplatform.CertificateArgs.builder()
.certificateName(certificateName?.applyValue({ args0 -> args0 }))
.properties(
properties?.applyValue({ args0 ->
args0.transform({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}, { args0 -> args0.let({ args0 -> args0.toJava() }) })
}),
)
.resourceGroupName(resourceGroupName?.applyValue({ args0 -> args0 }))
.serviceName(serviceName?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [CertificateArgs].
*/
@PulumiTagMarker
public class CertificateArgsBuilder internal constructor() {
private var certificateName: Output? = null
private var properties:
Output>? = null
private var resourceGroupName: Output? = null
private var serviceName: Output? = null
/**
* @param value The name of the certificate resource.
*/
@JvmName("tnqekjmfokrmiixl")
public suspend fun certificateName(`value`: Output) {
this.certificateName = value
}
/**
* @param value Properties of the certificate resource payload.
*/
@JvmName("nnovelvglnfaedmh")
public suspend fun properties(`value`: Output>) {
this.properties = value
}
/**
* @param value The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
*/
@JvmName("nqsliytyiuoefpuc")
public suspend fun resourceGroupName(`value`: Output) {
this.resourceGroupName = value
}
/**
* @param value The name of the Service resource.
*/
@JvmName("osrdqditxobafuya")
public suspend fun serviceName(`value`: Output) {
this.serviceName = value
}
/**
* @param value The name of the certificate resource.
*/
@JvmName("rekhdgxqdcbcqkob")
public suspend fun certificateName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.certificateName = mapped
}
/**
* @param value Properties of the certificate resource payload.
*/
@JvmName("lsipmwomrcdkiaca")
public suspend fun properties(`value`: Either?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.properties = mapped
}
/**
* @param value Properties of the certificate resource payload.
*/
@JvmName("bwjawcqpiocnrrxi")
public fun properties(`value`: ContentCertificatePropertiesArgs) {
val toBeMapped = Either.ofLeft<
ContentCertificatePropertiesArgs,
KeyVaultCertificatePropertiesArgs,
>(value)
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.properties = mapped
}
/**
* @param value Properties of the certificate resource payload.
*/
@JvmName("icrebvcfiypjuvow")
public fun properties(`value`: KeyVaultCertificatePropertiesArgs) {
val toBeMapped = Either.ofRight<
ContentCertificatePropertiesArgs,
KeyVaultCertificatePropertiesArgs,
>(value)
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.properties = mapped
}
/**
* @param value The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
*/
@JvmName("gclnyaimebfhlnaa")
public suspend fun resourceGroupName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.resourceGroupName = mapped
}
/**
* @param value The name of the Service resource.
*/
@JvmName("upgmregllvslghlc")
public suspend fun serviceName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.serviceName = mapped
}
internal fun build(): CertificateArgs = CertificateArgs(
certificateName = certificateName,
properties = properties,
resourceGroupName = resourceGroupName,
serviceName = serviceName,
)
}