All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.storsimple.kotlin.BackupScheduleArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 2.82.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.storsimple.kotlin

import com.pulumi.azurenative.storsimple.BackupScheduleArgs.builder
import com.pulumi.azurenative.storsimple.kotlin.enums.BackupType
import com.pulumi.azurenative.storsimple.kotlin.enums.Kind
import com.pulumi.azurenative.storsimple.kotlin.enums.ScheduleStatus
import com.pulumi.azurenative.storsimple.kotlin.inputs.ScheduleRecurrenceArgs
import com.pulumi.azurenative.storsimple.kotlin.inputs.ScheduleRecurrenceArgsBuilder
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.Double
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName

/**
 * The backup schedule.
 * Azure REST API version: 2017-06-01. Prior API version in Azure Native 1.x: 2017-06-01.
 * ## Example Usage
 * ### BackupSchedulesCreateOrUpdate
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using AzureNative = Pulumi.AzureNative;
 * return await Deployment.RunAsync(() =>
 * {
 *     var backupSchedule = new AzureNative.StorSimple.BackupSchedule("backupSchedule", new()
 *     {
 *         BackupPolicyName = "BkUpPolicy01ForSDKTest",
 *         BackupScheduleName = "schedule2",
 *         BackupType = AzureNative.StorSimple.BackupType.CloudSnapshot,
 *         DeviceName = "Device05ForSDKTest",
 *         Kind = AzureNative.StorSimple.Kind.Series8000,
 *         ManagerName = "ManagerForSDKTest1",
 *         ResourceGroupName = "ResourceGroupForSDKTest",
 *         RetentionCount = 1,
 *         ScheduleRecurrence = new AzureNative.StorSimple.Inputs.ScheduleRecurrenceArgs
 *         {
 *             RecurrenceType = AzureNative.StorSimple.RecurrenceType.Weekly,
 *             RecurrenceValue = 1,
 *             WeeklyDaysList = new[]
 *             {
 *                 AzureNative.StorSimple.DayOfWeek.Friday,
 *                 AzureNative.StorSimple.DayOfWeek.Thursday,
 *                 AzureNative.StorSimple.DayOfWeek.Monday,
 *             },
 *         },
 *         ScheduleStatus = AzureNative.StorSimple.ScheduleStatus.Enabled,
 *         StartTime = "2017-06-24T01:00:00Z",
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	storsimple "github.com/pulumi/pulumi-azure-native-sdk/storsimple/v2"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		_, err := storsimple.NewBackupSchedule(ctx, "backupSchedule", &storsimple.BackupScheduleArgs{
 * 			BackupPolicyName:   pulumi.String("BkUpPolicy01ForSDKTest"),
 * 			BackupScheduleName: pulumi.String("schedule2"),
 * 			BackupType:         storsimple.BackupTypeCloudSnapshot,
 * 			DeviceName:         pulumi.String("Device05ForSDKTest"),
 * 			Kind:               storsimple.KindSeries8000,
 * 			ManagerName:        pulumi.String("ManagerForSDKTest1"),
 * 			ResourceGroupName:  pulumi.String("ResourceGroupForSDKTest"),
 * 			RetentionCount:     pulumi.Float64(1),
 * 			ScheduleRecurrence: &storsimple.ScheduleRecurrenceArgs{
 * 				RecurrenceType:  storsimple.RecurrenceTypeWeekly,
 * 				RecurrenceValue: pulumi.Int(1),
 * 				WeeklyDaysList: storsimple.DayOfWeekArray{
 * 					storsimple.DayOfWeekFriday,
 * 					storsimple.DayOfWeekThursday,
 * 					storsimple.DayOfWeekMonday,
 * 				},
 * 			},
 * 			ScheduleStatus: storsimple.ScheduleStatusEnabled,
 * 			StartTime:      pulumi.String("2017-06-24T01:00:00Z"),
 * 		})
 * 		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.storsimple.BackupSchedule;
 * import com.pulumi.azurenative.storsimple.BackupScheduleArgs;
 * import com.pulumi.azurenative.storsimple.inputs.ScheduleRecurrenceArgs;
 * 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 backupSchedule = new BackupSchedule("backupSchedule", BackupScheduleArgs.builder()
 *             .backupPolicyName("BkUpPolicy01ForSDKTest")
 *             .backupScheduleName("schedule2")
 *             .backupType("CloudSnapshot")
 *             .deviceName("Device05ForSDKTest")
 *             .kind("Series8000")
 *             .managerName("ManagerForSDKTest1")
 *             .resourceGroupName("ResourceGroupForSDKTest")
 *             .retentionCount(1)
 *             .scheduleRecurrence(ScheduleRecurrenceArgs.builder()
 *                 .recurrenceType("Weekly")
 *                 .recurrenceValue(1)
 *                 .weeklyDaysList(
 *                     "Friday",
 *                     "Thursday",
 *                     "Monday")
 *                 .build())
 *             .scheduleStatus("Enabled")
 *             .startTime("2017-06-24T01:00:00Z")
 *             .build());
 *     }
 * }
 * ```
 * ## Import
 * An existing resource can be imported using its type token, name, and identifier, e.g.
 * ```sh
 * $ pulumi import azure-native:storsimple:BackupSchedule schedule2 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorSimple/managers/{managerName}/devices/{deviceName}/backupPolicies/{backupPolicyName}/schedules/{backupScheduleName}
 * ```
 * @property backupPolicyName The backup policy name.
 * @property backupScheduleName The backup schedule name.
 * @property backupType The type of backup which needs to be taken.
 * @property deviceName The device name
 * @property kind The Kind of the object. Currently only Series8000 is supported
 * @property managerName The manager name
 * @property resourceGroupName The resource group name
 * @property retentionCount The number of backups to be retained.
 * @property scheduleRecurrence The schedule recurrence.
 * @property scheduleStatus The schedule status.
 * @property startTime The start time of the schedule.
 */
public data class BackupScheduleArgs(
    public val backupPolicyName: Output? = null,
    public val backupScheduleName: Output? = null,
    public val backupType: Output? = null,
    public val deviceName: Output? = null,
    public val kind: Output? = null,
    public val managerName: Output? = null,
    public val resourceGroupName: Output? = null,
    public val retentionCount: Output? = null,
    public val scheduleRecurrence: Output? = null,
    public val scheduleStatus: Output? = null,
    public val startTime: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azurenative.storsimple.BackupScheduleArgs =
        com.pulumi.azurenative.storsimple.BackupScheduleArgs.builder()
            .backupPolicyName(backupPolicyName?.applyValue({ args0 -> args0 }))
            .backupScheduleName(backupScheduleName?.applyValue({ args0 -> args0 }))
            .backupType(backupType?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .deviceName(deviceName?.applyValue({ args0 -> args0 }))
            .kind(kind?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .managerName(managerName?.applyValue({ args0 -> args0 }))
            .resourceGroupName(resourceGroupName?.applyValue({ args0 -> args0 }))
            .retentionCount(retentionCount?.applyValue({ args0 -> args0 }))
            .scheduleRecurrence(
                scheduleRecurrence?.applyValue({ args0 ->
                    args0.let({ args0 ->
                        args0.toJava()
                    })
                }),
            )
            .scheduleStatus(scheduleStatus?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .startTime(startTime?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [BackupScheduleArgs].
 */
@PulumiTagMarker
public class BackupScheduleArgsBuilder internal constructor() {
    private var backupPolicyName: Output? = null

    private var backupScheduleName: Output? = null

    private var backupType: Output? = null

    private var deviceName: Output? = null

    private var kind: Output? = null

    private var managerName: Output? = null

    private var resourceGroupName: Output? = null

    private var retentionCount: Output? = null

    private var scheduleRecurrence: Output? = null

    private var scheduleStatus: Output? = null

    private var startTime: Output? = null

    /**
     * @param value The backup policy name.
     */
    @JvmName("hnwefpolbbslojyl")
    public suspend fun backupPolicyName(`value`: Output) {
        this.backupPolicyName = value
    }

    /**
     * @param value The backup schedule name.
     */
    @JvmName("aixvxmxgaajgppwd")
    public suspend fun backupScheduleName(`value`: Output) {
        this.backupScheduleName = value
    }

    /**
     * @param value The type of backup which needs to be taken.
     */
    @JvmName("rcenxgjqfocslviv")
    public suspend fun backupType(`value`: Output) {
        this.backupType = value
    }

    /**
     * @param value The device name
     */
    @JvmName("cphxgbodrasonfbe")
    public suspend fun deviceName(`value`: Output) {
        this.deviceName = value
    }

    /**
     * @param value The Kind of the object. Currently only Series8000 is supported
     */
    @JvmName("thlboixqnigassqe")
    public suspend fun kind(`value`: Output) {
        this.kind = value
    }

    /**
     * @param value The manager name
     */
    @JvmName("hhxbwqwymroihxpd")
    public suspend fun managerName(`value`: Output) {
        this.managerName = value
    }

    /**
     * @param value The resource group name
     */
    @JvmName("uebemvjsyhpboaok")
    public suspend fun resourceGroupName(`value`: Output) {
        this.resourceGroupName = value
    }

    /**
     * @param value The number of backups to be retained.
     */
    @JvmName("ublbohcblaarjtnu")
    public suspend fun retentionCount(`value`: Output) {
        this.retentionCount = value
    }

    /**
     * @param value The schedule recurrence.
     */
    @JvmName("nsvjypsxeglyrcwv")
    public suspend fun scheduleRecurrence(`value`: Output) {
        this.scheduleRecurrence = value
    }

    /**
     * @param value The schedule status.
     */
    @JvmName("owgeenfsfilootsd")
    public suspend fun scheduleStatus(`value`: Output) {
        this.scheduleStatus = value
    }

    /**
     * @param value The start time of the schedule.
     */
    @JvmName("gvxkuwjyoljmwihl")
    public suspend fun startTime(`value`: Output) {
        this.startTime = value
    }

    /**
     * @param value The backup policy name.
     */
    @JvmName("rwfcdkfobqvmfgqy")
    public suspend fun backupPolicyName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.backupPolicyName = mapped
    }

    /**
     * @param value The backup schedule name.
     */
    @JvmName("kpondcmkucwkirrn")
    public suspend fun backupScheduleName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.backupScheduleName = mapped
    }

    /**
     * @param value The type of backup which needs to be taken.
     */
    @JvmName("xgtmjguwajlhaepb")
    public suspend fun backupType(`value`: BackupType?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.backupType = mapped
    }

    /**
     * @param value The device name
     */
    @JvmName("iatciygbtvbhwjpr")
    public suspend fun deviceName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.deviceName = mapped
    }

    /**
     * @param value The Kind of the object. Currently only Series8000 is supported
     */
    @JvmName("vswnuudxisajlyqp")
    public suspend fun kind(`value`: Kind?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.kind = mapped
    }

    /**
     * @param value The manager name
     */
    @JvmName("bibpgulifepbampp")
    public suspend fun managerName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.managerName = mapped
    }

    /**
     * @param value The resource group name
     */
    @JvmName("wkguybhrkliidmov")
    public suspend fun resourceGroupName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.resourceGroupName = mapped
    }

    /**
     * @param value The number of backups to be retained.
     */
    @JvmName("fiyyjckwuyqkcyyc")
    public suspend fun retentionCount(`value`: Double?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.retentionCount = mapped
    }

    /**
     * @param value The schedule recurrence.
     */
    @JvmName("ttajxhjdtedipewy")
    public suspend fun scheduleRecurrence(`value`: ScheduleRecurrenceArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.scheduleRecurrence = mapped
    }

    /**
     * @param argument The schedule recurrence.
     */
    @JvmName("oqbcyyjonmoutqlk")
    public suspend fun scheduleRecurrence(argument: suspend ScheduleRecurrenceArgsBuilder.() -> Unit) {
        val toBeMapped = ScheduleRecurrenceArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.scheduleRecurrence = mapped
    }

    /**
     * @param value The schedule status.
     */
    @JvmName("lvxkpvqombshfoef")
    public suspend fun scheduleStatus(`value`: ScheduleStatus?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.scheduleStatus = mapped
    }

    /**
     * @param value The start time of the schedule.
     */
    @JvmName("aqrmscleydkopqse")
    public suspend fun startTime(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.startTime = mapped
    }

    internal fun build(): BackupScheduleArgs = BackupScheduleArgs(
        backupPolicyName = backupPolicyName,
        backupScheduleName = backupScheduleName,
        backupType = backupType,
        deviceName = deviceName,
        kind = kind,
        managerName = managerName,
        resourceGroupName = resourceGroupName,
        retentionCount = retentionCount,
        scheduleRecurrence = scheduleRecurrence,
        scheduleStatus = scheduleStatus,
        startTime = startTime,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy