azure-native.fileshares.FileShare
Explore with Pulumi AI
File share resource
Uses Azure REST API version 2025-06-01-preview.
Example Usage
FileShares_CreateOrUpdate_MaximumSet
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var fileShare = new AzureNative.FileShares.FileShare("fileShare", new()
{
Location = "gdsuixfhrgfbbbfjtgocmlzyuonrr",
Properties = new AzureNative.FileShares.Inputs.FileSharePropertiesArgs
{
MediaTier = AzureNative.FileShares.MediaTier.SSD,
MountName = "fileshare",
NfsProtocolProperties = new AzureNative.FileShares.Inputs.NfsProtocolPropertiesArgs
{
RootSquash = AzureNative.FileShares.ShareRootSquash.NoRootSquash,
},
Protocol = AzureNative.FileShares.Protocol.NFS,
ProvisionedIOPerSec = 5,
ProvisionedStorageGiB = 8,
ProvisionedThroughputMiBPerSec = 22,
PublicAccessProperties = new AzureNative.FileShares.Inputs.PublicAccessPropertiesArgs
{
AllowedSubnets = new[]
{
"/subscriptions/9760acf5-4638-11e7-9bdb-020073ca7778/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3",
},
},
PublicNetworkAccess = AzureNative.FileShares.PublicNetworkAccess.Enabled,
Redundancy = AzureNative.FileShares.Redundancy.Local,
},
ResourceGroupName = "rgfileshares",
ResourceName = "fileshare",
Tags =
{
{ "key9647", "xwokdvyoae" },
},
});
});
package main
import (
fileshares "github.com/pulumi/pulumi-azure-native-sdk/fileshares/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := fileshares.NewFileShare(ctx, "fileShare", &fileshares.FileShareArgs{
Location: pulumi.String("gdsuixfhrgfbbbfjtgocmlzyuonrr"),
Properties: &fileshares.FileSharePropertiesArgs{
MediaTier: pulumi.String(fileshares.MediaTierSSD),
MountName: pulumi.String("fileshare"),
NfsProtocolProperties: &fileshares.NfsProtocolPropertiesArgs{
RootSquash: pulumi.String(fileshares.ShareRootSquashNoRootSquash),
},
Protocol: pulumi.String(fileshares.ProtocolNFS),
ProvisionedIOPerSec: pulumi.Int(5),
ProvisionedStorageGiB: pulumi.Int(8),
ProvisionedThroughputMiBPerSec: pulumi.Int(22),
PublicAccessProperties: &fileshares.PublicAccessPropertiesArgs{
AllowedSubnets: pulumi.StringArray{
pulumi.String("/subscriptions/9760acf5-4638-11e7-9bdb-020073ca7778/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3"),
},
},
PublicNetworkAccess: pulumi.String(fileshares.PublicNetworkAccessEnabled),
Redundancy: pulumi.String(fileshares.RedundancyLocal),
},
ResourceGroupName: pulumi.String("rgfileshares"),
ResourceName: pulumi.String("fileshare"),
Tags: pulumi.StringMap{
"key9647": pulumi.String("xwokdvyoae"),
},
})
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.fileshares.FileShare;
import com.pulumi.azurenative.fileshares.FileShareArgs;
import com.pulumi.azurenative.fileshares.inputs.FileSharePropertiesArgs;
import com.pulumi.azurenative.fileshares.inputs.NfsProtocolPropertiesArgs;
import com.pulumi.azurenative.fileshares.inputs.PublicAccessPropertiesArgs;
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 fileShare = new FileShare("fileShare", FileShareArgs.builder()
.location("gdsuixfhrgfbbbfjtgocmlzyuonrr")
.properties(FileSharePropertiesArgs.builder()
.mediaTier("SSD")
.mountName("fileshare")
.nfsProtocolProperties(NfsProtocolPropertiesArgs.builder()
.rootSquash("NoRootSquash")
.build())
.protocol("NFS")
.provisionedIOPerSec(5)
.provisionedStorageGiB(8)
.provisionedThroughputMiBPerSec(22)
.publicAccessProperties(PublicAccessPropertiesArgs.builder()
.allowedSubnets("/subscriptions/9760acf5-4638-11e7-9bdb-020073ca7778/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3")
.build())
.publicNetworkAccess("Enabled")
.redundancy("Local")
.build())
.resourceGroupName("rgfileshares")
.resourceName("fileshare")
.tags(Map.of("key9647", "xwokdvyoae"))
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const fileShare = new azure_native.fileshares.FileShare("fileShare", {
location: "gdsuixfhrgfbbbfjtgocmlzyuonrr",
properties: {
mediaTier: azure_native.fileshares.MediaTier.SSD,
mountName: "fileshare",
nfsProtocolProperties: {
rootSquash: azure_native.fileshares.ShareRootSquash.NoRootSquash,
},
protocol: azure_native.fileshares.Protocol.NFS,
provisionedIOPerSec: 5,
provisionedStorageGiB: 8,
provisionedThroughputMiBPerSec: 22,
publicAccessProperties: {
allowedSubnets: ["/subscriptions/9760acf5-4638-11e7-9bdb-020073ca7778/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3"],
},
publicNetworkAccess: azure_native.fileshares.PublicNetworkAccess.Enabled,
redundancy: azure_native.fileshares.Redundancy.Local,
},
resourceGroupName: "rgfileshares",
resourceName: "fileshare",
tags: {
key9647: "xwokdvyoae",
},
});
import pulumi
import pulumi_azure_native as azure_native
file_share = azure_native.fileshares.FileShare("fileShare",
location="gdsuixfhrgfbbbfjtgocmlzyuonrr",
properties={
"media_tier": azure_native.fileshares.MediaTier.SSD,
"mount_name": "fileshare",
"nfs_protocol_properties": {
"root_squash": azure_native.fileshares.ShareRootSquash.NO_ROOT_SQUASH,
},
"protocol": azure_native.fileshares.Protocol.NFS,
"provisioned_io_per_sec": 5,
"provisioned_storage_gi_b": 8,
"provisioned_throughput_mi_b_per_sec": 22,
"public_access_properties": {
"allowed_subnets": ["/subscriptions/9760acf5-4638-11e7-9bdb-020073ca7778/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3"],
},
"public_network_access": azure_native.fileshares.PublicNetworkAccess.ENABLED,
"redundancy": azure_native.fileshares.Redundancy.LOCAL,
},
resource_group_name="rgfileshares",
resource_name_="fileshare",
tags={
"key9647": "xwokdvyoae",
})
resources:
fileShare:
type: azure-native:fileshares:FileShare
properties:
location: gdsuixfhrgfbbbfjtgocmlzyuonrr
properties:
mediaTier: SSD
mountName: fileshare
nfsProtocolProperties:
rootSquash: NoRootSquash
protocol: NFS
provisionedIOPerSec: 5
provisionedStorageGiB: 8
provisionedThroughputMiBPerSec: 22
publicAccessProperties:
allowedSubnets:
- /subscriptions/9760acf5-4638-11e7-9bdb-020073ca7778/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3
publicNetworkAccess: Enabled
redundancy: Local
resourceGroupName: rgfileshares
resourceName: fileshare
tags:
key9647: xwokdvyoae
Create FileShare Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new FileShare(name: string, args: FileShareArgs, opts?: CustomResourceOptions);
@overload
def FileShare(resource_name: str,
args: FileShareArgs,
opts: Optional[ResourceOptions] = None)
@overload
def FileShare(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
location: Optional[str] = None,
properties: Optional[FileSharePropertiesArgs] = None,
resource_name_: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewFileShare(ctx *Context, name string, args FileShareArgs, opts ...ResourceOption) (*FileShare, error)
public FileShare(string name, FileShareArgs args, CustomResourceOptions? opts = null)
public FileShare(String name, FileShareArgs args)
public FileShare(String name, FileShareArgs args, CustomResourceOptions options)
type: azure-native:fileshares:FileShare
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 FileShareArgs
- 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 FileShareArgs
- 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 FileShareArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FileShareArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FileShareArgs
- 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 fileShareResource = new AzureNative.FileShares.FileShare("fileShareResource", new()
{
ResourceGroupName = "string",
Location = "string",
Properties = new AzureNative.FileShares.Inputs.FileSharePropertiesArgs
{
MediaTier = "string",
MountName = "string",
NfsProtocolProperties = new AzureNative.FileShares.Inputs.NfsProtocolPropertiesArgs
{
RootSquash = "string",
},
Protocol = "string",
ProvisionedIOPerSec = 0,
ProvisionedStorageGiB = 0,
ProvisionedThroughputMiBPerSec = 0,
PublicAccessProperties = new AzureNative.FileShares.Inputs.PublicAccessPropertiesArgs
{
AllowedSubnets = new[]
{
"string",
},
},
PublicNetworkAccess = "string",
Redundancy = "string",
},
ResourceName = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := fileshares.NewFileShare(ctx, "fileShareResource", &fileshares.FileShareArgs{
ResourceGroupName: pulumi.String("string"),
Location: pulumi.String("string"),
Properties: &fileshares.FileSharePropertiesArgs{
MediaTier: pulumi.String("string"),
MountName: pulumi.String("string"),
NfsProtocolProperties: &fileshares.NfsProtocolPropertiesArgs{
RootSquash: pulumi.String("string"),
},
Protocol: pulumi.String("string"),
ProvisionedIOPerSec: pulumi.Int(0),
ProvisionedStorageGiB: pulumi.Int(0),
ProvisionedThroughputMiBPerSec: pulumi.Int(0),
PublicAccessProperties: &fileshares.PublicAccessPropertiesArgs{
AllowedSubnets: pulumi.StringArray{
pulumi.String("string"),
},
},
PublicNetworkAccess: pulumi.String("string"),
Redundancy: pulumi.String("string"),
},
ResourceName: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var fileShareResource = new com.pulumi.azurenative.fileshares.FileShare("fileShareResource", com.pulumi.azurenative.fileshares.FileShareArgs.builder()
.resourceGroupName("string")
.location("string")
.properties(FileSharePropertiesArgs.builder()
.mediaTier("string")
.mountName("string")
.nfsProtocolProperties(NfsProtocolPropertiesArgs.builder()
.rootSquash("string")
.build())
.protocol("string")
.provisionedIOPerSec(0)
.provisionedStorageGiB(0)
.provisionedThroughputMiBPerSec(0)
.publicAccessProperties(PublicAccessPropertiesArgs.builder()
.allowedSubnets("string")
.build())
.publicNetworkAccess("string")
.redundancy("string")
.build())
.resourceName("string")
.tags(Map.of("string", "string"))
.build());
file_share_resource = azure_native.fileshares.FileShare("fileShareResource",
resource_group_name="string",
location="string",
properties={
"media_tier": "string",
"mount_name": "string",
"nfs_protocol_properties": {
"root_squash": "string",
},
"protocol": "string",
"provisioned_io_per_sec": 0,
"provisioned_storage_gi_b": 0,
"provisioned_throughput_mi_b_per_sec": 0,
"public_access_properties": {
"allowed_subnets": ["string"],
},
"public_network_access": "string",
"redundancy": "string",
},
resource_name_="string",
tags={
"string": "string",
})
const fileShareResource = new azure_native.fileshares.FileShare("fileShareResource", {
resourceGroupName: "string",
location: "string",
properties: {
mediaTier: "string",
mountName: "string",
nfsProtocolProperties: {
rootSquash: "string",
},
protocol: "string",
provisionedIOPerSec: 0,
provisionedStorageGiB: 0,
provisionedThroughputMiBPerSec: 0,
publicAccessProperties: {
allowedSubnets: ["string"],
},
publicNetworkAccess: "string",
redundancy: "string",
},
resourceName: "string",
tags: {
string: "string",
},
});
type: azure-native:fileshares:FileShare
properties:
location: string
properties:
mediaTier: string
mountName: string
nfsProtocolProperties:
rootSquash: string
protocol: string
provisionedIOPerSec: 0
provisionedStorageGiB: 0
provisionedThroughputMiBPerSec: 0
publicAccessProperties:
allowedSubnets:
- string
publicNetworkAccess: string
redundancy: string
resourceGroupName: string
resourceName: string
tags:
string: string
FileShare 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 FileShare resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Location string
- The geo-location where the resource lives
- Properties
Pulumi.
Azure Native. File Shares. Inputs. File Share Properties - The resource-specific properties for this resource.
- Resource
Name string - The resource name of the file share, as seen by the administrator through Azure Resource Manager.
- Dictionary<string, string>
- Resource tags.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Location string
- The geo-location where the resource lives
- Properties
File
Share Properties Args - The resource-specific properties for this resource.
- Resource
Name string - The resource name of the file share, as seen by the administrator through Azure Resource Manager.
- map[string]string
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- location String
- The geo-location where the resource lives
- properties
File
Share Properties - The resource-specific properties for this resource.
- resource
Name String - The resource name of the file share, as seen by the administrator through Azure Resource Manager.
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- location string
- The geo-location where the resource lives
- properties
File
Share Properties - The resource-specific properties for this resource.
- resource
Name string - The resource name of the file share, as seen by the administrator through Azure Resource Manager.
- {[key: string]: string}
- Resource tags.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- location str
- The geo-location where the resource lives
- properties
File
Share Properties Args - The resource-specific properties for this resource.
- resource_
name str - The resource name of the file share, as seen by the administrator through Azure Resource Manager.
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- location String
- The geo-location where the resource lives
- properties Property Map
- The resource-specific properties for this resource.
- resource
Name String - The resource name of the file share, as seen by the administrator through Azure Resource Manager.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the FileShare resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. File Shares. 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"
- Azure
Api stringVersion - The Azure API version of the resource.
- 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"
- azure
Api StringVersion - The Azure API version of the resource.
- 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"
- azure
Api stringVersion - The Azure API version of the resource.
- 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"
- azure_
api_ strversion - The Azure API version of the resource.
- 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"
- azure
Api StringVersion - The Azure API version of the resource.
- 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
FileShareProperties, FileSharePropertiesArgs
- Media
Tier string | Pulumi.Azure Native. File Shares. Media Tier - The storage media tier of the file share.
- Mount
Name string - The name of the file share as seen by the end user when mounting the share, such as in a URI or UNC format in their operating system.
- Nfs
Protocol Pulumi.Properties Azure Native. File Shares. Inputs. Nfs Protocol Properties - Protocol settings specific NFS.
- Protocol
string | Pulumi.
Azure Native. File Shares. Protocol - The file sharing protocol for this file share.
- Provisioned
IOPer intSec - The provisioned IO / sec of the share.
- Provisioned
Storage intGi B - The provisioned storage size of the share in GiB (1 GiB is 1024^3 bytes or 1073741824 bytes). A component of the file share's bill is the provisioned storage, regardless of the amount of used storage.
- Provisioned
Throughput intMi BPer Sec - The provisioned throughput / sec of the share.
- Public
Access Pulumi.Properties Azure Native. File Shares. Inputs. Public Access Properties - The set of properties for control public access.
- Public
Network string | Pulumi.Access Azure Native. File Shares. Public Network Access - Gets or sets allow or disallow public network access to azure managed file share
- Redundancy
string | Pulumi.
Azure Native. File Shares. Redundancy - The chosen redundancy level of the file share.
- Media
Tier string | MediaTier - The storage media tier of the file share.
- Mount
Name string - The name of the file share as seen by the end user when mounting the share, such as in a URI or UNC format in their operating system.
- Nfs
Protocol NfsProperties Protocol Properties - Protocol settings specific NFS.
- Protocol string | Protocol
- The file sharing protocol for this file share.
- Provisioned
IOPer intSec - The provisioned IO / sec of the share.
- Provisioned
Storage intGi B - The provisioned storage size of the share in GiB (1 GiB is 1024^3 bytes or 1073741824 bytes). A component of the file share's bill is the provisioned storage, regardless of the amount of used storage.
- Provisioned
Throughput intMi BPer Sec - The provisioned throughput / sec of the share.
- Public
Access PublicProperties Access Properties - The set of properties for control public access.
- Public
Network string | PublicAccess Network Access - Gets or sets allow or disallow public network access to azure managed file share
- Redundancy string | Redundancy
- The chosen redundancy level of the file share.
- media
Tier String | MediaTier - The storage media tier of the file share.
- mount
Name String - The name of the file share as seen by the end user when mounting the share, such as in a URI or UNC format in their operating system.
- nfs
Protocol NfsProperties Protocol Properties - Protocol settings specific NFS.
- protocol String | Protocol
- The file sharing protocol for this file share.
- provisioned
IOPer IntegerSec - The provisioned IO / sec of the share.
- provisioned
Storage IntegerGi B - The provisioned storage size of the share in GiB (1 GiB is 1024^3 bytes or 1073741824 bytes). A component of the file share's bill is the provisioned storage, regardless of the amount of used storage.
- provisioned
Throughput IntegerMi BPer Sec - The provisioned throughput / sec of the share.
- public
Access PublicProperties Access Properties - The set of properties for control public access.
- public
Network String | PublicAccess Network Access - Gets or sets allow or disallow public network access to azure managed file share
- redundancy String | Redundancy
- The chosen redundancy level of the file share.
- media
Tier string | MediaTier - The storage media tier of the file share.
- mount
Name string - The name of the file share as seen by the end user when mounting the share, such as in a URI or UNC format in their operating system.
- nfs
Protocol NfsProperties Protocol Properties - Protocol settings specific NFS.
- protocol string | Protocol
- The file sharing protocol for this file share.
- provisioned
IOPer numberSec - The provisioned IO / sec of the share.
- provisioned
Storage numberGi B - The provisioned storage size of the share in GiB (1 GiB is 1024^3 bytes or 1073741824 bytes). A component of the file share's bill is the provisioned storage, regardless of the amount of used storage.
- provisioned
Throughput numberMi BPer Sec - The provisioned throughput / sec of the share.
- public
Access PublicProperties Access Properties - The set of properties for control public access.
- public
Network string | PublicAccess Network Access - Gets or sets allow or disallow public network access to azure managed file share
- redundancy string | Redundancy
- The chosen redundancy level of the file share.
- media_
tier str | MediaTier - The storage media tier of the file share.
- mount_
name str - The name of the file share as seen by the end user when mounting the share, such as in a URI or UNC format in their operating system.
- nfs_
protocol_ Nfsproperties Protocol Properties - Protocol settings specific NFS.
- protocol str | Protocol
- The file sharing protocol for this file share.
- provisioned_
io_ intper_ sec - The provisioned IO / sec of the share.
- provisioned_
storage_ intgi_ b - The provisioned storage size of the share in GiB (1 GiB is 1024^3 bytes or 1073741824 bytes). A component of the file share's bill is the provisioned storage, regardless of the amount of used storage.
- provisioned_
throughput_ intmi_ b_ per_ sec - The provisioned throughput / sec of the share.
- public_
access_ Publicproperties Access Properties - The set of properties for control public access.
- public_
network_ str | Publicaccess Network Access - Gets or sets allow or disallow public network access to azure managed file share
- redundancy str | Redundancy
- The chosen redundancy level of the file share.
- media
Tier String | "SSD" - The storage media tier of the file share.
- mount
Name String - The name of the file share as seen by the end user when mounting the share, such as in a URI or UNC format in their operating system.
- nfs
Protocol Property MapProperties - Protocol settings specific NFS.
- protocol String | "NFS"
- The file sharing protocol for this file share.
- provisioned
IOPer NumberSec - The provisioned IO / sec of the share.
- provisioned
Storage NumberGi B - The provisioned storage size of the share in GiB (1 GiB is 1024^3 bytes or 1073741824 bytes). A component of the file share's bill is the provisioned storage, regardless of the amount of used storage.
- provisioned
Throughput NumberMi BPer Sec - The provisioned throughput / sec of the share.
- public
Access Property MapProperties - The set of properties for control public access.
- public
Network String | "Enabled" | "Disabled"Access - Gets or sets allow or disallow public network access to azure managed file share
- redundancy String | "Local" | "Zone"
- The chosen redundancy level of the file share.
FileSharePropertiesResponse, FileSharePropertiesResponseArgs
- Host
Name string - The host name of the file share.
- Included
Burst intIOPer Sec - Burst IOPS are extra buffer IOPS enabling you to consume more than your provisioned IOPS for a short period of time, depending on the burst credits available for your share.
- Max
Burst doubleIOPer Sec Credits - Max burst IOPS credits shows the maximum number of burst credits the share can have at the current IOPS provisioning level.
- Private
Endpoint List<Pulumi.Connections Azure Native. File Shares. Inputs. Private Endpoint Connection Response> - The list of associated private endpoint connections.
- Provisioned
IOPer stringSec Next Allowed Downgrade - A date/time value that specifies when the provisioned IOPS for the file share is permitted to be reduced.
- Provisioned
Storage stringNext Allowed Downgrade - A date/time value that specifies when the provisioned storage for the file share is permitted to be reduced.
- Provisioned
Throughput stringNext Allowed Downgrade - A date/time value that specifies when the provisioned throughput for the file share is permitted to be reduced.
- Provisioning
State string - The status of the last operation.
- Media
Tier string - The storage media tier of the file share.
- Mount
Name string - The name of the file share as seen by the end user when mounting the share, such as in a URI or UNC format in their operating system.
- Nfs
Protocol Pulumi.Properties Azure Native. File Shares. Inputs. Nfs Protocol Properties Response - Protocol settings specific NFS.
- Protocol string
- The file sharing protocol for this file share.
- Provisioned
IOPer intSec - The provisioned IO / sec of the share.
- Provisioned
Storage intGi B - The provisioned storage size of the share in GiB (1 GiB is 1024^3 bytes or 1073741824 bytes). A component of the file share's bill is the provisioned storage, regardless of the amount of used storage.
- Provisioned
Throughput intMi BPer Sec - The provisioned throughput / sec of the share.
- Public
Access Pulumi.Properties Azure Native. File Shares. Inputs. Public Access Properties Response - The set of properties for control public access.
- Public
Network stringAccess - Gets or sets allow or disallow public network access to azure managed file share
- Redundancy string
- The chosen redundancy level of the file share.
- Host
Name string - The host name of the file share.
- Included
Burst intIOPer Sec - Burst IOPS are extra buffer IOPS enabling you to consume more than your provisioned IOPS for a short period of time, depending on the burst credits available for your share.
- Max
Burst float64IOPer Sec Credits - Max burst IOPS credits shows the maximum number of burst credits the share can have at the current IOPS provisioning level.
- Private
Endpoint []PrivateConnections Endpoint Connection Response - The list of associated private endpoint connections.
- Provisioned
IOPer stringSec Next Allowed Downgrade - A date/time value that specifies when the provisioned IOPS for the file share is permitted to be reduced.
- Provisioned
Storage stringNext Allowed Downgrade - A date/time value that specifies when the provisioned storage for the file share is permitted to be reduced.
- Provisioned
Throughput stringNext Allowed Downgrade - A date/time value that specifies when the provisioned throughput for the file share is permitted to be reduced.
- Provisioning
State string - The status of the last operation.
- Media
Tier string - The storage media tier of the file share.
- Mount
Name string - The name of the file share as seen by the end user when mounting the share, such as in a URI or UNC format in their operating system.
- Nfs
Protocol NfsProperties Protocol Properties Response - Protocol settings specific NFS.
- Protocol string
- The file sharing protocol for this file share.
- Provisioned
IOPer intSec - The provisioned IO / sec of the share.
- Provisioned
Storage intGi B - The provisioned storage size of the share in GiB (1 GiB is 1024^3 bytes or 1073741824 bytes). A component of the file share's bill is the provisioned storage, regardless of the amount of used storage.
- Provisioned
Throughput intMi BPer Sec - The provisioned throughput / sec of the share.
- Public
Access PublicProperties Access Properties Response - The set of properties for control public access.
- Public
Network stringAccess - Gets or sets allow or disallow public network access to azure managed file share
- Redundancy string
- The chosen redundancy level of the file share.
- host
Name String - The host name of the file share.
- included
Burst IntegerIOPer Sec - Burst IOPS are extra buffer IOPS enabling you to consume more than your provisioned IOPS for a short period of time, depending on the burst credits available for your share.
- max
Burst DoubleIOPer Sec Credits - Max burst IOPS credits shows the maximum number of burst credits the share can have at the current IOPS provisioning level.
- private
Endpoint List<PrivateConnections Endpoint Connection Response> - The list of associated private endpoint connections.
- provisioned
IOPer StringSec Next Allowed Downgrade - A date/time value that specifies when the provisioned IOPS for the file share is permitted to be reduced.
- provisioned
Storage StringNext Allowed Downgrade - A date/time value that specifies when the provisioned storage for the file share is permitted to be reduced.
- provisioned
Throughput StringNext Allowed Downgrade - A date/time value that specifies when the provisioned throughput for the file share is permitted to be reduced.
- provisioning
State String - The status of the last operation.
- media
Tier String - The storage media tier of the file share.
- mount
Name String - The name of the file share as seen by the end user when mounting the share, such as in a URI or UNC format in their operating system.
- nfs
Protocol NfsProperties Protocol Properties Response - Protocol settings specific NFS.
- protocol String
- The file sharing protocol for this file share.
- provisioned
IOPer IntegerSec - The provisioned IO / sec of the share.
- provisioned
Storage IntegerGi B - The provisioned storage size of the share in GiB (1 GiB is 1024^3 bytes or 1073741824 bytes). A component of the file share's bill is the provisioned storage, regardless of the amount of used storage.
- provisioned
Throughput IntegerMi BPer Sec - The provisioned throughput / sec of the share.
- public
Access PublicProperties Access Properties Response - The set of properties for control public access.
- public
Network StringAccess - Gets or sets allow or disallow public network access to azure managed file share
- redundancy String
- The chosen redundancy level of the file share.
- host
Name string - The host name of the file share.
- included
Burst numberIOPer Sec - Burst IOPS are extra buffer IOPS enabling you to consume more than your provisioned IOPS for a short period of time, depending on the burst credits available for your share.
- max
Burst numberIOPer Sec Credits - Max burst IOPS credits shows the maximum number of burst credits the share can have at the current IOPS provisioning level.
- private
Endpoint PrivateConnections Endpoint Connection Response[] - The list of associated private endpoint connections.
- provisioned
IOPer stringSec Next Allowed Downgrade - A date/time value that specifies when the provisioned IOPS for the file share is permitted to be reduced.
- provisioned
Storage stringNext Allowed Downgrade - A date/time value that specifies when the provisioned storage for the file share is permitted to be reduced.
- provisioned
Throughput stringNext Allowed Downgrade - A date/time value that specifies when the provisioned throughput for the file share is permitted to be reduced.
- provisioning
State string - The status of the last operation.
- media
Tier string - The storage media tier of the file share.
- mount
Name string - The name of the file share as seen by the end user when mounting the share, such as in a URI or UNC format in their operating system.
- nfs
Protocol NfsProperties Protocol Properties Response - Protocol settings specific NFS.
- protocol string
- The file sharing protocol for this file share.
- provisioned
IOPer numberSec - The provisioned IO / sec of the share.
- provisioned
Storage numberGi B - The provisioned storage size of the share in GiB (1 GiB is 1024^3 bytes or 1073741824 bytes). A component of the file share's bill is the provisioned storage, regardless of the amount of used storage.
- provisioned
Throughput numberMi BPer Sec - The provisioned throughput / sec of the share.
- public
Access PublicProperties Access Properties Response - The set of properties for control public access.
- public
Network stringAccess - Gets or sets allow or disallow public network access to azure managed file share
- redundancy string
- The chosen redundancy level of the file share.
- host_
name str - The host name of the file share.
- included_
burst_ intio_ per_ sec - Burst IOPS are extra buffer IOPS enabling you to consume more than your provisioned IOPS for a short period of time, depending on the burst credits available for your share.
- max_
burst_ floatio_ per_ sec_ credits - Max burst IOPS credits shows the maximum number of burst credits the share can have at the current IOPS provisioning level.
- private_
endpoint_ Sequence[Privateconnections Endpoint Connection Response] - The list of associated private endpoint connections.
- provisioned_
io_ strper_ sec_ next_ allowed_ downgrade - A date/time value that specifies when the provisioned IOPS for the file share is permitted to be reduced.
- provisioned_
storage_ strnext_ allowed_ downgrade - A date/time value that specifies when the provisioned storage for the file share is permitted to be reduced.
- provisioned_
throughput_ strnext_ allowed_ downgrade - A date/time value that specifies when the provisioned throughput for the file share is permitted to be reduced.
- provisioning_
state str - The status of the last operation.
- media_
tier str - The storage media tier of the file share.
- mount_
name str - The name of the file share as seen by the end user when mounting the share, such as in a URI or UNC format in their operating system.
- nfs_
protocol_ Nfsproperties Protocol Properties Response - Protocol settings specific NFS.
- protocol str
- The file sharing protocol for this file share.
- provisioned_
io_ intper_ sec - The provisioned IO / sec of the share.
- provisioned_
storage_ intgi_ b - The provisioned storage size of the share in GiB (1 GiB is 1024^3 bytes or 1073741824 bytes). A component of the file share's bill is the provisioned storage, regardless of the amount of used storage.
- provisioned_
throughput_ intmi_ b_ per_ sec - The provisioned throughput / sec of the share.
- public_
access_ Publicproperties Access Properties Response - The set of properties for control public access.
- public_
network_ straccess - Gets or sets allow or disallow public network access to azure managed file share
- redundancy str
- The chosen redundancy level of the file share.
- host
Name String - The host name of the file share.
- included
Burst NumberIOPer Sec - Burst IOPS are extra buffer IOPS enabling you to consume more than your provisioned IOPS for a short period of time, depending on the burst credits available for your share.
- max
Burst NumberIOPer Sec Credits - Max burst IOPS credits shows the maximum number of burst credits the share can have at the current IOPS provisioning level.
- private
Endpoint List<Property Map>Connections - The list of associated private endpoint connections.
- provisioned
IOPer StringSec Next Allowed Downgrade - A date/time value that specifies when the provisioned IOPS for the file share is permitted to be reduced.
- provisioned
Storage StringNext Allowed Downgrade - A date/time value that specifies when the provisioned storage for the file share is permitted to be reduced.
- provisioned
Throughput StringNext Allowed Downgrade - A date/time value that specifies when the provisioned throughput for the file share is permitted to be reduced.
- provisioning
State String - The status of the last operation.
- media
Tier String - The storage media tier of the file share.
- mount
Name String - The name of the file share as seen by the end user when mounting the share, such as in a URI or UNC format in their operating system.
- nfs
Protocol Property MapProperties - Protocol settings specific NFS.
- protocol String
- The file sharing protocol for this file share.
- provisioned
IOPer NumberSec - The provisioned IO / sec of the share.
- provisioned
Storage NumberGi B - The provisioned storage size of the share in GiB (1 GiB is 1024^3 bytes or 1073741824 bytes). A component of the file share's bill is the provisioned storage, regardless of the amount of used storage.
- provisioned
Throughput NumberMi BPer Sec - The provisioned throughput / sec of the share.
- public
Access Property MapProperties - The set of properties for control public access.
- public
Network StringAccess - Gets or sets allow or disallow public network access to azure managed file share
- redundancy String
- The chosen redundancy level of the file share.
MediaTier, MediaTierArgs
- SSD
- SSDSSD media tier.
- Media
Tier SSD - SSDSSD media tier.
- SSD
- SSDSSD media tier.
- SSD
- SSDSSD media tier.
- SSD
- SSDSSD media tier.
- "SSD"
- SSDSSD media tier.
NfsProtocolProperties, NfsProtocolPropertiesArgs
- Root
Squash string | Pulumi.Azure Native. File Shares. Share Root Squash - Root squash defines how root users on clients are mapped to the NFS share.
- Root
Squash string | ShareRoot Squash - Root squash defines how root users on clients are mapped to the NFS share.
- root
Squash String | ShareRoot Squash - Root squash defines how root users on clients are mapped to the NFS share.
- root
Squash string | ShareRoot Squash - Root squash defines how root users on clients are mapped to the NFS share.
- root_
squash str | ShareRoot Squash - Root squash defines how root users on clients are mapped to the NFS share.
- root
Squash String | "NoRoot Squash" | "Root Squash" | "All Squash" - Root squash defines how root users on clients are mapped to the NFS share.
NfsProtocolPropertiesResponse, NfsProtocolPropertiesResponseArgs
- Root
Squash string - Root squash defines how root users on clients are mapped to the NFS share.
- Root
Squash string - Root squash defines how root users on clients are mapped to the NFS share.
- root
Squash String - Root squash defines how root users on clients are mapped to the NFS share.
- root
Squash string - Root squash defines how root users on clients are mapped to the NFS share.
- root_
squash str - Root squash defines how root users on clients are mapped to the NFS share.
- root
Squash String - Root squash defines how root users on clients are mapped to the NFS share.
PrivateEndpointConnectionResponse, PrivateEndpointConnectionResponseArgs
- Group
Ids List<string> - The group ids for the private endpoint resource.
- Id string
- Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- Name string
- The name of the resource
- Private
Link Pulumi.Service Connection State Azure Native. File Shares. Inputs. Private Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- Provisioning
State string - The provisioning state of the private endpoint connection resource.
- System
Data Pulumi.Azure Native. File Shares. Inputs. 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"
- Private
Endpoint Pulumi.Azure Native. File Shares. Inputs. Private Endpoint Response - The private endpoint resource.
- Group
Ids []string - The group ids for the private endpoint resource.
- Id string
- Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- Name string
- The name of the resource
- Private
Link PrivateService Connection State Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- Provisioning
State string - The provisioning state of the private endpoint connection 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"
- Private
Endpoint PrivateEndpoint Response - The private endpoint resource.
- group
Ids List<String> - The group ids for the private endpoint resource.
- id String
- Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- name String
- The name of the resource
- private
Link PrivateService Connection State Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- provisioning
State String - The provisioning state of the private endpoint connection 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"
- private
Endpoint PrivateEndpoint Response - The private endpoint resource.
- group
Ids string[] - The group ids for the private endpoint resource.
- id string
- Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- name string
- The name of the resource
- private
Link PrivateService Connection State Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- provisioning
State string - The provisioning state of the private endpoint connection 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"
- private
Endpoint PrivateEndpoint Response - The private endpoint resource.
- group_
ids Sequence[str] - The group ids for the private endpoint resource.
- id str
- Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- name str
- The name of the resource
- private_
link_ Privateservice_ connection_ state Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- provisioning_
state str - The provisioning state of the private endpoint connection 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"
- private_
endpoint PrivateEndpoint Response - The private endpoint resource.
- group
Ids List<String> - The group ids for the private endpoint resource.
- id String
- Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- name String
- The name of the resource
- private
Link Property MapService Connection State - A collection of information about the state of the connection between service consumer and provider.
- provisioning
State String - The provisioning state of the private endpoint connection 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"
- private
Endpoint Property Map - The private endpoint resource.
PrivateEndpointResponse, PrivateEndpointResponseArgs
- Id string
- The ARM identifier for private endpoint.
- Id string
- The ARM identifier for private endpoint.
- id String
- The ARM identifier for private endpoint.
- id string
- The ARM identifier for private endpoint.
- id str
- The ARM identifier for private endpoint.
- id String
- The ARM identifier for private endpoint.
PrivateLinkServiceConnectionStateResponse, PrivateLinkServiceConnectionStateResponseArgs
- Actions
Required string - A message indicating if changes on the service provider require any updates on the consumer.
- Description string
- The reason for approval/rejection of the connection.
- Status string
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- Actions
Required string - A message indicating if changes on the service provider require any updates on the consumer.
- Description string
- The reason for approval/rejection of the connection.
- Status string
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actions
Required String - A message indicating if changes on the service provider require any updates on the consumer.
- description String
- The reason for approval/rejection of the connection.
- status String
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actions
Required string - A message indicating if changes on the service provider require any updates on the consumer.
- description string
- The reason for approval/rejection of the connection.
- status string
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actions_
required str - A message indicating if changes on the service provider require any updates on the consumer.
- description str
- The reason for approval/rejection of the connection.
- status str
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actions
Required String - A message indicating if changes on the service provider require any updates on the consumer.
- description String
- The reason for approval/rejection of the connection.
- status String
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
Protocol, ProtocolArgs
- NFS
- NFSNFS protocol.
- Protocol
NFS - NFSNFS protocol.
- NFS
- NFSNFS protocol.
- NFS
- NFSNFS protocol.
- NFS
- NFSNFS protocol.
- "NFS"
- NFSNFS protocol.
PublicAccessProperties, PublicAccessPropertiesArgs
- Allowed
Subnets List<string> - The allowed set of subnets when access is restricted.
- Allowed
Subnets []string - The allowed set of subnets when access is restricted.
- allowed
Subnets List<String> - The allowed set of subnets when access is restricted.
- allowed
Subnets string[] - The allowed set of subnets when access is restricted.
- allowed_
subnets Sequence[str] - The allowed set of subnets when access is restricted.
- allowed
Subnets List<String> - The allowed set of subnets when access is restricted.
PublicAccessPropertiesResponse, PublicAccessPropertiesResponseArgs
- Allowed
Subnets List<string> - The allowed set of subnets when access is restricted.
- Allowed
Subnets []string - The allowed set of subnets when access is restricted.
- allowed
Subnets List<String> - The allowed set of subnets when access is restricted.
- allowed
Subnets string[] - The allowed set of subnets when access is restricted.
- allowed_
subnets Sequence[str] - The allowed set of subnets when access is restricted.
- allowed
Subnets List<String> - The allowed set of subnets when access is restricted.
PublicNetworkAccess, PublicNetworkAccessArgs
- Enabled
- EnabledThe public network access is enabled
- Disabled
- DisabledThe public network access is disabled
- Public
Network Access Enabled - EnabledThe public network access is enabled
- Public
Network Access Disabled - DisabledThe public network access is disabled
- Enabled
- EnabledThe public network access is enabled
- Disabled
- DisabledThe public network access is disabled
- Enabled
- EnabledThe public network access is enabled
- Disabled
- DisabledThe public network access is disabled
- ENABLED
- EnabledThe public network access is enabled
- DISABLED
- DisabledThe public network access is disabled
- "Enabled"
- EnabledThe public network access is enabled
- "Disabled"
- DisabledThe public network access is disabled
Redundancy, RedundancyArgs
- Local
- LocalLocal redundancy.
- Zone
- ZoneZone redundancy.
- Redundancy
Local - LocalLocal redundancy.
- Redundancy
Zone - ZoneZone redundancy.
- Local
- LocalLocal redundancy.
- Zone
- ZoneZone redundancy.
- Local
- LocalLocal redundancy.
- Zone
- ZoneZone redundancy.
- LOCAL
- LocalLocal redundancy.
- ZONE
- ZoneZone redundancy.
- "Local"
- LocalLocal redundancy.
- "Zone"
- ZoneZone redundancy.
ShareRootSquash, ShareRootSquashArgs
- No
Root Squash - NoRootSquashNo root squash.
- Root
Squash - RootSquashRoot squash.
- All
Squash - AllSquashAll squash.
- Share
Root Squash No Root Squash - NoRootSquashNo root squash.
- Share
Root Squash Root Squash - RootSquashRoot squash.
- Share
Root Squash All Squash - AllSquashAll squash.
- No
Root Squash - NoRootSquashNo root squash.
- Root
Squash - RootSquashRoot squash.
- All
Squash - AllSquashAll squash.
- No
Root Squash - NoRootSquashNo root squash.
- Root
Squash - RootSquashRoot squash.
- All
Squash - AllSquashAll squash.
- NO_ROOT_SQUASH
- NoRootSquashNo root squash.
- ROOT_SQUASH
- RootSquashRoot squash.
- ALL_SQUASH
- AllSquashAll squash.
- "No
Root Squash" - NoRootSquashNo root squash.
- "Root
Squash" - RootSquashRoot squash.
- "All
Squash" - AllSquashAll squash.
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:fileshares:FileShare fileshare /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.FileShares/fileShares/{resourceName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0