Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.mariadb.kotlin
import com.pulumi.azure.mariadb.DatabaseArgs.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
/**
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as azure from "@pulumi/azure";
* const example = new azure.core.ResourceGroup("example", {
* name: "tfex-mariadb-database-RG",
* location: "West Europe",
* });
* const exampleServer = new azure.mariadb.Server("example", {
* name: "mariadb-svr",
* location: example.location,
* resourceGroupName: example.name,
* skuName: "B_Gen5_2",
* storageMb: 51200,
* backupRetentionDays: 7,
* geoRedundantBackupEnabled: false,
* administratorLogin: "acctestun",
* administratorLoginPassword: "H@Sh1CoR3!",
* version: "10.2",
* sslEnforcementEnabled: true,
* });
* const exampleDatabase = new azure.mariadb.Database("example", {
* name: "mariadb_database",
* resourceGroupName: example.name,
* serverName: exampleServer.name,
* charset: "utf8mb4",
* collation: "utf8mb4_unicode_520_ci",
* });
* ```
* ```python
* import pulumi
* import pulumi_azure as azure
* example = azure.core.ResourceGroup("example",
* name="tfex-mariadb-database-RG",
* location="West Europe")
* example_server = azure.mariadb.Server("example",
* name="mariadb-svr",
* location=example.location,
* resource_group_name=example.name,
* sku_name="B_Gen5_2",
* storage_mb=51200,
* backup_retention_days=7,
* geo_redundant_backup_enabled=False,
* administrator_login="acctestun",
* administrator_login_password="H@Sh1CoR3!",
* version="10.2",
* ssl_enforcement_enabled=True)
* example_database = azure.mariadb.Database("example",
* name="mariadb_database",
* resource_group_name=example.name,
* server_name=example_server.name,
* charset="utf8mb4",
* collation="utf8mb4_unicode_520_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 = "tfex-mariadb-database-RG",
* Location = "West Europe",
* });
* var exampleServer = new Azure.MariaDB.Server("example", new()
* {
* Name = "mariadb-svr",
* Location = example.Location,
* ResourceGroupName = example.Name,
* SkuName = "B_Gen5_2",
* StorageMb = 51200,
* BackupRetentionDays = 7,
* GeoRedundantBackupEnabled = false,
* AdministratorLogin = "acctestun",
* AdministratorLoginPassword = "H@Sh1CoR3!",
* Version = "10.2",
* SslEnforcementEnabled = true,
* });
* var exampleDatabase = new Azure.MariaDB.Database("example", new()
* {
* Name = "mariadb_database",
* ResourceGroupName = example.Name,
* ServerName = exampleServer.Name,
* Charset = "utf8mb4",
* Collation = "utf8mb4_unicode_520_ci",
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
* "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/mariadb"
* "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-mariadb-database-RG"),
* Location: pulumi.String("West Europe"),
* })
* if err != nil {
* return err
* }
* exampleServer, err := mariadb.NewServer(ctx, "example", &mariadb.ServerArgs{
* Name: pulumi.String("mariadb-svr"),
* Location: example.Location,
* ResourceGroupName: example.Name,
* SkuName: pulumi.String("B_Gen5_2"),
* StorageMb: pulumi.Int(51200),
* BackupRetentionDays: pulumi.Int(7),
* GeoRedundantBackupEnabled: pulumi.Bool(false),
* AdministratorLogin: pulumi.String("acctestun"),
* AdministratorLoginPassword: pulumi.String("H@Sh1CoR3!"),
* Version: pulumi.String("10.2"),
* SslEnforcementEnabled: pulumi.Bool(true),
* })
* if err != nil {
* return err
* }
* _, err = mariadb.NewDatabase(ctx, "example", &mariadb.DatabaseArgs{
* Name: pulumi.String("mariadb_database"),
* ResourceGroupName: example.Name,
* ServerName: exampleServer.Name,
* Charset: pulumi.String("utf8mb4"),
* Collation: pulumi.String("utf8mb4_unicode_520_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.mariadb.Server;
* import com.pulumi.azure.mariadb.ServerArgs;
* import com.pulumi.azure.mariadb.Database;
* import com.pulumi.azure.mariadb.DatabaseArgs;
* 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-mariadb-database-RG")
* .location("West Europe")
* .build());
* var exampleServer = new Server("exampleServer", ServerArgs.builder()
* .name("mariadb-svr")
* .location(example.location())
* .resourceGroupName(example.name())
* .skuName("B_Gen5_2")
* .storageMb(51200)
* .backupRetentionDays(7)
* .geoRedundantBackupEnabled(false)
* .administratorLogin("acctestun")
* .administratorLoginPassword("H@Sh1CoR3!")
* .version("10.2")
* .sslEnforcementEnabled(true)
* .build());
* var exampleDatabase = new Database("exampleDatabase", DatabaseArgs.builder()
* .name("mariadb_database")
* .resourceGroupName(example.name())
* .serverName(exampleServer.name())
* .charset("utf8mb4")
* .collation("utf8mb4_unicode_520_ci")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* example:
* type: azure:core:ResourceGroup
* properties:
* name: tfex-mariadb-database-RG
* location: West Europe
* exampleServer:
* type: azure:mariadb:Server
* name: example
* properties:
* name: mariadb-svr
* location: ${example.location}
* resourceGroupName: ${example.name}
* skuName: B_Gen5_2
* storageMb: 51200
* backupRetentionDays: 7
* geoRedundantBackupEnabled: false
* administratorLogin: acctestun
* administratorLoginPassword: H@Sh1CoR3!
* version: '10.2'
* sslEnforcementEnabled: true
* exampleDatabase:
* type: azure:mariadb:Database
* name: example
* properties:
* name: mariadb_database
* resourceGroupName: ${example.name}
* serverName: ${exampleServer.name}
* charset: utf8mb4
* collation: utf8mb4_unicode_520_ci
* ```
*
* ## Import
* MariaDB Database's can be imported using the `resource id`, e.g.
* ```sh
* $ pulumi import azure:mariadb/database:Database database1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.DBforMariaDB/servers/server1/databases/database1
* ```
* @property charset Specifies the Charset for the MariaDB Database, which needs [to be a valid MariaDB Charset](https://mariadb.com/kb/en/library/setting-character-sets-and-collations). Changing this forces a new resource to be created.
* @property collation Specifies the Collation for the MariaDB Database, which needs [to be a valid MariaDB Collation](https://mariadb.com/kb/en/library/setting-character-sets-and-collations). Changing this forces a new resource to be created.
* @property name Specifies the name of the MariaDB Database, which needs [to be a valid MariaDB identifier](https://mariadb.com/kb/en/library/identifier-names/). Changing this forces a new resource to be created.
* @property resourceGroupName The name of the resource group in which the MariaDB Server exists. Changing this forces a new resource to be created.
* @property serverName Specifies the name of the MariaDB Server. Changing this forces a new resource to be created.
*/
public data class DatabaseArgs(
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.mariadb.DatabaseArgs =
com.pulumi.azure.mariadb.DatabaseArgs.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 [DatabaseArgs].
*/
@PulumiTagMarker
public class DatabaseArgsBuilder 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 MariaDB Database, which needs [to be a valid MariaDB Charset](https://mariadb.com/kb/en/library/setting-character-sets-and-collations). Changing this forces a new resource to be created.
*/
@JvmName("askqthvjuidejvgl")
public suspend fun charset(`value`: Output) {
this.charset = value
}
/**
* @param value Specifies the Collation for the MariaDB Database, which needs [to be a valid MariaDB Collation](https://mariadb.com/kb/en/library/setting-character-sets-and-collations). Changing this forces a new resource to be created.
*/
@JvmName("sevcmvtqahfemeeq")
public suspend fun collation(`value`: Output) {
this.collation = value
}
/**
* @param value Specifies the name of the MariaDB Database, which needs [to be a valid MariaDB identifier](https://mariadb.com/kb/en/library/identifier-names/). Changing this forces a new resource to be created.
*/
@JvmName("nxuqtqymtrqopnxd")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value The name of the resource group in which the MariaDB Server exists. Changing this forces a new resource to be created.
*/
@JvmName("cqxxtybqraxhffis")
public suspend fun resourceGroupName(`value`: Output) {
this.resourceGroupName = value
}
/**
* @param value Specifies the name of the MariaDB Server. Changing this forces a new resource to be created.
*/
@JvmName("hfifdfxjwoxdiknx")
public suspend fun serverName(`value`: Output) {
this.serverName = value
}
/**
* @param value Specifies the Charset for the MariaDB Database, which needs [to be a valid MariaDB Charset](https://mariadb.com/kb/en/library/setting-character-sets-and-collations). Changing this forces a new resource to be created.
*/
@JvmName("ggboodhxbilgmtfc")
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 MariaDB Database, which needs [to be a valid MariaDB Collation](https://mariadb.com/kb/en/library/setting-character-sets-and-collations). Changing this forces a new resource to be created.
*/
@JvmName("kkoboorkmydxmrrn")
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 MariaDB Database, which needs [to be a valid MariaDB identifier](https://mariadb.com/kb/en/library/identifier-names/). Changing this forces a new resource to be created.
*/
@JvmName("dupktcgdtisxkbnp")
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 MariaDB Server exists. Changing this forces a new resource to be created.
*/
@JvmName("mkkxtknmecdhhlbd")
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 MariaDB Server. Changing this forces a new resource to be created.
*/
@JvmName("jpbnrnqjnbobkpvw")
public suspend fun serverName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.serverName = mapped
}
internal fun build(): DatabaseArgs = DatabaseArgs(
charset = charset,
collation = collation,
name = name,
resourceGroupName = resourceGroupName,
serverName = serverName,
)
}