全部產品
Search
文件中心

:ALIYUN::ComputeNest::ServiceInstance

更新時間:Oct 11, 2024

ALIYUN::ComputeNest::ServiceInstance類型用於建立並部署服務執行個體。

文法

{
  "Type": "ALIYUN::ComputeNest::ServiceInstance",
  "Properties": {
    "SpecificationCode": String,
    "Parameters": Map,
    "ResourceGroupId": String,
    "OperationName": String,
    "EnableInstanceOps": Boolean,
    "Service": Map,
    "PredefinedParameterName": String,
    "Name": String,
    "Commodity": Map,
    "EnableUserPrometheus": Boolean,
    "TemplateName": String,
    "MarketInstanceId": String,
    "ContactGroup": String,
    "Tags": List
  }
}

屬性

屬性名稱

類型

必須

允許更新

描述

約束

Service

Map

服務詳情。

更多資訊,請參見Service屬性

Commodity

Map

雲市場購買訂單資訊,服務未上雲市場或隨用隨付不必傳。

更多資訊,請參見Commodity屬性

ContactGroup

String

接收警示的CloudMonitor連絡人群組。

EnableInstanceOps

Boolean

服務執行個體是否有代營運功能。

取值:

  • true:服務執行個體有代營運功能。

  • false:服務執行個體沒有代營運功能。

EnableUserPrometheus

Boolean

是否啟用Prometheus監控。

取值:

  • true:啟用。

  • false:不啟用。

MarketInstanceId

String

雲市場執行個體ID。

Name

String

服務名稱。

OperationName

String

操作名稱。

Parameters

Map

使用者執行個體部署的參數。

例如:

{"NodeCount": 3, "SystemDiskSize": 40, "InstancePassword": "******"}

PredefinedParameterName

String

套餐名稱。

ResourceGroupId

String

資源群組ID。

SpecificationCode

String

商品規格碼。

Tags

List

使用者自訂標籤。

{'Length': {'Max': 20}}

TemplateName

String

模板名稱。

服務支援多模板時需要指定模板名稱。

Service文法

"Service": {
  "Version": String,
  "ServiceId": String
}

Service屬性

屬性名稱

類型

必須

允許更新

描述

約束

ServiceId

String

服務ID。

Version

String

服務版本。

Commodity文法

"Commodity": {
  "PayPeriod": Integer,
  "PayPeriodUnit": String
}

Commodity屬性

屬性名稱

類型

必須

允許更新

描述

約束

PayPeriod

Integer

購買時間長度。

PayPeriodUnit

String

購買時間單位。

取值:

  • Year:年。

  • Month:月。

  • Day:日。

Tags文法

"Tags": [
  {
    "Value": String,
    "Key": String
  }
]

Tags屬性

屬性名稱

類型

必須

允許更新

描述

約束

Key

String

標籤鍵。

長度為1~128個字元,不能以aliyunacs:開頭,不能包含http://https://

Value

String

標籤值。

長度為0~128個字元,不能以aliyunacs:開頭,不能包含http://https://

傳回值

Fn::GetAtt

Progress:服務執行個體的部署進度。

Parameters:部署服務執行個體輸入的參數。

ResourceGroupId:資源群組ID。

EnableInstanceOps:服務執行個體是否有代營運功能。

CreateTime:建立時間。

NetworkConfig:網路設定資訊。

Service:服務詳情。

PredefinedParameterName:套餐名稱。

Source:服務執行個體來源。

Name:服務執行個體名稱。

Components:雲市場額外計費項目。

LicenseEndTime:許可到期時間。

ServiceInstanceId:服務執行個體ID。

UserId:使用者的AliUid。

EnableUserPrometheus:是否啟用Prometheus監控。

ServiceType:服務類型。

StatusDetail:部署執行個體的狀態原因。

UpdateTime:更新時間。

Outputs:建立服務執行個體返回的輸出欄位。

TemplateName:模板名稱。

IsOperated:服務執行個體的代營運功能是否開啟。

SupplierUid:服務商AliUid。

Tags:使用者自訂標籤。

樣本

YAML

ROSTemplateFormatVersion: '2015-09-01'
Parameters:
  Parameters:
    Type: Json
    Description: The parameters entered by the deployment service instance.
    Default:
      NodeCount: 3
      SystemDiskSize: 40
      InstancePassword: '******'
  Service:
    Type: Json
    Description: Service details.
    Default:
      Version: 1
      ServiceId: service-9c8a3522528b4fe8****
  Name:
    Type: String
    Description: The name of the service instance.
    Default: test
Resources:
  ExtensionResource:
    Type: ALIYUN::ComputeNest::ServiceInstance
    Properties:
      Parameters:
        Ref: Parameters
      Service:
        Ref: Service
      Name:
        Ref: Name
Outputs:
  Progress:
    Description: The deployment progress of the service instance. Unit:%.
    Value:
      Fn::GetAtt:
        - ExtensionResource
        - Progress
  Parameters:
    Description: The parameters entered by the deployment service instance.
    Value:
      Fn::GetAtt:
        - ExtensionResource
        - Parameters

JSON

{
  "ROSTemplateFormatVersion": "2015-09-01",
  "Parameters": {
    "Parameters": {
      "Type": "Json",
      "Description": "The parameters entered by the deployment service instance.",
      "Default": {
        "NodeCount": 3,
        "SystemDiskSize": 40,
        "InstancePassword": "******"
      }
    },
    "Service": {
      "Type": "Json",
      "Description": "Service details.",
      "Default": {
        "Version": 1,
        "ServiceId": "service-9c8a3522528b4fe8****"
      }
    },
    "Name": {
      "Type": "String",
      "Description": "The name of the service instance.",
      "Default": "test"
    }
  },
  "Resources": {
    "ExtensionResource": {
      "Type": "ALIYUN::ComputeNest::ServiceInstance",
      "Properties": {
        "Parameters": {
          "Ref": "Parameters"
        },
        "Service": {
          "Ref": "Service"
        },
        "Name": {
          "Ref": "Name"
        }
      }
    }
  },
  "Outputs": {
    "Progress": {
      "Description": "The deployment progress of the service instance. Unit:%.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionResource",
          "Progress"
        ]
      }
    },
    "Parameters": {
      "Description": "The parameters entered by the deployment service instance.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionResource",
          "Parameters"
        ]
      }
    }
  }
}