1. Packages
  2. Azure Native
  3. API Docs
  4. hybridcontainerservice
  5. StorageSpaceRetrieve
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.41.0 published on Tuesday, May 14, 2024 by Pulumi

azure-native.hybridcontainerservice.StorageSpaceRetrieve

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.41.0 published on Tuesday, May 14, 2024 by Pulumi

    The storageSpaces resource definition. Azure REST API version: 2022-09-01-preview. Prior API version in Azure Native 1.x: 2022-05-01-preview.

    Example Usage

    PutStorageSpace

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var storageSpaceRetrieve = new AzureNative.HybridContainerService.StorageSpaceRetrieve("storageSpaceRetrieve", new()
        {
            ExtendedLocation = new AzureNative.HybridContainerService.Inputs.StorageSpacesExtendedLocationArgs
            {
                Name = "/subscriptions/a3e42606-29b1-4d7d-b1d9-9ff6b9d3c71b/resourcegroups/test-arcappliance-resgrp/providers/microsoft.extendedlocation/customlocations/testcustomlocation",
                Type = "CustomLocation",
            },
            Location = "westus",
            Properties = new AzureNative.HybridContainerService.Inputs.StorageSpacesPropertiesArgs
            {
                HciStorageProfile = new AzureNative.HybridContainerService.Inputs.StorageSpacesPropertiesHciStorageProfileArgs
                {
                    MocGroup = "target-group",
                    MocLocation = "MocLocation",
                    MocStorageContainer = "WssdStorageContainer",
                },
            },
            ResourceGroupName = "test-arcappliance-resgrp",
            StorageSpacesName = "test-storage",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/hybridcontainerservice/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := hybridcontainerservice.NewStorageSpaceRetrieve(ctx, "storageSpaceRetrieve", &hybridcontainerservice.StorageSpaceRetrieveArgs{
    			ExtendedLocation: &hybridcontainerservice.StorageSpacesExtendedLocationArgs{
    				Name: pulumi.String("/subscriptions/a3e42606-29b1-4d7d-b1d9-9ff6b9d3c71b/resourcegroups/test-arcappliance-resgrp/providers/microsoft.extendedlocation/customlocations/testcustomlocation"),
    				Type: pulumi.String("CustomLocation"),
    			},
    			Location: pulumi.String("westus"),
    			Properties: &hybridcontainerservice.StorageSpacesPropertiesArgs{
    				HciStorageProfile: &hybridcontainerservice.StorageSpacesPropertiesHciStorageProfileArgs{
    					MocGroup:            pulumi.String("target-group"),
    					MocLocation:         pulumi.String("MocLocation"),
    					MocStorageContainer: pulumi.String("WssdStorageContainer"),
    				},
    			},
    			ResourceGroupName: pulumi.String("test-arcappliance-resgrp"),
    			StorageSpacesName: pulumi.String("test-storage"),
    		})
    		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.hybridcontainerservice.StorageSpaceRetrieve;
    import com.pulumi.azurenative.hybridcontainerservice.StorageSpaceRetrieveArgs;
    import com.pulumi.azurenative.hybridcontainerservice.inputs.StorageSpacesExtendedLocationArgs;
    import com.pulumi.azurenative.hybridcontainerservice.inputs.StorageSpacesPropertiesArgs;
    import com.pulumi.azurenative.hybridcontainerservice.inputs.StorageSpacesPropertiesHciStorageProfileArgs;
    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 storageSpaceRetrieve = new StorageSpaceRetrieve("storageSpaceRetrieve", StorageSpaceRetrieveArgs.builder()        
                .extendedLocation(StorageSpacesExtendedLocationArgs.builder()
                    .name("/subscriptions/a3e42606-29b1-4d7d-b1d9-9ff6b9d3c71b/resourcegroups/test-arcappliance-resgrp/providers/microsoft.extendedlocation/customlocations/testcustomlocation")
                    .type("CustomLocation")
                    .build())
                .location("westus")
                .properties(StorageSpacesPropertiesArgs.builder()
                    .hciStorageProfile(StorageSpacesPropertiesHciStorageProfileArgs.builder()
                        .mocGroup("target-group")
                        .mocLocation("MocLocation")
                        .mocStorageContainer("WssdStorageContainer")
                        .build())
                    .build())
                .resourceGroupName("test-arcappliance-resgrp")
                .storageSpacesName("test-storage")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    storage_space_retrieve = azure_native.hybridcontainerservice.StorageSpaceRetrieve("storageSpaceRetrieve",
        extended_location=azure_native.hybridcontainerservice.StorageSpacesExtendedLocationArgs(
            name="/subscriptions/a3e42606-29b1-4d7d-b1d9-9ff6b9d3c71b/resourcegroups/test-arcappliance-resgrp/providers/microsoft.extendedlocation/customlocations/testcustomlocation",
            type="CustomLocation",
        ),
        location="westus",
        properties=azure_native.hybridcontainerservice.StorageSpacesPropertiesArgs(
            hci_storage_profile=azure_native.hybridcontainerservice.StorageSpacesPropertiesHciStorageProfileArgs(
                moc_group="target-group",
                moc_location="MocLocation",
                moc_storage_container="WssdStorageContainer",
            ),
        ),
        resource_group_name="test-arcappliance-resgrp",
        storage_spaces_name="test-storage")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const storageSpaceRetrieve = new azure_native.hybridcontainerservice.StorageSpaceRetrieve("storageSpaceRetrieve", {
        extendedLocation: {
            name: "/subscriptions/a3e42606-29b1-4d7d-b1d9-9ff6b9d3c71b/resourcegroups/test-arcappliance-resgrp/providers/microsoft.extendedlocation/customlocations/testcustomlocation",
            type: "CustomLocation",
        },
        location: "westus",
        properties: {
            hciStorageProfile: {
                mocGroup: "target-group",
                mocLocation: "MocLocation",
                mocStorageContainer: "WssdStorageContainer",
            },
        },
        resourceGroupName: "test-arcappliance-resgrp",
        storageSpacesName: "test-storage",
    });
    
    resources:
      storageSpaceRetrieve:
        type: azure-native:hybridcontainerservice:StorageSpaceRetrieve
        properties:
          extendedLocation:
            name: /subscriptions/a3e42606-29b1-4d7d-b1d9-9ff6b9d3c71b/resourcegroups/test-arcappliance-resgrp/providers/microsoft.extendedlocation/customlocations/testcustomlocation
            type: CustomLocation
          location: westus
          properties:
            hciStorageProfile:
              mocGroup: target-group
              mocLocation: MocLocation
              mocStorageContainer: WssdStorageContainer
          resourceGroupName: test-arcappliance-resgrp
          storageSpacesName: test-storage
    

    Create StorageSpaceRetrieve Resource

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

    Constructor syntax

    new StorageSpaceRetrieve(name: string, args: StorageSpaceRetrieveArgs, opts?: CustomResourceOptions);
    @overload
    def StorageSpaceRetrieve(resource_name: str,
                             args: StorageSpaceRetrieveArgs,
                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def StorageSpaceRetrieve(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             resource_group_name: Optional[str] = None,
                             extended_location: Optional[StorageSpacesExtendedLocationArgs] = None,
                             location: Optional[str] = None,
                             properties: Optional[StorageSpacesPropertiesArgs] = None,
                             storage_spaces_name: Optional[str] = None,
                             tags: Optional[Mapping[str, str]] = None)
    func NewStorageSpaceRetrieve(ctx *Context, name string, args StorageSpaceRetrieveArgs, opts ...ResourceOption) (*StorageSpaceRetrieve, error)
    public StorageSpaceRetrieve(string name, StorageSpaceRetrieveArgs args, CustomResourceOptions? opts = null)
    public StorageSpaceRetrieve(String name, StorageSpaceRetrieveArgs args)
    public StorageSpaceRetrieve(String name, StorageSpaceRetrieveArgs args, CustomResourceOptions options)
    
    type: azure-native:hybridcontainerservice:StorageSpaceRetrieve
    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 StorageSpaceRetrieveArgs
    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 StorageSpaceRetrieveArgs
    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 StorageSpaceRetrieveArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args StorageSpaceRetrieveArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args StorageSpaceRetrieveArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var storageSpaceRetrieveResource = new AzureNative.HybridContainerService.StorageSpaceRetrieve("storageSpaceRetrieveResource", new()
    {
        ResourceGroupName = "string",
        ExtendedLocation = new AzureNative.HybridContainerService.Inputs.StorageSpacesExtendedLocationArgs
        {
            Name = "string",
            Type = "string",
        },
        Location = "string",
        Properties = new AzureNative.HybridContainerService.Inputs.StorageSpacesPropertiesArgs
        {
            HciStorageProfile = new AzureNative.HybridContainerService.Inputs.StorageSpacesPropertiesHciStorageProfileArgs
            {
                MocGroup = "string",
                MocLocation = "string",
                MocStorageContainer = "string",
            },
            Status = new AzureNative.HybridContainerService.Inputs.StorageSpacesPropertiesStatusArgs
            {
                ProvisioningStatus = new AzureNative.HybridContainerService.Inputs.StorageSpacesPropertiesProvisioningStatusArgs
                {
                    Error = new AzureNative.HybridContainerService.Inputs.StorageSpacesPropertiesErrorArgs
                    {
                        Code = "string",
                        Message = "string",
                    },
                    OperationId = "string",
                    Phase = "string",
                    Status = "string",
                },
            },
            VmwareStorageProfile = new AzureNative.HybridContainerService.Inputs.StorageSpacesPropertiesVmwareStorageProfileArgs
            {
                Datacenter = "string",
                Datastore = "string",
                Folder = "string",
                ResourcePool = "string",
            },
        },
        StorageSpacesName = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := hybridcontainerservice.NewStorageSpaceRetrieve(ctx, "storageSpaceRetrieveResource", &hybridcontainerservice.StorageSpaceRetrieveArgs{
    ResourceGroupName: pulumi.String("string"),
    ExtendedLocation: &hybridcontainerservice.StorageSpacesExtendedLocationArgs{
    Name: pulumi.String("string"),
    Type: pulumi.String("string"),
    },
    Location: pulumi.String("string"),
    Properties: &hybridcontainerservice.StorageSpacesPropertiesArgs{
    HciStorageProfile: &hybridcontainerservice.StorageSpacesPropertiesHciStorageProfileArgs{
    MocGroup: pulumi.String("string"),
    MocLocation: pulumi.String("string"),
    MocStorageContainer: pulumi.String("string"),
    },
    Status: &hybridcontainerservice.StorageSpacesPropertiesStatusArgs{
    ProvisioningStatus: &hybridcontainerservice.StorageSpacesPropertiesProvisioningStatusArgs{
    Error: &hybridcontainerservice.StorageSpacesPropertiesErrorArgs{
    Code: pulumi.String("string"),
    Message: pulumi.String("string"),
    },
    OperationId: pulumi.String("string"),
    Phase: pulumi.String("string"),
    Status: pulumi.String("string"),
    },
    },
    VmwareStorageProfile: &hybridcontainerservice.StorageSpacesPropertiesVmwareStorageProfileArgs{
    Datacenter: pulumi.String("string"),
    Datastore: pulumi.String("string"),
    Folder: pulumi.String("string"),
    ResourcePool: pulumi.String("string"),
    },
    },
    StorageSpacesName: pulumi.String("string"),
    Tags: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    })
    
    var storageSpaceRetrieveResource = new StorageSpaceRetrieve("storageSpaceRetrieveResource", StorageSpaceRetrieveArgs.builder()        
        .resourceGroupName("string")
        .extendedLocation(StorageSpacesExtendedLocationArgs.builder()
            .name("string")
            .type("string")
            .build())
        .location("string")
        .properties(StorageSpacesPropertiesArgs.builder()
            .hciStorageProfile(StorageSpacesPropertiesHciStorageProfileArgs.builder()
                .mocGroup("string")
                .mocLocation("string")
                .mocStorageContainer("string")
                .build())
            .status(StorageSpacesPropertiesStatusArgs.builder()
                .provisioningStatus(StorageSpacesPropertiesProvisioningStatusArgs.builder()
                    .error(StorageSpacesPropertiesErrorArgs.builder()
                        .code("string")
                        .message("string")
                        .build())
                    .operationId("string")
                    .phase("string")
                    .status("string")
                    .build())
                .build())
            .vmwareStorageProfile(StorageSpacesPropertiesVmwareStorageProfileArgs.builder()
                .datacenter("string")
                .datastore("string")
                .folder("string")
                .resourcePool("string")
                .build())
            .build())
        .storageSpacesName("string")
        .tags(Map.of("string", "string"))
        .build());
    
    storage_space_retrieve_resource = azure_native.hybridcontainerservice.StorageSpaceRetrieve("storageSpaceRetrieveResource",
        resource_group_name="string",
        extended_location=azure_native.hybridcontainerservice.StorageSpacesExtendedLocationArgs(
            name="string",
            type="string",
        ),
        location="string",
        properties=azure_native.hybridcontainerservice.StorageSpacesPropertiesArgs(
            hci_storage_profile=azure_native.hybridcontainerservice.StorageSpacesPropertiesHciStorageProfileArgs(
                moc_group="string",
                moc_location="string",
                moc_storage_container="string",
            ),
            status=azure_native.hybridcontainerservice.StorageSpacesPropertiesStatusArgs(
                provisioning_status=azure_native.hybridcontainerservice.StorageSpacesPropertiesProvisioningStatusArgs(
                    error=azure_native.hybridcontainerservice.StorageSpacesPropertiesErrorArgs(
                        code="string",
                        message="string",
                    ),
                    operation_id="string",
                    phase="string",
                    status="string",
                ),
            ),
            vmware_storage_profile=azure_native.hybridcontainerservice.StorageSpacesPropertiesVmwareStorageProfileArgs(
                datacenter="string",
                datastore="string",
                folder="string",
                resource_pool="string",
            ),
        ),
        storage_spaces_name="string",
        tags={
            "string": "string",
        })
    
    const storageSpaceRetrieveResource = new azure_native.hybridcontainerservice.StorageSpaceRetrieve("storageSpaceRetrieveResource", {
        resourceGroupName: "string",
        extendedLocation: {
            name: "string",
            type: "string",
        },
        location: "string",
        properties: {
            hciStorageProfile: {
                mocGroup: "string",
                mocLocation: "string",
                mocStorageContainer: "string",
            },
            status: {
                provisioningStatus: {
                    error: {
                        code: "string",
                        message: "string",
                    },
                    operationId: "string",
                    phase: "string",
                    status: "string",
                },
            },
            vmwareStorageProfile: {
                datacenter: "string",
                datastore: "string",
                folder: "string",
                resourcePool: "string",
            },
        },
        storageSpacesName: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:hybridcontainerservice:StorageSpaceRetrieve
    properties:
        extendedLocation:
            name: string
            type: string
        location: string
        properties:
            hciStorageProfile:
                mocGroup: string
                mocLocation: string
                mocStorageContainer: string
            status:
                provisioningStatus:
                    error:
                        code: string
                        message: string
                    operationId: string
                    phase: string
                    status: string
            vmwareStorageProfile:
                datacenter: string
                datastore: string
                folder: string
                resourcePool: string
        resourceGroupName: string
        storageSpacesName: string
        tags:
            string: string
    

    StorageSpaceRetrieve Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The StorageSpaceRetrieve resource accepts the following input properties:

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    ExtendedLocation Pulumi.AzureNative.HybridContainerService.Inputs.StorageSpacesExtendedLocation
    Location string
    The geo-location where the resource lives
    Properties Pulumi.AzureNative.HybridContainerService.Inputs.StorageSpacesProperties
    HybridAKSStorageSpec defines the desired state of HybridAKSStorage
    StorageSpacesName string
    Parameter for the name of the storage object
    Tags Dictionary<string, string>
    Resource tags.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    ExtendedLocation StorageSpacesExtendedLocationArgs
    Location string
    The geo-location where the resource lives
    Properties StorageSpacesPropertiesArgs
    HybridAKSStorageSpec defines the desired state of HybridAKSStorage
    StorageSpacesName string
    Parameter for the name of the storage object
    Tags map[string]string
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    extendedLocation StorageSpacesExtendedLocation
    location String
    The geo-location where the resource lives
    properties StorageSpacesProperties
    HybridAKSStorageSpec defines the desired state of HybridAKSStorage
    storageSpacesName String
    Parameter for the name of the storage object
    tags Map<String,String>
    Resource tags.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    extendedLocation StorageSpacesExtendedLocation
    location string
    The geo-location where the resource lives
    properties StorageSpacesProperties
    HybridAKSStorageSpec defines the desired state of HybridAKSStorage
    storageSpacesName string
    Parameter for the name of the storage object
    tags {[key: string]: string}
    Resource tags.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    extended_location StorageSpacesExtendedLocationArgs
    location str
    The geo-location where the resource lives
    properties StorageSpacesPropertiesArgs
    HybridAKSStorageSpec defines the desired state of HybridAKSStorage
    storage_spaces_name str
    Parameter for the name of the storage object
    tags Mapping[str, str]
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    extendedLocation Property Map
    location String
    The geo-location where the resource lives
    properties Property Map
    HybridAKSStorageSpec defines the desired state of HybridAKSStorage
    storageSpacesName String
    Parameter for the name of the storage object
    tags Map<String>
    Resource tags.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.HybridContainerService.Outputs.SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    systemData SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    system_data SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData Property Map
    Metadata pertaining to creation and last modification of the resource.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    StorageSpacesExtendedLocation, StorageSpacesExtendedLocationArgs

    Name string
    The extended location name.
    Type string
    The extended location type.
    Name string
    The extended location name.
    Type string
    The extended location type.
    name String
    The extended location name.
    type String
    The extended location type.
    name string
    The extended location name.
    type string
    The extended location type.
    name str
    The extended location name.
    type str
    The extended location type.
    name String
    The extended location name.
    type String
    The extended location type.

    StorageSpacesProperties, StorageSpacesPropertiesArgs

    hciStorageProfile Property Map
    status Property Map
    HybridAKSStorageStatus defines the observed state of HybridAKSStorage
    vmwareStorageProfile Property Map

    StorageSpacesPropertiesError, StorageSpacesPropertiesErrorArgs

    Code string
    Message string
    Code string
    Message string
    code String
    message String
    code string
    message string
    code str
    message str
    code String
    message String

    StorageSpacesPropertiesHciStorageProfile, StorageSpacesPropertiesHciStorageProfileArgs

    MocGroup string
    Resource group in MOC(Microsoft On-premises Cloud)
    MocLocation string
    Location in MOC(Microsoft On-premises Cloud)
    MocStorageContainer string
    Name of the storage container in MOC(Microsoft On-premises Cloud)
    MocGroup string
    Resource group in MOC(Microsoft On-premises Cloud)
    MocLocation string
    Location in MOC(Microsoft On-premises Cloud)
    MocStorageContainer string
    Name of the storage container in MOC(Microsoft On-premises Cloud)
    mocGroup String
    Resource group in MOC(Microsoft On-premises Cloud)
    mocLocation String
    Location in MOC(Microsoft On-premises Cloud)
    mocStorageContainer String
    Name of the storage container in MOC(Microsoft On-premises Cloud)
    mocGroup string
    Resource group in MOC(Microsoft On-premises Cloud)
    mocLocation string
    Location in MOC(Microsoft On-premises Cloud)
    mocStorageContainer string
    Name of the storage container in MOC(Microsoft On-premises Cloud)
    moc_group str
    Resource group in MOC(Microsoft On-premises Cloud)
    moc_location str
    Location in MOC(Microsoft On-premises Cloud)
    moc_storage_container str
    Name of the storage container in MOC(Microsoft On-premises Cloud)
    mocGroup String
    Resource group in MOC(Microsoft On-premises Cloud)
    mocLocation String
    Location in MOC(Microsoft On-premises Cloud)
    mocStorageContainer String
    Name of the storage container in MOC(Microsoft On-premises Cloud)

    StorageSpacesPropertiesProvisioningStatus, StorageSpacesPropertiesProvisioningStatusArgs

    Error Pulumi.AzureNative.HybridContainerService.Inputs.StorageSpacesPropertiesError
    OperationId string
    Phase string
    Phase represents the current phase of cluster actuation. E.g. Pending, Running, Terminating, Failed etc.
    Status string
    Error StorageSpacesPropertiesError
    OperationId string
    Phase string
    Phase represents the current phase of cluster actuation. E.g. Pending, Running, Terminating, Failed etc.
    Status string
    error StorageSpacesPropertiesError
    operationId String
    phase String
    Phase represents the current phase of cluster actuation. E.g. Pending, Running, Terminating, Failed etc.
    status String
    error StorageSpacesPropertiesError
    operationId string
    phase string
    Phase represents the current phase of cluster actuation. E.g. Pending, Running, Terminating, Failed etc.
    status string
    error StorageSpacesPropertiesError
    operation_id str
    phase str
    Phase represents the current phase of cluster actuation. E.g. Pending, Running, Terminating, Failed etc.
    status str
    error Property Map
    operationId String
    phase String
    Phase represents the current phase of cluster actuation. E.g. Pending, Running, Terminating, Failed etc.
    status String

    StorageSpacesPropertiesResponse, StorageSpacesPropertiesResponseArgs

    provisioningState String
    hciStorageProfile Property Map
    status Property Map
    HybridAKSStorageStatus defines the observed state of HybridAKSStorage
    vmwareStorageProfile Property Map

    StorageSpacesPropertiesResponseError, StorageSpacesPropertiesResponseErrorArgs

    Code string
    Message string
    Code string
    Message string
    code String
    message String
    code string
    message string
    code str
    message str
    code String
    message String

    StorageSpacesPropertiesResponseHciStorageProfile, StorageSpacesPropertiesResponseHciStorageProfileArgs

    MocGroup string
    Resource group in MOC(Microsoft On-premises Cloud)
    MocLocation string
    Location in MOC(Microsoft On-premises Cloud)
    MocStorageContainer string
    Name of the storage container in MOC(Microsoft On-premises Cloud)
    MocGroup string
    Resource group in MOC(Microsoft On-premises Cloud)
    MocLocation string
    Location in MOC(Microsoft On-premises Cloud)
    MocStorageContainer string
    Name of the storage container in MOC(Microsoft On-premises Cloud)
    mocGroup String
    Resource group in MOC(Microsoft On-premises Cloud)
    mocLocation String
    Location in MOC(Microsoft On-premises Cloud)
    mocStorageContainer String
    Name of the storage container in MOC(Microsoft On-premises Cloud)
    mocGroup string
    Resource group in MOC(Microsoft On-premises Cloud)
    mocLocation string
    Location in MOC(Microsoft On-premises Cloud)
    mocStorageContainer string
    Name of the storage container in MOC(Microsoft On-premises Cloud)
    moc_group str
    Resource group in MOC(Microsoft On-premises Cloud)
    moc_location str
    Location in MOC(Microsoft On-premises Cloud)
    moc_storage_container str
    Name of the storage container in MOC(Microsoft On-premises Cloud)
    mocGroup String
    Resource group in MOC(Microsoft On-premises Cloud)
    mocLocation String
    Location in MOC(Microsoft On-premises Cloud)
    mocStorageContainer String
    Name of the storage container in MOC(Microsoft On-premises Cloud)

    StorageSpacesPropertiesResponseProvisioningStatus, StorageSpacesPropertiesResponseProvisioningStatusArgs

    Error Pulumi.AzureNative.HybridContainerService.Inputs.StorageSpacesPropertiesResponseError
    OperationId string
    Phase string
    Phase represents the current phase of cluster actuation. E.g. Pending, Running, Terminating, Failed etc.
    Status string
    Error StorageSpacesPropertiesResponseError
    OperationId string
    Phase string
    Phase represents the current phase of cluster actuation. E.g. Pending, Running, Terminating, Failed etc.
    Status string
    error StorageSpacesPropertiesResponseError
    operationId String
    phase String
    Phase represents the current phase of cluster actuation. E.g. Pending, Running, Terminating, Failed etc.
    status String
    error StorageSpacesPropertiesResponseError
    operationId string
    phase string
    Phase represents the current phase of cluster actuation. E.g. Pending, Running, Terminating, Failed etc.
    status string
    error StorageSpacesPropertiesResponseError
    operation_id str
    phase str
    Phase represents the current phase of cluster actuation. E.g. Pending, Running, Terminating, Failed etc.
    status str
    error Property Map
    operationId String
    phase String
    Phase represents the current phase of cluster actuation. E.g. Pending, Running, Terminating, Failed etc.
    status String

    StorageSpacesPropertiesResponseStatus, StorageSpacesPropertiesResponseStatusArgs

    provisioningStatus Property Map
    Contains Provisioning errors

    StorageSpacesPropertiesResponseVmwareStorageProfile, StorageSpacesPropertiesResponseVmwareStorageProfileArgs

    Datacenter string
    Name of the datacenter in VSphere
    Datastore string
    Name of the datastore in VSphere
    Folder string
    Name of the folder in VSphere
    ResourcePool string
    Name of the resource pool in VSphere
    Datacenter string
    Name of the datacenter in VSphere
    Datastore string
    Name of the datastore in VSphere
    Folder string
    Name of the folder in VSphere
    ResourcePool string
    Name of the resource pool in VSphere
    datacenter String
    Name of the datacenter in VSphere
    datastore String
    Name of the datastore in VSphere
    folder String
    Name of the folder in VSphere
    resourcePool String
    Name of the resource pool in VSphere
    datacenter string
    Name of the datacenter in VSphere
    datastore string
    Name of the datastore in VSphere
    folder string
    Name of the folder in VSphere
    resourcePool string
    Name of the resource pool in VSphere
    datacenter str
    Name of the datacenter in VSphere
    datastore str
    Name of the datastore in VSphere
    folder str
    Name of the folder in VSphere
    resource_pool str
    Name of the resource pool in VSphere
    datacenter String
    Name of the datacenter in VSphere
    datastore String
    Name of the datastore in VSphere
    folder String
    Name of the folder in VSphere
    resourcePool String
    Name of the resource pool in VSphere

    StorageSpacesPropertiesStatus, StorageSpacesPropertiesStatusArgs

    provisioningStatus Property Map
    Contains Provisioning errors

    StorageSpacesPropertiesVmwareStorageProfile, StorageSpacesPropertiesVmwareStorageProfileArgs

    Datacenter string
    Name of the datacenter in VSphere
    Datastore string
    Name of the datastore in VSphere
    Folder string
    Name of the folder in VSphere
    ResourcePool string
    Name of the resource pool in VSphere
    Datacenter string
    Name of the datacenter in VSphere
    Datastore string
    Name of the datastore in VSphere
    Folder string
    Name of the folder in VSphere
    ResourcePool string
    Name of the resource pool in VSphere
    datacenter String
    Name of the datacenter in VSphere
    datastore String
    Name of the datastore in VSphere
    folder String
    Name of the folder in VSphere
    resourcePool String
    Name of the resource pool in VSphere
    datacenter string
    Name of the datacenter in VSphere
    datastore string
    Name of the datastore in VSphere
    folder string
    Name of the folder in VSphere
    resourcePool string
    Name of the resource pool in VSphere
    datacenter str
    Name of the datacenter in VSphere
    datastore str
    Name of the datastore in VSphere
    folder str
    Name of the folder in VSphere
    resource_pool str
    Name of the resource pool in VSphere
    datacenter String
    Name of the datacenter in VSphere
    datastore String
    Name of the datastore in VSphere
    folder String
    Name of the folder in VSphere
    resourcePool String
    Name of the resource pool in VSphere

    StorageSpacesResponseExtendedLocation, StorageSpacesResponseExtendedLocationArgs

    Name string
    The extended location name.
    Type string
    The extended location type.
    Name string
    The extended location name.
    Type string
    The extended location type.
    name String
    The extended location name.
    type String
    The extended location type.
    name string
    The extended location name.
    type string
    The extended location type.
    name str
    The extended location name.
    type str
    The extended location type.
    name String
    The extended location name.
    type String
    The extended location type.

    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:hybridcontainerservice:StorageSpaceRetrieve test-storage /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HybridContainerService/storageSpaces/{storageSpacesName} 
    

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

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.41.0 published on Tuesday, May 14, 2024 by Pulumi