import * as pulumi from "@pulumi/pulumi"; /** * Manages a Firewall Rule for a MySQL Flexible Server. * * ## Example Usage * * ### Single IP Address) * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "api-rg-pro", * location: "West Europe", * }); * const exampleFlexibleServer = new azure.mysql.FlexibleServer("example", { * name: "example", * resourceGroupName: example.name, * location: example.location, * }); * const exampleFlexibleServerFirewallRule = new azure.mysql.FlexibleServerFirewallRule("example", { * name: "office", * resourceGroupName: example.name, * serverName: exampleFlexibleServer.name, * startIpAddress: "40.112.8.12", * endIpAddress: "40.112.8.12", * }); * ``` * * ### IP Range) * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "api-rg-pro", * location: "West Europe", * }); * const exampleFlexibleServer = new azure.mysql.FlexibleServer("example", { * name: "example", * resourceGroupName: example.name, * location: example.location, * }); * const exampleFlexibleServerFirewallRule = new azure.mysql.FlexibleServerFirewallRule("example", { * name: "office", * resourceGroupName: example.name, * serverName: exampleFlexibleServer.name, * startIpAddress: "40.112.0.0", * endIpAddress: "40.112.255.255", * }); * ``` * * ### Allow Access To Azure Services) * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "api-rg-pro", * location: "West Europe", * }); * const exampleFlexibleServer = new azure.mysql.FlexibleServer("example", { * name: "example", * resourceGroupName: example.name, * location: example.location, * }); * const exampleFlexibleServerFirewallRule = new azure.mysql.FlexibleServerFirewallRule("example", { * name: "office", * resourceGroupName: example.name, * serverName: exampleFlexibleServer.name, * startIpAddress: "0.0.0.0", * endIpAddress: "0.0.0.0", * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.DBforMySQL` - 2023-12-30 * * ## Import * * MySQL Firewall Rule's can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:mysql/flexibleServerFirewallRule:FlexibleServerFirewallRule rule1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.DBforMySQL/flexibleServers/flexibleServer1/firewallRules/firewallRule1 * ``` */ export declare class FlexibleServerFirewallRule extends pulumi.CustomResource { /** * Get an existing FlexibleServerFirewallRule 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 Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: FlexibleServerFirewallRuleState, opts?: pulumi.CustomResourceOptions): FlexibleServerFirewallRule; /** * Returns true if the given object is an instance of FlexibleServerFirewallRule. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is FlexibleServerFirewallRule; /** * Specifies the End IP Address associated with this Firewall Rule. * * > **Note:** The Azure feature `Allow access to Azure services` can be enabled by setting `startIpAddress` and `endIpAddress` to `0.0.0.0` which ([is documented in the Azure API Docs](https://docs.microsoft.com/rest/api/sql/firewallrules/createorupdate)). */ readonly endIpAddress: pulumi.Output; /** * Specifies the name of the MySQL Firewall Rule. Changing this forces a new resource to be created. */ readonly name: pulumi.Output; /** * The name of the resource group in which the MySQL Flexible Server exists. Changing this forces a new resource to be created. */ readonly resourceGroupName: pulumi.Output; /** * Specifies the name of the MySQL Flexible Server. Changing this forces a new resource to be created. */ readonly serverName: pulumi.Output; /** * Specifies the Start IP Address associated with this Firewall Rule. */ readonly startIpAddress: pulumi.Output; /** * Create a FlexibleServerFirewallRule resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: FlexibleServerFirewallRuleArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering FlexibleServerFirewallRule resources. */ export interface FlexibleServerFirewallRuleState { /** * Specifies the End IP Address associated with this Firewall Rule. * * > **Note:** The Azure feature `Allow access to Azure services` can be enabled by setting `startIpAddress` and `endIpAddress` to `0.0.0.0` which ([is documented in the Azure API Docs](https://docs.microsoft.com/rest/api/sql/firewallrules/createorupdate)). */ endIpAddress?: pulumi.Input; /** * Specifies the name of the MySQL Firewall Rule. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * The name of the resource group in which the MySQL Flexible Server exists. Changing this forces a new resource to be created. */ resourceGroupName?: pulumi.Input; /** * Specifies the name of the MySQL Flexible Server. Changing this forces a new resource to be created. */ serverName?: pulumi.Input; /** * Specifies the Start IP Address associated with this Firewall Rule. */ startIpAddress?: pulumi.Input; } /** * The set of arguments for constructing a FlexibleServerFirewallRule resource. */ export interface FlexibleServerFirewallRuleArgs { /** * Specifies the End IP Address associated with this Firewall Rule. * * > **Note:** The Azure feature `Allow access to Azure services` can be enabled by setting `startIpAddress` and `endIpAddress` to `0.0.0.0` which ([is documented in the Azure API Docs](https://docs.microsoft.com/rest/api/sql/firewallrules/createorupdate)). */ endIpAddress: pulumi.Input; /** * Specifies the name of the MySQL Firewall Rule. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * The name of the resource group in which the MySQL Flexible Server exists. Changing this forces a new resource to be created. */ resourceGroupName: pulumi.Input; /** * Specifies the name of the MySQL Flexible Server. Changing this forces a new resource to be created. */ serverName: pulumi.Input; /** * Specifies the Start IP Address associated with this Firewall Rule. */ startIpAddress: pulumi.Input; }