![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.backup.kotlin.PolicyFileShareArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.backup.kotlin
import com.pulumi.azure.backup.PolicyFileShareArgs.builder
import com.pulumi.azure.backup.kotlin.inputs.PolicyFileShareBackupArgs
import com.pulumi.azure.backup.kotlin.inputs.PolicyFileShareBackupArgsBuilder
import com.pulumi.azure.backup.kotlin.inputs.PolicyFileShareRetentionDailyArgs
import com.pulumi.azure.backup.kotlin.inputs.PolicyFileShareRetentionDailyArgsBuilder
import com.pulumi.azure.backup.kotlin.inputs.PolicyFileShareRetentionMonthlyArgs
import com.pulumi.azure.backup.kotlin.inputs.PolicyFileShareRetentionMonthlyArgsBuilder
import com.pulumi.azure.backup.kotlin.inputs.PolicyFileShareRetentionWeeklyArgs
import com.pulumi.azure.backup.kotlin.inputs.PolicyFileShareRetentionWeeklyArgsBuilder
import com.pulumi.azure.backup.kotlin.inputs.PolicyFileShareRetentionYearlyArgs
import com.pulumi.azure.backup.kotlin.inputs.PolicyFileShareRetentionYearlyArgsBuilder
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.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
* Manages an Azure File Share Backup Policy within a Recovery Services vault.
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as azure from "@pulumi/azure";
* const example = new azure.core.ResourceGroup("example", {
* name: "tfex-recovery_vault",
* location: "West Europe",
* });
* const exampleVault = new azure.recoveryservices.Vault("example", {
* name: "tfex-recovery-vault",
* location: example.location,
* resourceGroupName: example.name,
* sku: "Standard",
* });
* const policy = new azure.backup.PolicyFileShare("policy", {
* name: "tfex-recovery-vault-policy",
* resourceGroupName: example.name,
* recoveryVaultName: exampleVault.name,
* timezone: "UTC",
* backup: {
* frequency: "Daily",
* time: "23:00",
* },
* retentionDaily: {
* count: 10,
* },
* retentionWeekly: {
* count: 7,
* weekdays: [
* "Sunday",
* "Wednesday",
* "Friday",
* "Saturday",
* ],
* },
* retentionMonthly: {
* count: 7,
* weekdays: [
* "Sunday",
* "Wednesday",
* ],
* weeks: [
* "First",
* "Last",
* ],
* },
* retentionYearly: {
* count: 7,
* weekdays: ["Sunday"],
* weeks: ["Last"],
* months: ["January"],
* },
* });
* ```
* ```python
* import pulumi
* import pulumi_azure as azure
* example = azure.core.ResourceGroup("example",
* name="tfex-recovery_vault",
* location="West Europe")
* example_vault = azure.recoveryservices.Vault("example",
* name="tfex-recovery-vault",
* location=example.location,
* resource_group_name=example.name,
* sku="Standard")
* policy = azure.backup.PolicyFileShare("policy",
* name="tfex-recovery-vault-policy",
* resource_group_name=example.name,
* recovery_vault_name=example_vault.name,
* timezone="UTC",
* backup={
* "frequency": "Daily",
* "time": "23:00",
* },
* retention_daily={
* "count": 10,
* },
* retention_weekly={
* "count": 7,
* "weekdays": [
* "Sunday",
* "Wednesday",
* "Friday",
* "Saturday",
* ],
* },
* retention_monthly={
* "count": 7,
* "weekdays": [
* "Sunday",
* "Wednesday",
* ],
* "weeks": [
* "First",
* "Last",
* ],
* },
* retention_yearly={
* "count": 7,
* "weekdays": ["Sunday"],
* "weeks": ["Last"],
* "months": ["January"],
* })
* ```
* ```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 = "tfex-recovery_vault",
* Location = "West Europe",
* });
* var exampleVault = new Azure.RecoveryServices.Vault("example", new()
* {
* Name = "tfex-recovery-vault",
* Location = example.Location,
* ResourceGroupName = example.Name,
* Sku = "Standard",
* });
* var policy = new Azure.Backup.PolicyFileShare("policy", new()
* {
* Name = "tfex-recovery-vault-policy",
* ResourceGroupName = example.Name,
* RecoveryVaultName = exampleVault.Name,
* Timezone = "UTC",
* Backup = new Azure.Backup.Inputs.PolicyFileShareBackupArgs
* {
* Frequency = "Daily",
* Time = "23:00",
* },
* RetentionDaily = new Azure.Backup.Inputs.PolicyFileShareRetentionDailyArgs
* {
* Count = 10,
* },
* RetentionWeekly = new Azure.Backup.Inputs.PolicyFileShareRetentionWeeklyArgs
* {
* Count = 7,
* Weekdays = new[]
* {
* "Sunday",
* "Wednesday",
* "Friday",
* "Saturday",
* },
* },
* RetentionMonthly = new Azure.Backup.Inputs.PolicyFileShareRetentionMonthlyArgs
* {
* Count = 7,
* Weekdays = new[]
* {
* "Sunday",
* "Wednesday",
* },
* Weeks = new[]
* {
* "First",
* "Last",
* },
* },
* RetentionYearly = new Azure.Backup.Inputs.PolicyFileShareRetentionYearlyArgs
* {
* Count = 7,
* Weekdays = new[]
* {
* "Sunday",
* },
* Weeks = new[]
* {
* "Last",
* },
* Months = new[]
* {
* "January",
* },
* },
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/backup"
* "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
* "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/recoveryservices"
* "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("tfex-recovery_vault"),
* Location: pulumi.String("West Europe"),
* })
* if err != nil {
* return err
* }
* exampleVault, err := recoveryservices.NewVault(ctx, "example", &recoveryservices.VaultArgs{
* Name: pulumi.String("tfex-recovery-vault"),
* Location: example.Location,
* ResourceGroupName: example.Name,
* Sku: pulumi.String("Standard"),
* })
* if err != nil {
* return err
* }
* _, err = backup.NewPolicyFileShare(ctx, "policy", &backup.PolicyFileShareArgs{
* Name: pulumi.String("tfex-recovery-vault-policy"),
* ResourceGroupName: example.Name,
* RecoveryVaultName: exampleVault.Name,
* Timezone: pulumi.String("UTC"),
* Backup: &backup.PolicyFileShareBackupArgs{
* Frequency: pulumi.String("Daily"),
* Time: pulumi.String("23:00"),
* },
* RetentionDaily: &backup.PolicyFileShareRetentionDailyArgs{
* Count: pulumi.Int(10),
* },
* RetentionWeekly: &backup.PolicyFileShareRetentionWeeklyArgs{
* Count: pulumi.Int(7),
* Weekdays: pulumi.StringArray{
* pulumi.String("Sunday"),
* pulumi.String("Wednesday"),
* pulumi.String("Friday"),
* pulumi.String("Saturday"),
* },
* },
* RetentionMonthly: &backup.PolicyFileShareRetentionMonthlyArgs{
* Count: pulumi.Int(7),
* Weekdays: pulumi.StringArray{
* pulumi.String("Sunday"),
* pulumi.String("Wednesday"),
* },
* Weeks: pulumi.StringArray{
* pulumi.String("First"),
* pulumi.String("Last"),
* },
* },
* RetentionYearly: &backup.PolicyFileShareRetentionYearlyArgs{
* Count: pulumi.Int(7),
* Weekdays: pulumi.StringArray{
* pulumi.String("Sunday"),
* },
* Weeks: pulumi.StringArray{
* pulumi.String("Last"),
* },
* Months: pulumi.StringArray{
* pulumi.String("January"),
* },
* },
* })
* 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.recoveryservices.Vault;
* import com.pulumi.azure.recoveryservices.VaultArgs;
* import com.pulumi.azure.backup.PolicyFileShare;
* import com.pulumi.azure.backup.PolicyFileShareArgs;
* import com.pulumi.azure.backup.inputs.PolicyFileShareBackupArgs;
* import com.pulumi.azure.backup.inputs.PolicyFileShareRetentionDailyArgs;
* import com.pulumi.azure.backup.inputs.PolicyFileShareRetentionWeeklyArgs;
* import com.pulumi.azure.backup.inputs.PolicyFileShareRetentionMonthlyArgs;
* import com.pulumi.azure.backup.inputs.PolicyFileShareRetentionYearlyArgs;
* 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("tfex-recovery_vault")
* .location("West Europe")
* .build());
* var exampleVault = new Vault("exampleVault", VaultArgs.builder()
* .name("tfex-recovery-vault")
* .location(example.location())
* .resourceGroupName(example.name())
* .sku("Standard")
* .build());
* var policy = new PolicyFileShare("policy", PolicyFileShareArgs.builder()
* .name("tfex-recovery-vault-policy")
* .resourceGroupName(example.name())
* .recoveryVaultName(exampleVault.name())
* .timezone("UTC")
* .backup(PolicyFileShareBackupArgs.builder()
* .frequency("Daily")
* .time("23:00")
* .build())
* .retentionDaily(PolicyFileShareRetentionDailyArgs.builder()
* .count(10)
* .build())
* .retentionWeekly(PolicyFileShareRetentionWeeklyArgs.builder()
* .count(7)
* .weekdays(
* "Sunday",
* "Wednesday",
* "Friday",
* "Saturday")
* .build())
* .retentionMonthly(PolicyFileShareRetentionMonthlyArgs.builder()
* .count(7)
* .weekdays(
* "Sunday",
* "Wednesday")
* .weeks(
* "First",
* "Last")
* .build())
* .retentionYearly(PolicyFileShareRetentionYearlyArgs.builder()
* .count(7)
* .weekdays("Sunday")
* .weeks("Last")
* .months("January")
* .build())
* .build());
* }
* }
* ```
* ```yaml
* resources:
* example:
* type: azure:core:ResourceGroup
* properties:
* name: tfex-recovery_vault
* location: West Europe
* exampleVault:
* type: azure:recoveryservices:Vault
* name: example
* properties:
* name: tfex-recovery-vault
* location: ${example.location}
* resourceGroupName: ${example.name}
* sku: Standard
* policy:
* type: azure:backup:PolicyFileShare
* properties:
* name: tfex-recovery-vault-policy
* resourceGroupName: ${example.name}
* recoveryVaultName: ${exampleVault.name}
* timezone: UTC
* backup:
* frequency: Daily
* time: 23:00
* retentionDaily:
* count: 10
* retentionWeekly:
* count: 7
* weekdays:
* - Sunday
* - Wednesday
* - Friday
* - Saturday
* retentionMonthly:
* count: 7
* weekdays:
* - Sunday
* - Wednesday
* weeks:
* - First
* - Last
* retentionYearly:
* count: 7
* weekdays:
* - Sunday
* weeks:
* - Last
* months:
* - January
* ```
*
* ## Import
* Azure File Share Backup Policies can be imported using the `resource id`, e.g.
* ```sh
* $ pulumi import azure:backup/policyFileShare:PolicyFileShare policy1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.RecoveryServices/vaults/example-recovery-vault/backupPolicies/policy1
* ```
* @property backup Configures the Policy backup frequency and times as documented in the `backup` block below.
* @property name Specifies the name of the policy. Changing this forces a new resource to be created.
* @property recoveryVaultName Specifies the name of the Recovery Services Vault to use. Changing this forces a new resource to be created.
* @property resourceGroupName The name of the resource group in which to create the policy. Changing this forces a new resource to be created.
* @property retentionDaily Configures the policy daily retention as documented in the `retention_daily` block below.
* @property retentionMonthly Configures the policy monthly retention as documented in the `retention_monthly` block below.
* @property retentionWeekly Configures the policy weekly retention as documented in the `retention_weekly` block below.
* @property retentionYearly Configures the policy yearly retention as documented in the `retention_yearly` block below.
* @property timezone Specifies the timezone. [the possible values are defined here](https://jackstromberg.com/2017/01/list-of-time-zones-consumed-by-azure/). Defaults to `UTC`
* > **NOTE:** The maximum number of snapshots that Azure Files can retain is 200. If your combined snapshot count exceeds 200 based on your retention policies, it will result in an error. See [this](https://docs.microsoft.com/azure/backup/backup-azure-files-faq#what-is-the-maximum-retention-i-can-configure-for-backups) article for more information.
*/
public data class PolicyFileShareArgs(
public val backup: Output? = null,
public val name: Output? = null,
public val recoveryVaultName: Output? = null,
public val resourceGroupName: Output? = null,
public val retentionDaily: Output? = null,
public val retentionMonthly: Output? = null,
public val retentionWeekly: Output? = null,
public val retentionYearly: Output? = null,
public val timezone: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.backup.PolicyFileShareArgs =
com.pulumi.azure.backup.PolicyFileShareArgs.builder()
.backup(backup?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.name(name?.applyValue({ args0 -> args0 }))
.recoveryVaultName(recoveryVaultName?.applyValue({ args0 -> args0 }))
.resourceGroupName(resourceGroupName?.applyValue({ args0 -> args0 }))
.retentionDaily(retentionDaily?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.retentionMonthly(retentionMonthly?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.retentionWeekly(retentionWeekly?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.retentionYearly(retentionYearly?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.timezone(timezone?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [PolicyFileShareArgs].
*/
@PulumiTagMarker
public class PolicyFileShareArgsBuilder internal constructor() {
private var backup: Output? = null
private var name: Output? = null
private var recoveryVaultName: Output? = null
private var resourceGroupName: Output? = null
private var retentionDaily: Output? = null
private var retentionMonthly: Output? = null
private var retentionWeekly: Output? = null
private var retentionYearly: Output? = null
private var timezone: Output? = null
/**
* @param value Configures the Policy backup frequency and times as documented in the `backup` block below.
*/
@JvmName("ihushagfmvvpuwvk")
public suspend fun backup(`value`: Output) {
this.backup = value
}
/**
* @param value Specifies the name of the policy. Changing this forces a new resource to be created.
*/
@JvmName("ehhwiowsjdqclcbr")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value Specifies the name of the Recovery Services Vault to use. Changing this forces a new resource to be created.
*/
@JvmName("xwbrhuepplwqvbwi")
public suspend fun recoveryVaultName(`value`: Output) {
this.recoveryVaultName = value
}
/**
* @param value The name of the resource group in which to create the policy. Changing this forces a new resource to be created.
*/
@JvmName("hitstqoqgmtkknjm")
public suspend fun resourceGroupName(`value`: Output) {
this.resourceGroupName = value
}
/**
* @param value Configures the policy daily retention as documented in the `retention_daily` block below.
*/
@JvmName("ivmkefsnqqmwhpef")
public suspend fun retentionDaily(`value`: Output) {
this.retentionDaily = value
}
/**
* @param value Configures the policy monthly retention as documented in the `retention_monthly` block below.
*/
@JvmName("ubjcohkhhhagnuse")
public suspend fun retentionMonthly(`value`: Output) {
this.retentionMonthly = value
}
/**
* @param value Configures the policy weekly retention as documented in the `retention_weekly` block below.
*/
@JvmName("iuwthnukxyjaumyt")
public suspend fun retentionWeekly(`value`: Output) {
this.retentionWeekly = value
}
/**
* @param value Configures the policy yearly retention as documented in the `retention_yearly` block below.
*/
@JvmName("oitgjdiomuyonvpr")
public suspend fun retentionYearly(`value`: Output) {
this.retentionYearly = value
}
/**
* @param value Specifies the timezone. [the possible values are defined here](https://jackstromberg.com/2017/01/list-of-time-zones-consumed-by-azure/). Defaults to `UTC`
* > **NOTE:** The maximum number of snapshots that Azure Files can retain is 200. If your combined snapshot count exceeds 200 based on your retention policies, it will result in an error. See [this](https://docs.microsoft.com/azure/backup/backup-azure-files-faq#what-is-the-maximum-retention-i-can-configure-for-backups) article for more information.
*/
@JvmName("jjqighbukcagmlbt")
public suspend fun timezone(`value`: Output) {
this.timezone = value
}
/**
* @param value Configures the Policy backup frequency and times as documented in the `backup` block below.
*/
@JvmName("ivjqhgponxydynkp")
public suspend fun backup(`value`: PolicyFileShareBackupArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.backup = mapped
}
/**
* @param argument Configures the Policy backup frequency and times as documented in the `backup` block below.
*/
@JvmName("vvhvyhaskehhjrca")
public suspend fun backup(argument: suspend PolicyFileShareBackupArgsBuilder.() -> Unit) {
val toBeMapped = PolicyFileShareBackupArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.backup = mapped
}
/**
* @param value Specifies the name of the policy. Changing this forces a new resource to be created.
*/
@JvmName("yurmcntthdxoedts")
public suspend fun name(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.name = mapped
}
/**
* @param value Specifies the name of the Recovery Services Vault to use. Changing this forces a new resource to be created.
*/
@JvmName("ycinhhkuhxfhnbkx")
public suspend fun recoveryVaultName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.recoveryVaultName = mapped
}
/**
* @param value The name of the resource group in which to create the policy. Changing this forces a new resource to be created.
*/
@JvmName("lklsfanpeqemmucr")
public suspend fun resourceGroupName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.resourceGroupName = mapped
}
/**
* @param value Configures the policy daily retention as documented in the `retention_daily` block below.
*/
@JvmName("qkavvpwnnaxruycm")
public suspend fun retentionDaily(`value`: PolicyFileShareRetentionDailyArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.retentionDaily = mapped
}
/**
* @param argument Configures the policy daily retention as documented in the `retention_daily` block below.
*/
@JvmName("thfayffekurkuknu")
public suspend fun retentionDaily(argument: suspend PolicyFileShareRetentionDailyArgsBuilder.() -> Unit) {
val toBeMapped = PolicyFileShareRetentionDailyArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.retentionDaily = mapped
}
/**
* @param value Configures the policy monthly retention as documented in the `retention_monthly` block below.
*/
@JvmName("eaxqjtcehjxkuyqx")
public suspend fun retentionMonthly(`value`: PolicyFileShareRetentionMonthlyArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.retentionMonthly = mapped
}
/**
* @param argument Configures the policy monthly retention as documented in the `retention_monthly` block below.
*/
@JvmName("ceeeospkqxysnxiy")
public suspend fun retentionMonthly(argument: suspend PolicyFileShareRetentionMonthlyArgsBuilder.() -> Unit) {
val toBeMapped = PolicyFileShareRetentionMonthlyArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.retentionMonthly = mapped
}
/**
* @param value Configures the policy weekly retention as documented in the `retention_weekly` block below.
*/
@JvmName("kkbcyacpxaugtcyw")
public suspend fun retentionWeekly(`value`: PolicyFileShareRetentionWeeklyArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.retentionWeekly = mapped
}
/**
* @param argument Configures the policy weekly retention as documented in the `retention_weekly` block below.
*/
@JvmName("tvqyvgnxvobtkfpb")
public suspend fun retentionWeekly(argument: suspend PolicyFileShareRetentionWeeklyArgsBuilder.() -> Unit) {
val toBeMapped = PolicyFileShareRetentionWeeklyArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.retentionWeekly = mapped
}
/**
* @param value Configures the policy yearly retention as documented in the `retention_yearly` block below.
*/
@JvmName("nybixptnhdxydvhk")
public suspend fun retentionYearly(`value`: PolicyFileShareRetentionYearlyArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.retentionYearly = mapped
}
/**
* @param argument Configures the policy yearly retention as documented in the `retention_yearly` block below.
*/
@JvmName("uulrehipwiodlugx")
public suspend fun retentionYearly(argument: suspend PolicyFileShareRetentionYearlyArgsBuilder.() -> Unit) {
val toBeMapped = PolicyFileShareRetentionYearlyArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.retentionYearly = mapped
}
/**
* @param value Specifies the timezone. [the possible values are defined here](https://jackstromberg.com/2017/01/list-of-time-zones-consumed-by-azure/). Defaults to `UTC`
* > **NOTE:** The maximum number of snapshots that Azure Files can retain is 200. If your combined snapshot count exceeds 200 based on your retention policies, it will result in an error. See [this](https://docs.microsoft.com/azure/backup/backup-azure-files-faq#what-is-the-maximum-retention-i-can-configure-for-backups) article for more information.
*/
@JvmName("qbauscwaikjdmjxq")
public suspend fun timezone(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.timezone = mapped
}
internal fun build(): PolicyFileShareArgs = PolicyFileShareArgs(
backup = backup,
name = name,
recoveryVaultName = recoveryVaultName,
resourceGroupName = resourceGroupName,
retentionDaily = retentionDaily,
retentionMonthly = retentionMonthly,
retentionWeekly = retentionWeekly,
retentionYearly = retentionYearly,
timezone = timezone,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy