@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alicloud/ecd20200930",
3
- "version": "4.1.0",
3
+ "version": "4.1.1",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
package/src/client.ts CHANGED
@@ -3151,6 +3151,7 @@ export class CreateDesktopsRequest extends $tea.Model {
3151
3151
  policyGroupId?: string;
3152
3152
  promotionId?: string;
3153
3153
  regionId?: string;
3154
+ snapshotPolicyId?: string;
3154
3155
  tag?: CreateDesktopsRequestTag[];
3155
3156
  userAssignMode?: string;
3156
3157
  userCommands?: CreateDesktopsRequestUserCommands[];
@@ -3181,6 +3182,7 @@ export class CreateDesktopsRequest extends $tea.Model {
3181
3182
  policyGroupId: 'PolicyGroupId',
3182
3183
  promotionId: 'PromotionId',
3183
3184
  regionId: 'RegionId',
3185
+ snapshotPolicyId: 'SnapshotPolicyId',
3184
3186
  tag: 'Tag',
3185
3187
  userAssignMode: 'UserAssignMode',
3186
3188
  userCommands: 'UserCommands',
@@ -3214,6 +3216,7 @@ export class CreateDesktopsRequest extends $tea.Model {
3214
3216
  policyGroupId: 'string',
3215
3217
  promotionId: 'string',
3216
3218
  regionId: 'string',
3219
+ snapshotPolicyId: 'string',
3217
3220
  tag: { 'type': 'array', 'itemType': CreateDesktopsRequestTag },
3218
3221
  userAssignMode: 'string',
3219
3222
  userCommands: { 'type': 'array', 'itemType': CreateDesktopsRequestUserCommands },
@@ -26038,6 +26041,10 @@ export default class Client extends OpenApi {
26038
26041
  query["RegionId"] = request.regionId;
26039
26042
  }
26040
26043
 
26044
+ if (!Util.isUnset(request.snapshotPolicyId)) {
26045
+ query["SnapshotPolicyId"] = request.snapshotPolicyId;
26046
+ }
26047
+
26041
26048
  if (!Util.isUnset(request.tag)) {
26042
26049
  query["Tag"] = request.tag;
26043
26050
  }