すべてのプロダクト
Search
ドキュメントセンター

Resource Orchestration Service:DATASOURCE::GA::Acl

最終更新日:Mar 17, 2025

DATASOURCE::GA::Acl は、アクセス制御リスト(ACL)に関する情報をクエリするために使用されます。

構文

{
  "Type": "DATASOURCE::GA::Acl",
  "Properties": {
    "AclId": String,
    "RefreshOptions": String
  }
}

プロパティ

プロパティ

タイプ

必須

編集可能

説明

制約

AclId

String

はい

はい

ACL ID。

なし。

RefreshOptions

String

いいえ

はい

スタックが更新されたときのデータソース リソースのリフレッシュ ポリシー。

有効な値:

  • Never(デフォルト):スタックが更新されたときにデータソース リソースをリフレッシュしません。

  • Always:スタックが更新されたときにデータソース リソースをリフレッシュします。

戻り値

Fn::GetAtt

  • AclEntries:ACL 内のエントリ。

  • ResourceGroupId:ACL が属するリソース グループの ID。

  • AclId:ACL ID。

  • AddressIPVersion:ACL の IP バージョン。

  • Tags:ACL に追加されたタグ。

  • AclName:ACL 名。

  • YAML 形式

    ROSTemplateFormatVersion: '2015-09-01'
    Parameters:
      AclId:
        Type: String
        Description:
          en: The ID of the ACL.
        Required: true
    Resources:
      ExtensionDataSource:
        Type: DATASOURCE::GA::Acl
        Properties:
          AclId:
            Ref: AclId
    Outputs:
      AclEntries:
        Description: The entries of the ACL.
        Value:
          Fn::GetAtt:
            - ExtensionDataSource
            - AclEntries
      ResourceGroupId:
        Description: The name of the network ACL.
        Value:
          Fn::GetAtt:
            - ExtensionDataSource
            - ResourceGroupId
      AclId:
        Description: The ID of the ACL.
        Value:
          Fn::GetAtt:
            - ExtensionDataSource
            - AclId
      AddressIPVersion:
        Description: The ID of the network ACL.
        Value:
          Fn::GetAtt:
            - ExtensionDataSource
            - AddressIPVersion
      Tags:
        Description: The tag of the ACL.
        Value:
          Fn::GetAtt:
            - ExtensionDataSource
            - Tags
      AclName:
        Description: The ID of the GA instance.
        Value:
          Fn::GetAtt:
            - ExtensionDataSource
            - AclName
    
  • JSON 形式

    {
      "ROSTemplateFormatVersion": "2015-09-01",
      "Parameters": {
        "AclId": {
          "Type": "String",
          "Description": {
            "en": "The ID of the ACL."
          },
          "Required": true
        }
      },
      "Resources": {
        "ExtensionDataSource": {
          "Type": "DATASOURCE::GA::Acl",
          "Properties": {
            "AclId": {
              "Ref": "AclId"
            }
          }
        }
      },
      "Outputs": {
        "AclEntries": {
          "Description": "ACL のエントリ。",
          "Value": {
            "Fn::GetAtt": [
              "ExtensionDataSource",
              "AclEntries"
            ]
          }
        },
        "ResourceGroupId": {
          "Description": "ネットワーク ACL の名前。",
          "Value": {
            "Fn::GetAtt": [
              "ExtensionDataSource",
              "ResourceGroupId"
            ]
          }
        },
        "AclId": {
          "Description": "ACL の ID。",
          "Value": {
            "Fn::GetAtt": [
              "ExtensionDataSource",
              "AclId"
            ]
          }
        },
        "AddressIPVersion": {
          "Description": "ネットワーク ACL の ID。",
          "Value": {
            "Fn::GetAtt": [
              "ExtensionDataSource",
              "AddressIPVersion"
            ]
          }
        },
        "Tags": {
          "Description": "ACL のタグ。",
          "Value": {
            "Fn::GetAtt": [
              "ExtensionDataSource",
              "Tags"
            ]
          }
        },
        "AclName": {
          "Description": "GA インスタンスの ID。",
          "Value": {
            "Fn::GetAtt": [
              "ExtensionDataSource",
              "AclName"
            ]
          }
        }
      }
    }