ページの先頭行へ戻る
SystemwalkerService Catalog Manager V14g インフラサービス機能運用ガイド 管理者編
Systemwalker

C.3 アクセス権限情報ファイル

ここでは、アクセス権限情報取得コマンドが出力する、アクセス権限情報ファイルについて説明します。

アクセス権限情報ファイルの書式は、以下のとおりです。

以下に、アクセス権限情報ファイルの出力形式を示します。

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AccessAuthoritySet>
  <AccessAuthority>
    <AuthorityId>権限ID</AuthorityId>
    <ActionSet>
      <Allow>
        <Action>操作ID</Action>
         ...
      </Allow>
      <NotAllow>
        <Action>操作ID</Action>
         ...
      </NotAllow>
    </ActionSet>
  </AccessAuthority>
</AccessAuthoritySet>

以下に、アクセス権限情報ファイルのタグについて説明します。

タグ名

説明

AuthorityId

取得対象の権限IDが出力されます。

Allow

許可されている操作IDが下位タグに出力されます。

NotAllow

許可されていな操作IDが下位タグに出力されます。

Action

操作IDが出力されます。

以下に、アクセス権限情報ファイルの出力例を示します。

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AccessAuthoritySet>
    <AccessAuthority>
        <AuthorityId>SystemOwner</AuthorityId>
        <ActionSet>
            <Allow>
                <Action>InstanceStart</Action>
                <Action>InstanceStop</Action>
                <Action>ResourceDesign</Action>
                <Action>Snapshot</Action>
            </Allow>
            <NotAllow>
                <Action>SnapshotDelete</Action>
                <Action>SnapshotRestore</Action>
            </NotAllow>
        </ActionSet>
    </AccessAuthority>
</AccessAuthoritySet>