azure-native.sql.IPv6FirewallRule

Explore with Pulumi AI

An IPv6 server firewall rule. API Version: 2021-08-01-preview.

Example Usage

Create an IPv6 firewall rule max/min

using System.Collections.Generic;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var iPv6FirewallRule = new AzureNative.Sql.IPv6FirewallRule("iPv6FirewallRule", new()
    {
        EndIPv6Address = "0000:0000:0000:0000:0000:ffff:0000:0003",
        FirewallRuleName = "firewallrulecrudtest-5370",
        ResourceGroupName = "firewallrulecrudtest-12",
        ServerName = "firewallrulecrudtest-6285",
        StartIPv6Address = "0000:0000:0000:0000:0000:ffff:0000:0003",
    });

});
package main

import (
	sql "github.com/pulumi/pulumi-azure-native/sdk/go/azure/sql"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := sql.NewIPv6FirewallRule(ctx, "iPv6FirewallRule", &sql.IPv6FirewallRuleArgs{
			EndIPv6Address:    pulumi.String("0000:0000:0000:0000:0000:ffff:0000:0003"),
			FirewallRuleName:  pulumi.String("firewallrulecrudtest-5370"),
			ResourceGroupName: pulumi.String("firewallrulecrudtest-12"),
			ServerName:        pulumi.String("firewallrulecrudtest-6285"),
			StartIPv6Address:  pulumi.String("0000:0000:0000:0000:0000:ffff:0000:0003"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.sql.IPv6FirewallRule;
import com.pulumi.azurenative.sql.IPv6FirewallRuleArgs;
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 iPv6FirewallRule = new IPv6FirewallRule("iPv6FirewallRule", IPv6FirewallRuleArgs.builder()        
            .endIPv6Address("0000:0000:0000:0000:0000:ffff:0000:0003")
            .firewallRuleName("firewallrulecrudtest-5370")
            .resourceGroupName("firewallrulecrudtest-12")
            .serverName("firewallrulecrudtest-6285")
            .startIPv6Address("0000:0000:0000:0000:0000:ffff:0000:0003")
            .build());

    }
}
import pulumi
import pulumi_azure_native as azure_native

i_pv6_firewall_rule = azure_native.sql.IPv6FirewallRule("iPv6FirewallRule",
    end_i_pv6_address="0000:0000:0000:0000:0000:ffff:0000:0003",
    firewall_rule_name="firewallrulecrudtest-5370",
    resource_group_name="firewallrulecrudtest-12",
    server_name="firewallrulecrudtest-6285",
    start_i_pv6_address="0000:0000:0000:0000:0000:ffff:0000:0003")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const iPv6FirewallRule = new azure_native.sql.IPv6FirewallRule("iPv6FirewallRule", {
    endIPv6Address: "0000:0000:0000:0000:0000:ffff:0000:0003",
    firewallRuleName: "firewallrulecrudtest-5370",
    resourceGroupName: "firewallrulecrudtest-12",
    serverName: "firewallrulecrudtest-6285",
    startIPv6Address: "0000:0000:0000:0000:0000:ffff:0000:0003",
});
resources:
  iPv6FirewallRule:
    type: azure-native:sql:IPv6FirewallRule
    properties:
      endIPv6Address: 0000:0000:0000:0000:0000:ffff:0000:0003
      firewallRuleName: firewallrulecrudtest-5370
      resourceGroupName: firewallrulecrudtest-12
      serverName: firewallrulecrudtest-6285
      startIPv6Address: 0000:0000:0000:0000:0000:ffff:0000:0003

Update an IPv6 firewall rule max/min

using System.Collections.Generic;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var iPv6FirewallRule = new AzureNative.Sql.IPv6FirewallRule("iPv6FirewallRule", new()
    {
        EndIPv6Address = "0000:0000:0000:0000:0000:ffff:0000:0001",
        FirewallRuleName = "firewallrulecrudtest-3927",
        ResourceGroupName = "firewallrulecrudtest-12",
        ServerName = "firewallrulecrudtest-6285",
        StartIPv6Address = "0000:0000:0000:0000:0000:ffff:0000:0001",
    });

});
package main

import (
	sql "github.com/pulumi/pulumi-azure-native/sdk/go/azure/sql"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := sql.NewIPv6FirewallRule(ctx, "iPv6FirewallRule", &sql.IPv6FirewallRuleArgs{
			EndIPv6Address:    pulumi.String("0000:0000:0000:0000:0000:ffff:0000:0001"),
			FirewallRuleName:  pulumi.String("firewallrulecrudtest-3927"),
			ResourceGroupName: pulumi.String("firewallrulecrudtest-12"),
			ServerName:        pulumi.String("firewallrulecrudtest-6285"),
			StartIPv6Address:  pulumi.String("0000:0000:0000:0000:0000:ffff:0000:0001"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.sql.IPv6FirewallRule;
import com.pulumi.azurenative.sql.IPv6FirewallRuleArgs;
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 iPv6FirewallRule = new IPv6FirewallRule("iPv6FirewallRule", IPv6FirewallRuleArgs.builder()        
            .endIPv6Address("0000:0000:0000:0000:0000:ffff:0000:0001")
            .firewallRuleName("firewallrulecrudtest-3927")
            .resourceGroupName("firewallrulecrudtest-12")
            .serverName("firewallrulecrudtest-6285")
            .startIPv6Address("0000:0000:0000:0000:0000:ffff:0000:0001")
            .build());

    }
}
import pulumi
import pulumi_azure_native as azure_native

i_pv6_firewall_rule = azure_native.sql.IPv6FirewallRule("iPv6FirewallRule",
    end_i_pv6_address="0000:0000:0000:0000:0000:ffff:0000:0001",
    firewall_rule_name="firewallrulecrudtest-3927",
    resource_group_name="firewallrulecrudtest-12",
    server_name="firewallrulecrudtest-6285",
    start_i_pv6_address="0000:0000:0000:0000:0000:ffff:0000:0001")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const iPv6FirewallRule = new azure_native.sql.IPv6FirewallRule("iPv6FirewallRule", {
    endIPv6Address: "0000:0000:0000:0000:0000:ffff:0000:0001",
    firewallRuleName: "firewallrulecrudtest-3927",
    resourceGroupName: "firewallrulecrudtest-12",
    serverName: "firewallrulecrudtest-6285",
    startIPv6Address: "0000:0000:0000:0000:0000:ffff:0000:0001",
});
resources:
  iPv6FirewallRule:
    type: azure-native:sql:IPv6FirewallRule
    properties:
      endIPv6Address: 0000:0000:0000:0000:0000:ffff:0000:0001
      firewallRuleName: firewallrulecrudtest-3927
      resourceGroupName: firewallrulecrudtest-12
      serverName: firewallrulecrudtest-6285
      startIPv6Address: 0000:0000:0000:0000:0000:ffff:0000:0001

Create IPv6FirewallRule Resource

new IPv6FirewallRule(name: string, args: IPv6FirewallRuleArgs, opts?: CustomResourceOptions);
@overload
def IPv6FirewallRule(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     end_i_pv6_address: Optional[str] = None,
                     firewall_rule_name: Optional[str] = None,
                     name: Optional[str] = None,
                     resource_group_name: Optional[str] = None,
                     server_name: Optional[str] = None,
                     start_i_pv6_address: Optional[str] = None)
@overload
def IPv6FirewallRule(resource_name: str,
                     args: IPv6FirewallRuleArgs,
                     opts: Optional[ResourceOptions] = None)
func NewIPv6FirewallRule(ctx *Context, name string, args IPv6FirewallRuleArgs, opts ...ResourceOption) (*IPv6FirewallRule, error)
public IPv6FirewallRule(string name, IPv6FirewallRuleArgs args, CustomResourceOptions? opts = null)
public IPv6FirewallRule(String name, IPv6FirewallRuleArgs args)
public IPv6FirewallRule(String name, IPv6FirewallRuleArgs args, CustomResourceOptions options)
type: azure-native:sql:IPv6FirewallRule
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args IPv6FirewallRuleArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name str
The unique name of the resource.
args IPv6FirewallRuleArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name string
The unique name of the resource.
args IPv6FirewallRuleArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args IPv6FirewallRuleArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args IPv6FirewallRuleArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

IPv6FirewallRule Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

The IPv6FirewallRule resource accepts the following input properties:

ResourceGroupName string

The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.

ServerName string

The name of the server.

EndIPv6Address string

The end IP address of the firewall rule. Must be IPv6 format. Must be greater than or equal to startIpAddress.

FirewallRuleName string

The name of the firewall rule.

Name string

Resource name.

StartIPv6Address string

The start IP address of the firewall rule. Must be IPv6 format.

ResourceGroupName string

The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.

ServerName string

The name of the server.

EndIPv6Address string

The end IP address of the firewall rule. Must be IPv6 format. Must be greater than or equal to startIpAddress.

FirewallRuleName string

The name of the firewall rule.

Name string

Resource name.

StartIPv6Address string

The start IP address of the firewall rule. Must be IPv6 format.

resourceGroupName String

The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.

serverName String

The name of the server.

endIPv6Address String

The end IP address of the firewall rule. Must be IPv6 format. Must be greater than or equal to startIpAddress.

firewallRuleName String

The name of the firewall rule.

name String

Resource name.

startIPv6Address String

The start IP address of the firewall rule. Must be IPv6 format.

resourceGroupName string

The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.

serverName string

The name of the server.

endIPv6Address string

The end IP address of the firewall rule. Must be IPv6 format. Must be greater than or equal to startIpAddress.

firewallRuleName string

The name of the firewall rule.

name string

Resource name.

startIPv6Address string

The start IP address of the firewall rule. Must be IPv6 format.

resource_group_name str

The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.

server_name str

The name of the server.

end_i_pv6_address str

The end IP address of the firewall rule. Must be IPv6 format. Must be greater than or equal to startIpAddress.

firewall_rule_name str

The name of the firewall rule.

name str

Resource name.

start_i_pv6_address str

The start IP address of the firewall rule. Must be IPv6 format.

resourceGroupName String

The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.

serverName String

The name of the server.

endIPv6Address String

The end IP address of the firewall rule. Must be IPv6 format. Must be greater than or equal to startIpAddress.

firewallRuleName String

The name of the firewall rule.

name String

Resource name.

startIPv6Address String

The start IP address of the firewall rule. Must be IPv6 format.

Outputs

All input properties are implicitly available as output properties. Additionally, the IPv6FirewallRule resource produces the following output properties:

Id string

The provider-assigned unique ID for this managed resource.

Type string

Resource type.

Id string

The provider-assigned unique ID for this managed resource.

Type string

Resource type.

id String

The provider-assigned unique ID for this managed resource.

type String

Resource type.

id string

The provider-assigned unique ID for this managed resource.

type string

Resource type.

id str

The provider-assigned unique ID for this managed resource.

type str

Resource type.

id String

The provider-assigned unique ID for this managed resource.

type String

Resource type.

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:sql:IPv6FirewallRule firewallrulecrudtest-3927 /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/firewallrulecrudtest-12/providers/Microsoft.Sql/servers/firewallrulecrudtest-6285/ipv6FirewallRules/firewallrulecrudtest-3927 

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0