全部产品
Search
文档中心

资源编排:DATASOURCE::CloudPhone::KeyPairs

更新时间:Jun 02, 2023

DATASOURCE::CloudPhone::KeyPairs类型用于查询密钥对信息。

语法

{
  "Type": "DATASOURCE::CloudPhone::KeyPairs",
  "Properties": {
    "KeyPairFingerPrint": String,
    "KeyPairName": String
  }
}

属性

属性名称

类型

必须

允许更新

描述

约束

KeyPairFingerPrint

String

密钥对的指纹。

根据RFC4716定义的公钥指纹格式,采用MD5信息摘要算法。

KeyPairName

String

密钥对的名称。

返回值

Fn::GetAtt

  • KeyPairs:密钥对详细信息列表。

  • KeyPairNames:密钥对的名称列表。

属性名称

类型

描述

约束

KeyPairNames

List

密钥对的名称列表。

KeyPairs

List

密钥对详细信息列表。

KeyPairFingerPrint

String

密钥对的指纹。

CreateTime

String

密钥对的创建时间。

KeyPairName

String

密钥对的名称。

示例

YAML格式

ROSTemplateFormatVersion: '2015-09-01'
Parameters:
  KeyPairName:
    Description: The Key Name.
    Type: String
Resources:
  ExtensionDataSource:
    Properties:
      KeyPairName:
        Ref: KeyPairName
    Type: DATASOURCE::CloudPhone::KeyPairs
Outputs:
  KeyPairNames:
    Description: The list of key pair names.
    Value:
      Fn::GetAtt:
      - ExtensionDataSource
      - KeyPairNames
  KeyPairs:
    Description: The list of key pairs.
    Value:
      Fn::GetAtt:
      - ExtensionDataSource
      - KeyPairs

JSON格式

{
  "ROSTemplateFormatVersion": "2015-09-01",
  "Parameters": {
    "KeyPairName": {
      "Type": "String",
      "Description": "The Key Name."
    }
  },
  "Resources": {
    "ExtensionDataSource": {
      "Type": "DATASOURCE::CloudPhone::KeyPairs",
      "Properties": {
        "KeyPairName": {
          "Ref": "KeyPairName"
        }
      }
    }
  },
  "Outputs": {
    "KeyPairs": {
      "Description": "The list of key pairs.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "KeyPairs"
        ]
      }
    },
    "KeyPairNames": {
      "Description": "The list of key pair names.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionDataSource",
          "KeyPairNames"
        ]
      }
    }
  }
}