ALIYUN::ECD::SimpleOfficeSite類型用於建立一個使用便捷帳號的工作區。
文法
{
"Type": "ALIYUN::ECD::SimpleOfficeSite",
"Properties": {
"VerifyCode": String,
"NeedVerifyZeroDevice": Boolean,
"CenOwnerId": Integer,
"Bandwidth": Integer,
"VSwitchId": String,
"EnableAdminAccess": Boolean,
"CloudBoxOfficeSite": Boolean,
"CenId": String,
"OfficeSiteName": String,
"DesktopAccessType": String,
"CidrBlock": String,
"EnableInternetAccess": Boolean,
"VpcType": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
VerifyCode | String | 否 | 否 | 驗證碼。 | 如果配置的CenId屬於其他阿里雲帳號,必須先調用SendVerifyCode擷取驗證碼。 |
NeedVerifyZeroDevice | Boolean | 否 | 否 | 是否開啟可信裝置校正。 | 取值:
|
CenOwnerId | Integer | 否 | 否 | 雲企業網執行個體所屬的阿里雲帳號ID。 |
|
Bandwidth | Integer | 否 | 否 | 公網頻寬峰值。 | 取值範圍:10~200。 頻寬單位為:Mbps。 當 |
VSwitchId | String | 否 | 否 | Virtual Private Cloud中的交換器ID。 | 建立雲盒工作區時,需要填寫該參數。 |
EnableAdminAccess | Boolean | 否 | 否 | 是否為使用CloudDesktop的使用者賦予本地管理員權限。 | 取值:
|
CloudBoxOfficeSite | Boolean | 否 | 否 | 是否為雲盒工作區。 | 取值:
|
VpcType | String | 否 | 否 | 辦公網路的類型。 | 取值:
|
CenId | String | 否 | 否 | 雲企業網CEN執行個體ID。 | 說明 如果想要通過VPC串連的方式接入CloudDesktop,可以將工作區網路加入到雲企業網執行個體中。該雲企業網執行個體為本網通過VPN或者專線接入的雲企業網執行個體。 |
OfficeSiteName | String | 否 | 否 | 工作區名稱。 | 長度為2~255個英文或中文字元。必須以大小字母或中文開頭,不能以 |
DesktopAccessType | String | 否 | 否 | 串連CloudDesktop時允許使用的接入方式。 | 說明 VPC串連方式依賴於阿里雲私網串連PrivateLink服務,該服務不收取費用。該參數設定為VPC或者Any時,系統將自動為您開通私網串連服務。 |
CidrBlock | String | 否 | 否 | 工作區對應的安全辦公網路包含的IPv4網段。 | 系統將根據輸入的IPv4網段,自動建立一個Virtual Private Cloud。建議您使用 |
EnableInternetAccess | Boolean | 否 | 否 | 是否開通公網訪問功能。 | 取值:
|
傳回值
Fn::GetAtt
OfficeSiteId:工作區ID。
樣本
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
OfficeSiteName:
Type: String
Description: The name of the workspace. The name must be 2 to 255 characters in length. It must start with a letter and cannot start with http:// or https://. The name can contain letters, digits, colons (:), underscores (_), and hyphens (-).
Default: test
Resources:
SimpleOfficeSite:
Type: ALIYUN::ECD::SimpleOfficeSite
Properties:
OfficeSiteName:
Ref: OfficeSiteName
CidrBlock: 172.16.0.0/12
Outputs:
OfficeSiteId:
Description: The ID of the workspace.
Value:
Fn::GetAtt:
- SimpleOfficeSite
- OfficeSiteId
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"OfficeSiteName": {
"Type": "String",
"Description": "The name of the workspace. The name must be 2 to 255 characters in length. It must start with a letter and cannot start with http:// or https://. The name can contain letters, digits, colons (:), underscores (_), and hyphens (-).",
"Default": "test"
}
},
"Resources": {
"SimpleOfficeSite": {
"Type": "ALIYUN::ECD::SimpleOfficeSite",
"Properties": {
"OfficeSiteName": {
"Ref": "OfficeSiteName"
},
"CidrBlock": "172.16.0.0/12"
}
}
},
"Outputs": {
"OfficeSiteId": {
"Description": "The ID of the workspace.",
"Value": {
"Fn::GetAtt": [
"SimpleOfficeSite",
"OfficeSiteId"
]
}
}
}
}