@alicloud/ecd20200930 4.20.0 → 4.20.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/client.d.ts CHANGED
@@ -293,6 +293,8 @@ export default class Client extends OpenApi {
293
293
  */
294
294
  attachEndUser(request: $_model.AttachEndUserRequest): Promise<$_model.AttachEndUserResponse>;
295
295
  /**
296
+ * Assigns multiple cloud computers to users in a batch.
297
+ *
296
298
  * @remarks
297
299
  * The cloud computers for which you want to change their policies must be in the Running state.
298
300
  * * After you call this operation, the assignment result is immediately returned. You can call the [DescribeDesktops](https://help.aliyun.com/document_detail/436815.html) operation to query the assignment of the cloud computer. The value of the `ManagementFlags` response parameter indicates the assignment of the cloud computer. A value of `ASSIGNING` indicates that the cloud computer is being assigned, and other values indicate that the cloud computer is assigned.
@@ -304,6 +306,8 @@ export default class Client extends OpenApi {
304
306
  */
305
307
  batchModifyEntitlementWithOptions(request: $_model.BatchModifyEntitlementRequest, runtime: $dara.RuntimeOptions): Promise<$_model.BatchModifyEntitlementResponse>;
306
308
  /**
309
+ * Assigns multiple cloud computers to users in a batch.
310
+ *
307
311
  * @remarks
308
312
  * The cloud computers for which you want to change their policies must be in the Running state.
309
313
  * * After you call this operation, the assignment result is immediately returned. You can call the [DescribeDesktops](https://help.aliyun.com/document_detail/436815.html) operation to query the assignment of the cloud computer. The value of the `ManagementFlags` response parameter indicates the assignment of the cloud computer. A value of `ASSIGNING` indicates that the cloud computer is being assigned, and other values indicate that the cloud computer is assigned.
package/dist/client.js CHANGED
@@ -909,6 +909,8 @@ class Client extends openapi_core_1.default {
909
909
  return await this.attachEndUserWithOptions(request, runtime);
910
910
  }
911
911
  /**
912
+ * Assigns multiple cloud computers to users in a batch.
913
+ *
912
914
  * @remarks
913
915
  * The cloud computers for which you want to change their policies must be in the Running state.
914
916
  * * After you call this operation, the assignment result is immediately returned. You can call the [DescribeDesktops](https://help.aliyun.com/document_detail/436815.html) operation to query the assignment of the cloud computer. The value of the `ManagementFlags` response parameter indicates the assignment of the cloud computer. A value of `ASSIGNING` indicates that the cloud computer is being assigned, and other values indicate that the cloud computer is assigned.
@@ -959,6 +961,8 @@ class Client extends openapi_core_1.default {
959
961
  return $dara.cast(await this.callApi(params, req, runtime), new $_model.BatchModifyEntitlementResponse({}));
960
962
  }
961
963
  /**
964
+ * Assigns multiple cloud computers to users in a batch.
965
+ *
962
966
  * @remarks
963
967
  * The cloud computers for which you want to change their policies must be in the Running state.
964
968
  * * After you call this operation, the assignment result is immediately returned. You can call the [DescribeDesktops](https://help.aliyun.com/document_detail/436815.html) operation to query the assignment of the cloud computer. The value of the `ManagementFlags` response parameter indicates the assignment of the cloud computer. A value of `ASSIGNING` indicates that the cloud computer is being assigned, and other values indicate that the cloud computer is assigned.
@@ -4213,6 +4217,9 @@ class Client extends openapi_core_1.default {
4213
4217
  if (!$dara.isNull(request.domainName)) {
4214
4218
  query["DomainName"] = request.domainName;
4215
4219
  }
4220
+ if (!$dara.isNull(request.eid)) {
4221
+ query["Eid"] = request.eid;
4222
+ }
4216
4223
  if (!$dara.isNull(request.enableAdminAccess)) {
4217
4224
  query["EnableAdminAccess"] = request.enableAdminAccess;
4218
4225
  }
@@ -9888,6 +9895,9 @@ class Client extends openapi_core_1.default {
9888
9895
  async describeSubnetsWithOptions(request, runtime) {
9889
9896
  request.validate();
9890
9897
  let query = {};
9898
+ if (!$dara.isNull(request.eid)) {
9899
+ query["Eid"] = request.eid;
9900
+ }
9891
9901
  if (!$dara.isNull(request.maxResults)) {
9892
9902
  query["MaxResults"] = request.maxResults;
9893
9903
  }