azure-native.databasefleetmanager.FirewallRule
Explore with Pulumi AI
A firewall rule.
Uses Azure REST API version 2025-02-01-preview.
Example Usage
Create or Update Firewall Rule - Generated by Policy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var firewallRule = new AzureNative.DatabaseFleetManager.FirewallRule("firewallRule", new()
{
FirewallRuleName = "allow-10-0-0-0-24-to-10-1-0-0-24",
FleetName = "data-fleet-01",
FleetspaceName = "prod-environment",
Properties = new AzureNative.DatabaseFleetManager.Inputs.FirewallRulePropertiesArgs
{
EndIpAddress = "10.0.0.255",
StartIpAddress = "10.0.0.0",
},
ResourceGroupName = "rg-networking-operations",
});
});
package main
import (
databasefleetmanager "github.com/pulumi/pulumi-azure-native-sdk/databasefleetmanager/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := databasefleetmanager.NewFirewallRule(ctx, "firewallRule", &databasefleetmanager.FirewallRuleArgs{
FirewallRuleName: pulumi.String("allow-10-0-0-0-24-to-10-1-0-0-24"),
FleetName: pulumi.String("data-fleet-01"),
FleetspaceName: pulumi.String("prod-environment"),
Properties: &databasefleetmanager.FirewallRulePropertiesArgs{
EndIpAddress: pulumi.String("10.0.0.255"),
StartIpAddress: pulumi.String("10.0.0.0"),
},
ResourceGroupName: pulumi.String("rg-networking-operations"),
})
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.databasefleetmanager.FirewallRule;
import com.pulumi.azurenative.databasefleetmanager.FirewallRuleArgs;
import com.pulumi.azurenative.databasefleetmanager.inputs.FirewallRulePropertiesArgs;
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 firewallRule = new FirewallRule("firewallRule", FirewallRuleArgs.builder()
.firewallRuleName("allow-10-0-0-0-24-to-10-1-0-0-24")
.fleetName("data-fleet-01")
.fleetspaceName("prod-environment")
.properties(FirewallRulePropertiesArgs.builder()
.endIpAddress("10.0.0.255")
.startIpAddress("10.0.0.0")
.build())
.resourceGroupName("rg-networking-operations")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const firewallRule = new azure_native.databasefleetmanager.FirewallRule("firewallRule", {
firewallRuleName: "allow-10-0-0-0-24-to-10-1-0-0-24",
fleetName: "data-fleet-01",
fleetspaceName: "prod-environment",
properties: {
endIpAddress: "10.0.0.255",
startIpAddress: "10.0.0.0",
},
resourceGroupName: "rg-networking-operations",
});
import pulumi
import pulumi_azure_native as azure_native
firewall_rule = azure_native.databasefleetmanager.FirewallRule("firewallRule",
firewall_rule_name="allow-10-0-0-0-24-to-10-1-0-0-24",
fleet_name="data-fleet-01",
fleetspace_name="prod-environment",
properties={
"end_ip_address": "10.0.0.255",
"start_ip_address": "10.0.0.0",
},
resource_group_name="rg-networking-operations")
resources:
firewallRule:
type: azure-native:databasefleetmanager:FirewallRule
properties:
firewallRuleName: allow-10-0-0-0-24-to-10-1-0-0-24
fleetName: data-fleet-01
fleetspaceName: prod-environment
properties:
endIpAddress: 10.0.0.255
startIpAddress: 10.0.0.0
resourceGroupName: rg-networking-operations
Create FirewallRule Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new FirewallRule(name: string, args: FirewallRuleArgs, opts?: CustomResourceOptions);
@overload
def FirewallRule(resource_name: str,
args: FirewallRuleArgs,
opts: Optional[ResourceOptions] = None)
@overload
def FirewallRule(resource_name: str,
opts: Optional[ResourceOptions] = None,
fleet_name: Optional[str] = None,
fleetspace_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
firewall_rule_name: Optional[str] = None,
properties: Optional[FirewallRulePropertiesArgs] = None)
func NewFirewallRule(ctx *Context, name string, args FirewallRuleArgs, opts ...ResourceOption) (*FirewallRule, error)
public FirewallRule(string name, FirewallRuleArgs args, CustomResourceOptions? opts = null)
public FirewallRule(String name, FirewallRuleArgs args)
public FirewallRule(String name, FirewallRuleArgs args, CustomResourceOptions options)
type: azure-native:databasefleetmanager:FirewallRule
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args FirewallRuleArgs
- 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 FirewallRuleArgs
- 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 FirewallRuleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FirewallRuleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FirewallRuleArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var azure_nativeFirewallRuleResource = new AzureNative.DatabaseFleetManager.FirewallRule("azure-nativeFirewallRuleResource", new()
{
FleetName = "string",
FleetspaceName = "string",
ResourceGroupName = "string",
FirewallRuleName = "string",
Properties = new AzureNative.DatabaseFleetManager.Inputs.FirewallRulePropertiesArgs
{
EndIpAddress = "string",
StartIpAddress = "string",
},
});
example, err := databasefleetmanager.NewFirewallRule(ctx, "azure-nativeFirewallRuleResource", &databasefleetmanager.FirewallRuleArgs{
FleetName: pulumi.String("string"),
FleetspaceName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
FirewallRuleName: pulumi.String("string"),
Properties: &databasefleetmanager.FirewallRulePropertiesArgs{
EndIpAddress: pulumi.String("string"),
StartIpAddress: pulumi.String("string"),
},
})
var azure_nativeFirewallRuleResource = new FirewallRule("azure-nativeFirewallRuleResource", FirewallRuleArgs.builder()
.fleetName("string")
.fleetspaceName("string")
.resourceGroupName("string")
.firewallRuleName("string")
.properties(FirewallRulePropertiesArgs.builder()
.endIpAddress("string")
.startIpAddress("string")
.build())
.build());
azure_native_firewall_rule_resource = azure_native.databasefleetmanager.FirewallRule("azure-nativeFirewallRuleResource",
fleet_name="string",
fleetspace_name="string",
resource_group_name="string",
firewall_rule_name="string",
properties={
"end_ip_address": "string",
"start_ip_address": "string",
})
const azure_nativeFirewallRuleResource = new azure_native.databasefleetmanager.FirewallRule("azure-nativeFirewallRuleResource", {
fleetName: "string",
fleetspaceName: "string",
resourceGroupName: "string",
firewallRuleName: "string",
properties: {
endIpAddress: "string",
startIpAddress: "string",
},
});
type: azure-native:databasefleetmanager:FirewallRule
properties:
firewallRuleName: string
fleetName: string
fleetspaceName: string
properties:
endIpAddress: string
startIpAddress: string
resourceGroupName: string
FirewallRule Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The FirewallRule resource accepts the following input properties:
- Fleet
Name string - Name of the database fleet.
- Fleetspace
Name string - Name of the fleetspace.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Firewall
Rule stringName - Name of the firewall rule.
- Properties
Pulumi.
Azure Native. Database Fleet Manager. Inputs. Firewall Rule Properties - A Firewall rule properties.
- Fleet
Name string - Name of the database fleet.
- Fleetspace
Name string - Name of the fleetspace.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Firewall
Rule stringName - Name of the firewall rule.
- Properties
Firewall
Rule Properties Args - A Firewall rule properties.
- fleet
Name String - Name of the database fleet.
- fleetspace
Name String - Name of the fleetspace.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- firewall
Rule StringName - Name of the firewall rule.
- properties
Firewall
Rule Properties - A Firewall rule properties.
- fleet
Name string - Name of the database fleet.
- fleetspace
Name string - Name of the fleetspace.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- firewall
Rule stringName - Name of the firewall rule.
- properties
Firewall
Rule Properties - A Firewall rule properties.
- fleet_
name str - Name of the database fleet.
- fleetspace_
name str - Name of the fleetspace.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- firewall_
rule_ strname - Name of the firewall rule.
- properties
Firewall
Rule Properties Args - A Firewall rule properties.
- fleet
Name String - Name of the database fleet.
- fleetspace
Name String - Name of the fleetspace.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- firewall
Rule StringName - Name of the firewall rule.
- properties Property Map
- A Firewall rule properties.
Outputs
All input properties are implicitly available as output properties. Additionally, the FirewallRule resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. Database Fleet Manager. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
FirewallRuleProperties, FirewallRulePropertiesArgs
- End
Ip stringAddress - End IP address.
- Start
Ip stringAddress - Start IP address.
- End
Ip stringAddress - End IP address.
- Start
Ip stringAddress - Start IP address.
- end
Ip StringAddress - End IP address.
- start
Ip StringAddress - Start IP address.
- end
Ip stringAddress - End IP address.
- start
Ip stringAddress - Start IP address.
- end_
ip_ straddress - End IP address.
- start_
ip_ straddress - Start IP address.
- end
Ip StringAddress - End IP address.
- start
Ip StringAddress - Start IP address.
FirewallRulePropertiesResponse, FirewallRulePropertiesResponseArgs
- Provisioning
State string - Provisioning state.
- End
Ip stringAddress - End IP address.
- Start
Ip stringAddress - Start IP address.
- Provisioning
State string - Provisioning state.
- End
Ip stringAddress - End IP address.
- Start
Ip stringAddress - Start IP address.
- provisioning
State String - Provisioning state.
- end
Ip StringAddress - End IP address.
- start
Ip StringAddress - Start IP address.
- provisioning
State string - Provisioning state.
- end
Ip stringAddress - End IP address.
- start
Ip stringAddress - Start IP address.
- provisioning_
state str - Provisioning state.
- end_
ip_ straddress - End IP address.
- start_
ip_ straddress - Start IP address.
- provisioning
State String - Provisioning state.
- end
Ip StringAddress - End IP address.
- start
Ip StringAddress - Start IP address.
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:databasefleetmanager:FirewallRule allow-10-0-0-0-24-to-10-1-0-0-24 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DatabaseFleetManager/fleets/{fleetName}/fleetspaces/{fleetspaceName}/firewallRules/{firewallRuleName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0