@alicloud/ecs20140526 7.9.1 → 7.9.2
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 +226 -220
- package/dist/client.js +229 -220
- package/dist/client.js.map +1 -1
- package/dist/models/AttachDiskRequest.d.ts +25 -27
- package/dist/models/AttachDiskRequest.js.map +1 -1
- package/dist/models/CancelAutoSnapshotPolicyRequest.d.ts +6 -9
- package/dist/models/CancelAutoSnapshotPolicyRequest.js.map +1 -1
- package/dist/models/CancelImagePipelineExecutionRequest.d.ts +1 -1
- package/dist/models/CloneDisksRequest.d.ts +10 -10
- package/dist/models/CopySnapshotRequest.d.ts +17 -18
- package/dist/models/CopySnapshotRequest.js.map +1 -1
- package/dist/models/CreateAutoSnapshotPolicyRequest.d.ts +29 -35
- package/dist/models/CreateAutoSnapshotPolicyRequest.js.map +1 -1
- package/dist/models/CreateAutoSnapshotPolicyResponseBody.d.ts +1 -1
- package/dist/models/CreateDiskRequest.d.ts +30 -30
- package/dist/models/CreateDiskResponseBody.d.ts +2 -2
- package/dist/models/CreateSnapshotGroupRequest.d.ts +23 -25
- package/dist/models/CreateSnapshotGroupRequest.js.map +1 -1
- package/dist/models/CreateSnapshotRequest.d.ts +24 -29
- package/dist/models/CreateSnapshotRequest.js.map +1 -1
- package/dist/models/DeleteSnapshotGroupRequest.d.ts +2 -2
- package/dist/models/DeleteSnapshotGroupResponseBody.d.ts +1 -1
- package/dist/models/DeleteSnapshotRequest.d.ts +2 -2
- package/dist/models/DescribeDiskDefaultKmskeyIdRequest.d.ts +1 -1
- package/dist/models/DescribeDiskDefaultKmskeyIdResponseBody.d.ts +1 -1
- package/dist/models/DescribeDiskEncryptionByDefaultStatusRequest.d.ts +1 -1
- package/dist/models/DescribeDiskEncryptionByDefaultStatusResponseBody.d.ts +5 -3
- package/dist/models/DescribeDiskEncryptionByDefaultStatusResponseBody.js.map +1 -1
- package/dist/models/DescribeImagesRequest.d.ts +21 -20
- package/dist/models/DescribeImagesRequest.js +2 -0
- package/dist/models/DescribeImagesRequest.js.map +1 -1
- package/dist/models/DescribeImagesResponseBody.d.ts +1 -0
- package/dist/models/DescribeImagesResponseBody.js +2 -0
- package/dist/models/DescribeImagesResponseBody.js.map +1 -1
- package/dist/models/DescribeSendFileResultsRequest.d.ts +13 -13
- package/dist/models/DescribeSnapshotGroupsRequest.d.ts +11 -11
- package/dist/models/DescribeSnapshotGroupsResponseBody.d.ts +3 -3
- package/dist/models/DisableDiskEncryptionByDefaultRequest.d.ts +1 -1
- package/package.json +1 -1
- package/src/client.ts +230 -220
- package/src/models/AttachDiskRequest.ts +25 -27
- package/src/models/CancelAutoSnapshotPolicyRequest.ts +6 -9
- package/src/models/CancelImagePipelineExecutionRequest.ts +1 -1
- package/src/models/CloneDisksRequest.ts +10 -10
- package/src/models/CopySnapshotRequest.ts +17 -18
- package/src/models/CreateAutoSnapshotPolicyRequest.ts +29 -35
- package/src/models/CreateAutoSnapshotPolicyResponseBody.ts +1 -1
- package/src/models/CreateDiskRequest.ts +30 -30
- package/src/models/CreateDiskResponseBody.ts +2 -2
- package/src/models/CreateSnapshotGroupRequest.ts +23 -25
- package/src/models/CreateSnapshotRequest.ts +24 -29
- package/src/models/DeleteSnapshotGroupRequest.ts +2 -2
- package/src/models/DeleteSnapshotGroupResponseBody.ts +1 -1
- package/src/models/DeleteSnapshotRequest.ts +2 -2
- package/src/models/DescribeDiskDefaultKmskeyIdRequest.ts +1 -1
- package/src/models/DescribeDiskDefaultKmskeyIdResponseBody.ts +1 -1
- package/src/models/DescribeDiskEncryptionByDefaultStatusRequest.ts +1 -1
- package/src/models/DescribeDiskEncryptionByDefaultStatusResponseBody.ts +5 -3
- package/src/models/DescribeImagesRequest.ts +23 -20
- package/src/models/DescribeImagesResponseBody.ts +3 -0
- package/src/models/DescribeSendFileResultsRequest.ts +13 -13
- package/src/models/DescribeSnapshotGroupsRequest.ts +11 -11
- package/src/models/DescribeSnapshotGroupsResponseBody.ts +3 -3
- package/src/models/DisableDiskEncryptionByDefaultRequest.ts +1 -1
|
@@ -2,15 +2,15 @@ import * as $dara from '@darabonba/typescript';
|
|
|
2
2
|
export declare class AttachDiskRequest extends $dara.Model {
|
|
3
3
|
/**
|
|
4
4
|
* @remarks
|
|
5
|
-
* Specifies whether to attach the disk as
|
|
5
|
+
* Specifies whether to attach the disk as a system disk. Valid values:
|
|
6
6
|
*
|
|
7
|
-
* - true:
|
|
7
|
+
* - true: The disk is attached as a system disk.
|
|
8
8
|
*
|
|
9
|
-
* - false:
|
|
9
|
+
* - false: The disk is not attached as a system disk.
|
|
10
10
|
*
|
|
11
11
|
* Default value: false.
|
|
12
12
|
*
|
|
13
|
-
* >
|
|
13
|
+
* > If you set `Bootable=true`, the destination ECS instance must have no system disk attached.
|
|
14
14
|
*
|
|
15
15
|
* @example
|
|
16
16
|
* false
|
|
@@ -20,19 +20,18 @@ export declare class AttachDiskRequest extends $dara.Model {
|
|
|
20
20
|
* @remarks
|
|
21
21
|
* Specifies whether to release the disk when the instance is released. Valid values:
|
|
22
22
|
*
|
|
23
|
-
* - true:
|
|
24
|
-
*
|
|
25
|
-
* - false: does not release the disk when the instance is released. The disk is retained as a pay-as-you-go data disk.
|
|
23
|
+
* - true: The disk is released together with the instance.
|
|
24
|
+
* - false: The disk is not released together with the instance. The disk is retained as a pay-as-you-go data disk.
|
|
26
25
|
*
|
|
27
26
|
* Default value: false.
|
|
28
27
|
*
|
|
29
|
-
* When you
|
|
28
|
+
* When you set this parameter, take note of the following items:
|
|
30
29
|
*
|
|
31
|
-
* - If
|
|
30
|
+
* - If you set `DeleteWithInstance` to `false` and the ECS instance is locked for security reasons, meaning that `OperationLocks` contains `"LockReason" : "security"`, this parameter is ignored when the instance is released, and the disk is released together with the instance.
|
|
32
31
|
*
|
|
33
|
-
* - If
|
|
32
|
+
* - If the disk to be attached is an `elastic ephemeral disk`, you must set `DeleteWithInstance` to `true`.
|
|
34
33
|
*
|
|
35
|
-
* -
|
|
34
|
+
* - Disks with the multi-attach feature enabled do not support this parameter.
|
|
36
35
|
*
|
|
37
36
|
* @example
|
|
38
37
|
* false
|
|
@@ -42,7 +41,7 @@ export declare class AttachDiskRequest extends $dara.Model {
|
|
|
42
41
|
* @remarks
|
|
43
42
|
* The device name of the disk.
|
|
44
43
|
*
|
|
45
|
-
* > This parameter will be
|
|
44
|
+
* > This parameter will be deprecated soon. To improve compatibility, use other parameters to identify the disk.
|
|
46
45
|
*
|
|
47
46
|
* @example
|
|
48
47
|
* testDeviceName
|
|
@@ -50,9 +49,9 @@ export declare class AttachDiskRequest extends $dara.Model {
|
|
|
50
49
|
device?: string;
|
|
51
50
|
/**
|
|
52
51
|
* @remarks
|
|
53
|
-
* The ID of the disk. The disk
|
|
52
|
+
* The ID of the disk to be attached. The disk (`DiskId`) and the instance (`InstanceId`) must be in the same zone.
|
|
54
53
|
*
|
|
55
|
-
* >
|
|
54
|
+
* > Both data disks and system disks can be attached. For related constraints, see the operation description section above.
|
|
56
55
|
*
|
|
57
56
|
* This parameter is required.
|
|
58
57
|
*
|
|
@@ -62,15 +61,15 @@ export declare class AttachDiskRequest extends $dara.Model {
|
|
|
62
61
|
diskId?: string;
|
|
63
62
|
/**
|
|
64
63
|
* @remarks
|
|
65
|
-
* Specifies whether to
|
|
66
|
-
*
|
|
67
|
-
* - true: force attaches the disk to the instance.
|
|
64
|
+
* Specifies whether to forcefully attach the disk. Valid values:
|
|
68
65
|
*
|
|
69
|
-
* -
|
|
66
|
+
* - true: Forcefully attaches the disk.
|
|
67
|
+
* - false: Does not forcefully attach the disk.
|
|
70
68
|
*
|
|
71
69
|
* Default value: false.
|
|
72
70
|
*
|
|
73
|
-
*
|
|
71
|
+
*
|
|
72
|
+
* > Currently, only regional ESSDs (cloud_regional_disk_auto) support setting this parameter to true.
|
|
74
73
|
*
|
|
75
74
|
* @example
|
|
76
75
|
* false
|
|
@@ -78,7 +77,7 @@ export declare class AttachDiskRequest extends $dara.Model {
|
|
|
78
77
|
force?: boolean;
|
|
79
78
|
/**
|
|
80
79
|
* @remarks
|
|
81
|
-
* The ID of the instance to which you want to attach the disk.
|
|
80
|
+
* The ID of the ECS instance to which you want to attach the disk.
|
|
82
81
|
*
|
|
83
82
|
* This parameter is required.
|
|
84
83
|
*
|
|
@@ -88,11 +87,11 @@ export declare class AttachDiskRequest extends $dara.Model {
|
|
|
88
87
|
instanceId?: string;
|
|
89
88
|
/**
|
|
90
89
|
* @remarks
|
|
91
|
-
* The name of the SSH key pair that
|
|
90
|
+
* The name of the SSH key pair that is bound to the Linux ECS instance when you attach a system disk.
|
|
92
91
|
*
|
|
93
|
-
* - Windows instances
|
|
92
|
+
* - Windows Server instances: SSH key pairs are not supported. Even if this parameter is specified, only the `Password` configuration takes effect.
|
|
94
93
|
*
|
|
95
|
-
* -
|
|
94
|
+
* - Linux instances: The password-based logon method is disabled by default.
|
|
96
95
|
*
|
|
97
96
|
* @example
|
|
98
97
|
* KeyPairTestName
|
|
@@ -102,15 +101,14 @@ export declare class AttachDiskRequest extends $dara.Model {
|
|
|
102
101
|
ownerId?: number;
|
|
103
102
|
/**
|
|
104
103
|
* @remarks
|
|
105
|
-
* The password that is set when you attach
|
|
104
|
+
* The password that is set for the instance when you attach a system disk. The password is effective only for the administrator and root usernames and is not effective for other usernames. The password must be 8 to 30 characters in length and must contain at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters. The following special characters are supported:
|
|
106
105
|
*
|
|
107
106
|
* ```
|
|
108
107
|
* ()`~!@#$%^&*-_+=|{}[]:;\\"<>,.?/
|
|
109
108
|
* ```
|
|
109
|
+
* For Windows instances, the password cannot start with a forward slash (/).
|
|
110
110
|
*
|
|
111
|
-
*
|
|
112
|
-
*
|
|
113
|
-
* > If `Password` is configured, we recommend that you send requests over HTTPS to prevent password leaks.
|
|
111
|
+
* > If you specify the `Password` parameter, send the request over HTTPS to prevent password leaks.
|
|
114
112
|
*
|
|
115
113
|
* @example
|
|
116
114
|
* EcsV587!
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AttachDiskRequest.js","sourceRoot":"","sources":["../../src/models/AttachDiskRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,iBAAkB,SAAQ,KAAK,CAAC,KAAK;
|
|
1
|
+
{"version":3,"file":"AttachDiskRequest.js","sourceRoot":"","sources":["../../src/models/AttachDiskRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,iBAAkB,SAAQ,KAAK,CAAC,KAAK;IAqHhD,MAAM,CAAC,KAAK;QACV,OAAO;YACL,QAAQ,EAAE,UAAU;YACpB,kBAAkB,EAAE,oBAAoB;YACxC,MAAM,EAAE,QAAQ;YAChB,MAAM,EAAE,QAAQ;YAChB,KAAK,EAAE,OAAO;YACd,UAAU,EAAE,YAAY;YACxB,WAAW,EAAE,aAAa;YAC1B,YAAY,EAAE,cAAc;YAC5B,OAAO,EAAE,SAAS;YAClB,QAAQ,EAAE,UAAU;YACpB,oBAAoB,EAAE,sBAAsB;YAC5C,eAAe,EAAE,iBAAiB;SACnC,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,QAAQ,EAAE,SAAS;YACnB,kBAAkB,EAAE,SAAS;YAC7B,MAAM,EAAE,QAAQ;YAChB,MAAM,EAAE,QAAQ;YAChB,KAAK,EAAE,SAAS;YAChB,UAAU,EAAE,QAAQ;YACpB,WAAW,EAAE,QAAQ;YACrB,YAAY,EAAE,QAAQ;YACtB,OAAO,EAAE,QAAQ;YACjB,QAAQ,EAAE,QAAQ;YAClB,oBAAoB,EAAE,QAAQ;YAC9B,eAAe,EAAE,QAAQ;SAC1B,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AA9JD,8CA8JC"}
|
|
@@ -5,13 +5,10 @@ export declare class CancelAutoSnapshotPolicyRequest extends $dara.Model {
|
|
|
5
5
|
resourceOwnerId?: number;
|
|
6
6
|
/**
|
|
7
7
|
* @remarks
|
|
8
|
-
* The ID of the
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
* - If only one auto snapshot policy is applied to a disk, that policy is canceled.
|
|
13
|
-
*
|
|
14
|
-
* - If a disk has more than one auto snapshot policy, the request fails and returns the `OperationDenied.TooManyAutoSnapshotPolicies` error code. In this case, you must specify `autoSnapshotPolicyId` to identify the policy to cancel.
|
|
8
|
+
* The ID of the automatic snapshot policy that you want to cancel.
|
|
9
|
+
* - Default value: empty. If you use the default value, note the following items:
|
|
10
|
+
* - If only one automatic snapshot policy is applied to the cloud disk, the automatic snapshot policy is canceled.
|
|
11
|
+
* - If more than one automatic snapshot policy is applied to the cloud disk, the `OperationDenied.TooManyAutoSnapshotPolicies` error code is returned and the request fails. Specify the `autoSnapshotPolicyId` parameter to specify the ID of the automatic snapshot policy that you want to cancel.
|
|
15
12
|
*
|
|
16
13
|
* @example
|
|
17
14
|
* sp-bp14yziiuvu3s6jn****
|
|
@@ -19,7 +16,7 @@ export declare class CancelAutoSnapshotPolicyRequest extends $dara.Model {
|
|
|
19
16
|
autoSnapshotPolicyId?: string;
|
|
20
17
|
/**
|
|
21
18
|
* @remarks
|
|
22
|
-
* The IDs of the
|
|
19
|
+
* The IDs of the cloud disks. To cancel the automatic snapshot policy for multiple cloud disks, specify the cloud disk IDs in a JSON array in the format of "d-xxxxxxxxx", "d-yyyyyyyyy", … "d-zzzzzzzzz". Separate multiple cloud disk IDs with commas (,).
|
|
23
20
|
*
|
|
24
21
|
* This parameter is required.
|
|
25
22
|
*
|
|
@@ -29,7 +26,7 @@ export declare class CancelAutoSnapshotPolicyRequest extends $dara.Model {
|
|
|
29
26
|
diskIds?: string;
|
|
30
27
|
/**
|
|
31
28
|
* @remarks
|
|
32
|
-
* The region ID of the
|
|
29
|
+
* The region ID of the automatic snapshot policy and cloud disks. You can call [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) to query the most recent region list.
|
|
33
30
|
*
|
|
34
31
|
* This parameter is required.
|
|
35
32
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CancelAutoSnapshotPolicyRequest.js","sourceRoot":"","sources":["../../src/models/CancelAutoSnapshotPolicyRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,+BAAgC,SAAQ,KAAK,CAAC,KAAK;
|
|
1
|
+
{"version":3,"file":"CancelAutoSnapshotPolicyRequest.js","sourceRoot":"","sources":["../../src/models/CancelAutoSnapshotPolicyRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,+BAAgC,SAAQ,KAAK,CAAC,KAAK;IAmC9D,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,SAAS;YAClB,oBAAoB,EAAE,sBAAsB;YAC5C,eAAe,EAAE,iBAAiB;YAClC,oBAAoB,EAAE,sBAAsB;YAC5C,OAAO,EAAE,SAAS;YAClB,QAAQ,EAAE,UAAU;SACrB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,QAAQ;YACjB,oBAAoB,EAAE,QAAQ;YAC9B,eAAe,EAAE,QAAQ;YACzB,oBAAoB,EAAE,QAAQ;YAC9B,OAAO,EAAE,QAAQ;YACjB,QAAQ,EAAE,QAAQ;SACnB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAhED,0EAgEC"}
|
|
@@ -30,7 +30,7 @@ export declare class CancelImagePipelineExecutionRequestTemplateTag extends $dar
|
|
|
30
30
|
export declare class CancelImagePipelineExecutionRequest extends $dara.Model {
|
|
31
31
|
/**
|
|
32
32
|
* @remarks
|
|
33
|
-
* The ID of the
|
|
33
|
+
* The ID of the image building task.
|
|
34
34
|
*
|
|
35
35
|
* This parameter is required.
|
|
36
36
|
*
|
|
@@ -92,14 +92,14 @@ export declare class CloneDisksRequest extends $dara.Model {
|
|
|
92
92
|
* @remarks
|
|
93
93
|
* The category of the new disk. Valid values:
|
|
94
94
|
*
|
|
95
|
-
* - cloud_essd:
|
|
95
|
+
* - cloud_essd: enterprise SSD.
|
|
96
96
|
* - cloud_auto: ESSD AutoPL disk.
|
|
97
97
|
* - cloud_essd_entry: ESSD Entry disk.
|
|
98
|
-
* - cloud_regional_disk_auto: regional
|
|
98
|
+
* - cloud_regional_disk_auto: regional ESSD.
|
|
99
99
|
*
|
|
100
100
|
* > Disk category restrictions for disk cloning:
|
|
101
|
-
* > - Non-regional disks can
|
|
102
|
-
* > - Regional disks can
|
|
101
|
+
* > - Non-regional disks can be cloned only to non-regional types.
|
|
102
|
+
* > - Regional disks can be cloned only to regional types.
|
|
103
103
|
*
|
|
104
104
|
* This parameter is required.
|
|
105
105
|
*
|
|
@@ -120,8 +120,8 @@ export declare class CloneDisksRequest extends $dara.Model {
|
|
|
120
120
|
/**
|
|
121
121
|
* @remarks
|
|
122
122
|
* Specifies whether to perform only a dry run, without performing the actual request. Valid values:
|
|
123
|
-
* - true: sends a check request without querying the filing status. The
|
|
124
|
-
* - false (default): sends a
|
|
123
|
+
* - true: sends a check request without querying the filing status. The check items include whether the AccessKey pair is valid, whether the Resource Access Management (RAM) user is granted the required authorization, and whether the required parameters are specified. If the check fails, the corresponding error message is returned. If the check succeeds, the DryRunOperation error code is returned.
|
|
124
|
+
* - false (default): sends a Normal request. After the check succeeds, a 2XX HTTP status code is returned and the filing status is directly queried.
|
|
125
125
|
*
|
|
126
126
|
* @example
|
|
127
127
|
* true
|
|
@@ -149,10 +149,10 @@ export declare class CloneDisksRequest extends $dara.Model {
|
|
|
149
149
|
kmsKeyId?: string;
|
|
150
150
|
/**
|
|
151
151
|
* @remarks
|
|
152
|
-
* Specifies whether to enable the multi-attach attribute for the new disk.
|
|
152
|
+
* Specifies whether to enable the multi-attach attribute for the new disk. Valid values:
|
|
153
153
|
*
|
|
154
154
|
* - Disabled: disables the multi-attach attribute.
|
|
155
|
-
* - Enabled: enables the multi-attach attribute.
|
|
155
|
+
* - Enabled: enables the multi-attach attribute. Currently, only enterprise SSDs support Settings to `Enabled`.
|
|
156
156
|
*
|
|
157
157
|
* This parameter is required.
|
|
158
158
|
*
|
|
@@ -163,7 +163,7 @@ export declare class CloneDisksRequest extends $dara.Model {
|
|
|
163
163
|
ownerId?: number;
|
|
164
164
|
/**
|
|
165
165
|
* @remarks
|
|
166
|
-
* The performance level
|
|
166
|
+
* The performance level of the standard SSD. Settings for this parameter depend on the disk category. Valid values:
|
|
167
167
|
*
|
|
168
168
|
* - PL0: a single disk can deliver up to 10,000 random read/write IOPS.
|
|
169
169
|
* - PL1: a single disk can deliver up to 50,000 random read/write IOPS.
|
|
@@ -215,7 +215,7 @@ export declare class CloneDisksRequest extends $dara.Model {
|
|
|
215
215
|
* @remarks
|
|
216
216
|
* The capacity of the new disk. Unit: GiB. You must specify a value for this parameter. Valid values:
|
|
217
217
|
*
|
|
218
|
-
* - cloud_essd:
|
|
218
|
+
* - cloud_essd: The valid values depend on the performance level.
|
|
219
219
|
* - PL0: 1 to 65,536.
|
|
220
220
|
* - PL1: 20 to 65,536.
|
|
221
221
|
* - PL2: 461 to 65,536.
|
|
@@ -38,7 +38,7 @@ export declare class CopySnapshotRequestArn extends $dara.Model {
|
|
|
38
38
|
export declare class CopySnapshotRequestTag extends $dara.Model {
|
|
39
39
|
/**
|
|
40
40
|
* @remarks
|
|
41
|
-
* The key of
|
|
41
|
+
* The tag key of the new snapshot. Once specified, the tag key cannot be an empty string. The tag key can be up to 128 characters in length and cannot start with aliyun or acs:. It cannot contain http:// or https://.
|
|
42
42
|
*
|
|
43
43
|
* @example
|
|
44
44
|
* TestKey
|
|
@@ -46,7 +46,7 @@ export declare class CopySnapshotRequestTag extends $dara.Model {
|
|
|
46
46
|
key?: string;
|
|
47
47
|
/**
|
|
48
48
|
* @remarks
|
|
49
|
-
* The value of
|
|
49
|
+
* The tag value of the new snapshot. Once specified, the tag value can be an empty string. The tag value can be up to 128 characters in length and cannot start with aliyun or acs:. It cannot contain http:// or https://.
|
|
50
50
|
*
|
|
51
51
|
* @example
|
|
52
52
|
* TestValue
|
|
@@ -66,12 +66,12 @@ export declare class CopySnapshotRequestTag extends $dara.Model {
|
|
|
66
66
|
export declare class CopySnapshotRequest extends $dara.Model {
|
|
67
67
|
/**
|
|
68
68
|
* @remarks
|
|
69
|
-
* > This parameter is
|
|
69
|
+
* > This parameter is in invitational preview and is not publicly available.
|
|
70
70
|
*/
|
|
71
71
|
arn?: CopySnapshotRequestArn[];
|
|
72
72
|
/**
|
|
73
73
|
* @remarks
|
|
74
|
-
*
|
|
74
|
+
* Ensures the idempotence of the request. The value is generated from your client and must be unique among different requests. The value of ClientToken can contain only ASCII characters and cannot exceed 64 characters in length. For more information, see [How to ensure idempotence](https://help.aliyun.com/document_detail/25693.html).
|
|
75
75
|
*
|
|
76
76
|
* @example
|
|
77
77
|
* 123e4567-e89b-12d3-a456-426655440000
|
|
@@ -79,7 +79,7 @@ export declare class CopySnapshotRequest extends $dara.Model {
|
|
|
79
79
|
clientToken?: string;
|
|
80
80
|
/**
|
|
81
81
|
* @remarks
|
|
82
|
-
* The ID of the destination region to which to copy the
|
|
82
|
+
* The ID of the destination region to which to copy the snapshot.
|
|
83
83
|
*
|
|
84
84
|
* This parameter is required.
|
|
85
85
|
*
|
|
@@ -89,9 +89,9 @@ export declare class CopySnapshotRequest extends $dara.Model {
|
|
|
89
89
|
destinationRegionId?: string;
|
|
90
90
|
/**
|
|
91
91
|
* @remarks
|
|
92
|
-
* The description of the new snapshot. The description must be 2 to 256 characters in length and cannot start with http
|
|
92
|
+
* The description of the new snapshot. The description must be 2 to 256 characters in length and cannot start with http:// or https://.
|
|
93
93
|
*
|
|
94
|
-
*
|
|
94
|
+
* Default value: null.
|
|
95
95
|
*
|
|
96
96
|
* This parameter is required.
|
|
97
97
|
*
|
|
@@ -101,9 +101,9 @@ export declare class CopySnapshotRequest extends $dara.Model {
|
|
|
101
101
|
destinationSnapshotDescription?: string;
|
|
102
102
|
/**
|
|
103
103
|
* @remarks
|
|
104
|
-
* The name of the new snapshot. The name must be 2 to 128 characters in length
|
|
104
|
+
* The name of the new snapshot. The name must be 2 to 128 characters in length and must start with a letter or a Chinese character. It cannot start with http:// or https://. The name can contain letters, digits, and Unicode characters that are categorized under the letter classification. It can also contain colons (:), underscores (_), periods (.), or hyphens (-).
|
|
105
105
|
*
|
|
106
|
-
*
|
|
106
|
+
* Default value: null.
|
|
107
107
|
*
|
|
108
108
|
* This parameter is required.
|
|
109
109
|
*
|
|
@@ -121,11 +121,10 @@ export declare class CopySnapshotRequest extends $dara.Model {
|
|
|
121
121
|
destinationStorageLocationArn?: string;
|
|
122
122
|
/**
|
|
123
123
|
* @remarks
|
|
124
|
-
* Specifies whether to encrypt the
|
|
124
|
+
* Specifies whether to encrypt the cloud disk. Valid values:
|
|
125
125
|
*
|
|
126
|
-
* - true
|
|
127
|
-
*
|
|
128
|
-
* - false
|
|
126
|
+
* - true: encrypts the cloud disk.
|
|
127
|
+
* - false: does not encrypt the cloud disk.
|
|
129
128
|
*
|
|
130
129
|
* Default value: false.
|
|
131
130
|
*
|
|
@@ -135,7 +134,7 @@ export declare class CopySnapshotRequest extends $dara.Model {
|
|
|
135
134
|
encrypted?: boolean;
|
|
136
135
|
/**
|
|
137
136
|
* @remarks
|
|
138
|
-
* The
|
|
137
|
+
* The customer master key (CMK) in the destination region.
|
|
139
138
|
*
|
|
140
139
|
* @example
|
|
141
140
|
* 0e478b7a-4262-4802-b8cb-00d3fb40****
|
|
@@ -144,7 +143,7 @@ export declare class CopySnapshotRequest extends $dara.Model {
|
|
|
144
143
|
ownerId?: number;
|
|
145
144
|
/**
|
|
146
145
|
* @remarks
|
|
147
|
-
* The region ID of the source snapshot. You can call
|
|
146
|
+
* The region ID of the source snapshot. You can call [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) to query the most recent region list.
|
|
148
147
|
*
|
|
149
148
|
* This parameter is required.
|
|
150
149
|
*
|
|
@@ -164,9 +163,9 @@ export declare class CopySnapshotRequest extends $dara.Model {
|
|
|
164
163
|
resourceOwnerId?: number;
|
|
165
164
|
/**
|
|
166
165
|
* @remarks
|
|
167
|
-
* The retention period of the new snapshot
|
|
166
|
+
* The retention period of the new snapshot, in days. The snapshot undergoes automatic release when the retention period expires. Valid values: 1 to 65536.
|
|
168
167
|
*
|
|
169
|
-
*
|
|
168
|
+
* Default value: null, which indicates that the snapshot does not undergo automatic release.
|
|
170
169
|
*
|
|
171
170
|
* @example
|
|
172
171
|
* 60
|
|
@@ -184,7 +183,7 @@ export declare class CopySnapshotRequest extends $dara.Model {
|
|
|
184
183
|
snapshotId?: string;
|
|
185
184
|
/**
|
|
186
185
|
* @remarks
|
|
187
|
-
* The tag
|
|
186
|
+
* The tag information of the new snapshot.
|
|
188
187
|
*/
|
|
189
188
|
tag?: CopySnapshotRequestTag[];
|
|
190
189
|
static names(): {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CopySnapshotRequest.js","sourceRoot":"","sources":["../../src/models/CopySnapshotRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,sBAAuB,SAAQ,KAAK,CAAC,KAAK;IAyBrD,MAAM,CAAC,KAAK;QACV,OAAO;YACL,aAAa,EAAE,eAAe;YAC9B,QAAQ,EAAE,UAAU;YACpB,OAAO,EAAE,SAAS;SACnB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,aAAa,EAAE,QAAQ;YACvB,QAAQ,EAAE,QAAQ;YAClB,OAAO,EAAE,QAAQ;SAClB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAhDD,wDAgDC;AAED,MAAa,sBAAuB,SAAQ,KAAK,CAAC,KAAK;IAiBrD,MAAM,CAAC,KAAK;QACV,OAAO;YACL,GAAG,EAAE,KAAK;YACV,KAAK,EAAE,OAAO;SACf,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,GAAG,EAAE,QAAQ;YACb,KAAK,EAAE,QAAQ;SAChB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAtCD,wDAsCC;AAED,MAAa,mBAAoB,SAAQ,KAAK,CAAC,KAAK;
|
|
1
|
+
{"version":3,"file":"CopySnapshotRequest.js","sourceRoot":"","sources":["../../src/models/CopySnapshotRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,sBAAuB,SAAQ,KAAK,CAAC,KAAK;IAyBrD,MAAM,CAAC,KAAK;QACV,OAAO;YACL,aAAa,EAAE,eAAe;YAC9B,QAAQ,EAAE,UAAU;YACpB,OAAO,EAAE,SAAS;SACnB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,aAAa,EAAE,QAAQ;YACvB,QAAQ,EAAE,QAAQ;YAClB,OAAO,EAAE,QAAQ;SAClB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAhDD,wDAgDC;AAED,MAAa,sBAAuB,SAAQ,KAAK,CAAC,KAAK;IAiBrD,MAAM,CAAC,KAAK;QACV,OAAO;YACL,GAAG,EAAE,KAAK;YACV,KAAK,EAAE,OAAO;SACf,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,GAAG,EAAE,QAAQ;YACb,KAAK,EAAE,QAAQ;SAChB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAtCD,wDAsCC;AAED,MAAa,mBAAoB,SAAQ,KAAK,CAAC,KAAK;IA2HlD,MAAM,CAAC,KAAK;QACV,OAAO;YACL,GAAG,EAAE,KAAK;YACV,WAAW,EAAE,aAAa;YAC1B,mBAAmB,EAAE,qBAAqB;YAC1C,8BAA8B,EAAE,gCAAgC;YAChE,uBAAuB,EAAE,yBAAyB;YAClD,6BAA6B,EAAE,+BAA+B;YAC9D,SAAS,EAAE,WAAW;YACtB,QAAQ,EAAE,UAAU;YACpB,OAAO,EAAE,SAAS;YAClB,QAAQ,EAAE,UAAU;YACpB,eAAe,EAAE,iBAAiB;YAClC,oBAAoB,EAAE,sBAAsB;YAC5C,eAAe,EAAE,iBAAiB;YAClC,aAAa,EAAE,eAAe;YAC9B,UAAU,EAAE,YAAY;YACxB,GAAG,EAAE,KAAK;SACX,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,GAAG,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,sBAAsB,EAAE;YAC5D,WAAW,EAAE,QAAQ;YACrB,mBAAmB,EAAE,QAAQ;YAC7B,8BAA8B,EAAE,QAAQ;YACxC,uBAAuB,EAAE,QAAQ;YACjC,6BAA6B,EAAE,QAAQ;YACvC,SAAS,EAAE,SAAS;YACpB,QAAQ,EAAE,QAAQ;YAClB,OAAO,EAAE,QAAQ;YACjB,QAAQ,EAAE,QAAQ;YAClB,eAAe,EAAE,QAAQ;YACzB,oBAAoB,EAAE,QAAQ;YAC9B,eAAe,EAAE,QAAQ;YACzB,aAAa,EAAE,QAAQ;YACvB,UAAU,EAAE,QAAQ;YACpB,GAAG,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,sBAAsB,EAAE;SAC7D,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC;YAC3B,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;QACtC,CAAC;QACD,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC;YAC3B,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;QACtC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAlLD,kDAkLC"}
|
|
@@ -43,11 +43,10 @@ export declare class CreateAutoSnapshotPolicyRequestCopyEncryptionConfiguration
|
|
|
43
43
|
arn?: CreateAutoSnapshotPolicyRequestCopyEncryptionConfigurationArn[];
|
|
44
44
|
/**
|
|
45
45
|
* @remarks
|
|
46
|
-
* Specifies whether to enable cross-region snapshot
|
|
46
|
+
* Specifies whether to enable encryption for cross-region snapshot backup. Valid values:
|
|
47
47
|
*
|
|
48
|
-
* - true
|
|
49
|
-
*
|
|
50
|
-
* - false
|
|
48
|
+
* - true: enables encryption.
|
|
49
|
+
* - false: disables encryption.
|
|
51
50
|
*
|
|
52
51
|
* Default value: false.
|
|
53
52
|
*
|
|
@@ -57,7 +56,7 @@ export declare class CreateAutoSnapshotPolicyRequestCopyEncryptionConfiguration
|
|
|
57
56
|
encrypted?: boolean;
|
|
58
57
|
/**
|
|
59
58
|
* @remarks
|
|
60
|
-
* The
|
|
59
|
+
* The KMS key ID used for encrypted cross-region snapshot backup.
|
|
61
60
|
*
|
|
62
61
|
* @example
|
|
63
62
|
* 0e478b7a-4262-4802-b8cb-00d3fb40826X
|
|
@@ -77,7 +76,7 @@ export declare class CreateAutoSnapshotPolicyRequestCopyEncryptionConfiguration
|
|
|
77
76
|
export declare class CreateAutoSnapshotPolicyRequestTag extends $dara.Model {
|
|
78
77
|
/**
|
|
79
78
|
* @remarks
|
|
80
|
-
* The key of
|
|
79
|
+
* The tag key of the automatic snapshot policy. Valid values of N: 1 to 20. The tag key cannot be an empty string. The tag key can be up to 128 characters in length and cannot start with aliyun or acs:. The tag key cannot contain http:// or https://.
|
|
81
80
|
*
|
|
82
81
|
* @example
|
|
83
82
|
* TestKey
|
|
@@ -85,7 +84,7 @@ export declare class CreateAutoSnapshotPolicyRequestTag extends $dara.Model {
|
|
|
85
84
|
key?: string;
|
|
86
85
|
/**
|
|
87
86
|
* @remarks
|
|
88
|
-
* The value of
|
|
87
|
+
* The tag value of the automatic snapshot policy. Valid values of N: 1 to 20. The tag value can be an empty string. The tag value can be up to 128 characters in length and cannot start with acs:. The tag value cannot contain http:// or https://.
|
|
89
88
|
*
|
|
90
89
|
* @example
|
|
91
90
|
* TestValue
|
|
@@ -105,11 +104,10 @@ export declare class CreateAutoSnapshotPolicyRequestTag extends $dara.Model {
|
|
|
105
104
|
export declare class CreateAutoSnapshotPolicyRequest extends $dara.Model {
|
|
106
105
|
/**
|
|
107
106
|
* @remarks
|
|
108
|
-
* The retention period of
|
|
109
|
-
*
|
|
110
|
-
* - -1: The snapshot copy is retained until it is deleted.
|
|
107
|
+
* The retention period of cross-region snapshot replicas. Unit: days. Valid values:
|
|
111
108
|
*
|
|
112
|
-
* - 1
|
|
109
|
+
* - -1: Snapshot replicas are permanently retained.
|
|
110
|
+
* - 1 to 65535: Snapshot replicas are retained for the specified number of days.
|
|
113
111
|
*
|
|
114
112
|
* Default value: -1.
|
|
115
113
|
*
|
|
@@ -119,16 +117,15 @@ export declare class CreateAutoSnapshotPolicyRequest extends $dara.Model {
|
|
|
119
117
|
copiedSnapshotsRetentionDays?: number;
|
|
120
118
|
/**
|
|
121
119
|
* @remarks
|
|
122
|
-
* The encryption
|
|
120
|
+
* The backup encryption parameter object for snapshot geo-redundancy.
|
|
123
121
|
*/
|
|
124
122
|
copyEncryptionConfiguration?: CreateAutoSnapshotPolicyRequestCopyEncryptionConfiguration;
|
|
125
123
|
/**
|
|
126
124
|
* @remarks
|
|
127
|
-
* Specifies whether to enable cross-region replication
|
|
128
|
-
*
|
|
129
|
-
* - true
|
|
125
|
+
* Specifies whether to enable automatic cross-region replication.
|
|
130
126
|
*
|
|
131
|
-
* -
|
|
127
|
+
* - true: enables automatic cross-region replication.
|
|
128
|
+
* - false: disables automatic cross-region replication.
|
|
132
129
|
*
|
|
133
130
|
* @example
|
|
134
131
|
* false
|
|
@@ -137,7 +134,7 @@ export declare class CreateAutoSnapshotPolicyRequest extends $dara.Model {
|
|
|
137
134
|
ownerId?: number;
|
|
138
135
|
/**
|
|
139
136
|
* @remarks
|
|
140
|
-
* The resource group
|
|
137
|
+
* The ID of the resource group.
|
|
141
138
|
*
|
|
142
139
|
* @example
|
|
143
140
|
* rg-aek2kkmhmhs****
|
|
@@ -155,12 +152,12 @@ export declare class CreateAutoSnapshotPolicyRequest extends $dara.Model {
|
|
|
155
152
|
storageLocationArn?: string;
|
|
156
153
|
/**
|
|
157
154
|
* @remarks
|
|
158
|
-
* The tags
|
|
155
|
+
* The tags of the automatic snapshot policy.
|
|
159
156
|
*/
|
|
160
157
|
tag?: CreateAutoSnapshotPolicyRequestTag[];
|
|
161
158
|
/**
|
|
162
159
|
* @remarks
|
|
163
|
-
* The destination region to which
|
|
160
|
+
* The destination region to which snapshots are replicated. You can specify only one destination region.
|
|
164
161
|
*
|
|
165
162
|
* @example
|
|
166
163
|
* ["cn-hangzhou"]
|
|
@@ -168,9 +165,9 @@ export declare class CreateAutoSnapshotPolicyRequest extends $dara.Model {
|
|
|
168
165
|
targetCopyRegions?: string;
|
|
169
166
|
/**
|
|
170
167
|
* @remarks
|
|
171
|
-
* The name of the automatic snapshot policy. The name must be 2 to 128 characters in length. The name must start with a letter and cannot start with http
|
|
168
|
+
* The name of the automatic snapshot policy. The name must be 2 to 128 characters in length. The name must start with a letter and cannot start with http:// or https://. The name can contain digits, colons (:), underscores (_), and hyphens (-).
|
|
172
169
|
*
|
|
173
|
-
*
|
|
170
|
+
* Default value: null.
|
|
174
171
|
*
|
|
175
172
|
* @example
|
|
176
173
|
* TestName
|
|
@@ -178,7 +175,7 @@ export declare class CreateAutoSnapshotPolicyRequest extends $dara.Model {
|
|
|
178
175
|
autoSnapshotPolicyName?: string;
|
|
179
176
|
/**
|
|
180
177
|
* @remarks
|
|
181
|
-
* The
|
|
178
|
+
* The region to which the automatic snapshot policy belongs. You can call [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) to query the most recent region list.
|
|
182
179
|
*
|
|
183
180
|
* This parameter is required.
|
|
184
181
|
*
|
|
@@ -188,11 +185,10 @@ export declare class CreateAutoSnapshotPolicyRequest extends $dara.Model {
|
|
|
188
185
|
regionId?: string;
|
|
189
186
|
/**
|
|
190
187
|
* @remarks
|
|
191
|
-
* The days of the week on which
|
|
188
|
+
* The days of the week on which automatic snapshots are created. Unit: days. The cycle is weekly. Valid values: 1 to 7. For example, 1 indicates Monday. Format description:
|
|
192
189
|
*
|
|
193
|
-
* -
|
|
194
|
-
*
|
|
195
|
-
* - To schedule multiple automatic snapshots to be created in a week, you can specify multiple values. Separate the values with commas (,). You can specify a maximum of seven days. For example, a value of ["1","3","5"] specifies automatic snapshots to be created every Monday, Wednesday, and Friday.
|
|
190
|
+
* - The parameter value must be a JSON array. For example, ["1"\\] indicates that automatic snapshots are created every Monday.
|
|
191
|
+
* - To create multiple automatic snapshots within a week, specify multiple days separated by commas (,). You can specify a maximum of 7 days. For example, ["1","3","5"\\] indicates that automatic snapshots are created every Monday, Wednesday, and Friday.
|
|
196
192
|
*
|
|
197
193
|
* This parameter is required.
|
|
198
194
|
*
|
|
@@ -202,11 +198,10 @@ export declare class CreateAutoSnapshotPolicyRequest extends $dara.Model {
|
|
|
202
198
|
repeatWeekdays?: string;
|
|
203
199
|
/**
|
|
204
200
|
* @remarks
|
|
205
|
-
* The retention period of
|
|
206
|
-
*
|
|
207
|
-
* - -1: The automatic snapshot is retained until it is deleted.
|
|
201
|
+
* The retention period of automatic snapshots. Unit: days. Valid values:
|
|
208
202
|
*
|
|
209
|
-
* - 1
|
|
203
|
+
* - -1: Automatic snapshots are permanently retained.
|
|
204
|
+
* - 1 to 65535: Automatic snapshots are retained for the specified number of days.
|
|
210
205
|
*
|
|
211
206
|
* Default value: -1.
|
|
212
207
|
*
|
|
@@ -218,13 +213,12 @@ export declare class CreateAutoSnapshotPolicyRequest extends $dara.Model {
|
|
|
218
213
|
retentionDays?: number;
|
|
219
214
|
/**
|
|
220
215
|
* @remarks
|
|
221
|
-
* The points in time
|
|
222
|
-
*
|
|
223
|
-
* - Set this parameter to a JSON-formatted array. For example, a value of ["1"] specifies automatic snapshots to be created at 01:00:00.
|
|
216
|
+
* The points in time at which automatic snapshots are created. The time is displayed in UTC+8. Unit: hours. Valid values: 0 to 23, which represent the 24 points in time from 00:00 to 23:00. For example, 1 indicates 01:00. Format description:
|
|
224
217
|
*
|
|
225
|
-
* -
|
|
218
|
+
* - The parameter value must be a JSON array. For example, ["1"\\] indicates that automatic snapshots are created at 01:00.
|
|
219
|
+
* - To create multiple automatic snapshots within a day, specify multiple points in time separated by commas (,). You can specify a maximum of 24 points in time. For example, ["1","3","5"\\] indicates that automatic snapshots are created at 01:00, 03:00, and 05:00.
|
|
226
220
|
*
|
|
227
|
-
* > If
|
|
221
|
+
* > If a disk contains a large amount of data and the time required to create an automatic snapshot exceeds the interval between two consecutive points in time, the next point in time is skipped. For example, you set 09:00, 10:00, 11:00, and 12:00 as the points in time for automatic snapshot creation. The snapshot creation starts at 09:00 and is completed at 10:20, which takes 80 minutes. The system skips the 10:00 point in time and creates the next automatic snapshot at 11:00.
|
|
228
222
|
*
|
|
229
223
|
* This parameter is required.
|
|
230
224
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CreateAutoSnapshotPolicyRequest.js","sourceRoot":"","sources":["../../src/models/CreateAutoSnapshotPolicyRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,6DAA8D,SAAQ,KAAK,CAAC,KAAK;IAyB5F,MAAM,CAAC,KAAK;QACV,OAAO;YACL,aAAa,EAAE,eAAe;YAC9B,QAAQ,EAAE,UAAU;YACpB,OAAO,EAAE,SAAS;SACnB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,aAAa,EAAE,QAAQ;YACvB,QAAQ,EAAE,QAAQ;YAClB,OAAO,EAAE,QAAQ;SAClB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAhDD,sIAgDC;AAED,MAAa,0DAA2D,SAAQ,KAAK,CAAC,KAAK;
|
|
1
|
+
{"version":3,"file":"CreateAutoSnapshotPolicyRequest.js","sourceRoot":"","sources":["../../src/models/CreateAutoSnapshotPolicyRequest.ts"],"names":[],"mappings":"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"}
|
|
@@ -2,7 +2,7 @@ import * as $dara from '@darabonba/typescript';
|
|
|
2
2
|
export declare class CreateAutoSnapshotPolicyResponseBody extends $dara.Model {
|
|
3
3
|
/**
|
|
4
4
|
* @remarks
|
|
5
|
-
* The automatic snapshot policy
|
|
5
|
+
* The ID of the automatic snapshot policy.
|
|
6
6
|
*
|
|
7
7
|
* @example
|
|
8
8
|
* sp-bp12m37ccmxvbmi5****
|