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.gcp.netapp.kotlin.BackupVault.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.netapp.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.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.Map
/**
* Builder for [BackupVault].
*/
@PulumiTagMarker
public class BackupVaultResourceBuilder internal constructor() {
public var name: String? = null
public var args: BackupVaultArgs = BackupVaultArgs()
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 BackupVaultArgsBuilder.() -> Unit) {
val builder = BackupVaultArgsBuilder()
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(): BackupVault {
val builtJavaResource = com.pulumi.gcp.netapp.BackupVault(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return BackupVault(builtJavaResource)
}
}
/**
* A backup vault is the location where backups are stored. You can only create one backup vault per region.
* A vault can hold multiple backups for multiple volumes in that region.
* To get more information about backupVault, see:
* * [API documentation](https://cloud.google.com/netapp/volumes/docs/reference/rest/v1/projects.locations.backupVaults)
* * How-to Guides
* * [Documentation](https://cloud.google.com/netapp/volumes/docs/protect-data/about-volume-backups)
* ## Example Usage
* ### Netapp Backup Vault
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* const testBackupVault = new gcp.netapp.BackupVault("test_backup_vault", {
* name: "test-backup-vault",
* location: "us-central1",
* description: "Terraform created vault",
* labels: {
* creator: "testuser",
* },
* });
* ```
* ```python
* import pulumi
* import pulumi_gcp as gcp
* test_backup_vault = gcp.netapp.BackupVault("test_backup_vault",
* name="test-backup-vault",
* location="us-central1",
* description="Terraform created vault",
* labels={
* "creator": "testuser",
* })
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Gcp = Pulumi.Gcp;
* return await Deployment.RunAsync(() =>
* {
* var testBackupVault = new Gcp.Netapp.BackupVault("test_backup_vault", new()
* {
* Name = "test-backup-vault",
* Location = "us-central1",
* Description = "Terraform created vault",
* Labels =
* {
* { "creator", "testuser" },
* },
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/netapp"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* _, err := netapp.NewBackupVault(ctx, "test_backup_vault", &netapp.BackupVaultArgs{
* Name: pulumi.String("test-backup-vault"),
* Location: pulumi.String("us-central1"),
* Description: pulumi.String("Terraform created vault"),
* Labels: pulumi.StringMap{
* "creator": pulumi.String("testuser"),
* },
* })
* 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.gcp.netapp.BackupVault;
* import com.pulumi.gcp.netapp.BackupVaultArgs;
* 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 testBackupVault = new BackupVault("testBackupVault", BackupVaultArgs.builder()
* .name("test-backup-vault")
* .location("us-central1")
* .description("Terraform created vault")
* .labels(Map.of("creator", "testuser"))
* .build());
* }
* }
* ```
* ```yaml
* resources:
* testBackupVault:
* type: gcp:netapp:BackupVault
* name: test_backup_vault
* properties:
* name: test-backup-vault
* location: us-central1
* description: Terraform created vault
* labels:
* creator: testuser
* ```
*
* ## Import
* backupVault can be imported using any of these accepted formats:
* * `projects/{{project}}/locations/{{location}}/backupVaults/{{name}}`
* * `{{project}}/{{location}}/{{name}}`
* * `{{location}}/{{name}}`
* When using the `pulumi import` command, backupVault can be imported using one of the formats above. For example:
* ```sh
* $ pulumi import gcp:netapp/backupVault:BackupVault default projects/{{project}}/locations/{{location}}/backupVaults/{{name}}
* ```
* ```sh
* $ pulumi import gcp:netapp/backupVault:BackupVault default {{project}}/{{location}}/{{name}}
* ```
* ```sh
* $ pulumi import gcp:netapp/backupVault:BackupVault default {{location}}/{{name}}
* ```
*/
public class BackupVault internal constructor(
override val javaResource: com.pulumi.gcp.netapp.BackupVault,
) : KotlinCustomResource(javaResource, BackupVaultMapper) {
/**
* Create time of the backup vault. A timestamp in RFC3339 UTC "Zulu" format. Examples: "2023-06-22T09:13:01.617Z".
*/
public val createTime: Output
get() = javaResource.createTime().applyValue({ args0 -> args0 })
/**
* An optional description of this resource.
*/
public val description: Output?
get() = javaResource.description().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
*/
public val effectiveLabels: Output>
get() = javaResource.effectiveLabels().applyValue({ args0 ->
args0.map({ args0 ->
args0.key.to(args0.value)
}).toMap()
})
/**
* Labels as key value pairs. Example: `{ "owner": "Bob", "department": "finance", "purpose": "testing" }`.
* **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
* Please refer to the field `effective_labels` for all of the labels present on the resource.
*/
public val labels: Output>?
get() = javaResource.labels().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 ->
args0.key.to(args0.value)
}).toMap()
}).orElse(null)
})
/**
* Location (region) of the backup vault.
*/
public val location: Output
get() = javaResource.location().applyValue({ args0 -> args0 })
/**
* The resource name of the backup vault. Needs to be unique per location.
* - - -
*/
public val name: Output
get() = javaResource.name().applyValue({ args0 -> args0 })
/**
* The ID of the project in which the resource belongs.
* If it is not provided, the provider project is used.
*/
public val project: Output
get() = javaResource.project().applyValue({ args0 -> args0 })
/**
* The combination of labels configured directly on the resource
* and default labels configured on the provider.
*/
public val pulumiLabels: Output>
get() = javaResource.pulumiLabels().applyValue({ args0 ->
args0.map({ args0 ->
args0.key.to(args0.value)
}).toMap()
})
/**
* The state of the Backup Vault.
*/
public val state: Output
get() = javaResource.state().applyValue({ args0 -> args0 })
}
public object BackupVaultMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.gcp.netapp.BackupVault::class == javaResource::class
override fun map(javaResource: Resource): BackupVault = BackupVault(
javaResource as
com.pulumi.gcp.netapp.BackupVault,
)
}
/**
* @see [BackupVault].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [BackupVault].
*/
public suspend fun backupVault(name: String, block: suspend BackupVaultResourceBuilder.() -> Unit): BackupVault {
val builder = BackupVaultResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [BackupVault].
* @param name The _unique_ name of the resulting resource.
*/
public fun backupVault(name: String): BackupVault {
val builder = BackupVaultResourceBuilder()
builder.name(name)
return builder.build()
}