azure-native.elasticsan.VolumeGroup
Explore with Pulumi AI
Response for Volume Group request. Azure REST API version: 2021-11-20-preview. Prior API version in Azure Native 1.x: 2021-11-20-preview.
Other available API versions: 2022-12-01-preview, 2023-01-01, 2024-05-01.
Example Usage
VolumeGroups_Create_MaximumSet_Gen
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var volumeGroup = new AzureNative.ElasticSan.VolumeGroup("volumeGroup", new()
{
ElasticSanName = "ti7q-k952-1qB3J_5",
Encryption = AzureNative.ElasticSan.EncryptionType.EncryptionAtRestWithPlatformKey,
NetworkAcls = new AzureNative.ElasticSan.Inputs.NetworkRuleSetArgs
{
VirtualNetworkRules = new[]
{
new AzureNative.ElasticSan.Inputs.VirtualNetworkRuleArgs
{
Action = AzureNative.ElasticSan.Action.Allow,
VirtualNetworkResourceId = "aaaaaaaaaaaaaaaa",
},
},
},
ProtocolType = AzureNative.ElasticSan.StorageTargetType.Iscsi,
ResourceGroupName = "rgelasticsan",
Tags =
{
{ "key5933", "aaaaaaaaaaaaaaaaaaaaaaaaaaaaa" },
},
VolumeGroupName = "u_5I_1j4t3",
});
});
package main
import (
elasticsan "github.com/pulumi/pulumi-azure-native-sdk/elasticsan/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := elasticsan.NewVolumeGroup(ctx, "volumeGroup", &elasticsan.VolumeGroupArgs{
ElasticSanName: pulumi.String("ti7q-k952-1qB3J_5"),
Encryption: pulumi.String(elasticsan.EncryptionTypeEncryptionAtRestWithPlatformKey),
NetworkAcls: &elasticsan.NetworkRuleSetArgs{
VirtualNetworkRules: elasticsan.VirtualNetworkRuleArray{
&elasticsan.VirtualNetworkRuleArgs{
Action: elasticsan.ActionAllow,
VirtualNetworkResourceId: pulumi.String("aaaaaaaaaaaaaaaa"),
},
},
},
ProtocolType: pulumi.String(elasticsan.StorageTargetTypeIscsi),
ResourceGroupName: pulumi.String("rgelasticsan"),
Tags: pulumi.StringMap{
"key5933": pulumi.String("aaaaaaaaaaaaaaaaaaaaaaaaaaaaa"),
},
VolumeGroupName: pulumi.String("u_5I_1j4t3"),
})
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.elasticsan.VolumeGroup;
import com.pulumi.azurenative.elasticsan.VolumeGroupArgs;
import com.pulumi.azurenative.elasticsan.inputs.NetworkRuleSetArgs;
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 volumeGroup = new VolumeGroup("volumeGroup", VolumeGroupArgs.builder()
.elasticSanName("ti7q-k952-1qB3J_5")
.encryption("EncryptionAtRestWithPlatformKey")
.networkAcls(NetworkRuleSetArgs.builder()
.virtualNetworkRules(VirtualNetworkRuleArgs.builder()
.action("Allow")
.virtualNetworkResourceId("aaaaaaaaaaaaaaaa")
.build())
.build())
.protocolType("Iscsi")
.resourceGroupName("rgelasticsan")
.tags(Map.of("key5933", "aaaaaaaaaaaaaaaaaaaaaaaaaaaaa"))
.volumeGroupName("u_5I_1j4t3")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
volume_group = azure_native.elasticsan.VolumeGroup("volumeGroup",
elastic_san_name="ti7q-k952-1qB3J_5",
encryption=azure_native.elasticsan.EncryptionType.ENCRYPTION_AT_REST_WITH_PLATFORM_KEY,
network_acls=azure_native.elasticsan.NetworkRuleSetArgs(
virtual_network_rules=[azure_native.elasticsan.VirtualNetworkRuleArgs(
action=azure_native.elasticsan.Action.ALLOW,
virtual_network_resource_id="aaaaaaaaaaaaaaaa",
)],
),
protocol_type=azure_native.elasticsan.StorageTargetType.ISCSI,
resource_group_name="rgelasticsan",
tags={
"key5933": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
},
volume_group_name="u_5I_1j4t3")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const volumeGroup = new azure_native.elasticsan.VolumeGroup("volumeGroup", {
elasticSanName: "ti7q-k952-1qB3J_5",
encryption: azure_native.elasticsan.EncryptionType.EncryptionAtRestWithPlatformKey,
networkAcls: {
virtualNetworkRules: [{
action: azure_native.elasticsan.Action.Allow,
virtualNetworkResourceId: "aaaaaaaaaaaaaaaa",
}],
},
protocolType: azure_native.elasticsan.StorageTargetType.Iscsi,
resourceGroupName: "rgelasticsan",
tags: {
key5933: "aaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
},
volumeGroupName: "u_5I_1j4t3",
});
resources:
volumeGroup:
type: azure-native:elasticsan:VolumeGroup
properties:
elasticSanName: ti7q-k952-1qB3J_5
encryption: EncryptionAtRestWithPlatformKey
networkAcls:
virtualNetworkRules:
- action: Allow
virtualNetworkResourceId: aaaaaaaaaaaaaaaa
protocolType: Iscsi
resourceGroupName: rgelasticsan
tags:
key5933: aaaaaaaaaaaaaaaaaaaaaaaaaaaaa
volumeGroupName: u_5I_1j4t3
VolumeGroups_Create_MinimumSet_Gen
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var volumeGroup = new AzureNative.ElasticSan.VolumeGroup("volumeGroup", new()
{
ElasticSanName = "ti7q-k952-1qB3J_5",
ResourceGroupName = "rgelasticsan",
VolumeGroupName = "u_5I_1j4t3",
});
});
package main
import (
elasticsan "github.com/pulumi/pulumi-azure-native-sdk/elasticsan/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := elasticsan.NewVolumeGroup(ctx, "volumeGroup", &elasticsan.VolumeGroupArgs{
ElasticSanName: pulumi.String("ti7q-k952-1qB3J_5"),
ResourceGroupName: pulumi.String("rgelasticsan"),
VolumeGroupName: pulumi.String("u_5I_1j4t3"),
})
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.elasticsan.VolumeGroup;
import com.pulumi.azurenative.elasticsan.VolumeGroupArgs;
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 volumeGroup = new VolumeGroup("volumeGroup", VolumeGroupArgs.builder()
.elasticSanName("ti7q-k952-1qB3J_5")
.resourceGroupName("rgelasticsan")
.volumeGroupName("u_5I_1j4t3")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
volume_group = azure_native.elasticsan.VolumeGroup("volumeGroup",
elastic_san_name="ti7q-k952-1qB3J_5",
resource_group_name="rgelasticsan",
volume_group_name="u_5I_1j4t3")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const volumeGroup = new azure_native.elasticsan.VolumeGroup("volumeGroup", {
elasticSanName: "ti7q-k952-1qB3J_5",
resourceGroupName: "rgelasticsan",
volumeGroupName: "u_5I_1j4t3",
});
resources:
volumeGroup:
type: azure-native:elasticsan:VolumeGroup
properties:
elasticSanName: ti7q-k952-1qB3J_5
resourceGroupName: rgelasticsan
volumeGroupName: u_5I_1j4t3
Create VolumeGroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new VolumeGroup(name: string, args: VolumeGroupArgs, opts?: CustomResourceOptions);
@overload
def VolumeGroup(resource_name: str,
args: VolumeGroupArgs,
opts: Optional[ResourceOptions] = None)
@overload
def VolumeGroup(resource_name: str,
opts: Optional[ResourceOptions] = None,
elastic_san_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
encryption: Optional[Union[str, EncryptionType]] = None,
network_acls: Optional[NetworkRuleSetArgs] = None,
protocol_type: Optional[Union[str, StorageTargetType]] = None,
tags: Optional[Mapping[str, str]] = None,
volume_group_name: Optional[str] = None)
func NewVolumeGroup(ctx *Context, name string, args VolumeGroupArgs, opts ...ResourceOption) (*VolumeGroup, error)
public VolumeGroup(string name, VolumeGroupArgs args, CustomResourceOptions? opts = null)
public VolumeGroup(String name, VolumeGroupArgs args)
public VolumeGroup(String name, VolumeGroupArgs args, CustomResourceOptions options)
type: azure-native:elasticsan:VolumeGroup
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 VolumeGroupArgs
- 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 VolumeGroupArgs
- 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 VolumeGroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VolumeGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VolumeGroupArgs
- 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 volumeGroupResource = new AzureNative.ElasticSan.VolumeGroup("volumeGroupResource", new()
{
ElasticSanName = "string",
ResourceGroupName = "string",
Encryption = "string",
NetworkAcls = new AzureNative.ElasticSan.Inputs.NetworkRuleSetArgs
{
VirtualNetworkRules = new[]
{
new AzureNative.ElasticSan.Inputs.VirtualNetworkRuleArgs
{
VirtualNetworkResourceId = "string",
Action = AzureNative.ElasticSan.Action.Allow,
},
},
},
ProtocolType = "string",
Tags =
{
{ "string", "string" },
},
VolumeGroupName = "string",
});
example, err := elasticsan.NewVolumeGroup(ctx, "volumeGroupResource", &elasticsan.VolumeGroupArgs{
ElasticSanName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
Encryption: pulumi.String("string"),
NetworkAcls: &elasticsan.NetworkRuleSetArgs{
VirtualNetworkRules: elasticsan.VirtualNetworkRuleArray{
&elasticsan.VirtualNetworkRuleArgs{
VirtualNetworkResourceId: pulumi.String("string"),
Action: elasticsan.ActionAllow,
},
},
},
ProtocolType: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
VolumeGroupName: pulumi.String("string"),
})
var volumeGroupResource = new VolumeGroup("volumeGroupResource", VolumeGroupArgs.builder()
.elasticSanName("string")
.resourceGroupName("string")
.encryption("string")
.networkAcls(NetworkRuleSetArgs.builder()
.virtualNetworkRules(VirtualNetworkRuleArgs.builder()
.virtualNetworkResourceId("string")
.action("Allow")
.build())
.build())
.protocolType("string")
.tags(Map.of("string", "string"))
.volumeGroupName("string")
.build());
volume_group_resource = azure_native.elasticsan.VolumeGroup("volumeGroupResource",
elastic_san_name="string",
resource_group_name="string",
encryption="string",
network_acls=azure_native.elasticsan.NetworkRuleSetArgs(
virtual_network_rules=[azure_native.elasticsan.VirtualNetworkRuleArgs(
virtual_network_resource_id="string",
action=azure_native.elasticsan.Action.ALLOW,
)],
),
protocol_type="string",
tags={
"string": "string",
},
volume_group_name="string")
const volumeGroupResource = new azure_native.elasticsan.VolumeGroup("volumeGroupResource", {
elasticSanName: "string",
resourceGroupName: "string",
encryption: "string",
networkAcls: {
virtualNetworkRules: [{
virtualNetworkResourceId: "string",
action: azure_native.elasticsan.Action.Allow,
}],
},
protocolType: "string",
tags: {
string: "string",
},
volumeGroupName: "string",
});
type: azure-native:elasticsan:VolumeGroup
properties:
elasticSanName: string
encryption: string
networkAcls:
virtualNetworkRules:
- action: Allow
virtualNetworkResourceId: string
protocolType: string
resourceGroupName: string
tags:
string: string
volumeGroupName: string
VolumeGroup 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 VolumeGroup resource accepts the following input properties:
- Elastic
San stringName - The name of the ElasticSan.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Encryption
string | Pulumi.
Azure Native. Elastic San. Encryption Type - Type of encryption
- Network
Acls Pulumi.Azure Native. Elastic San. Inputs. Network Rule Set - A collection of rules governing the accessibility from specific network locations.
- Protocol
Type string | Pulumi.Azure Native. Elastic San. Storage Target Type - Type of storage target
- Dictionary<string, string>
- Azure resource tags.
- Volume
Group stringName - The name of the VolumeGroup.
- Elastic
San stringName - The name of the ElasticSan.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Encryption
string | Encryption
Type - Type of encryption
- Network
Acls NetworkRule Set Args - A collection of rules governing the accessibility from specific network locations.
- Protocol
Type string | StorageTarget Type - Type of storage target
- map[string]string
- Azure resource tags.
- Volume
Group stringName - The name of the VolumeGroup.
- elastic
San StringName - The name of the ElasticSan.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- encryption
String | Encryption
Type - Type of encryption
- network
Acls NetworkRule Set - A collection of rules governing the accessibility from specific network locations.
- protocol
Type String | StorageTarget Type - Type of storage target
- Map<String,String>
- Azure resource tags.
- volume
Group StringName - The name of the VolumeGroup.
- elastic
San stringName - The name of the ElasticSan.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- encryption
string | Encryption
Type - Type of encryption
- network
Acls NetworkRule Set - A collection of rules governing the accessibility from specific network locations.
- protocol
Type string | StorageTarget Type - Type of storage target
- {[key: string]: string}
- Azure resource tags.
- volume
Group stringName - The name of the VolumeGroup.
- elastic_
san_ strname - The name of the ElasticSan.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- encryption
str | Encryption
Type - Type of encryption
- network_
acls NetworkRule Set Args - A collection of rules governing the accessibility from specific network locations.
- protocol_
type str | StorageTarget Type - Type of storage target
- Mapping[str, str]
- Azure resource tags.
- volume_
group_ strname - The name of the VolumeGroup.
- elastic
San StringName - The name of the ElasticSan.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- encryption
String | "Encryption
At Rest With Platform Key" - Type of encryption
- network
Acls Property Map - A collection of rules governing the accessibility from specific network locations.
- protocol
Type String | "Iscsi" | "None" - Type of storage target
- Map<String>
- Azure resource tags.
- volume
Group StringName - The name of the VolumeGroup.
Outputs
All input properties are implicitly available as output properties. Additionally, the VolumeGroup resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Azure resource name.
- Provisioning
State string - State of the operation on the resource.
- System
Data Pulumi.Azure Native. Elastic San. Outputs. System Data Response - Resource metadata required by ARM RPC
- Type string
- Azure resource type.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Azure resource name.
- Provisioning
State string - State of the operation on the resource.
- System
Data SystemData Response - Resource metadata required by ARM RPC
- Type string
- Azure resource type.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Azure resource name.
- provisioning
State String - State of the operation on the resource.
- system
Data SystemData Response - Resource metadata required by ARM RPC
- type String
- Azure resource type.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Azure resource name.
- provisioning
State string - State of the operation on the resource.
- system
Data SystemData Response - Resource metadata required by ARM RPC
- type string
- Azure resource type.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Azure resource name.
- provisioning_
state str - State of the operation on the resource.
- system_
data SystemData Response - Resource metadata required by ARM RPC
- type str
- Azure resource type.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Azure resource name.
- provisioning
State String - State of the operation on the resource.
- system
Data Property Map - Resource metadata required by ARM RPC
- type String
- Azure resource type.
Supporting Types
Action, ActionArgs
- Allow
- Allow
- Action
Allow - Allow
- Allow
- Allow
- Allow
- Allow
- ALLOW
- Allow
- "Allow"
- Allow
EncryptionType, EncryptionTypeArgs
- Encryption
At Rest With Platform Key - EncryptionAtRestWithPlatformKeyVolume is encrypted at rest with Platform managed key. It is the default encryption type.
- Encryption
Type Encryption At Rest With Platform Key - EncryptionAtRestWithPlatformKeyVolume is encrypted at rest with Platform managed key. It is the default encryption type.
- Encryption
At Rest With Platform Key - EncryptionAtRestWithPlatformKeyVolume is encrypted at rest with Platform managed key. It is the default encryption type.
- Encryption
At Rest With Platform Key - EncryptionAtRestWithPlatformKeyVolume is encrypted at rest with Platform managed key. It is the default encryption type.
- ENCRYPTION_AT_REST_WITH_PLATFORM_KEY
- EncryptionAtRestWithPlatformKeyVolume is encrypted at rest with Platform managed key. It is the default encryption type.
- "Encryption
At Rest With Platform Key" - EncryptionAtRestWithPlatformKeyVolume is encrypted at rest with Platform managed key. It is the default encryption type.
NetworkRuleSet, NetworkRuleSetArgs
- Virtual
Network List<Pulumi.Rules Azure Native. Elastic San. Inputs. Virtual Network Rule> - The list of virtual network rules.
- Virtual
Network []VirtualRules Network Rule - The list of virtual network rules.
- virtual
Network List<VirtualRules Network Rule> - The list of virtual network rules.
- virtual
Network VirtualRules Network Rule[] - The list of virtual network rules.
- virtual_
network_ Sequence[Virtualrules Network Rule] - The list of virtual network rules.
- virtual
Network List<Property Map>Rules - The list of virtual network rules.
NetworkRuleSetResponse, NetworkRuleSetResponseArgs
- Virtual
Network List<Pulumi.Rules Azure Native. Elastic San. Inputs. Virtual Network Rule Response> - The list of virtual network rules.
- Virtual
Network []VirtualRules Network Rule Response - The list of virtual network rules.
- virtual
Network List<VirtualRules Network Rule Response> - The list of virtual network rules.
- virtual
Network VirtualRules Network Rule Response[] - The list of virtual network rules.
- virtual_
network_ Sequence[Virtualrules Network Rule Response] - The list of virtual network rules.
- virtual
Network List<Property Map>Rules - The list of virtual network rules.
StorageTargetType, StorageTargetTypeArgs
- Iscsi
- Iscsi
- None
- None
- Storage
Target Type Iscsi - Iscsi
- Storage
Target Type None - None
- Iscsi
- Iscsi
- None
- None
- Iscsi
- Iscsi
- None
- None
- ISCSI
- Iscsi
- NONE
- None
- "Iscsi"
- Iscsi
- "None"
- None
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.
VirtualNetworkRule, VirtualNetworkRuleArgs
- Virtual
Network stringResource Id - Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
- Action
Pulumi.
Azure Native. Elastic San. Action - The action of virtual network rule.
- Virtual
Network stringResource Id - Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
- Action Action
- The action of virtual network rule.
- virtual
Network StringResource Id - Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
- action Action
- The action of virtual network rule.
- virtual
Network stringResource Id - Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
- action Action
- The action of virtual network rule.
- virtual_
network_ strresource_ id - Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
- action Action
- The action of virtual network rule.
- virtual
Network StringResource Id - Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
- action "Allow"
- The action of virtual network rule.
VirtualNetworkRuleResponse, VirtualNetworkRuleResponseArgs
- State string
- Gets the state of virtual network rule.
- Virtual
Network stringResource Id - Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
- Action string
- The action of virtual network rule.
- State string
- Gets the state of virtual network rule.
- Virtual
Network stringResource Id - Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
- Action string
- The action of virtual network rule.
- state String
- Gets the state of virtual network rule.
- virtual
Network StringResource Id - Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
- action String
- The action of virtual network rule.
- state string
- Gets the state of virtual network rule.
- virtual
Network stringResource Id - Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
- action string
- The action of virtual network rule.
- state str
- Gets the state of virtual network rule.
- virtual_
network_ strresource_ id - Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
- action str
- The action of virtual network rule.
- state String
- Gets the state of virtual network rule.
- virtual
Network StringResource Id - Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
- action String
- The action of virtual network rule.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:elasticsan:VolumeGroup aaaaaaaaaaaaaaaaaaaaaa /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0