共用方式為


New-AzureStorageAccount

在 Azure 訂用帳戶中建立新的記憶體帳戶。

注意

本文件中參考的 Cmdlet 用於管理使用 Azure Service Manager(ASM) API 的舊版 Azure 資源。 建立新的資源時,不建議使用此舊版 PowerShell 模組,因為 ASM 已排定淘汰。 如需詳細資訊,請參閱 Azure Service Manager 淘汰

Az PowerShell 模組是使用 PowerShell 管理 Azure Resource Manager (ARM) 資源的建議 PowerShell 模組。

語法

New-AzureStorageAccount
   [-StorageAccountName] <String>
   [-Label <String>]
   [-Description <String>]
   -AffinityGroup <String>
   [-Type <String>]
   [-Profile <AzureSMProfile>]
   [-InformationAction <ActionPreference>]
   [-InformationVariable <String>]
   [<CommonParameters>]
New-AzureStorageAccount
   [-StorageAccountName] <String>
   [-Label <String>]
   [-Description <String>]
   -Location <String>
   [-Type <String>]
   [-Profile <AzureSMProfile>]
   [-InformationAction <ActionPreference>]
   [-InformationVariable <String>]
   [<CommonParameters>]

Description

New-AzureStorageAccount Cmdlet 會建立可存取 Azure 記憶體服務的帳戶。 記憶體帳戶是記憶體系統中全域唯一的資源。 帳戶是 Blob、佇列和數據表服務的父命名空間。

範例

範例 1:為指定的同質群組建立記憶體帳戶

PS C:\> New-AzureStorageAccount -StorageAccountName "azure01" -Label "AzureOne" -AffinityGroup "prodapps"

此命令會為指定的同質群組建立記憶體帳戶。

範例 2:在指定的位置建立記憶體帳戶

PS C:\> New-AzureStorageAccount -StorageAccountName "azure02" -Label "AzureTwo" -Location "North Central US"

此命令會在指定的位置建立記憶體帳戶。

參數

-AffinityGroup

指定目前訂用帳戶中現有同質群組的名稱。 您可以指定 LocationAffinityGroup 參數,但不能同時指定這兩個參數。

類型:String
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-Description

指定記憶體帳戶的描述。 描述長度最多可達 1024 個字元。

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:True
接受萬用字元:False

-InformationAction

指定此 Cmdlet 如何回應資訊事件。

此參數可接受的值為:

  • 繼續
  • 忽略
  • 詢問
  • SilentlyContinue
  • 停止
  • 暫止
類型:ActionPreference
別名:infa
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-InformationVariable

指定資訊變數。

類型:String
別名:iv
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-Label

指定記憶體帳戶的標籤。 標籤長度最多可達 100 個字元。

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:True
接受萬用字元:False

-Location

指定建立記憶體帳戶的 Azure 資料中心位置。 您可以包含 LocationAffinityGroup 參數,但不能同時包含兩者。

類型:String
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-Profile

指定此 Cmdlet 從中讀取的 Azure 設定檔。 如果您未指定設定檔,此 Cmdlet 會從本機預設配置檔讀取。

類型:AzureSMProfile
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-StorageAccountName

指定記憶體帳戶的名稱。 記憶體帳戶名稱對 Azure 而言必須是唯一的,且長度必須介於 3 到 24 個字元之間,且只能使用小寫字母和數位。

類型:String
別名:ServiceName
Position:0
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-Type

指定記憶體帳戶的類型。 有效值為:

  • Standard_LRS
  • Standard_ZRS
  • Standard_GRS
  • Standard_RAGRS
  • Premium_LRS

如果未指定此參數,預設值會Standard_GRS。

Standard_ZRS或Premium_LRS帳戶無法變更為其他帳戶類型,反之亦然。

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False