全部產品
Search
文件中心

CloudOps Orchestration Service:ACS-ECD-BulkyRunCommand

更新時間:Sep 06, 2024

模板名稱

ACS-ECD-BulkyRunCommand 批量在多個CloudDesktop中執行雲助手命令

立即執行

模板描述

批量在多個CloudDesktop中執行雲助手命令

模板類型

自動化

所有者

Alibaba Cloud

輸入參數

參數名稱

描述

類型

是否必填

預設值

約束

commandType

雲助手命令類型

String

commandContent

雲助手命令內容

String

regionId

地區ID

String

{{ ACS::RegionId }}

desktopIds

CloudDesktopID

List

[]

contentEncoding

指令碼內容的編碼方式

String

PlainText

timeout

執行指令碼的逾時時間

Number

600

rateControl

任務執行的並發比率

Json

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

OOSAssumeRole

OOS扮演的RAM角色

String

""

輸出參數

參數名稱

描述

類型

commandOutputs

List

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

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

詳情

ACS-ECD-BulkyRunCommand詳情

模板內容

FormatVersion: OOS-2019-06-01
Description:
  en: Bulky run command on ECD desktops
  zh-cn: 批量在多個CloudDesktop中執行雲助手命令
  name-en: ACS-ECD-BulkyRunCommand
  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
    Default: []
  commandType:
    Label:
      en: CommandType
      zh-cn: 雲助手命令類型
    Type: String
    AllowedValues:
      - RunBatScript
      - RunPowerShellScript
  contentEncoding:
    Label:
      en: ContentEncoding
      zh-cn: 指令碼內容的編碼方式
    Type: String
    AllowedValues:
      - PlainText
      - Base64
    Default: PlainText
  commandContent:
    Label:
      en: CommandContent
      zh-cn: 雲助手命令內容
    Type: String
    AssociationProperty: Code
  timeout:
    Label:
      en: Timeout
      zh-cn: 執行指令碼的逾時時間
    Type: Number
    Default: 600
  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: runCommand
    Action: ACS::ECD::RunCommand
    Description:
      en: Run command on desktops
      zh-cn: 在CloudDesktop中執行命令
    Properties:
      regionId: '{{ regionId }}'
      desktopId: '{{ ACS::TaskLoopItem }}'
      commandType: '{{ commandType }}'
      contentEncoding: '{{ contentEncoding }}'
      commandContent: '{{ commandContent }}'
      timeout: '{{ timeout }}'
    Loop:
      RateControl: '{{ rateControl }}'
      Items: '{{ desktopIds }}'
      Outputs:
        commandOutputs:
          AggregateType: Fn::ListJoin
          AggregateField: commandOutput
    Outputs:
      commandOutput:
        Type: String
        ValueSelector: invocationOutput
Outputs:
  commandOutputs:
    Type: List
    Value: '{{ runCommand.commandOutputs }}'
Metadata:
  ALIYUN::OOS::Interface:
    ParameterGroups:
      - Parameters:
          - commandType
          - contentEncoding
          - commandContent
          - timeout
        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