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.azure.dataprotection.kotlin.ResourceGuardArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.dataprotection.kotlin
import com.pulumi.azure.dataprotection.ResourceGuardArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.collections.Map
import kotlin.jvm.JvmName
/**
* Manages a Resource Guard.
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as azure from "@pulumi/azure";
* const example = new azure.core.ResourceGroup("example", {
* name: "example-resources",
* location: "West Europe",
* });
* const exampleResourceGuard = new azure.dataprotection.ResourceGuard("example", {
* name: "example-resourceguard",
* resourceGroupName: example.name,
* location: example.location,
* });
* ```
* ```python
* import pulumi
* import pulumi_azure as azure
* example = azure.core.ResourceGroup("example",
* name="example-resources",
* location="West Europe")
* example_resource_guard = azure.dataprotection.ResourceGuard("example",
* name="example-resourceguard",
* resource_group_name=example.name,
* location=example.location)
* ```
* ```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 = "example-resources",
* Location = "West Europe",
* });
* var exampleResourceGuard = new Azure.DataProtection.ResourceGuard("example", new()
* {
* Name = "example-resourceguard",
* ResourceGroupName = example.Name,
* Location = example.Location,
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
* "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/dataprotection"
* "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("example-resources"),
* Location: pulumi.String("West Europe"),
* })
* if err != nil {
* return err
* }
* _, err = dataprotection.NewResourceGuard(ctx, "example", &dataprotection.ResourceGuardArgs{
* Name: pulumi.String("example-resourceguard"),
* ResourceGroupName: example.Name,
* Location: example.Location,
* })
* 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.dataprotection.ResourceGuard;
* import com.pulumi.azure.dataprotection.ResourceGuardArgs;
* 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("example-resources")
* .location("West Europe")
* .build());
* var exampleResourceGuard = new ResourceGuard("exampleResourceGuard", ResourceGuardArgs.builder()
* .name("example-resourceguard")
* .resourceGroupName(example.name())
* .location(example.location())
* .build());
* }
* }
* ```
* ```yaml
* resources:
* example:
* type: azure:core:ResourceGroup
* properties:
* name: example-resources
* location: West Europe
* exampleResourceGuard:
* type: azure:dataprotection:ResourceGuard
* name: example
* properties:
* name: example-resourceguard
* resourceGroupName: ${example.name}
* location: ${example.location}
* ```
*
* ## Import
* Resource Guards can be imported using the `resource id`, e.g.
* ```sh
* $ pulumi import azure:dataprotection/resourceGuard:ResourceGuard example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.DataProtection/resourceGuards/resourceGuard1
* ```
* @property location The Azure Region where the Resource Guard should exist. Changing this forces a new resource to be created.
* @property name The name of the Resource Guard. Changing this forces a new resource to be created.
* @property resourceGroupName The name of the Resource Group where the Resource Guard should exist. Changing this forces a new resource to be created.
* @property tags A mapping of tags which should be assigned to the Resource Guard.
* @property vaultCriticalOperationExclusionLists A list of the critical operations which are not protected by this Resource Guard.
*/
public data class ResourceGuardArgs(
public val location: Output? = null,
public val name: Output? = null,
public val resourceGroupName: Output? = null,
public val tags: Output>? = null,
public val vaultCriticalOperationExclusionLists: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.dataprotection.ResourceGuardArgs =
com.pulumi.azure.dataprotection.ResourceGuardArgs.builder()
.location(location?.applyValue({ args0 -> args0 }))
.name(name?.applyValue({ args0 -> args0 }))
.resourceGroupName(resourceGroupName?.applyValue({ args0 -> args0 }))
.tags(tags?.applyValue({ args0 -> args0.map({ args0 -> args0.key.to(args0.value) }).toMap() }))
.vaultCriticalOperationExclusionLists(
vaultCriticalOperationExclusionLists?.applyValue({ args0 ->
args0.map({ args0 -> args0 })
}),
).build()
}
/**
* Builder for [ResourceGuardArgs].
*/
@PulumiTagMarker
public class ResourceGuardArgsBuilder internal constructor() {
private var location: Output? = null
private var name: Output? = null
private var resourceGroupName: Output? = null
private var tags: Output>? = null
private var vaultCriticalOperationExclusionLists: Output>? = null
/**
* @param value The Azure Region where the Resource Guard should exist. Changing this forces a new resource to be created.
*/
@JvmName("lykbgurtduxodmww")
public suspend fun location(`value`: Output) {
this.location = value
}
/**
* @param value The name of the Resource Guard. Changing this forces a new resource to be created.
*/
@JvmName("ceimygejxfobvxij")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value The name of the Resource Group where the Resource Guard should exist. Changing this forces a new resource to be created.
*/
@JvmName("fvwnloaouwghrqhk")
public suspend fun resourceGroupName(`value`: Output) {
this.resourceGroupName = value
}
/**
* @param value A mapping of tags which should be assigned to the Resource Guard.
*/
@JvmName("yaocxjnxyfguvtve")
public suspend fun tags(`value`: Output>) {
this.tags = value
}
/**
* @param value A list of the critical operations which are not protected by this Resource Guard.
*/
@JvmName("vhvtjythdnqpuyuw")
public suspend fun vaultCriticalOperationExclusionLists(`value`: Output>) {
this.vaultCriticalOperationExclusionLists = value
}
@JvmName("bgfjyvywutwnrwqr")
public suspend fun vaultCriticalOperationExclusionLists(vararg values: Output) {
this.vaultCriticalOperationExclusionLists = Output.all(values.asList())
}
/**
* @param values A list of the critical operations which are not protected by this Resource Guard.
*/
@JvmName("bfiweadpsoiuofbd")
public suspend fun vaultCriticalOperationExclusionLists(values: List>) {
this.vaultCriticalOperationExclusionLists = Output.all(values)
}
/**
* @param value The Azure Region where the Resource Guard should exist. Changing this forces a new resource to be created.
*/
@JvmName("eefwahyofcwseonk")
public suspend fun location(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.location = mapped
}
/**
* @param value The name of the Resource Guard. Changing this forces a new resource to be created.
*/
@JvmName("fugqgfndptbmysuv")
public suspend fun name(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.name = mapped
}
/**
* @param value The name of the Resource Group where the Resource Guard should exist. Changing this forces a new resource to be created.
*/
@JvmName("mdxcdprdvjqyiwkn")
public suspend fun resourceGroupName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.resourceGroupName = mapped
}
/**
* @param value A mapping of tags which should be assigned to the Resource Guard.
*/
@JvmName("pvroyanexkrnxvhx")
public suspend fun tags(`value`: Map?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.tags = mapped
}
/**
* @param values A mapping of tags which should be assigned to the Resource Guard.
*/
@JvmName("wsxjkqsfvsoarnxx")
public fun tags(vararg values: Pair) {
val toBeMapped = values.toMap()
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.tags = mapped
}
/**
* @param value A list of the critical operations which are not protected by this Resource Guard.
*/
@JvmName("flwnlkmisvorjrhs")
public suspend fun vaultCriticalOperationExclusionLists(`value`: List?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.vaultCriticalOperationExclusionLists = mapped
}
/**
* @param values A list of the critical operations which are not protected by this Resource Guard.
*/
@JvmName("phrynwaqfydcoxtm")
public suspend fun vaultCriticalOperationExclusionLists(vararg values: String) {
val toBeMapped = values.toList()
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.vaultCriticalOperationExclusionLists = mapped
}
internal fun build(): ResourceGuardArgs = ResourceGuardArgs(
location = location,
name = name,
resourceGroupName = resourceGroupName,
tags = tags,
vaultCriticalOperationExclusionLists = vaultCriticalOperationExclusionLists,
)
}