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

com.pulumi.azure.mysql.kotlin.FlexibleDatabaseArgs.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.FlexibleDatabaseArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 * Manages a MySQL Database within 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 exampleFlexibleServer = new azure.mysql.FlexibleServer("example", {
 *     name: "example-mysql-flexible-server",
 *     resourceGroupName: example.name,
 *     location: example.location,
 *     administratorLogin: "mysqladminun",
 *     administratorPassword: "H@Sh1CoR3!",
 *     skuName: "B_Standard_B1s",
 * });
 * const exampleFlexibleDatabase = new azure.mysql.FlexibleDatabase("example", {
 *     name: "exampledb",
 *     resourceGroupName: example.name,
 *     serverName: exampleFlexibleServer.name,
 *     charset: "utf8",
 *     collation: "utf8_unicode_ci",
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_azure as azure
 * example = azure.core.ResourceGroup("example",
 *     name="example-resources",
 *     location="West Europe")
 * example_flexible_server = azure.mysql.FlexibleServer("example",
 *     name="example-mysql-flexible-server",
 *     resource_group_name=example.name,
 *     location=example.location,
 *     administrator_login="mysqladminun",
 *     administrator_password="H@Sh1CoR3!",
 *     sku_name="B_Standard_B1s")
 * example_flexible_database = azure.mysql.FlexibleDatabase("example",
 *     name="exampledb",
 *     resource_group_name=example.name,
 *     server_name=example_flexible_server.name,
 *     charset="utf8",
 *     collation="utf8_unicode_ci")
 * ```
 * ```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 exampleFlexibleServer = new Azure.MySql.FlexibleServer("example", new()
 *     {
 *         Name = "example-mysql-flexible-server",
 *         ResourceGroupName = example.Name,
 *         Location = example.Location,
 *         AdministratorLogin = "mysqladminun",
 *         AdministratorPassword = "H@Sh1CoR3!",
 *         SkuName = "B_Standard_B1s",
 *     });
 *     var exampleFlexibleDatabase = new Azure.MySql.FlexibleDatabase("example", new()
 *     {
 *         Name = "exampledb",
 *         ResourceGroupName = example.Name,
 *         ServerName = exampleFlexibleServer.Name,
 *         Charset = "utf8",
 *         Collation = "utf8_unicode_ci",
 *     });
 * });
 * ```
 * ```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/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
 * 		}
 * 		exampleFlexibleServer, err := mysql.NewFlexibleServer(ctx, "example", &mysql.FlexibleServerArgs{
 * 			Name:                  pulumi.String("example-mysql-flexible-server"),
 * 			ResourceGroupName:     example.Name,
 * 			Location:              example.Location,
 * 			AdministratorLogin:    pulumi.String("mysqladminun"),
 * 			AdministratorPassword: pulumi.String("H@Sh1CoR3!"),
 * 			SkuName:               pulumi.String("B_Standard_B1s"),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = mysql.NewFlexibleDatabase(ctx, "example", &mysql.FlexibleDatabaseArgs{
 * 			Name:              pulumi.String("exampledb"),
 * 			ResourceGroupName: example.Name,
 * 			ServerName:        exampleFlexibleServer.Name,
 * 			Charset:           pulumi.String("utf8"),
 * 			Collation:         pulumi.String("utf8_unicode_ci"),
 * 		})
 * 		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.mysql.FlexibleServer;
 * import com.pulumi.azure.mysql.FlexibleServerArgs;
 * import com.pulumi.azure.mysql.FlexibleDatabase;
 * import com.pulumi.azure.mysql.FlexibleDatabaseArgs;
 * 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 exampleFlexibleServer = new FlexibleServer("exampleFlexibleServer", FlexibleServerArgs.builder()
 *             .name("example-mysql-flexible-server")
 *             .resourceGroupName(example.name())
 *             .location(example.location())
 *             .administratorLogin("mysqladminun")
 *             .administratorPassword("H@Sh1CoR3!")
 *             .skuName("B_Standard_B1s")
 *             .build());
 *         var exampleFlexibleDatabase = new FlexibleDatabase("exampleFlexibleDatabase", FlexibleDatabaseArgs.builder()
 *             .name("exampledb")
 *             .resourceGroupName(example.name())
 *             .serverName(exampleFlexibleServer.name())
 *             .charset("utf8")
 *             .collation("utf8_unicode_ci")
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   example:
 *     type: azure:core:ResourceGroup
 *     properties:
 *       name: example-resources
 *       location: West Europe
 *   exampleFlexibleServer:
 *     type: azure:mysql:FlexibleServer
 *     name: example
 *     properties:
 *       name: example-mysql-flexible-server
 *       resourceGroupName: ${example.name}
 *       location: ${example.location}
 *       administratorLogin: mysqladminun
 *       administratorPassword: H@Sh1CoR3!
 *       skuName: B_Standard_B1s
 *   exampleFlexibleDatabase:
 *     type: azure:mysql:FlexibleDatabase
 *     name: example
 *     properties:
 *       name: exampledb
 *       resourceGroupName: ${example.name}
 *       serverName: ${exampleFlexibleServer.name}
 *       charset: utf8
 *       collation: utf8_unicode_ci
 * ```
 * 
 * ## Import
 * MySQL Database's can be imported using the `resource id`, e.g.
 * ```sh
 * $ pulumi import azure:mysql/flexibleDatabase:FlexibleDatabase database1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.DBforMySQL/flexibleServers/flexibleserver1/databases/database1
 * ```
 * @property charset Specifies the Charset for the MySQL Database, which needs [to be a valid MySQL Charset](https://dev.mysql.com/doc/refman/5.7/en/charset-charsets.html). Changing this forces a new resource to be created.
 * @property collation Specifies the Collation for the MySQL Database, which needs [to be a valid MySQL Collation](https://dev.mysql.com/doc/refman/5.7/en/charset-mysql.html). Changing this forces a new resource to be created.
 * @property name Specifies the name of the MySQL Database, which needs [to be a valid MySQL identifier](https://dev.mysql.com/doc/refman/5.7/en/identifiers.html). Changing this forces a new resource to be created.
 * @property resourceGroupName The name of the resource group in which the MySQL Server exists. Changing this forces a new resource to be created.
 * @property serverName Specifies the name of the MySQL Flexible Server. Changing this forces a new resource to be created.
 */
public data class FlexibleDatabaseArgs(
    public val charset: Output? = null,
    public val collation: Output? = null,
    public val name: Output? = null,
    public val resourceGroupName: Output? = null,
    public val serverName: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azure.mysql.FlexibleDatabaseArgs =
        com.pulumi.azure.mysql.FlexibleDatabaseArgs.builder()
            .charset(charset?.applyValue({ args0 -> args0 }))
            .collation(collation?.applyValue({ args0 -> args0 }))
            .name(name?.applyValue({ args0 -> args0 }))
            .resourceGroupName(resourceGroupName?.applyValue({ args0 -> args0 }))
            .serverName(serverName?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [FlexibleDatabaseArgs].
 */
@PulumiTagMarker
public class FlexibleDatabaseArgsBuilder internal constructor() {
    private var charset: Output? = null

    private var collation: Output? = null

    private var name: Output? = null

    private var resourceGroupName: Output? = null

    private var serverName: Output? = null

    /**
     * @param value Specifies the Charset for the MySQL Database, which needs [to be a valid MySQL Charset](https://dev.mysql.com/doc/refman/5.7/en/charset-charsets.html). Changing this forces a new resource to be created.
     */
    @JvmName("lhvuxedeeiempmjs")
    public suspend fun charset(`value`: Output) {
        this.charset = value
    }

    /**
     * @param value Specifies the Collation for the MySQL Database, which needs [to be a valid MySQL Collation](https://dev.mysql.com/doc/refman/5.7/en/charset-mysql.html). Changing this forces a new resource to be created.
     */
    @JvmName("bisktcufpgjmvqbp")
    public suspend fun collation(`value`: Output) {
        this.collation = value
    }

    /**
     * @param value Specifies the name of the MySQL Database, which needs [to be a valid MySQL identifier](https://dev.mysql.com/doc/refman/5.7/en/identifiers.html). Changing this forces a new resource to be created.
     */
    @JvmName("ogxywheiadrgogvn")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value The name of the resource group in which the MySQL Server exists. Changing this forces a new resource to be created.
     */
    @JvmName("aafjbuhmqdahclxn")
    public suspend fun resourceGroupName(`value`: Output) {
        this.resourceGroupName = value
    }

    /**
     * @param value Specifies the name of the MySQL Flexible Server. Changing this forces a new resource to be created.
     */
    @JvmName("rnaasppqysgwmcum")
    public suspend fun serverName(`value`: Output) {
        this.serverName = value
    }

    /**
     * @param value Specifies the Charset for the MySQL Database, which needs [to be a valid MySQL Charset](https://dev.mysql.com/doc/refman/5.7/en/charset-charsets.html). Changing this forces a new resource to be created.
     */
    @JvmName("wetahgkwyfsxqewm")
    public suspend fun charset(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.charset = mapped
    }

    /**
     * @param value Specifies the Collation for the MySQL Database, which needs [to be a valid MySQL Collation](https://dev.mysql.com/doc/refman/5.7/en/charset-mysql.html). Changing this forces a new resource to be created.
     */
    @JvmName("fbwhtnrjapgegikf")
    public suspend fun collation(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.collation = mapped
    }

    /**
     * @param value Specifies the name of the MySQL Database, which needs [to be a valid MySQL identifier](https://dev.mysql.com/doc/refman/5.7/en/identifiers.html). Changing this forces a new resource to be created.
     */
    @JvmName("ipwlefutvvykjcbt")
    public suspend fun name(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.name = mapped
    }

    /**
     * @param value The name of the resource group in which the MySQL Server exists. Changing this forces a new resource to be created.
     */
    @JvmName("agdxxccnvvesmtfb")
    public suspend fun resourceGroupName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.resourceGroupName = mapped
    }

    /**
     * @param value Specifies the name of the MySQL Flexible Server. Changing this forces a new resource to be created.
     */
    @JvmName("efjrcqhnhwdcxrkb")
    public suspend fun serverName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.serverName = mapped
    }

    internal fun build(): FlexibleDatabaseArgs = FlexibleDatabaseArgs(
        charset = charset,
        collation = collation,
        name = name,
        resourceGroupName = resourceGroupName,
        serverName = serverName,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy