@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 +1 -0
- package/dist/client.js +5 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +7 -0
package/package.json
CHANGED
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
|
}
|