1. Packages
  2. Azure Native v2
  3. API Docs
  4. networkcloud
  5. StorageAppliance
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.networkcloud.StorageAppliance

Explore with Pulumi AI

These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

Azure REST API version: 2023-10-01-preview. Prior API version in Azure Native 1.x: 2022-12-12-preview.

Other available API versions: 2023-07-01, 2024-06-01-preview, 2024-07-01, 2024-10-01-preview.

Example Usage

Create or update storage appliance

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

return await Deployment.RunAsync(() => 
{
    var storageAppliance = new AzureNative.NetworkCloud.StorageAppliance("storageAppliance", new()
    {
        AdministratorCredentials = new AzureNative.NetworkCloud.Inputs.AdministrativeCredentialsArgs
        {
            Password = "{password}",
            Username = "adminUser",
        },
        ExtendedLocation = new AzureNative.NetworkCloud.Inputs.ExtendedLocationArgs
        {
            Name = "/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName",
            Type = "CustomLocation",
        },
        Location = "location",
        RackId = "/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.NetworkCloud/racks/rackName",
        RackSlot = 1,
        ResourceGroupName = "resourceGroupName",
        SerialNumber = "BM1219XXX",
        StorageApplianceName = "storageApplianceName",
        StorageApplianceSkuId = "684E-3B16-399E",
        Tags = 
        {
            { "key1", "myvalue1" },
            { "key2", "myvalue2" },
        },
    });

});
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := networkcloud.NewStorageAppliance(ctx, "storageAppliance", &networkcloud.StorageApplianceArgs{
			AdministratorCredentials: &networkcloud.AdministrativeCredentialsArgs{
				Password: pulumi.String("{password}"),
				Username: pulumi.String("adminUser"),
			},
			ExtendedLocation: &networkcloud.ExtendedLocationArgs{
				Name: pulumi.String("/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName"),
				Type: pulumi.String("CustomLocation"),
			},
			Location:              pulumi.String("location"),
			RackId:                pulumi.String("/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.NetworkCloud/racks/rackName"),
			RackSlot:              pulumi.Float64(1),
			ResourceGroupName:     pulumi.String("resourceGroupName"),
			SerialNumber:          pulumi.String("BM1219XXX"),
			StorageApplianceName:  pulumi.String("storageApplianceName"),
			StorageApplianceSkuId: pulumi.String("684E-3B16-399E"),
			Tags: pulumi.StringMap{
				"key1": pulumi.String("myvalue1"),
				"key2": pulumi.String("myvalue2"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.networkcloud.StorageAppliance;
import com.pulumi.azurenative.networkcloud.StorageApplianceArgs;
import com.pulumi.azurenative.networkcloud.inputs.AdministrativeCredentialsArgs;
import com.pulumi.azurenative.networkcloud.inputs.ExtendedLocationArgs;
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 storageAppliance = new StorageAppliance("storageAppliance", StorageApplianceArgs.builder()
            .administratorCredentials(AdministrativeCredentialsArgs.builder()
                .password("{password}")
                .username("adminUser")
                .build())
            .extendedLocation(ExtendedLocationArgs.builder()
                .name("/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName")
                .type("CustomLocation")
                .build())
            .location("location")
            .rackId("/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.NetworkCloud/racks/rackName")
            .rackSlot(1)
            .resourceGroupName("resourceGroupName")
            .serialNumber("BM1219XXX")
            .storageApplianceName("storageApplianceName")
            .storageApplianceSkuId("684E-3B16-399E")
            .tags(Map.ofEntries(
                Map.entry("key1", "myvalue1"),
                Map.entry("key2", "myvalue2")
            ))
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const storageAppliance = new azure_native.networkcloud.StorageAppliance("storageAppliance", {
    administratorCredentials: {
        password: "{password}",
        username: "adminUser",
    },
    extendedLocation: {
        name: "/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName",
        type: "CustomLocation",
    },
    location: "location",
    rackId: "/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.NetworkCloud/racks/rackName",
    rackSlot: 1,
    resourceGroupName: "resourceGroupName",
    serialNumber: "BM1219XXX",
    storageApplianceName: "storageApplianceName",
    storageApplianceSkuId: "684E-3B16-399E",
    tags: {
        key1: "myvalue1",
        key2: "myvalue2",
    },
});
Copy
import pulumi
import pulumi_azure_native as azure_native

storage_appliance = azure_native.networkcloud.StorageAppliance("storageAppliance",
    administrator_credentials={
        "password": "{password}",
        "username": "adminUser",
    },
    extended_location={
        "name": "/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName",
        "type": "CustomLocation",
    },
    location="location",
    rack_id="/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.NetworkCloud/racks/rackName",
    rack_slot=1,
    resource_group_name="resourceGroupName",
    serial_number="BM1219XXX",
    storage_appliance_name="storageApplianceName",
    storage_appliance_sku_id="684E-3B16-399E",
    tags={
        "key1": "myvalue1",
        "key2": "myvalue2",
    })
Copy
resources:
  storageAppliance:
    type: azure-native:networkcloud:StorageAppliance
    properties:
      administratorCredentials:
        password: '{password}'
        username: adminUser
      extendedLocation:
        name: /subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName
        type: CustomLocation
      location: location
      rackId: /subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.NetworkCloud/racks/rackName
      rackSlot: 1
      resourceGroupName: resourceGroupName
      serialNumber: BM1219XXX
      storageApplianceName: storageApplianceName
      storageApplianceSkuId: 684E-3B16-399E
      tags:
        key1: myvalue1
        key2: myvalue2
Copy

Create StorageAppliance Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new StorageAppliance(name: string, args: StorageApplianceArgs, opts?: CustomResourceOptions);
@overload
def StorageAppliance(resource_name: str,
                     args: StorageApplianceArgs,
                     opts: Optional[ResourceOptions] = None)

@overload
def StorageAppliance(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     administrator_credentials: Optional[AdministrativeCredentialsArgs] = None,
                     extended_location: Optional[ExtendedLocationArgs] = None,
                     rack_id: Optional[str] = None,
                     rack_slot: Optional[float] = None,
                     resource_group_name: Optional[str] = None,
                     serial_number: Optional[str] = None,
                     storage_appliance_sku_id: Optional[str] = None,
                     location: Optional[str] = None,
                     storage_appliance_name: Optional[str] = None,
                     tags: Optional[Mapping[str, str]] = None)
func NewStorageAppliance(ctx *Context, name string, args StorageApplianceArgs, opts ...ResourceOption) (*StorageAppliance, error)
public StorageAppliance(string name, StorageApplianceArgs args, CustomResourceOptions? opts = null)
public StorageAppliance(String name, StorageApplianceArgs args)
public StorageAppliance(String name, StorageApplianceArgs args, CustomResourceOptions options)
type: azure-native:networkcloud:StorageAppliance
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. StorageApplianceArgs
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. StorageApplianceArgs
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. StorageApplianceArgs
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. StorageApplianceArgs
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. StorageApplianceArgs
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 storageApplianceResource = new AzureNative.Networkcloud.StorageAppliance("storageApplianceResource", new()
{
    AdministratorCredentials = 
    {
        { "password", "string" },
        { "username", "string" },
    },
    ExtendedLocation = 
    {
        { "name", "string" },
        { "type", "string" },
    },
    RackId = "string",
    RackSlot = 0,
    ResourceGroupName = "string",
    SerialNumber = "string",
    StorageApplianceSkuId = "string",
    Location = "string",
    StorageApplianceName = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := networkcloud.NewStorageAppliance(ctx, "storageApplianceResource", &networkcloud.StorageApplianceArgs{
	AdministratorCredentials: map[string]interface{}{
		"password": "string",
		"username": "string",
	},
	ExtendedLocation: map[string]interface{}{
		"name": "string",
		"type": "string",
	},
	RackId:                "string",
	RackSlot:              0,
	ResourceGroupName:     "string",
	SerialNumber:          "string",
	StorageApplianceSkuId: "string",
	Location:              "string",
	StorageApplianceName:  "string",
	Tags: map[string]interface{}{
		"string": "string",
	},
})
Copy
var storageApplianceResource = new StorageAppliance("storageApplianceResource", StorageApplianceArgs.builder()
    .administratorCredentials(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .extendedLocation(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .rackId("string")
    .rackSlot(0)
    .resourceGroupName("string")
    .serialNumber("string")
    .storageApplianceSkuId("string")
    .location("string")
    .storageApplianceName("string")
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
storage_appliance_resource = azure_native.networkcloud.StorageAppliance("storageApplianceResource",
    administrator_credentials={
        password: string,
        username: string,
    },
    extended_location={
        name: string,
        type: string,
    },
    rack_id=string,
    rack_slot=0,
    resource_group_name=string,
    serial_number=string,
    storage_appliance_sku_id=string,
    location=string,
    storage_appliance_name=string,
    tags={
        string: string,
    })
Copy
const storageApplianceResource = new azure_native.networkcloud.StorageAppliance("storageApplianceResource", {
    administratorCredentials: {
        password: "string",
        username: "string",
    },
    extendedLocation: {
        name: "string",
        type: "string",
    },
    rackId: "string",
    rackSlot: 0,
    resourceGroupName: "string",
    serialNumber: "string",
    storageApplianceSkuId: "string",
    location: "string",
    storageApplianceName: "string",
    tags: {
        string: "string",
    },
});
Copy
type: azure-native:networkcloud:StorageAppliance
properties:
    administratorCredentials:
        password: string
        username: string
    extendedLocation:
        name: string
        type: string
    location: string
    rackId: string
    rackSlot: 0
    resourceGroupName: string
    serialNumber: string
    storageApplianceName: string
    storageApplianceSkuId: string
    tags:
        string: string
Copy

StorageAppliance 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 StorageAppliance resource accepts the following input properties:

AdministratorCredentials
This property is required.
Changes to this property will trigger replacement.
Pulumi.AzureNative.NetworkCloud.Inputs.AdministrativeCredentials
The credentials of the administrative interface on this storage appliance.
ExtendedLocation This property is required. Pulumi.AzureNative.NetworkCloud.Inputs.ExtendedLocation
The extended location of the cluster associated with the resource.
RackId
This property is required.
Changes to this property will trigger replacement.
string
The resource ID of the rack where this storage appliance resides.
RackSlot
This property is required.
Changes to this property will trigger replacement.
double
The slot the storage appliance is in the rack based on the BOM configuration.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
SerialNumber This property is required. string
The serial number for the storage appliance.
StorageApplianceSkuId
This property is required.
Changes to this property will trigger replacement.
string
The SKU for the storage appliance.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
StorageApplianceName Changes to this property will trigger replacement. string
The name of the storage appliance.
Tags Dictionary<string, string>
Resource tags.
AdministratorCredentials
This property is required.
Changes to this property will trigger replacement.
AdministrativeCredentialsArgs
The credentials of the administrative interface on this storage appliance.
ExtendedLocation This property is required. ExtendedLocationArgs
The extended location of the cluster associated with the resource.
RackId
This property is required.
Changes to this property will trigger replacement.
string
The resource ID of the rack where this storage appliance resides.
RackSlot
This property is required.
Changes to this property will trigger replacement.
float64
The slot the storage appliance is in the rack based on the BOM configuration.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
SerialNumber This property is required. string
The serial number for the storage appliance.
StorageApplianceSkuId
This property is required.
Changes to this property will trigger replacement.
string
The SKU for the storage appliance.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
StorageApplianceName Changes to this property will trigger replacement. string
The name of the storage appliance.
Tags map[string]string
Resource tags.
administratorCredentials
This property is required.
Changes to this property will trigger replacement.
AdministrativeCredentials
The credentials of the administrative interface on this storage appliance.
extendedLocation This property is required. ExtendedLocation
The extended location of the cluster associated with the resource.
rackId
This property is required.
Changes to this property will trigger replacement.
String
The resource ID of the rack where this storage appliance resides.
rackSlot
This property is required.
Changes to this property will trigger replacement.
Double
The slot the storage appliance is in the rack based on the BOM configuration.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
serialNumber This property is required. String
The serial number for the storage appliance.
storageApplianceSkuId
This property is required.
Changes to this property will trigger replacement.
String
The SKU for the storage appliance.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
storageApplianceName Changes to this property will trigger replacement. String
The name of the storage appliance.
tags Map<String,String>
Resource tags.
administratorCredentials
This property is required.
Changes to this property will trigger replacement.
AdministrativeCredentials
The credentials of the administrative interface on this storage appliance.
extendedLocation This property is required. ExtendedLocation
The extended location of the cluster associated with the resource.
rackId
This property is required.
Changes to this property will trigger replacement.
string
The resource ID of the rack where this storage appliance resides.
rackSlot
This property is required.
Changes to this property will trigger replacement.
number
The slot the storage appliance is in the rack based on the BOM configuration.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
serialNumber This property is required. string
The serial number for the storage appliance.
storageApplianceSkuId
This property is required.
Changes to this property will trigger replacement.
string
The SKU for the storage appliance.
location Changes to this property will trigger replacement. string
The geo-location where the resource lives
storageApplianceName Changes to this property will trigger replacement. string
The name of the storage appliance.
tags {[key: string]: string}
Resource tags.
administrator_credentials
This property is required.
Changes to this property will trigger replacement.
AdministrativeCredentialsArgs
The credentials of the administrative interface on this storage appliance.
extended_location This property is required. ExtendedLocationArgs
The extended location of the cluster associated with the resource.
rack_id
This property is required.
Changes to this property will trigger replacement.
str
The resource ID of the rack where this storage appliance resides.
rack_slot
This property is required.
Changes to this property will trigger replacement.
float
The slot the storage appliance is in the rack based on the BOM configuration.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
serial_number This property is required. str
The serial number for the storage appliance.
storage_appliance_sku_id
This property is required.
Changes to this property will trigger replacement.
str
The SKU for the storage appliance.
location Changes to this property will trigger replacement. str
The geo-location where the resource lives
storage_appliance_name Changes to this property will trigger replacement. str
The name of the storage appliance.
tags Mapping[str, str]
Resource tags.
administratorCredentials
This property is required.
Changes to this property will trigger replacement.
Property Map
The credentials of the administrative interface on this storage appliance.
extendedLocation This property is required. Property Map
The extended location of the cluster associated with the resource.
rackId
This property is required.
Changes to this property will trigger replacement.
String
The resource ID of the rack where this storage appliance resides.
rackSlot
This property is required.
Changes to this property will trigger replacement.
Number
The slot the storage appliance is in the rack based on the BOM configuration.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
serialNumber This property is required. String
The serial number for the storage appliance.
storageApplianceSkuId
This property is required.
Changes to this property will trigger replacement.
String
The SKU for the storage appliance.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
storageApplianceName Changes to this property will trigger replacement. String
The name of the storage appliance.
tags Map<String>
Resource tags.

Outputs

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

Capacity double
The total capacity of the storage appliance.
CapacityUsed double
The amount of storage consumed.
ClusterId string
The resource ID of the cluster this storage appliance is associated with.
DetailedStatus string
The detailed status of the storage appliance.
DetailedStatusMessage string
The descriptive message about the current detailed status.
Id string
The provider-assigned unique ID for this managed resource.
ManagementIpv4Address string
The endpoint for the management interface of the storage appliance.
Name string
The name of the resource
ProvisioningState string
The provisioning state of the storage appliance.
RemoteVendorManagementFeature string
The indicator of whether the storage appliance supports remote vendor management.
RemoteVendorManagementStatus string
The indicator of whether the remote vendor management feature is enabled or disabled, or unsupported if it is an unsupported feature.
SystemData Pulumi.AzureNative.NetworkCloud.Outputs.SystemDataResponse
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"
Capacity float64
The total capacity of the storage appliance.
CapacityUsed float64
The amount of storage consumed.
ClusterId string
The resource ID of the cluster this storage appliance is associated with.
DetailedStatus string
The detailed status of the storage appliance.
DetailedStatusMessage string
The descriptive message about the current detailed status.
Id string
The provider-assigned unique ID for this managed resource.
ManagementIpv4Address string
The endpoint for the management interface of the storage appliance.
Name string
The name of the resource
ProvisioningState string
The provisioning state of the storage appliance.
RemoteVendorManagementFeature string
The indicator of whether the storage appliance supports remote vendor management.
RemoteVendorManagementStatus string
The indicator of whether the remote vendor management feature is enabled or disabled, or unsupported if it is an unsupported feature.
SystemData SystemDataResponse
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"
capacity Double
The total capacity of the storage appliance.
capacityUsed Double
The amount of storage consumed.
clusterId String
The resource ID of the cluster this storage appliance is associated with.
detailedStatus String
The detailed status of the storage appliance.
detailedStatusMessage String
The descriptive message about the current detailed status.
id String
The provider-assigned unique ID for this managed resource.
managementIpv4Address String
The endpoint for the management interface of the storage appliance.
name String
The name of the resource
provisioningState String
The provisioning state of the storage appliance.
remoteVendorManagementFeature String
The indicator of whether the storage appliance supports remote vendor management.
remoteVendorManagementStatus String
The indicator of whether the remote vendor management feature is enabled or disabled, or unsupported if it is an unsupported feature.
systemData SystemDataResponse
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"
capacity number
The total capacity of the storage appliance.
capacityUsed number
The amount of storage consumed.
clusterId string
The resource ID of the cluster this storage appliance is associated with.
detailedStatus string
The detailed status of the storage appliance.
detailedStatusMessage string
The descriptive message about the current detailed status.
id string
The provider-assigned unique ID for this managed resource.
managementIpv4Address string
The endpoint for the management interface of the storage appliance.
name string
The name of the resource
provisioningState string
The provisioning state of the storage appliance.
remoteVendorManagementFeature string
The indicator of whether the storage appliance supports remote vendor management.
remoteVendorManagementStatus string
The indicator of whether the remote vendor management feature is enabled or disabled, or unsupported if it is an unsupported feature.
systemData SystemDataResponse
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"
capacity float
The total capacity of the storage appliance.
capacity_used float
The amount of storage consumed.
cluster_id str
The resource ID of the cluster this storage appliance is associated with.
detailed_status str
The detailed status of the storage appliance.
detailed_status_message str
The descriptive message about the current detailed status.
id str
The provider-assigned unique ID for this managed resource.
management_ipv4_address str
The endpoint for the management interface of the storage appliance.
name str
The name of the resource
provisioning_state str
The provisioning state of the storage appliance.
remote_vendor_management_feature str
The indicator of whether the storage appliance supports remote vendor management.
remote_vendor_management_status str
The indicator of whether the remote vendor management feature is enabled or disabled, or unsupported if it is an unsupported feature.
system_data SystemDataResponse
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"
capacity Number
The total capacity of the storage appliance.
capacityUsed Number
The amount of storage consumed.
clusterId String
The resource ID of the cluster this storage appliance is associated with.
detailedStatus String
The detailed status of the storage appliance.
detailedStatusMessage String
The descriptive message about the current detailed status.
id String
The provider-assigned unique ID for this managed resource.
managementIpv4Address String
The endpoint for the management interface of the storage appliance.
name String
The name of the resource
provisioningState String
The provisioning state of the storage appliance.
remoteVendorManagementFeature String
The indicator of whether the storage appliance supports remote vendor management.
remoteVendorManagementStatus String
The indicator of whether the remote vendor management feature is enabled or disabled, or unsupported if it is an unsupported feature.
systemData 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

AdministrativeCredentials
, AdministrativeCredentialsArgs

Password This property is required. string
The password of the administrator of the device used during initialization.
Username This property is required. string
The username of the administrator of the device used during initialization.
Password This property is required. string
The password of the administrator of the device used during initialization.
Username This property is required. string
The username of the administrator of the device used during initialization.
password This property is required. String
The password of the administrator of the device used during initialization.
username This property is required. String
The username of the administrator of the device used during initialization.
password This property is required. string
The password of the administrator of the device used during initialization.
username This property is required. string
The username of the administrator of the device used during initialization.
password This property is required. str
The password of the administrator of the device used during initialization.
username This property is required. str
The username of the administrator of the device used during initialization.
password This property is required. String
The password of the administrator of the device used during initialization.
username This property is required. String
The username of the administrator of the device used during initialization.

AdministrativeCredentialsResponse
, AdministrativeCredentialsResponseArgs

Password This property is required. string
The password of the administrator of the device used during initialization.
Username This property is required. string
The username of the administrator of the device used during initialization.
Password This property is required. string
The password of the administrator of the device used during initialization.
Username This property is required. string
The username of the administrator of the device used during initialization.
password This property is required. String
The password of the administrator of the device used during initialization.
username This property is required. String
The username of the administrator of the device used during initialization.
password This property is required. string
The password of the administrator of the device used during initialization.
username This property is required. string
The username of the administrator of the device used during initialization.
password This property is required. str
The password of the administrator of the device used during initialization.
username This property is required. str
The username of the administrator of the device used during initialization.
password This property is required. String
The password of the administrator of the device used during initialization.
username This property is required. String
The username of the administrator of the device used during initialization.

ExtendedLocation
, ExtendedLocationArgs

Name This property is required. string
The resource ID of the extended location on which the resource will be created.
Type This property is required. string
The extended location type, for example, CustomLocation.
Name This property is required. string
The resource ID of the extended location on which the resource will be created.
Type This property is required. string
The extended location type, for example, CustomLocation.
name This property is required. String
The resource ID of the extended location on which the resource will be created.
type This property is required. String
The extended location type, for example, CustomLocation.
name This property is required. string
The resource ID of the extended location on which the resource will be created.
type This property is required. string
The extended location type, for example, CustomLocation.
name This property is required. str
The resource ID of the extended location on which the resource will be created.
type This property is required. str
The extended location type, for example, CustomLocation.
name This property is required. String
The resource ID of the extended location on which the resource will be created.
type This property is required. String
The extended location type, for example, CustomLocation.

ExtendedLocationResponse
, ExtendedLocationResponseArgs

Name This property is required. string
The resource ID of the extended location on which the resource will be created.
Type This property is required. string
The extended location type, for example, CustomLocation.
Name This property is required. string
The resource ID of the extended location on which the resource will be created.
Type This property is required. string
The extended location type, for example, CustomLocation.
name This property is required. String
The resource ID of the extended location on which the resource will be created.
type This property is required. String
The extended location type, for example, CustomLocation.
name This property is required. string
The resource ID of the extended location on which the resource will be created.
type This property is required. string
The extended location type, for example, CustomLocation.
name This property is required. str
The resource ID of the extended location on which the resource will be created.
type This property is required. str
The extended location type, for example, CustomLocation.
name This property is required. String
The resource ID of the extended location on which the resource will be created.
type This property is required. String
The extended location type, for example, CustomLocation.

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource last modification (UTC)
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
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_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource last modification (UTC)
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
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:networkcloud:StorageAppliance storageApplianceName /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetworkCloud/storageAppliances/{storageApplianceName} 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi