Azure StorSimple 関連の PowerShell コマンドレット (Get-AzureStorSimpleLegacyVolumeContainerConfirmStatus) について

ブログ エントリ内にアフィリエイト広告が含まれています
スポンサーリンク

StorSimple は、Microsoft 社が提供するハイブリッドのクラウド ストレージ サービスです。 Microsoft Azure と組み合わせることで、Azure ストレージを拡張領域として利用することが可能であり、また別拠点でのデータ復旧が可能であることから、効率的なデータ管理、災害対策が実現できます。

Azure StorSimple デバイスの管理に使用することが可能な PowerShell コマンドレットが提供されており、設定方法について MSDN サイト上で公開されていますが、PowerShell コマンドレットのヘルプについては英語のみであり、日本語による情報はほとんど公開されていません。

Azure StorSimple 関連の PowerShell コマンドレットの 1 つである「Get-AzureStorSimpleLegacyVolumeContainerConfirmStatus」について、本ブログにて日本語の情報として纏めてみました((他の PowerShell コマンドレットについては、「Azure StorSimple 関連の PowerShell コマンドレットについて」を参照) (Windows Azure PowerShell バージョン 0.9.7 で確認しているものとなります)。

■名前

Get-AzureStorSimpleLegacyVolumeContainerConfirmStatus

■概要

コミットもしくはロールバック操作の状態を取得します。

■構文

Get-AzureStorSimpleLegacyVolumeContainerConfirmStatus [-LegacyConfigId] <String> [[-LegacyContainerNames] [<String[]>]] [-Profile [<AzureProfile>]] [<CommonParameters>]

■説明

Get-AzureStorSimpleLegacyVolumeContainerConfirmStatus コマンドレットは、コミットもしくはロールバック操作の状態を取得します。

■パラメーター

-LegacyConfigId <String>
レガシー アプライアンスの構成のユニーク ID を指定します。

必須 true
位置 1
既定値 なし
パイプライン入力を許可する false
ワイルドカード文字を許可する false

-LegacyContainerNames [<String[]>]
移行プランが適用されるデータ コンテナー名の配列を指定します。

必須 false
位置 2
既定値 なし
パイプライン入力を許可する false
ワイルドカード文字を許可する false

-Profile [<AzureProfile>]
Azure プロファイルを指定します。

必須 false
位置 named
既定値 なし
パイプライン入力を許可する false
ワイルドカード文字を許可する false

<CommonParameters>
このコマンドレットは、次の共通パラメーターをサポートします: –Verbose、-Debug、-ErrorAction-ErrorVariable、-WarningAction、-WarningVariable、-OutBuffer、-PipelineVariable、および -OutVariable。詳細については、about_CommonParameters を参照してください。

■入力

  • なし

■出力

  • ConfirmMigrationStatusMsg
    このコマンドレットは、実行した確認移行操作の状態を返します。

■メモ

  • 詳細については、「Get-Help Get-AzureStorSimpleLegacyVolumeContainerMigrationPlan -detailed」と入力してください。
  • 技術情報については、「Get-Help Get-AzureStorSimpleLegacyVolumeContainerMigrationPlan -full」と入力してください。

■エイリアス

  • なし

■例

例 1: 完了したコミット操作の状態の取得

 Get-AzureStorSimpleLegacyVolumeContainerConfirmStatus -LegacyConfigId "f16463bd-94a9-4c3c-91c2-7a3ba7120087" -LegacyContainerNames "OneSDKAzureCloud" 
VERBOSE: 2015-04-08 13:51:01 ClientRequestId: 2bda2b9b-1361-4787-bc04-1e081218ed76_PS
VERBOSE: 2015-04-08 13:51:01 ClientRequestId: 84bf18d8-c459-47a7-b4a8-f82ca8659672_PS
VERBOSE: 2015-04-08 13:51:12 ClientRequestId: e93f9cb7-df58-497e-bb9f-9a6a23e68925_PS

LegacyConfigId             : f16463bd-94a9-4c3c-91c2-7a3ba7120087
CommitComplete             : CloudConfigurationName : OneSDKAzureCloud
                             Operation              : Commit
                             PercentageCompleted    : 100
                             Messages               :

CommitInProgress           : None
CommitFailed               : None
RollbackComplete           : None
RollbackInProgress         : None
RollbackFailed             : None
CommitOrRollbackNotStarted : None

このコマンドは、コンテナーのコミット操作の状態を取得します。この操作は完了の状態を持ちます。

例 2: 完了したロールバック操作の状態の取得

 Get-AzureStorSimpleLegacyVolumeContainerConfirmStatus -LegacyConfigId "f16463bd-94a9-4c3c-91c2-7a3ba7120087" -LegacyContainerNames "OneSDKAzureCloud" 

VERBOSE: 2015-04-08 13:51:01 ClientRequestId: 2bda2b9b-1361-4787-bc04-1e081218ed76_PS
VERBOSE: 2015-04-08 13:51:01 ClientRequestId: 84bf18d8-c459-47a7-b4a8-f82ca8659672_PS
VERBOSE: 2015-04-08 13:51:12 ClientRequestId: e93f9cb7-df58-497e-bb9f-9a6a23e68925_PS

LegacyConfigId             : f16463bd-94a9-4c3c-91c2-7a3ba7120087
CommitComplete             : None
CommitInProgress           : None
CommitFailed               : None
RollbackComplete           : CloudConfigurationName : OneSDKAzureCloud
                             Operation              : Rollback
                             PercentageCompleted    : 100
                             Messages               :

RollbackInProgress         : None
RollbackFailed             : None
CommitOrRollbackNotStarted : None

このコマンドは、コンテナーのロールバック操作の状態を取得します。この操作は完了の状態を持ちます。

■関連するトピック

  • Confirm-AzureStorSimpleLegacyVolumeContainerStatus
  • Get-AzureStorSimpleLegacyVolumeContainerStatus

[参考]

タイトルとURLをコピーしました