com.pulumi.gcp.compute.kotlin.DiskResourcePolicyAttachmentArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.compute.kotlin
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.compute.DiskResourcePolicyAttachmentArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* Adds existing resource policies to a disk. You can only add one policy
* which will be applied to this disk for scheduling snapshot creation.
* > **Note:** This resource does not support regional disks (`gcp.compute.RegionDisk`). For regional disks, please refer to the `gcp.compute.RegionDiskResourcePolicyAttachment` resource.
* ## Example Usage
* ### Disk Resource Policy Attachment Basic
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* const myImage = gcp.compute.getImage({
* family: "debian-11",
* project: "debian-cloud",
* });
* const ssd = new gcp.compute.Disk("ssd", {
* name: "my-disk",
* image: myImage.then(myImage => myImage.selfLink),
* size: 50,
* type: "pd-ssd",
* zone: "us-central1-a",
* });
* const policy = new gcp.compute.ResourcePolicy("policy", {
* name: "my-resource-policy",
* region: "us-central1",
* snapshotSchedulePolicy: {
* schedule: {
* dailySchedule: {
* daysInCycle: 1,
* startTime: "04:00",
* },
* },
* },
* });
* const attachment = new gcp.compute.DiskResourcePolicyAttachment("attachment", {
* name: policy.name,
* disk: ssd.name,
* zone: "us-central1-a",
* });
* ```
* ```python
* import pulumi
* import pulumi_gcp as gcp
* my_image = gcp.compute.get_image(family="debian-11",
* project="debian-cloud")
* ssd = gcp.compute.Disk("ssd",
* name="my-disk",
* image=my_image.self_link,
* size=50,
* type="pd-ssd",
* zone="us-central1-a")
* policy = gcp.compute.ResourcePolicy("policy",
* name="my-resource-policy",
* region="us-central1",
* snapshot_schedule_policy=gcp.compute.ResourcePolicySnapshotSchedulePolicyArgs(
* schedule=gcp.compute.ResourcePolicySnapshotSchedulePolicyScheduleArgs(
* daily_schedule=gcp.compute.ResourcePolicySnapshotSchedulePolicyScheduleDailyScheduleArgs(
* days_in_cycle=1,
* start_time="04:00",
* ),
* ),
* ))
* attachment = gcp.compute.DiskResourcePolicyAttachment("attachment",
* name=policy.name,
* disk=ssd.name,
* zone="us-central1-a")
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Gcp = Pulumi.Gcp;
* return await Deployment.RunAsync(() =>
* {
* var myImage = Gcp.Compute.GetImage.Invoke(new()
* {
* Family = "debian-11",
* Project = "debian-cloud",
* });
* var ssd = new Gcp.Compute.Disk("ssd", new()
* {
* Name = "my-disk",
* Image = myImage.Apply(getImageResult => getImageResult.SelfLink),
* Size = 50,
* Type = "pd-ssd",
* Zone = "us-central1-a",
* });
* var policy = new Gcp.Compute.ResourcePolicy("policy", new()
* {
* Name = "my-resource-policy",
* Region = "us-central1",
* SnapshotSchedulePolicy = new Gcp.Compute.Inputs.ResourcePolicySnapshotSchedulePolicyArgs
* {
* Schedule = new Gcp.Compute.Inputs.ResourcePolicySnapshotSchedulePolicyScheduleArgs
* {
* DailySchedule = new Gcp.Compute.Inputs.ResourcePolicySnapshotSchedulePolicyScheduleDailyScheduleArgs
* {
* DaysInCycle = 1,
* StartTime = "04:00",
* },
* },
* },
* });
* var attachment = new Gcp.Compute.DiskResourcePolicyAttachment("attachment", new()
* {
* Name = policy.Name,
* Disk = ssd.Name,
* Zone = "us-central1-a",
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/compute"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* myImage, err := compute.LookupImage(ctx, &compute.LookupImageArgs{
* Family: pulumi.StringRef("debian-11"),
* Project: pulumi.StringRef("debian-cloud"),
* }, nil)
* if err != nil {
* return err
* }
* ssd, err := compute.NewDisk(ctx, "ssd", &compute.DiskArgs{
* Name: pulumi.String("my-disk"),
* Image: pulumi.String(myImage.SelfLink),
* Size: pulumi.Int(50),
* Type: pulumi.String("pd-ssd"),
* Zone: pulumi.String("us-central1-a"),
* })
* if err != nil {
* return err
* }
* policy, err := compute.NewResourcePolicy(ctx, "policy", &compute.ResourcePolicyArgs{
* Name: pulumi.String("my-resource-policy"),
* Region: pulumi.String("us-central1"),
* SnapshotSchedulePolicy: &compute.ResourcePolicySnapshotSchedulePolicyArgs{
* Schedule: &compute.ResourcePolicySnapshotSchedulePolicyScheduleArgs{
* DailySchedule: &compute.ResourcePolicySnapshotSchedulePolicyScheduleDailyScheduleArgs{
* DaysInCycle: pulumi.Int(1),
* StartTime: pulumi.String("04:00"),
* },
* },
* },
* })
* if err != nil {
* return err
* }
* _, err = compute.NewDiskResourcePolicyAttachment(ctx, "attachment", &compute.DiskResourcePolicyAttachmentArgs{
* Name: policy.Name,
* Disk: ssd.Name,
* Zone: pulumi.String("us-central1-a"),
* })
* 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.compute.ComputeFunctions;
* import com.pulumi.gcp.compute.inputs.GetImageArgs;
* import com.pulumi.gcp.compute.Disk;
* import com.pulumi.gcp.compute.DiskArgs;
* import com.pulumi.gcp.compute.ResourcePolicy;
* import com.pulumi.gcp.compute.ResourcePolicyArgs;
* import com.pulumi.gcp.compute.inputs.ResourcePolicySnapshotSchedulePolicyArgs;
* import com.pulumi.gcp.compute.inputs.ResourcePolicySnapshotSchedulePolicyScheduleArgs;
* import com.pulumi.gcp.compute.inputs.ResourcePolicySnapshotSchedulePolicyScheduleDailyScheduleArgs;
* import com.pulumi.gcp.compute.DiskResourcePolicyAttachment;
* import com.pulumi.gcp.compute.DiskResourcePolicyAttachmentArgs;
* 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) {
* final var myImage = ComputeFunctions.getImage(GetImageArgs.builder()
* .family("debian-11")
* .project("debian-cloud")
* .build());
* var ssd = new Disk("ssd", DiskArgs.builder()
* .name("my-disk")
* .image(myImage.applyValue(getImageResult -> getImageResult.selfLink()))
* .size(50)
* .type("pd-ssd")
* .zone("us-central1-a")
* .build());
* var policy = new ResourcePolicy("policy", ResourcePolicyArgs.builder()
* .name("my-resource-policy")
* .region("us-central1")
* .snapshotSchedulePolicy(ResourcePolicySnapshotSchedulePolicyArgs.builder()
* .schedule(ResourcePolicySnapshotSchedulePolicyScheduleArgs.builder()
* .dailySchedule(ResourcePolicySnapshotSchedulePolicyScheduleDailyScheduleArgs.builder()
* .daysInCycle(1)
* .startTime("04:00")
* .build())
* .build())
* .build())
* .build());
* var attachment = new DiskResourcePolicyAttachment("attachment", DiskResourcePolicyAttachmentArgs.builder()
* .name(policy.name())
* .disk(ssd.name())
* .zone("us-central1-a")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* attachment:
* type: gcp:compute:DiskResourcePolicyAttachment
* properties:
* name: ${policy.name}
* disk: ${ssd.name}
* zone: us-central1-a
* ssd:
* type: gcp:compute:Disk
* properties:
* name: my-disk
* image: ${myImage.selfLink}
* size: 50
* type: pd-ssd
* zone: us-central1-a
* policy:
* type: gcp:compute:ResourcePolicy
* properties:
* name: my-resource-policy
* region: us-central1
* snapshotSchedulePolicy:
* schedule:
* dailySchedule:
* daysInCycle: 1
* startTime: 04:00
* variables:
* myImage:
* fn::invoke:
* Function: gcp:compute:getImage
* Arguments:
* family: debian-11
* project: debian-cloud
* ```
*
* ## Import
* DiskResourcePolicyAttachment can be imported using any of these accepted formats:
* * `projects/{{project}}/zones/{{zone}}/disks/{{disk}}/{{name}}`
* * `{{project}}/{{zone}}/{{disk}}/{{name}}`
* * `{{zone}}/{{disk}}/{{name}}`
* * `{{disk}}/{{name}}`
* When using the `pulumi import` command, DiskResourcePolicyAttachment can be imported using one of the formats above. For example:
* ```sh
* $ pulumi import gcp:compute/diskResourcePolicyAttachment:DiskResourcePolicyAttachment default projects/{{project}}/zones/{{zone}}/disks/{{disk}}/{{name}}
* ```
* ```sh
* $ pulumi import gcp:compute/diskResourcePolicyAttachment:DiskResourcePolicyAttachment default {{project}}/{{zone}}/{{disk}}/{{name}}
* ```
* ```sh
* $ pulumi import gcp:compute/diskResourcePolicyAttachment:DiskResourcePolicyAttachment default {{zone}}/{{disk}}/{{name}}
* ```
* ```sh
* $ pulumi import gcp:compute/diskResourcePolicyAttachment:DiskResourcePolicyAttachment default {{disk}}/{{name}}
* ```
* @property disk The name of the disk in which the resource policies are attached to.
* - - -
* @property name The resource policy to be attached to the disk for scheduling snapshot
* creation. Do not specify the self link.
* @property project The ID of the project in which the resource belongs.
* If it is not provided, the provider project is used.
* @property zone A reference to the zone where the disk resides.
*/
public data class DiskResourcePolicyAttachmentArgs(
public val disk: Output? = null,
public val name: Output? = null,
public val project: Output? = null,
public val zone: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.compute.DiskResourcePolicyAttachmentArgs =
com.pulumi.gcp.compute.DiskResourcePolicyAttachmentArgs.builder()
.disk(disk?.applyValue({ args0 -> args0 }))
.name(name?.applyValue({ args0 -> args0 }))
.project(project?.applyValue({ args0 -> args0 }))
.zone(zone?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [DiskResourcePolicyAttachmentArgs].
*/
@PulumiTagMarker
public class DiskResourcePolicyAttachmentArgsBuilder internal constructor() {
private var disk: Output? = null
private var name: Output? = null
private var project: Output? = null
private var zone: Output? = null
/**
* @param value The name of the disk in which the resource policies are attached to.
* - - -
*/
@JvmName("hvmuskmwjalfpikf")
public suspend fun disk(`value`: Output) {
this.disk = value
}
/**
* @param value The resource policy to be attached to the disk for scheduling snapshot
* creation. Do not specify the self link.
*/
@JvmName("cyrdyatuouoepfpg")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value The ID of the project in which the resource belongs.
* If it is not provided, the provider project is used.
*/
@JvmName("vawrtnjhraoqpvvm")
public suspend fun project(`value`: Output) {
this.project = value
}
/**
* @param value A reference to the zone where the disk resides.
*/
@JvmName("yewvyixhxmywvedd")
public suspend fun zone(`value`: Output) {
this.zone = value
}
/**
* @param value The name of the disk in which the resource policies are attached to.
* - - -
*/
@JvmName("unuvtsijmyxqvhcg")
public suspend fun disk(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.disk = mapped
}
/**
* @param value The resource policy to be attached to the disk for scheduling snapshot
* creation. Do not specify the self link.
*/
@JvmName("yelimklfntxlkhkt")
public suspend fun name(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.name = mapped
}
/**
* @param value The ID of the project in which the resource belongs.
* If it is not provided, the provider project is used.
*/
@JvmName("dimkmpbmmddhjbki")
public suspend fun project(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.project = mapped
}
/**
* @param value A reference to the zone where the disk resides.
*/
@JvmName("qdwkomkholuojvsl")
public suspend fun zone(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.zone = mapped
}
internal fun build(): DiskResourcePolicyAttachmentArgs = DiskResourcePolicyAttachmentArgs(
disk = disk,
name = name,
project = project,
zone = zone,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy