@alicloud/ecd20200930 4.1.0 → 4.1.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
@@ -1735,6 +1735,7 @@ export declare class CreateDesktopsRequest extends $tea.Model {
1735
1735
  policyGroupId?: string;
1736
1736
  promotionId?: string;
1737
1737
  regionId?: string;
1738
+ snapshotPolicyId?: string;
1738
1739
  tag?: CreateDesktopsRequestTag[];
1739
1740
  userAssignMode?: string;
1740
1741
  userCommands?: CreateDesktopsRequestUserCommands[];
package/dist/client.js CHANGED
@@ -2509,6 +2509,7 @@ class CreateDesktopsRequest extends $tea.Model {
2509
2509
  policyGroupId: 'PolicyGroupId',
2510
2510
  promotionId: 'PromotionId',
2511
2511
  regionId: 'RegionId',
2512
+ snapshotPolicyId: 'SnapshotPolicyId',
2512
2513
  tag: 'Tag',
2513
2514
  userAssignMode: 'UserAssignMode',
2514
2515
  userCommands: 'UserCommands',
@@ -2541,6 +2542,7 @@ class CreateDesktopsRequest extends $tea.Model {
2541
2542
  policyGroupId: 'string',
2542
2543
  promotionId: 'string',
2543
2544
  regionId: 'string',
2545
+ snapshotPolicyId: 'string',
2544
2546
  tag: { 'type': 'array', 'itemType': CreateDesktopsRequestTag },
2545
2547
  userAssignMode: 'string',
2546
2548
  userCommands: { 'type': 'array', 'itemType': CreateDesktopsRequestUserCommands },
@@ -20497,6 +20499,9 @@ class Client extends openapi_client_1.default {
20497
20499
  if (!tea_util_1.default.isUnset(request.regionId)) {
20498
20500
  query["RegionId"] = request.regionId;
20499
20501
  }
20502
+ if (!tea_util_1.default.isUnset(request.snapshotPolicyId)) {
20503
+ query["SnapshotPolicyId"] = request.snapshotPolicyId;
20504
+ }
20500
20505
  if (!tea_util_1.default.isUnset(request.tag)) {
20501
20506
  query["Tag"] = request.tag;
20502
20507
  }