全部產品
Search
文件中心

CloudOps Orchestration Service:ACS-ECD-BulkyModifyDesktopChargeType

更新時間:Sep 06, 2024

模板名稱

ACS-ECD-BulkyModifyDesktopChargeType 批量修改CloudDesktop的計費方式

立即執行

模板描述

批量修改CloudDesktop的計費方式

模板類型

自動化

所有者

Alibaba Cloud

輸入參數

參數名稱

描述

類型

是否必填

預設值

約束

desktopIds

CloudDesktopID

List

periodUnit

訂用帳戶計費方式的時間長度單位

String

period

購買訂用帳戶資源的時間長度

Number

regionId

地區ID

String

{{ ACS::RegionId }}

desktopChargeType

CloudDesktop要轉換成的計費方式

String

PrePaid

autoPay

是否自動支付

Boolean

True

rateControl

任務執行的並發比率

Json

{'Mode': 'Concurrency', 'MaxErrors': 0, 'Concurrency': 10}

OOSAssumeRole

OOS扮演的RAM角色

String

""

輸出參數

執行此模板需要的權限原則

{
    "Version": "1",
    "Statement": [
        {
            "Action": [
                "ecd:DescribeDesktops",
                "ecd:ModifyDesktopChargeType"
            ],
            "Resource": "*",
            "Effect": "Allow"
        }
    ]
}

詳情

ACS-ECD-BulkyModifyDesktopChargeType詳情

模板內容

FormatVersion: OOS-2019-06-01
Description:
  en: Bulky Modify ECD desktop charge type
  zh-cn: 批量修改CloudDesktop的計費方式
  name-en: ACS-ECD-BulkyModifyDesktopChargeType
  name-zh-cn: 批量修改CloudDesktop的計費方式
Parameters:
  regionId:
    Label:
      en: RegionId
      zh-cn: 地區ID
    Type: String
    AssociationProperty: RegionId
    Default: '{{ ACS::RegionId }}'
  desktopIds:
    Label:
      en: DesktopIds
      zh-cn: CloudDesktopID
    Type: List
  desktopChargeType:
    Description:
      en: Currently only supports conversion from postpaid to monthly prepaid, and the value is PrePaid
      zh-cn: 目前僅支援由隨用隨付轉換為訂用帳戶,取值為PrePaid
    Label:
      en: DesktopChargeType
      zh-cn: CloudDesktop要轉換成的計費方式
    Type: String
    AllowedValues:
      - PrePaid
    Default: PrePaid
  periodUnit:
    Label:
      en: PeriodUnit
      zh-cn: 訂用帳戶計費方式的時間長度單位
    Type: String
    AllowedValues:
      - Week
      - Month
      - Year
  period:
    Description:
      en: "Valid values:
          Valid values when PeriodUnit is set to Week: 1.
          Valid values when PeriodUnit is set to Month: 1, 2, 3, and 6.
          Valid values when PeriodUnit is set to Month: 1, 2, 3, 4, and 5."
      zh-cn: 取值範圍:
        如果PeriodUnit為Week,該參數的取值範圍為{“1”}。
        如果PeriodUnit為Month,該參數的取值範圍為{“1”, “2”, “3”, “6”}。
        如果PeriodUnit為Year,該參數的取值範圍為{“1”, “2”, “3”, “4”, “5”}。
    Label:
      en: Period
      zh-cn: 購買訂用帳戶資源的時間長度
    Type: Number
    AllowedValues:
      - 1
      - 2
      - 3
      - 4
      - 5
      - 6
  autoPay:
    Description:
      en: >-
        Valid values:
        true: enables automatic payment. Make sure that you have sufficient balance in your account. Otherwise, abnormal orders are generated.
        false: generates the order with no payment made. You can log on to the EDS console and complete the payment based on the order number.
      zh-cn: >-
        取值範圍:
        true:自動支付。請確保賬戶餘額充足,否則會產生異常訂單。
        false:只產生訂單,不支付。您可以根據返回的訂單號登入控制台進行支付。
    Label:
      en: AutoPay
      zh-cn: 是否自動支付
    Type: Boolean
    Default: true
  rateControl:
    Label:
      en: RateControl
      zh-cn: 任務執行的並發比率
    Type: Json
    AssociationProperty: RateControl
    Default:
      Mode: Concurrency
      MaxErrors: 0
      Concurrency: 10
  OOSAssumeRole:
    Label:
      en: OOSAssumeRole
      zh-cn: OOS扮演的RAM角色
    Type: String
    Default: ''
RamRole: '{{ OOSAssumeRole }}'
Tasks:
  - Name: modifyDesktopChargeType
    Description:
      en: Modify desktop charge type
      zh-cn: 修改CloudDesktop計費方式
    Action: ACS::ECD::ModifyDesktopChargeType
    Properties:
      regionId: '{{ regionId }}'
      desktopId: '{{ ACS::TaskLoopItem }}'
      desktopChargeType: '{{ desktopChargeType }}'
      period: '{{ period }}'
      periodUnit: '{{ periodUnit }}'
      autoPay: '{{ autoPay }}'
    Loop:
      RateControl: '{{ rateControl }}'
      Items: '{{ desktopIds }}'
Metadata:
  ALIYUN::OOS::Interface:
    ParameterGroups:
      - Parameters:
          - desktopChargeType
          - periodUnit
          - period
          - autoPay
        Label:
          default:
            zh-cn: 配置參數
            en: Configure Parameters
      - Parameters:
          - regionId
          - desktopIds
        Label:
          default:
            zh-cn: 選擇CloudDesktop
            en: Select ECD Desktops
      - Parameters:
          - rateControl
          - OOSAssumeRole
        Label:
          default:
            zh-cn: 進階選項
            en: Control Options