@alicloud/ecd20200930 3.3.0 → 3.3.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
@@ -8474,10 +8474,12 @@ export declare class RenewNetworkPackagesResponse extends $tea.Model {
8474
8474
  }
8475
8475
  export declare class ResetDesktopsRequest extends $tea.Model {
8476
8476
  desktopGroupId?: string;
8477
+ desktopGroupIds?: string[];
8477
8478
  desktopId?: string[];
8478
8479
  imageId?: string;
8479
8480
  payType?: string;
8480
8481
  regionId?: string;
8482
+ resetScope?: string;
8481
8483
  resetType?: string;
8482
8484
  static names(): {
8483
8485
  [key: string]: string;
package/dist/client.js CHANGED
@@ -11979,20 +11979,24 @@ class ResetDesktopsRequest extends $tea.Model {
11979
11979
  static names() {
11980
11980
  return {
11981
11981
  desktopGroupId: 'DesktopGroupId',
11982
+ desktopGroupIds: 'DesktopGroupIds',
11982
11983
  desktopId: 'DesktopId',
11983
11984
  imageId: 'ImageId',
11984
11985
  payType: 'PayType',
11985
11986
  regionId: 'RegionId',
11987
+ resetScope: 'ResetScope',
11986
11988
  resetType: 'ResetType',
11987
11989
  };
11988
11990
  }
11989
11991
  static types() {
11990
11992
  return {
11991
11993
  desktopGroupId: 'string',
11994
+ desktopGroupIds: { 'type': 'array', 'itemType': 'string' },
11992
11995
  desktopId: { 'type': 'array', 'itemType': 'string' },
11993
11996
  imageId: 'string',
11994
11997
  payType: 'string',
11995
11998
  regionId: 'string',
11999
+ resetScope: 'string',
11996
12000
  resetType: 'string',
11997
12001
  };
11998
12002
  }
@@ -25970,6 +25974,9 @@ class Client extends openapi_client_1.default {
25970
25974
  if (!tea_util_1.default.isUnset(request.desktopGroupId)) {
25971
25975
  query["DesktopGroupId"] = request.desktopGroupId;
25972
25976
  }
25977
+ if (!tea_util_1.default.isUnset(request.desktopGroupIds)) {
25978
+ query["DesktopGroupIds"] = request.desktopGroupIds;
25979
+ }
25973
25980
  if (!tea_util_1.default.isUnset(request.desktopId)) {
25974
25981
  query["DesktopId"] = request.desktopId;
25975
25982
  }
@@ -25982,6 +25989,9 @@ class Client extends openapi_client_1.default {
25982
25989
  if (!tea_util_1.default.isUnset(request.regionId)) {
25983
25990
  query["RegionId"] = request.regionId;
25984
25991
  }
25992
+ if (!tea_util_1.default.isUnset(request.resetScope)) {
25993
+ query["ResetScope"] = request.resetScope;
25994
+ }
25985
25995
  if (!tea_util_1.default.isUnset(request.resetType)) {
25986
25996
  query["ResetType"] = request.resetType;
25987
25997
  }