com.pulumi.azure.mysql.FlexibleServerConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azure.mysql;
import com.pulumi.azure.Utilities;
import com.pulumi.azure.mysql.FlexibleServerConfigurationArgs;
import com.pulumi.azure.mysql.inputs.FlexibleServerConfigurationState;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Export;
import com.pulumi.core.annotations.ResourceType;
import com.pulumi.core.internal.Codegen;
import java.lang.String;
import javax.annotation.Nullable;
/**
* Sets a MySQL Flexible Server Configuration value on a MySQL Flexible Server.
*
* ## Disclaimers
*
* > **Note:** Since this resource is provisioned by default, the Azure Provider will not check for the presence of an existing resource prior to attempting to create it.
*
* ## Example Usage
*
* <!--Start PulumiCodeChooser -->
*
* {@code
* 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.FlexibleServerConfiguration;
* import com.pulumi.azure.mysql.FlexibleServerConfigurationArgs;
* 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 }{{@code
* public static void main(String[] args) }{{@code
* Pulumi.run(App::stack);
* }}{@code
*
* public static void stack(Context ctx) }{{@code
* var example = new ResourceGroup("example", ResourceGroupArgs.builder()
* .name("example-resources")
* .location("West Europe")
* .build());
*
* var exampleFlexibleServer = new FlexibleServer("exampleFlexibleServer", FlexibleServerArgs.builder()
* .name("example-fs")
* .resourceGroupName(example.name())
* .location(example.location())
* .administratorLogin("adminTerraform")
* .administratorPassword("H}{@literal @}{@code Sh1CoR3!")
* .skuName("GP_Standard_D2ds_v4")
* .build());
*
* var exampleFlexibleServerConfiguration = new FlexibleServerConfiguration("exampleFlexibleServerConfiguration", FlexibleServerConfigurationArgs.builder()
* .name("interactive_timeout")
* .resourceGroupName(example.name())
* .serverName(exampleFlexibleServer.name())
* .value("600")
* .build());
*
* }}{@code
* }}{@code
* }
*
* <!--End PulumiCodeChooser -->
*
* ## Import
*
* MySQL Flexible Server Configurations can be imported using the `resource id`, e.g.
*
* ```sh
* $ pulumi import azure:mysql/flexibleServerConfiguration:FlexibleServerConfiguration interactive_timeout /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.DBforMySQL/flexibleServers/flexibleServer1/configurations/interactive_timeout
* ```
*
*/
@ResourceType(type="azure:mysql/flexibleServerConfiguration:FlexibleServerConfiguration")
public class FlexibleServerConfiguration extends com.pulumi.resources.CustomResource {
/**
* Specifies the name of the MySQL Flexible Server Configuration, which needs [to be a valid MySQL configuration name](https://dev.mysql.com/doc/refman/5.7/en/server-configuration.html). Changing this forces a new resource to be created.
*
*/
@Export(name="name", refs={String.class}, tree="[0]")
private Output name;
/**
* @return Specifies the name of the MySQL Flexible Server Configuration, which needs [to be a valid MySQL configuration name](https://dev.mysql.com/doc/refman/5.7/en/server-configuration.html). Changing this forces a new resource to be created.
*
*/
public Output name() {
return this.name;
}
/**
* The name of the resource group in which the MySQL Flexible Server exists. Changing this forces a new resource to be created.
*
*/
@Export(name="resourceGroupName", refs={String.class}, tree="[0]")
private Output resourceGroupName;
/**
* @return The name of the resource group in which the MySQL Flexible Server exists. Changing this forces a new resource to be created.
*
*/
public Output resourceGroupName() {
return this.resourceGroupName;
}
/**
* Specifies the name of the MySQL Flexible Server. Changing this forces a new resource to be created.
*
*/
@Export(name="serverName", refs={String.class}, tree="[0]")
private Output serverName;
/**
* @return Specifies the name of the MySQL Flexible Server. Changing this forces a new resource to be created.
*
*/
public Output serverName() {
return this.serverName;
}
/**
* Specifies the value of the MySQL Flexible Server Configuration. See the MySQL documentation for valid values.
*
*/
@Export(name="value", refs={String.class}, tree="[0]")
private Output value;
/**
* @return Specifies the value of the MySQL Flexible Server Configuration. See the MySQL documentation for valid values.
*
*/
public Output value() {
return this.value;
}
/**
*
* @param name The _unique_ name of the resulting resource.
*/
public FlexibleServerConfiguration(java.lang.String name) {
this(name, FlexibleServerConfigurationArgs.Empty);
}
/**
*
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
*/
public FlexibleServerConfiguration(java.lang.String name, FlexibleServerConfigurationArgs args) {
this(name, args, null);
}
/**
*
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
* @param options A bag of options that control this resource's behavior.
*/
public FlexibleServerConfiguration(java.lang.String name, FlexibleServerConfigurationArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("azure:mysql/flexibleServerConfiguration:FlexibleServerConfiguration", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false);
}
private FlexibleServerConfiguration(java.lang.String name, Output id, @Nullable FlexibleServerConfigurationState state, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("azure:mysql/flexibleServerConfiguration:FlexibleServerConfiguration", name, state, makeResourceOptions(options, id), false);
}
private static FlexibleServerConfigurationArgs makeArgs(FlexibleServerConfigurationArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
if (options != null && options.getUrn().isPresent()) {
return null;
}
return args == null ? FlexibleServerConfigurationArgs.Empty : args;
}
private static com.pulumi.resources.CustomResourceOptions makeResourceOptions(@Nullable com.pulumi.resources.CustomResourceOptions options, @Nullable Output id) {
var defaultOptions = com.pulumi.resources.CustomResourceOptions.builder()
.version(Utilities.getVersion())
.build();
return com.pulumi.resources.CustomResourceOptions.merge(defaultOptions, options, id);
}
/**
* Get an existing Host resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param state
* @param options Optional settings to control the behavior of the CustomResource.
*/
public static FlexibleServerConfiguration get(java.lang.String name, Output id, @Nullable FlexibleServerConfigurationState state, @Nullable com.pulumi.resources.CustomResourceOptions options) {
return new FlexibleServerConfiguration(name, id, state, options);
}
}