azure-native.datalakestore.VirtualNetworkRule
Explore with Pulumi AI
- Example Usage
- Creates or updates the specified virtual network rule. During update, the virtual network rule with the specified name will be replaced with this new virtual network rule.
- Create VirtualNetworkRule Resource
- Constructor syntax
- Constructor example
- VirtualNetworkRule Resource Properties
- Inputs
- Outputs
- Import
- Package Details
Data Lake Store virtual network rule information. API Version: 2016-11-01.
Create VirtualNetworkRule Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new VirtualNetworkRule(name: string, args: VirtualNetworkRuleArgs, opts?: CustomResourceOptions);
@overload
def VirtualNetworkRule(resource_name: str,
args: VirtualNetworkRuleArgs,
opts: Optional[ResourceOptions] = None)
@overload
def VirtualNetworkRule(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
subnet_id: Optional[str] = None,
virtual_network_rule_name: Optional[str] = None)
func NewVirtualNetworkRule(ctx *Context, name string, args VirtualNetworkRuleArgs, opts ...ResourceOption) (*VirtualNetworkRule, error)
public VirtualNetworkRule(string name, VirtualNetworkRuleArgs args, CustomResourceOptions? opts = null)
public VirtualNetworkRule(String name, VirtualNetworkRuleArgs args)
public VirtualNetworkRule(String name, VirtualNetworkRuleArgs args, CustomResourceOptions options)
type: azure-native:datalakestore:VirtualNetworkRule
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name
This property is required. string - The unique name of the resource.
- args
This property is required. VirtualNetworkRuleArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name
This property is required. str - The unique name of the resource.
- args
This property is required. VirtualNetworkRuleArgs - The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. VirtualNetworkRuleArgs - The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. VirtualNetworkRuleArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name
This property is required. String - The unique name of the resource.
- args
This property is required. VirtualNetworkRuleArgs - 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 virtualNetworkRuleResource = new AzureNative.Datalakestore.VirtualNetworkRule("virtualNetworkRuleResource", new()
{
AccountName = "string",
ResourceGroupName = "string",
SubnetId = "string",
VirtualNetworkRuleName = "string",
});
example, err := datalakestore.NewVirtualNetworkRule(ctx, "virtualNetworkRuleResource", &datalakestore.VirtualNetworkRuleArgs{
AccountName: "string",
ResourceGroupName: "string",
SubnetId: "string",
VirtualNetworkRuleName: "string",
})
var virtualNetworkRuleResource = new VirtualNetworkRule("virtualNetworkRuleResource", VirtualNetworkRuleArgs.builder()
.accountName("string")
.resourceGroupName("string")
.subnetId("string")
.virtualNetworkRuleName("string")
.build());
virtual_network_rule_resource = azure_native.datalakestore.VirtualNetworkRule("virtualNetworkRuleResource",
account_name=string,
resource_group_name=string,
subnet_id=string,
virtual_network_rule_name=string)
const virtualNetworkRuleResource = new azure_native.datalakestore.VirtualNetworkRule("virtualNetworkRuleResource", {
accountName: "string",
resourceGroupName: "string",
subnetId: "string",
virtualNetworkRuleName: "string",
});
type: azure-native:datalakestore:VirtualNetworkRule
properties:
accountName: string
resourceGroupName: string
subnetId: string
virtualNetworkRuleName: string
VirtualNetworkRule 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 VirtualNetworkRule resource accepts the following input properties:
- Account
Name This property is required. Changes to this property will trigger replacement.
- The name of the Data Lake Store account.
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the Azure resource group.
- Subnet
Id This property is required. string - The resource identifier for the subnet.
- Virtual
Network Rule Name Changes to this property will trigger replacement.
- The name of the virtual network rule to create or update.
- Account
Name This property is required. Changes to this property will trigger replacement.
- The name of the Data Lake Store account.
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the Azure resource group.
- Subnet
Id This property is required. string - The resource identifier for the subnet.
- Virtual
Network Rule Name Changes to this property will trigger replacement.
- The name of the virtual network rule to create or update.
- account
Name This property is required. Changes to this property will trigger replacement.
- The name of the Data Lake Store account.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the Azure resource group.
- subnet
Id This property is required. String - The resource identifier for the subnet.
- virtual
Network Rule Name Changes to this property will trigger replacement.
- The name of the virtual network rule to create or update.
- account
Name This property is required. Changes to this property will trigger replacement.
- The name of the Data Lake Store account.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the Azure resource group.
- subnet
Id This property is required. string - The resource identifier for the subnet.
- virtual
Network Rule Name Changes to this property will trigger replacement.
- The name of the virtual network rule to create or update.
- account_
name This property is required. Changes to this property will trigger replacement.
- The name of the Data Lake Store account.
- resource_
group_ name This property is required. Changes to this property will trigger replacement.
- The name of the Azure resource group.
- subnet_
id This property is required. str - The resource identifier for the subnet.
- virtual_
network_ rule_ name Changes to this property will trigger replacement.
- The name of the virtual network rule to create or update.
- account
Name This property is required. Changes to this property will trigger replacement.
- The name of the Data Lake Store account.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the Azure resource group.
- subnet
Id This property is required. String - The resource identifier for the subnet.
- virtual
Network Rule Name Changes to this property will trigger replacement.
- The name of the virtual network rule to create or update.
Outputs
All input properties are implicitly available as output properties. Additionally, the VirtualNetworkRule resource produces the following output properties:
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:datalakestore:VirtualNetworkRule test_virtual_network_rules_name 34adfa4f-cedf-4dc0-ba29-b6d1a69ab345
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0
- Example Usage
- Creates or updates the specified virtual network rule. During update, the virtual network rule with the specified name will be replaced with this new virtual network rule.
- Create VirtualNetworkRule Resource
- Constructor syntax
- Constructor example
- VirtualNetworkRule Resource Properties
- Inputs
- Outputs
- Import
- Package Details