更新时间:2023-12-13 GMT+08:00

SMN.Topic

模型说明

SMN.Topic用于创建消息通知服务的主题。

模型属性

表1 模型定义属性说明

属性

是否必选

描述

displayName

主题呈现的名字

参数类型:string

取值说明:名字由192byte或64个中文组成

取值约束:{u'regex': u'^[-_a-zA-Z0-9\\u4e00-\\u9fa5]*$', u'min_length': 1, u'max_length': 192}

name

创建的主题名

参数类型:string

取值说明:必须由只有大写和小写ASCII字母,数字,下划线和连字符了,必须在1到256个字符之间

取值约束:{u'regex': u'^[a-zA-Z][0-9a-zA-Z-_]*$', u'min_length': 1, u'max_length': 256}

关联关系

输出

属性

参数类型

描述

topicUrn

string

主题的唯一资源标识

refName

string

主题名称

blueprint样例

tosca_definitions_version: huaweicloud_tosca_version_1_0
node_templates:
  smnt1k1a:
    type: HuaweiCloud.SMN.Topic
    properties:
      name:
        get_input: smn_name
      displayName:
        get_input: displayName
inputs:
  smn_name:
    description: 创建的主题名
    label: ''
  displayName:
    description: 主题呈现的名字
    label: ''