日本熟妇hd丰满老熟妇,中文字幕一区二区三区在线不卡 ,亚洲成片在线观看,免费女同在线一区二区

ALIYUN::ECS::HpcCluster

更新時(shí)間:

ALIYUN::ECS::HpcCluster類(lèi)型用于創(chuàng)建一個(gè)HPC集群。

語(yǔ)法

{
  "Type": "ALIYUN::ECS::HpcCluster",
  "Properties": {
    "Name": String,
    "Description": String
  }
}

屬性

屬性名稱(chēng)

類(lèi)型

必須

允許更新

描述

約束

Name

String

HPC集群名稱(chēng)。

  • 長(zhǎng)度為2~128個(gè)英文或中文字符。

  • 必須以大小字母或中文開(kāi)頭,不能以http://https://開(kāi)頭。

  • 可以包含數(shù)字、下劃線(_)或者連字符(-)。

Description

String

HPC集群描述。

長(zhǎng)度為2~256個(gè)英文或中文字符,不能以http://https://開(kāi)頭。

返回值

Fn::GetAtt

  • HpcClusterId:集群ID。

  • Name:集群名稱(chēng)。

示例

YAML格式

ROSTemplateFormatVersion: '2015-09-01'
Resources:
  HpcCluster:
    Type: 'ALIYUN::ECS::HpcCluster'
    Properties:
      Name:
        Ref: Name
      Description:
        Ref: Description
Parameters:
  Name:
    Type: String
    Description: >-
      The name of the HPC cluster. The name must be 2 to 128 characters in
      length. It must

      start with a letter but cannot start with http:// or https://. It can
      contain letters,

      digits, colons (:), underscores (_), and hyphens (-).
  Description:
    Type: String
    Description: >-
      The description of the HPC cluster. The description must be 2 to 256
      characters in

      length. It cannot start with http:// or https://. Default value: empty
      string.
Outputs:
  HpcClusterId:
    Description: The ID of the HPC cluster.
    Value:
      'Fn::GetAtt':
        - HpcCluster
        - HpcClusterId
  Name:
    Description: The name of the HPC cluster.
    Value:
      'Fn::GetAtt':
        - HpcCluster
        - Name

JSON格式

{
  "ROSTemplateFormatVersion": "2015-09-01",
  "Resources": {
    "HpcCluster": {
      "Type": "ALIYUN::ECS::HpcCluster",
      "Properties": {
        "Name": {
          "Ref": "Name"
        },
        "Description": {
          "Ref": "Description"
        }
      }
    }
  },
  "Parameters": {
    "Name": {
      "Type": "String",
      "Description": "The name of the HPC cluster. The name must be 2 to 128 characters in length. It must\nstart with a letter but cannot start with http:// or https://. It can contain letters,\ndigits, colons (:), underscores (_), and hyphens (-)."
    },
    "Description": {
      "Type": "String",
      "Description": "The description of the HPC cluster. The description must be 2 to 256 characters in\nlength. It cannot start with http:// or https://. Default value: empty string."
    }
  },
  "Outputs": {
    "HpcClusterId": {
      "Description": "The ID of the HPC cluster.",
      "Value": {
        "Fn::GetAtt": [
          "HpcCluster",
          "HpcClusterId"
        ]
      }
    },
    "Name": {
      "Description": "The name of the HPC cluster.",
      "Value": {
        "Fn::GetAtt": [
          "HpcCluster",
          "Name"
        ]
      }
    }
  }
}