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

com.pulumi.azure.mysql.kotlin.FlexibleServerArgs.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: 6.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.mysql.kotlin

import com.pulumi.azure.mysql.FlexibleServerArgs.builder
import com.pulumi.azure.mysql.kotlin.inputs.FlexibleServerCustomerManagedKeyArgs
import com.pulumi.azure.mysql.kotlin.inputs.FlexibleServerCustomerManagedKeyArgsBuilder
import com.pulumi.azure.mysql.kotlin.inputs.FlexibleServerHighAvailabilityArgs
import com.pulumi.azure.mysql.kotlin.inputs.FlexibleServerHighAvailabilityArgsBuilder
import com.pulumi.azure.mysql.kotlin.inputs.FlexibleServerIdentityArgs
import com.pulumi.azure.mysql.kotlin.inputs.FlexibleServerIdentityArgsBuilder
import com.pulumi.azure.mysql.kotlin.inputs.FlexibleServerMaintenanceWindowArgs
import com.pulumi.azure.mysql.kotlin.inputs.FlexibleServerMaintenanceWindowArgsBuilder
import com.pulumi.azure.mysql.kotlin.inputs.FlexibleServerStorageArgs
import com.pulumi.azure.mysql.kotlin.inputs.FlexibleServerStorageArgsBuilder
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.Boolean
import kotlin.Int
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.Map
import kotlin.jvm.JvmName

/**
 * Manages a MySQL Flexible Server.
 * ## 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 exampleVirtualNetwork = new azure.network.VirtualNetwork("example", {
 *     name: "example-vn",
 *     location: example.location,
 *     resourceGroupName: example.name,
 *     addressSpaces: ["10.0.0.0/16"],
 * });
 * const exampleSubnet = new azure.network.Subnet("example", {
 *     name: "example-sn",
 *     resourceGroupName: example.name,
 *     virtualNetworkName: exampleVirtualNetwork.name,
 *     addressPrefixes: ["10.0.2.0/24"],
 *     serviceEndpoints: ["Microsoft.Storage"],
 *     delegations: [{
 *         name: "fs",
 *         serviceDelegation: {
 *             name: "Microsoft.DBforMySQL/flexibleServers",
 *             actions: ["Microsoft.Network/virtualNetworks/subnets/join/action"],
 *         },
 *     }],
 * });
 * const exampleZone = new azure.privatedns.Zone("example", {
 *     name: "example.mysql.database.azure.com",
 *     resourceGroupName: example.name,
 * });
 * const exampleZoneVirtualNetworkLink = new azure.privatedns.ZoneVirtualNetworkLink("example", {
 *     name: "exampleVnetZone.com",
 *     privateDnsZoneName: exampleZone.name,
 *     virtualNetworkId: exampleVirtualNetwork.id,
 *     resourceGroupName: example.name,
 * });
 * const exampleFlexibleServer = new azure.mysql.FlexibleServer("example", {
 *     name: "example-fs",
 *     resourceGroupName: example.name,
 *     location: example.location,
 *     administratorLogin: "psqladmin",
 *     administratorPassword: "H@Sh1CoR3!",
 *     backupRetentionDays: 7,
 *     delegatedSubnetId: exampleSubnet.id,
 *     privateDnsZoneId: exampleZone.id,
 *     skuName: "GP_Standard_D2ds_v4",
 * }, {
 *     dependsOn: [exampleZoneVirtualNetworkLink],
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_azure as azure
 * example = azure.core.ResourceGroup("example",
 *     name="example-resources",
 *     location="West Europe")
 * example_virtual_network = azure.network.VirtualNetwork("example",
 *     name="example-vn",
 *     location=example.location,
 *     resource_group_name=example.name,
 *     address_spaces=["10.0.0.0/16"])
 * example_subnet = azure.network.Subnet("example",
 *     name="example-sn",
 *     resource_group_name=example.name,
 *     virtual_network_name=example_virtual_network.name,
 *     address_prefixes=["10.0.2.0/24"],
 *     service_endpoints=["Microsoft.Storage"],
 *     delegations=[{
 *         "name": "fs",
 *         "service_delegation": {
 *             "name": "Microsoft.DBforMySQL/flexibleServers",
 *             "actions": ["Microsoft.Network/virtualNetworks/subnets/join/action"],
 *         },
 *     }])
 * example_zone = azure.privatedns.Zone("example",
 *     name="example.mysql.database.azure.com",
 *     resource_group_name=example.name)
 * example_zone_virtual_network_link = azure.privatedns.ZoneVirtualNetworkLink("example",
 *     name="exampleVnetZone.com",
 *     private_dns_zone_name=example_zone.name,
 *     virtual_network_id=example_virtual_network.id,
 *     resource_group_name=example.name)
 * example_flexible_server = azure.mysql.FlexibleServer("example",
 *     name="example-fs",
 *     resource_group_name=example.name,
 *     location=example.location,
 *     administrator_login="psqladmin",
 *     administrator_password="H@Sh1CoR3!",
 *     backup_retention_days=7,
 *     delegated_subnet_id=example_subnet.id,
 *     private_dns_zone_id=example_zone.id,
 *     sku_name="GP_Standard_D2ds_v4",
 *     opts = pulumi.ResourceOptions(depends_on=[example_zone_virtual_network_link]))
 * ```
 * ```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 exampleVirtualNetwork = new Azure.Network.VirtualNetwork("example", new()
 *     {
 *         Name = "example-vn",
 *         Location = example.Location,
 *         ResourceGroupName = example.Name,
 *         AddressSpaces = new[]
 *         {
 *             "10.0.0.0/16",
 *         },
 *     });
 *     var exampleSubnet = new Azure.Network.Subnet("example", new()
 *     {
 *         Name = "example-sn",
 *         ResourceGroupName = example.Name,
 *         VirtualNetworkName = exampleVirtualNetwork.Name,
 *         AddressPrefixes = new[]
 *         {
 *             "10.0.2.0/24",
 *         },
 *         ServiceEndpoints = new[]
 *         {
 *             "Microsoft.Storage",
 *         },
 *         Delegations = new[]
 *         {
 *             new Azure.Network.Inputs.SubnetDelegationArgs
 *             {
 *                 Name = "fs",
 *                 ServiceDelegation = new Azure.Network.Inputs.SubnetDelegationServiceDelegationArgs
 *                 {
 *                     Name = "Microsoft.DBforMySQL/flexibleServers",
 *                     Actions = new[]
 *                     {
 *                         "Microsoft.Network/virtualNetworks/subnets/join/action",
 *                     },
 *                 },
 *             },
 *         },
 *     });
 *     var exampleZone = new Azure.PrivateDns.Zone("example", new()
 *     {
 *         Name = "example.mysql.database.azure.com",
 *         ResourceGroupName = example.Name,
 *     });
 *     var exampleZoneVirtualNetworkLink = new Azure.PrivateDns.ZoneVirtualNetworkLink("example", new()
 *     {
 *         Name = "exampleVnetZone.com",
 *         PrivateDnsZoneName = exampleZone.Name,
 *         VirtualNetworkId = exampleVirtualNetwork.Id,
 *         ResourceGroupName = example.Name,
 *     });
 *     var exampleFlexibleServer = new Azure.MySql.FlexibleServer("example", new()
 *     {
 *         Name = "example-fs",
 *         ResourceGroupName = example.Name,
 *         Location = example.Location,
 *         AdministratorLogin = "psqladmin",
 *         AdministratorPassword = "H@Sh1CoR3!",
 *         BackupRetentionDays = 7,
 *         DelegatedSubnetId = exampleSubnet.Id,
 *         PrivateDnsZoneId = exampleZone.Id,
 *         SkuName = "GP_Standard_D2ds_v4",
 *     }, new CustomResourceOptions
 *     {
 *         DependsOn =
 *         {
 *             exampleZoneVirtualNetworkLink,
 *         },
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
 * 	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/mysql"
 * 	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/network"
 * 	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/privatedns"
 * 	"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
 * 		}
 * 		exampleVirtualNetwork, err := network.NewVirtualNetwork(ctx, "example", &network.VirtualNetworkArgs{
 * 			Name:              pulumi.String("example-vn"),
 * 			Location:          example.Location,
 * 			ResourceGroupName: example.Name,
 * 			AddressSpaces: pulumi.StringArray{
 * 				pulumi.String("10.0.0.0/16"),
 * 			},
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		exampleSubnet, err := network.NewSubnet(ctx, "example", &network.SubnetArgs{
 * 			Name:               pulumi.String("example-sn"),
 * 			ResourceGroupName:  example.Name,
 * 			VirtualNetworkName: exampleVirtualNetwork.Name,
 * 			AddressPrefixes: pulumi.StringArray{
 * 				pulumi.String("10.0.2.0/24"),
 * 			},
 * 			ServiceEndpoints: pulumi.StringArray{
 * 				pulumi.String("Microsoft.Storage"),
 * 			},
 * 			Delegations: network.SubnetDelegationArray{
 * 				&network.SubnetDelegationArgs{
 * 					Name: pulumi.String("fs"),
 * 					ServiceDelegation: &network.SubnetDelegationServiceDelegationArgs{
 * 						Name: pulumi.String("Microsoft.DBforMySQL/flexibleServers"),
 * 						Actions: pulumi.StringArray{
 * 							pulumi.String("Microsoft.Network/virtualNetworks/subnets/join/action"),
 * 						},
 * 					},
 * 				},
 * 			},
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		exampleZone, err := privatedns.NewZone(ctx, "example", &privatedns.ZoneArgs{
 * 			Name:              pulumi.String("example.mysql.database.azure.com"),
 * 			ResourceGroupName: example.Name,
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		exampleZoneVirtualNetworkLink, err := privatedns.NewZoneVirtualNetworkLink(ctx, "example", &privatedns.ZoneVirtualNetworkLinkArgs{
 * 			Name:               pulumi.String("exampleVnetZone.com"),
 * 			PrivateDnsZoneName: exampleZone.Name,
 * 			VirtualNetworkId:   exampleVirtualNetwork.ID(),
 * 			ResourceGroupName:  example.Name,
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = mysql.NewFlexibleServer(ctx, "example", &mysql.FlexibleServerArgs{
 * 			Name:                  pulumi.String("example-fs"),
 * 			ResourceGroupName:     example.Name,
 * 			Location:              example.Location,
 * 			AdministratorLogin:    pulumi.String("psqladmin"),
 * 			AdministratorPassword: pulumi.String("H@Sh1CoR3!"),
 * 			BackupRetentionDays:   pulumi.Int(7),
 * 			DelegatedSubnetId:     exampleSubnet.ID(),
 * 			PrivateDnsZoneId:      exampleZone.ID(),
 * 			SkuName:               pulumi.String("GP_Standard_D2ds_v4"),
 * 		}, pulumi.DependsOn([]pulumi.Resource{
 * 			exampleZoneVirtualNetworkLink,
 * 		}))
 * 		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.network.VirtualNetwork;
 * import com.pulumi.azure.network.VirtualNetworkArgs;
 * import com.pulumi.azure.network.Subnet;
 * import com.pulumi.azure.network.SubnetArgs;
 * import com.pulumi.azure.network.inputs.SubnetDelegationArgs;
 * import com.pulumi.azure.network.inputs.SubnetDelegationServiceDelegationArgs;
 * import com.pulumi.azure.privatedns.Zone;
 * import com.pulumi.azure.privatedns.ZoneArgs;
 * import com.pulumi.azure.privatedns.ZoneVirtualNetworkLink;
 * import com.pulumi.azure.privatedns.ZoneVirtualNetworkLinkArgs;
 * import com.pulumi.azure.mysql.FlexibleServer;
 * import com.pulumi.azure.mysql.FlexibleServerArgs;
 * import com.pulumi.resources.CustomResourceOptions;
 * 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 exampleVirtualNetwork = new VirtualNetwork("exampleVirtualNetwork", VirtualNetworkArgs.builder()
 *             .name("example-vn")
 *             .location(example.location())
 *             .resourceGroupName(example.name())
 *             .addressSpaces("10.0.0.0/16")
 *             .build());
 *         var exampleSubnet = new Subnet("exampleSubnet", SubnetArgs.builder()
 *             .name("example-sn")
 *             .resourceGroupName(example.name())
 *             .virtualNetworkName(exampleVirtualNetwork.name())
 *             .addressPrefixes("10.0.2.0/24")
 *             .serviceEndpoints("Microsoft.Storage")
 *             .delegations(SubnetDelegationArgs.builder()
 *                 .name("fs")
 *                 .serviceDelegation(SubnetDelegationServiceDelegationArgs.builder()
 *                     .name("Microsoft.DBforMySQL/flexibleServers")
 *                     .actions("Microsoft.Network/virtualNetworks/subnets/join/action")
 *                     .build())
 *                 .build())
 *             .build());
 *         var exampleZone = new Zone("exampleZone", ZoneArgs.builder()
 *             .name("example.mysql.database.azure.com")
 *             .resourceGroupName(example.name())
 *             .build());
 *         var exampleZoneVirtualNetworkLink = new ZoneVirtualNetworkLink("exampleZoneVirtualNetworkLink", ZoneVirtualNetworkLinkArgs.builder()
 *             .name("exampleVnetZone.com")
 *             .privateDnsZoneName(exampleZone.name())
 *             .virtualNetworkId(exampleVirtualNetwork.id())
 *             .resourceGroupName(example.name())
 *             .build());
 *         var exampleFlexibleServer = new FlexibleServer("exampleFlexibleServer", FlexibleServerArgs.builder()
 *             .name("example-fs")
 *             .resourceGroupName(example.name())
 *             .location(example.location())
 *             .administratorLogin("psqladmin")
 *             .administratorPassword("H@Sh1CoR3!")
 *             .backupRetentionDays(7)
 *             .delegatedSubnetId(exampleSubnet.id())
 *             .privateDnsZoneId(exampleZone.id())
 *             .skuName("GP_Standard_D2ds_v4")
 *             .build(), CustomResourceOptions.builder()
 *                 .dependsOn(exampleZoneVirtualNetworkLink)
 *                 .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   example:
 *     type: azure:core:ResourceGroup
 *     properties:
 *       name: example-resources
 *       location: West Europe
 *   exampleVirtualNetwork:
 *     type: azure:network:VirtualNetwork
 *     name: example
 *     properties:
 *       name: example-vn
 *       location: ${example.location}
 *       resourceGroupName: ${example.name}
 *       addressSpaces:
 *         - 10.0.0.0/16
 *   exampleSubnet:
 *     type: azure:network:Subnet
 *     name: example
 *     properties:
 *       name: example-sn
 *       resourceGroupName: ${example.name}
 *       virtualNetworkName: ${exampleVirtualNetwork.name}
 *       addressPrefixes:
 *         - 10.0.2.0/24
 *       serviceEndpoints:
 *         - Microsoft.Storage
 *       delegations:
 *         - name: fs
 *           serviceDelegation:
 *             name: Microsoft.DBforMySQL/flexibleServers
 *             actions:
 *               - Microsoft.Network/virtualNetworks/subnets/join/action
 *   exampleZone:
 *     type: azure:privatedns:Zone
 *     name: example
 *     properties:
 *       name: example.mysql.database.azure.com
 *       resourceGroupName: ${example.name}
 *   exampleZoneVirtualNetworkLink:
 *     type: azure:privatedns:ZoneVirtualNetworkLink
 *     name: example
 *     properties:
 *       name: exampleVnetZone.com
 *       privateDnsZoneName: ${exampleZone.name}
 *       virtualNetworkId: ${exampleVirtualNetwork.id}
 *       resourceGroupName: ${example.name}
 *   exampleFlexibleServer:
 *     type: azure:mysql:FlexibleServer
 *     name: example
 *     properties:
 *       name: example-fs
 *       resourceGroupName: ${example.name}
 *       location: ${example.location}
 *       administratorLogin: psqladmin
 *       administratorPassword: H@Sh1CoR3!
 *       backupRetentionDays: 7
 *       delegatedSubnetId: ${exampleSubnet.id}
 *       privateDnsZoneId: ${exampleZone.id}
 *       skuName: GP_Standard_D2ds_v4
 *     options:
 *       dependson:
 *         - ${exampleZoneVirtualNetworkLink}
 * ```
 * 
 * ## Import
 * MySQL Flexible Servers can be imported using the `resource id`, e.g.
 * ```sh
 * $ pulumi import azure:mysql/flexibleServer:FlexibleServer example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.DBforMySQL/flexibleServers/flexibleServer1
 * ```
 * @property administratorLogin The Administrator login for the MySQL Flexible Server. Required when `create_mode` is `Default`. Changing this forces a new MySQL Flexible Server to be created.
 * @property administratorPassword The Password associated with the `administrator_login` for the MySQL Flexible Server. Required when `create_mode` is `Default`.
 * @property backupRetentionDays The backup retention days for the MySQL Flexible Server. Possible values are between `1` and `35` days. Defaults to `7`.
 * @property createMode The creation mode which can be used to restore or replicate existing servers. Possible values are `Default`, `PointInTimeRestore`, `GeoRestore`, and `Replica`. Changing this forces a new MySQL Flexible Server to be created.
 * > **NOTE:** Creating a `GeoRestore` server requires the source server with `geo_redundant_backup_enabled` enabled.
 * > **NOTE:** When a server is first created it may not be immediately available for `geo restore` or `replica`. It may take a few minutes to several hours for the necessary metadata to be populated. Please see the [Geo Restore](https://learn.microsoft.com/azure/mysql/single-server/how-to-restore-server-portal#geo-restore) and the [Replica](https://learn.microsoft.com/azure/mysql/flexible-server/concepts-read-replicas#create-a-replica) for more information.
 * @property customerManagedKey A `customer_managed_key` block as defined below.
 * > **NOTE:** `identity` is required when `customer_managed_key` is specified.
 * @property delegatedSubnetId The ID of the virtual network subnet to create the MySQL Flexible Server. Changing this forces a new MySQL Flexible Server to be created.
 * @property geoRedundantBackupEnabled Should geo redundant backup enabled? Defaults to `false`. Changing this forces a new MySQL Flexible Server to be created.
 * @property highAvailability A `high_availability` block as defined below.
 * @property identity An `identity` block as defined below.
 * @property location The Azure Region where the MySQL Flexible Server should exist. Changing this forces a new MySQL Flexible Server to be created.
 * @property maintenanceWindow A `maintenance_window` block as defined below.
 * @property name The name which should be used for this MySQL Flexible Server. Changing this forces a new MySQL Flexible Server to be created.
 * @property pointInTimeRestoreTimeInUtc The point in time to restore from `creation_source_server_id` when `create_mode` is `PointInTimeRestore`. Changing this forces a new MySQL Flexible Server to be created.
 * @property privateDnsZoneId The ID of the private DNS zone to create the MySQL Flexible Server. Changing this forces a new MySQL Flexible Server to be created.
 * > **NOTE:** The `private_dns_zone_id` is required when setting a `delegated_subnet_id`. The `azure.privatedns.Zone` should end with suffix `.mysql.database.azure.com`.
 * @property replicationRole The replication role. Possible value is `None`.
 * > **NOTE:** The `replication_role` cannot be set while creating and only can be updated from `Replica` to `None`.
 * @property resourceGroupName The name of the Resource Group where the MySQL Flexible Server should exist. Changing this forces a new MySQL Flexible Server to be created.
 * @property skuName The SKU Name for the MySQL Flexible Server.
 * > **NOTE:** `sku_name` should start with SKU tier `B (Burstable)`, `GP (General Purpose)`, `MO (Memory Optimized)` like `B_Standard_B1s`.
 * @property sourceServerId The resource ID of the source MySQL Flexible Server to be restored. Required when `create_mode` is `PointInTimeRestore`, `GeoRestore`, and `Replica`. Changing this forces a new MySQL Flexible Server to be created.
 * @property storage A `storage` block as defined below.
 * @property tags A mapping of tags which should be assigned to the MySQL Flexible Server.
 * @property version The version of the MySQL Flexible Server to use. Possible values are `5.7`, and `8.0.21`. Changing this forces a new MySQL Flexible Server to be created.
 * @property zone
 */
public data class FlexibleServerArgs(
    public val administratorLogin: Output? = null,
    public val administratorPassword: Output? = null,
    public val backupRetentionDays: Output? = null,
    public val createMode: Output? = null,
    public val customerManagedKey: Output? = null,
    public val delegatedSubnetId: Output? = null,
    public val geoRedundantBackupEnabled: Output? = null,
    public val highAvailability: Output? = null,
    public val identity: Output? = null,
    public val location: Output? = null,
    public val maintenanceWindow: Output? = null,
    public val name: Output? = null,
    public val pointInTimeRestoreTimeInUtc: Output? = null,
    public val privateDnsZoneId: Output? = null,
    public val replicationRole: Output? = null,
    public val resourceGroupName: Output? = null,
    public val skuName: Output? = null,
    public val sourceServerId: Output? = null,
    public val storage: Output? = null,
    public val tags: Output>? = null,
    public val version: Output? = null,
    public val zone: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azure.mysql.FlexibleServerArgs =
        com.pulumi.azure.mysql.FlexibleServerArgs.builder()
            .administratorLogin(administratorLogin?.applyValue({ args0 -> args0 }))
            .administratorPassword(administratorPassword?.applyValue({ args0 -> args0 }))
            .backupRetentionDays(backupRetentionDays?.applyValue({ args0 -> args0 }))
            .createMode(createMode?.applyValue({ args0 -> args0 }))
            .customerManagedKey(
                customerManagedKey?.applyValue({ args0 ->
                    args0.let({ args0 ->
                        args0.toJava()
                    })
                }),
            )
            .delegatedSubnetId(delegatedSubnetId?.applyValue({ args0 -> args0 }))
            .geoRedundantBackupEnabled(geoRedundantBackupEnabled?.applyValue({ args0 -> args0 }))
            .highAvailability(highAvailability?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .identity(identity?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .location(location?.applyValue({ args0 -> args0 }))
            .maintenanceWindow(maintenanceWindow?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .name(name?.applyValue({ args0 -> args0 }))
            .pointInTimeRestoreTimeInUtc(pointInTimeRestoreTimeInUtc?.applyValue({ args0 -> args0 }))
            .privateDnsZoneId(privateDnsZoneId?.applyValue({ args0 -> args0 }))
            .replicationRole(replicationRole?.applyValue({ args0 -> args0 }))
            .resourceGroupName(resourceGroupName?.applyValue({ args0 -> args0 }))
            .skuName(skuName?.applyValue({ args0 -> args0 }))
            .sourceServerId(sourceServerId?.applyValue({ args0 -> args0 }))
            .storage(storage?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .tags(tags?.applyValue({ args0 -> args0.map({ args0 -> args0.key.to(args0.value) }).toMap() }))
            .version(version?.applyValue({ args0 -> args0 }))
            .zone(zone?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [FlexibleServerArgs].
 */
@PulumiTagMarker
public class FlexibleServerArgsBuilder internal constructor() {
    private var administratorLogin: Output? = null

    private var administratorPassword: Output? = null

    private var backupRetentionDays: Output? = null

    private var createMode: Output? = null

    private var customerManagedKey: Output? = null

    private var delegatedSubnetId: Output? = null

    private var geoRedundantBackupEnabled: Output? = null

    private var highAvailability: Output? = null

    private var identity: Output? = null

    private var location: Output? = null

    private var maintenanceWindow: Output? = null

    private var name: Output? = null

    private var pointInTimeRestoreTimeInUtc: Output? = null

    private var privateDnsZoneId: Output? = null

    private var replicationRole: Output? = null

    private var resourceGroupName: Output? = null

    private var skuName: Output? = null

    private var sourceServerId: Output? = null

    private var storage: Output? = null

    private var tags: Output>? = null

    private var version: Output? = null

    private var zone: Output? = null

    /**
     * @param value The Administrator login for the MySQL Flexible Server. Required when `create_mode` is `Default`. Changing this forces a new MySQL Flexible Server to be created.
     */
    @JvmName("xhgwaetqaoqllrgx")
    public suspend fun administratorLogin(`value`: Output) {
        this.administratorLogin = value
    }

    /**
     * @param value The Password associated with the `administrator_login` for the MySQL Flexible Server. Required when `create_mode` is `Default`.
     */
    @JvmName("vbnkohcairhbtdnw")
    public suspend fun administratorPassword(`value`: Output) {
        this.administratorPassword = value
    }

    /**
     * @param value The backup retention days for the MySQL Flexible Server. Possible values are between `1` and `35` days. Defaults to `7`.
     */
    @JvmName("icxnquadyrwfxnsw")
    public suspend fun backupRetentionDays(`value`: Output) {
        this.backupRetentionDays = value
    }

    /**
     * @param value The creation mode which can be used to restore or replicate existing servers. Possible values are `Default`, `PointInTimeRestore`, `GeoRestore`, and `Replica`. Changing this forces a new MySQL Flexible Server to be created.
     * > **NOTE:** Creating a `GeoRestore` server requires the source server with `geo_redundant_backup_enabled` enabled.
     * > **NOTE:** When a server is first created it may not be immediately available for `geo restore` or `replica`. It may take a few minutes to several hours for the necessary metadata to be populated. Please see the [Geo Restore](https://learn.microsoft.com/azure/mysql/single-server/how-to-restore-server-portal#geo-restore) and the [Replica](https://learn.microsoft.com/azure/mysql/flexible-server/concepts-read-replicas#create-a-replica) for more information.
     */
    @JvmName("uhocnipdgetbjhvp")
    public suspend fun createMode(`value`: Output) {
        this.createMode = value
    }

    /**
     * @param value A `customer_managed_key` block as defined below.
     * > **NOTE:** `identity` is required when `customer_managed_key` is specified.
     */
    @JvmName("ghpipmsqmgnixdve")
    public suspend fun customerManagedKey(`value`: Output) {
        this.customerManagedKey = value
    }

    /**
     * @param value The ID of the virtual network subnet to create the MySQL Flexible Server. Changing this forces a new MySQL Flexible Server to be created.
     */
    @JvmName("bllbfmkvtdsxmjlh")
    public suspend fun delegatedSubnetId(`value`: Output) {
        this.delegatedSubnetId = value
    }

    /**
     * @param value Should geo redundant backup enabled? Defaults to `false`. Changing this forces a new MySQL Flexible Server to be created.
     */
    @JvmName("pynnpusexrcqbkim")
    public suspend fun geoRedundantBackupEnabled(`value`: Output) {
        this.geoRedundantBackupEnabled = value
    }

    /**
     * @param value A `high_availability` block as defined below.
     */
    @JvmName("enllvhrwdpgnagxn")
    public suspend fun highAvailability(`value`: Output) {
        this.highAvailability = value
    }

    /**
     * @param value An `identity` block as defined below.
     */
    @JvmName("lbbbkycisvndlteq")
    public suspend fun identity(`value`: Output) {
        this.identity = value
    }

    /**
     * @param value The Azure Region where the MySQL Flexible Server should exist. Changing this forces a new MySQL Flexible Server to be created.
     */
    @JvmName("iqtjnoldgmluhhxd")
    public suspend fun location(`value`: Output) {
        this.location = value
    }

    /**
     * @param value A `maintenance_window` block as defined below.
     */
    @JvmName("cwttwihjnstqotdv")
    public suspend fun maintenanceWindow(`value`: Output) {
        this.maintenanceWindow = value
    }

    /**
     * @param value The name which should be used for this MySQL Flexible Server. Changing this forces a new MySQL Flexible Server to be created.
     */
    @JvmName("blpvynibklfpeqpv")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value The point in time to restore from `creation_source_server_id` when `create_mode` is `PointInTimeRestore`. Changing this forces a new MySQL Flexible Server to be created.
     */
    @JvmName("fmucnbjaiwgnudxk")
    public suspend fun pointInTimeRestoreTimeInUtc(`value`: Output) {
        this.pointInTimeRestoreTimeInUtc = value
    }

    /**
     * @param value The ID of the private DNS zone to create the MySQL Flexible Server. Changing this forces a new MySQL Flexible Server to be created.
     * > **NOTE:** The `private_dns_zone_id` is required when setting a `delegated_subnet_id`. The `azure.privatedns.Zone` should end with suffix `.mysql.database.azure.com`.
     */
    @JvmName("kqitunsarudxxele")
    public suspend fun privateDnsZoneId(`value`: Output) {
        this.privateDnsZoneId = value
    }

    /**
     * @param value The replication role. Possible value is `None`.
     * > **NOTE:** The `replication_role` cannot be set while creating and only can be updated from `Replica` to `None`.
     */
    @JvmName("avgymcwjmwwcuyta")
    public suspend fun replicationRole(`value`: Output) {
        this.replicationRole = value
    }

    /**
     * @param value The name of the Resource Group where the MySQL Flexible Server should exist. Changing this forces a new MySQL Flexible Server to be created.
     */
    @JvmName("vqilgfptfulsnpwu")
    public suspend fun resourceGroupName(`value`: Output) {
        this.resourceGroupName = value
    }

    /**
     * @param value The SKU Name for the MySQL Flexible Server.
     * > **NOTE:** `sku_name` should start with SKU tier `B (Burstable)`, `GP (General Purpose)`, `MO (Memory Optimized)` like `B_Standard_B1s`.
     */
    @JvmName("rxbewfasthfjvmat")
    public suspend fun skuName(`value`: Output) {
        this.skuName = value
    }

    /**
     * @param value The resource ID of the source MySQL Flexible Server to be restored. Required when `create_mode` is `PointInTimeRestore`, `GeoRestore`, and `Replica`. Changing this forces a new MySQL Flexible Server to be created.
     */
    @JvmName("fddaytuixhogsxhp")
    public suspend fun sourceServerId(`value`: Output) {
        this.sourceServerId = value
    }

    /**
     * @param value A `storage` block as defined below.
     */
    @JvmName("nisuegxeempnsqmq")
    public suspend fun storage(`value`: Output) {
        this.storage = value
    }

    /**
     * @param value A mapping of tags which should be assigned to the MySQL Flexible Server.
     */
    @JvmName("iqdgwalawhyvtpmr")
    public suspend fun tags(`value`: Output>) {
        this.tags = value
    }

    /**
     * @param value The version of the MySQL Flexible Server to use. Possible values are `5.7`, and `8.0.21`. Changing this forces a new MySQL Flexible Server to be created.
     */
    @JvmName("geyewrdwomnixhhq")
    public suspend fun version(`value`: Output) {
        this.version = value
    }

    /**
     * @param value
     */
    @JvmName("vxungscdiqjdykur")
    public suspend fun zone(`value`: Output) {
        this.zone = value
    }

    /**
     * @param value The Administrator login for the MySQL Flexible Server. Required when `create_mode` is `Default`. Changing this forces a new MySQL Flexible Server to be created.
     */
    @JvmName("ouldicxgjdmagcgy")
    public suspend fun administratorLogin(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.administratorLogin = mapped
    }

    /**
     * @param value The Password associated with the `administrator_login` for the MySQL Flexible Server. Required when `create_mode` is `Default`.
     */
    @JvmName("kgwgddnxrusovydv")
    public suspend fun administratorPassword(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.administratorPassword = mapped
    }

    /**
     * @param value The backup retention days for the MySQL Flexible Server. Possible values are between `1` and `35` days. Defaults to `7`.
     */
    @JvmName("fqmqjhtmnuqgvvdj")
    public suspend fun backupRetentionDays(`value`: Int?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.backupRetentionDays = mapped
    }

    /**
     * @param value The creation mode which can be used to restore or replicate existing servers. Possible values are `Default`, `PointInTimeRestore`, `GeoRestore`, and `Replica`. Changing this forces a new MySQL Flexible Server to be created.
     * > **NOTE:** Creating a `GeoRestore` server requires the source server with `geo_redundant_backup_enabled` enabled.
     * > **NOTE:** When a server is first created it may not be immediately available for `geo restore` or `replica`. It may take a few minutes to several hours for the necessary metadata to be populated. Please see the [Geo Restore](https://learn.microsoft.com/azure/mysql/single-server/how-to-restore-server-portal#geo-restore) and the [Replica](https://learn.microsoft.com/azure/mysql/flexible-server/concepts-read-replicas#create-a-replica) for more information.
     */
    @JvmName("nxewawavqmmqykhj")
    public suspend fun createMode(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.createMode = mapped
    }

    /**
     * @param value A `customer_managed_key` block as defined below.
     * > **NOTE:** `identity` is required when `customer_managed_key` is specified.
     */
    @JvmName("oviiejhksnttofcq")
    public suspend fun customerManagedKey(`value`: FlexibleServerCustomerManagedKeyArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.customerManagedKey = mapped
    }

    /**
     * @param argument A `customer_managed_key` block as defined below.
     * > **NOTE:** `identity` is required when `customer_managed_key` is specified.
     */
    @JvmName("kfpkbxbfgjvgjivj")
    public suspend fun customerManagedKey(argument: suspend FlexibleServerCustomerManagedKeyArgsBuilder.() -> Unit) {
        val toBeMapped = FlexibleServerCustomerManagedKeyArgsBuilder().applySuspend {
            argument()
        }.build()
        val mapped = of(toBeMapped)
        this.customerManagedKey = mapped
    }

    /**
     * @param value The ID of the virtual network subnet to create the MySQL Flexible Server. Changing this forces a new MySQL Flexible Server to be created.
     */
    @JvmName("bveotygwinbgbxow")
    public suspend fun delegatedSubnetId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.delegatedSubnetId = mapped
    }

    /**
     * @param value Should geo redundant backup enabled? Defaults to `false`. Changing this forces a new MySQL Flexible Server to be created.
     */
    @JvmName("rwgjnujueamennfy")
    public suspend fun geoRedundantBackupEnabled(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.geoRedundantBackupEnabled = mapped
    }

    /**
     * @param value A `high_availability` block as defined below.
     */
    @JvmName("xgnnwiynubplrgsc")
    public suspend fun highAvailability(`value`: FlexibleServerHighAvailabilityArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.highAvailability = mapped
    }

    /**
     * @param argument A `high_availability` block as defined below.
     */
    @JvmName("eoivvxjucanngyue")
    public suspend fun highAvailability(argument: suspend FlexibleServerHighAvailabilityArgsBuilder.() -> Unit) {
        val toBeMapped = FlexibleServerHighAvailabilityArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.highAvailability = mapped
    }

    /**
     * @param value An `identity` block as defined below.
     */
    @JvmName("mendgulvxfrtumau")
    public suspend fun identity(`value`: FlexibleServerIdentityArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.identity = mapped
    }

    /**
     * @param argument An `identity` block as defined below.
     */
    @JvmName("pnrwdacnggwiovcs")
    public suspend fun identity(argument: suspend FlexibleServerIdentityArgsBuilder.() -> Unit) {
        val toBeMapped = FlexibleServerIdentityArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.identity = mapped
    }

    /**
     * @param value The Azure Region where the MySQL Flexible Server should exist. Changing this forces a new MySQL Flexible Server to be created.
     */
    @JvmName("dxsjclmfkmosktwv")
    public suspend fun location(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.location = mapped
    }

    /**
     * @param value A `maintenance_window` block as defined below.
     */
    @JvmName("wdvyktpkjxlbphxc")
    public suspend fun maintenanceWindow(`value`: FlexibleServerMaintenanceWindowArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.maintenanceWindow = mapped
    }

    /**
     * @param argument A `maintenance_window` block as defined below.
     */
    @JvmName("eouthdcqskgxolma")
    public suspend fun maintenanceWindow(argument: suspend FlexibleServerMaintenanceWindowArgsBuilder.() -> Unit) {
        val toBeMapped = FlexibleServerMaintenanceWindowArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.maintenanceWindow = mapped
    }

    /**
     * @param value The name which should be used for this MySQL Flexible Server. Changing this forces a new MySQL Flexible Server to be created.
     */
    @JvmName("adauniiwksoogisy")
    public suspend fun name(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.name = mapped
    }

    /**
     * @param value The point in time to restore from `creation_source_server_id` when `create_mode` is `PointInTimeRestore`. Changing this forces a new MySQL Flexible Server to be created.
     */
    @JvmName("lpjvtjnldejhatki")
    public suspend fun pointInTimeRestoreTimeInUtc(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.pointInTimeRestoreTimeInUtc = mapped
    }

    /**
     * @param value The ID of the private DNS zone to create the MySQL Flexible Server. Changing this forces a new MySQL Flexible Server to be created.
     * > **NOTE:** The `private_dns_zone_id` is required when setting a `delegated_subnet_id`. The `azure.privatedns.Zone` should end with suffix `.mysql.database.azure.com`.
     */
    @JvmName("dapupmkfcvooudum")
    public suspend fun privateDnsZoneId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.privateDnsZoneId = mapped
    }

    /**
     * @param value The replication role. Possible value is `None`.
     * > **NOTE:** The `replication_role` cannot be set while creating and only can be updated from `Replica` to `None`.
     */
    @JvmName("wnddcisaaieccxgn")
    public suspend fun replicationRole(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.replicationRole = mapped
    }

    /**
     * @param value The name of the Resource Group where the MySQL Flexible Server should exist. Changing this forces a new MySQL Flexible Server to be created.
     */
    @JvmName("jpymeasqjneydsst")
    public suspend fun resourceGroupName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.resourceGroupName = mapped
    }

    /**
     * @param value The SKU Name for the MySQL Flexible Server.
     * > **NOTE:** `sku_name` should start with SKU tier `B (Burstable)`, `GP (General Purpose)`, `MO (Memory Optimized)` like `B_Standard_B1s`.
     */
    @JvmName("aknnskprfbavqywl")
    public suspend fun skuName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.skuName = mapped
    }

    /**
     * @param value The resource ID of the source MySQL Flexible Server to be restored. Required when `create_mode` is `PointInTimeRestore`, `GeoRestore`, and `Replica`. Changing this forces a new MySQL Flexible Server to be created.
     */
    @JvmName("lqjvpnwvfwuatbaq")
    public suspend fun sourceServerId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.sourceServerId = mapped
    }

    /**
     * @param value A `storage` block as defined below.
     */
    @JvmName("vnjgxmkfplrfqabb")
    public suspend fun storage(`value`: FlexibleServerStorageArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.storage = mapped
    }

    /**
     * @param argument A `storage` block as defined below.
     */
    @JvmName("loeinvwbwctbfsnv")
    public suspend fun storage(argument: suspend FlexibleServerStorageArgsBuilder.() -> Unit) {
        val toBeMapped = FlexibleServerStorageArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.storage = mapped
    }

    /**
     * @param value A mapping of tags which should be assigned to the MySQL Flexible Server.
     */
    @JvmName("yioldakeeuilijju")
    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 MySQL Flexible Server.
     */
    @JvmName("adaikosbjadqdhso")
    public fun tags(vararg values: Pair) {
        val toBeMapped = values.toMap()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    /**
     * @param value The version of the MySQL Flexible Server to use. Possible values are `5.7`, and `8.0.21`. Changing this forces a new MySQL Flexible Server to be created.
     */
    @JvmName("hakyybrgdfnjchyg")
    public suspend fun version(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.version = mapped
    }

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

    internal fun build(): FlexibleServerArgs = FlexibleServerArgs(
        administratorLogin = administratorLogin,
        administratorPassword = administratorPassword,
        backupRetentionDays = backupRetentionDays,
        createMode = createMode,
        customerManagedKey = customerManagedKey,
        delegatedSubnetId = delegatedSubnetId,
        geoRedundantBackupEnabled = geoRedundantBackupEnabled,
        highAvailability = highAvailability,
        identity = identity,
        location = location,
        maintenanceWindow = maintenanceWindow,
        name = name,
        pointInTimeRestoreTimeInUtc = pointInTimeRestoreTimeInUtc,
        privateDnsZoneId = privateDnsZoneId,
        replicationRole = replicationRole,
        resourceGroupName = resourceGroupName,
        skuName = skuName,
        sourceServerId = sourceServerId,
        storage = storage,
        tags = tags,
        version = version,
        zone = zone,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy