Todos os produtos
Search
Central de documentação

Resource Orchestration Service:ALIYUN::ECD::UserDesktopGroupAddition

Última atualização: Jun 27, 2026

O recurso ALIYUN::ECD::UserDesktopGroupAddition concede permissões em um pool de computadores em nuvem aos usuários.

Sintaxe

{
  "Type": "ALIYUN::ECD::UserDesktopGroupAddition",
  "Properties": {
    "DesktopGroupId": String,
    "EndUserIds": List
  }
}

Propriedades

Propriedade

Tipo

Obrigatória

Editável

Descrição

Restrição

DesktopGroupId

String

Sim

Não

ID do pool de computadores em nuvem.

Nenhuma.

EndUserIds

List

Sim

Não

IDs dos usuários.

Nenhuma.

Valores de retorno

Fn::GetAtt

  • DesktopGroupId: ID do pool de computadores em nuvem.

  • EndUserIds: IDs dos usuários.

Exemplos

ROSTemplateFormatVersion: '2015-09-01'
Parameters:
  DesktopGroupId:
    Type: String
    Description:
      en: The ID of the desktop group that you want to assign to more regular users.
    Required: true
  EndUserIds:
    AssociationPropertyMetadata:
      Parameter:
        Type: String
        Description:
          en: The regular user to whom you want to assign the desktop group.
        Required: false
    AssociationProperty: List[Parameter]
    Type: Json
    Description:
      en: The regular users to whom you want to assign the desktop group.
    Required: true
    MinLength: 1
    MaxLength: 10000
Resources:
  ExtensionResource:
    Type: ALIYUN::ECD::UserDesktopGroupAddition
    Properties:
      DesktopGroupId:
        Ref: DesktopGroupId
      EndUserIds:
        Ref: EndUserIds
Outputs:
  DesktopGroupId:
    Description: The ID of the desktop group that you want to assign to more regular users.
    Value:
      Fn::GetAtt:
        - ExtensionResource
        - DesktopGroupId
  EndUserIds:
    Description: The regular users to whom you want to assign the desktop group.
    Value:
      Fn::GetAtt:
        - ExtensionResource
        - EndUserIds
{
  "ROSTemplateFormatVersion": "2015-09-01",
  "Parameters": {
    "DesktopGroupId": {
      "Type": "String",
      "Description": {
        "en": "The ID of the desktop group that you want to assign to more regular users."
      },
      "Required": true
    },
    "EndUserIds": {
      "AssociationPropertyMetadata": {
        "Parameter": {
          "Type": "String",
          "Description": {
            "en": "The regular user to whom you want to assign the desktop group."
          },
          "Required": false
        }
      },
      "AssociationProperty": "List[Parameter]",
      "Type": "Json",
      "Description": {
        "en": "The regular users to whom you want to assign the desktop group."
      },
      "Required": true,
      "MinLength": 1,
      "MaxLength": 10000
    }
  },
  "Resources": {
    "ExtensionResource": {
      "Type": "ALIYUN::ECD::UserDesktopGroupAddition",
      "Properties": {
        "DesktopGroupId": {
          "Ref": "DesktopGroupId"
        },
        "EndUserIds": {
          "Ref": "EndUserIds"
        }
      }
    }
  },
  "Outputs": {
    "DesktopGroupId": {
      "Description": "The ID of the desktop group that you want to assign to more regular users.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionResource",
          "DesktopGroupId"
        ]
      }
    },
    "EndUserIds": {
      "Description": "The regular users to whom you want to assign the desktop group.",
      "Value": {
        "Fn::GetAtt": [
          "ExtensionResource",
          "EndUserIds"
        ]
      }
    }
  }
}