@alicloud/ecs20140526 6.0.0 → 6.1.0
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 +1711 -516
- package/dist/client.js +1026 -265
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +2261 -516
package/dist/client.d.ts
CHANGED
|
@@ -3086,6 +3086,64 @@ export declare class CreateElasticityAssuranceRequestPrivatePoolOptions extends
|
|
|
3086
3086
|
[key: string]: any;
|
|
3087
3087
|
});
|
|
3088
3088
|
}
|
|
3089
|
+
export declare class CreateElasticityAssuranceRequestRecurrenceRules extends $dara.Model {
|
|
3090
|
+
/**
|
|
3091
|
+
* @remarks
|
|
3092
|
+
* The end time of the assurance period for the capacity reservation. Specify an on-the-hour point in time.
|
|
3093
|
+
*
|
|
3094
|
+
* @example
|
|
3095
|
+
* 10
|
|
3096
|
+
*/
|
|
3097
|
+
endHour?: number;
|
|
3098
|
+
/**
|
|
3099
|
+
* @remarks
|
|
3100
|
+
* The type of the assurance schedule. Valid values:
|
|
3101
|
+
*
|
|
3102
|
+
* * Daily
|
|
3103
|
+
* * Weekly
|
|
3104
|
+
* * Monthly
|
|
3105
|
+
*
|
|
3106
|
+
* > You must specify both `RecurrenceType` and `RecurrenceValue`.
|
|
3107
|
+
*
|
|
3108
|
+
* @example
|
|
3109
|
+
* Daily
|
|
3110
|
+
*/
|
|
3111
|
+
recurrenceType?: string;
|
|
3112
|
+
/**
|
|
3113
|
+
* @remarks
|
|
3114
|
+
* The days of the week or month on which the capacity reservation takes effect or the interval, in number of days, at which the capacity reservation takes effect.
|
|
3115
|
+
*
|
|
3116
|
+
* * If you set `RecurrenceType` to `Daily`, you can specify only one value for this parameter. Valid values: 1 to 31. The value specifies that the capacity reservation takes effect every few days.
|
|
3117
|
+
* * If you set `RecurrenceType` to `Weekly`, you can specify multiple values for this parameter. Separate the values with commas (,). Valid values: 0, 1, 2, 3, 4, 5, and 6, which specify Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, and Saturday, respectively. Example: `1,2`, which specifies that the capacity reservation takes effect on Monday and Tuesday.
|
|
3118
|
+
* * If you set `RecurrenceType` to `Monthly`, you can specify two values in the `A-B` format for this parameter. Valid values of A and B: 1 to 31. B must be greater than or equal to A. Example: `1-5`, which specifies that the capacity reservation takes effect every day from the first day up to the fifth day of each month.
|
|
3119
|
+
*
|
|
3120
|
+
* > You must specify both `RecurrenceType` and `RecurrenceValue`.
|
|
3121
|
+
*
|
|
3122
|
+
* @example
|
|
3123
|
+
* 1
|
|
3124
|
+
*/
|
|
3125
|
+
recurrenceValue?: string;
|
|
3126
|
+
/**
|
|
3127
|
+
* @remarks
|
|
3128
|
+
* The start time of the assurance period for the capacity reservation. Specify an on-the-hour point in time.
|
|
3129
|
+
*
|
|
3130
|
+
* > You must specify both `StartHour` and `EndHour`. EndHour must be at least four hours later than StartHour.
|
|
3131
|
+
*
|
|
3132
|
+
* @example
|
|
3133
|
+
* 4
|
|
3134
|
+
*/
|
|
3135
|
+
startHour?: number;
|
|
3136
|
+
static names(): {
|
|
3137
|
+
[key: string]: string;
|
|
3138
|
+
};
|
|
3139
|
+
static types(): {
|
|
3140
|
+
[key: string]: any;
|
|
3141
|
+
};
|
|
3142
|
+
validate(): void;
|
|
3143
|
+
constructor(map?: {
|
|
3144
|
+
[key: string]: any;
|
|
3145
|
+
});
|
|
3146
|
+
}
|
|
3089
3147
|
export declare class CreateElasticityAssuranceRequestTag extends $dara.Model {
|
|
3090
3148
|
/**
|
|
3091
3149
|
* @remarks
|
|
@@ -3119,7 +3177,7 @@ export declare class CreateImageRequestDiskDeviceMapping extends $dara.Model {
|
|
|
3119
3177
|
* @remarks
|
|
3120
3178
|
* The device name of disk N in the custom image. Valid values:
|
|
3121
3179
|
*
|
|
3122
|
-
* * For disks other than basic disks, such as standard SSDs, ultra disks, and
|
|
3180
|
+
* * For disks other than basic disks, such as standard SSDs, ultra disks, and Enterprise SSDs (ESSDs), the valid values range from /dev/vda to /dev/vdz in alphabetical order.
|
|
3123
3181
|
* * For basic disks, the valid values range from /dev/xvda to /dev/xvdz in alphabetical order.
|
|
3124
3182
|
*
|
|
3125
3183
|
* @example
|
|
@@ -3128,7 +3186,7 @@ export declare class CreateImageRequestDiskDeviceMapping extends $dara.Model {
|
|
|
3128
3186
|
device?: string;
|
|
3129
3187
|
/**
|
|
3130
3188
|
* @remarks
|
|
3131
|
-
* The type of disk N in the custom image. You can specify this parameter to create the system disk of the custom image from a data disk snapshot. If you
|
|
3189
|
+
* The type of disk N in the custom image. You can specify this parameter to create the system disk of the custom image from a data disk snapshot. If you leave this parameter empty, the disk type is determined by the corresponding snapshot. Valid values:
|
|
3132
3190
|
*
|
|
3133
3191
|
* * system: system disk. You can specify only one snapshot to use to create the system disk in the custom image.
|
|
3134
3192
|
* * data: data disk. You can specify up to 16 snapshots to use to create data disks in the custom image.
|
|
@@ -3141,12 +3199,12 @@ export declare class CreateImageRequestDiskDeviceMapping extends $dara.Model {
|
|
|
3141
3199
|
* @remarks
|
|
3142
3200
|
* The size of disk N in the custom image. Unit: GiB. The valid values and default value of DiskDeviceMapping.N.Size vary based on the value of DiskDeviceMapping.N.SnapshotId.
|
|
3143
3201
|
*
|
|
3144
|
-
* * If
|
|
3202
|
+
* * If you leave DiskDeviceMapping.N.SnapshotId empty, DiskDeviceMapping.N.Size has the following valid values and default values:
|
|
3145
3203
|
*
|
|
3146
3204
|
* * For basic disks, the valid values range from 5 to 2000, and the default value is 5.
|
|
3147
3205
|
* * For other disks, the valid values range from 20 to 32768, and the default value is 20.
|
|
3148
3206
|
*
|
|
3149
|
-
* * If
|
|
3207
|
+
* * If you specify DiskDeviceMapping.N.SnapshotId, the value of DiskDeviceMapping.N.Size must be greater than or equal to the size of the specified snapshot. The default value of DiskDeviceMapping.N.Size is the size of the specified snapshot.
|
|
3150
3208
|
*
|
|
3151
3209
|
* @example
|
|
3152
3210
|
* 2000
|
|
@@ -3253,6 +3311,15 @@ export declare class CreateImageComponentRequestTag extends $dara.Model {
|
|
|
3253
3311
|
});
|
|
3254
3312
|
}
|
|
3255
3313
|
export declare class CreateImagePipelineRequestAdvancedOptions extends $dara.Model {
|
|
3314
|
+
/**
|
|
3315
|
+
* @remarks
|
|
3316
|
+
* 是否禁用目标镜像名称自动增加后缀。可能值:
|
|
3317
|
+
* - disable:禁用。
|
|
3318
|
+
*
|
|
3319
|
+
* @example
|
|
3320
|
+
* disable
|
|
3321
|
+
*/
|
|
3322
|
+
imageNameSuffix?: string;
|
|
3256
3323
|
/**
|
|
3257
3324
|
* @remarks
|
|
3258
3325
|
* Specifies whether to retain Cloud Assistant Agent that is installed during the image building process. During the image building process, the system automatically installs Cloud Assistant Agent on the intermediate instance to run commands. You can choose whether to retain Cloud Assistant Agent that is installed during the image building process in the new image. Valid values:
|
|
@@ -3279,6 +3346,105 @@ export declare class CreateImagePipelineRequestAdvancedOptions extends $dara.Mod
|
|
|
3279
3346
|
[key: string]: any;
|
|
3280
3347
|
});
|
|
3281
3348
|
}
|
|
3349
|
+
export declare class CreateImagePipelineRequestImageOptionsImageFeatures extends $dara.Model {
|
|
3350
|
+
/**
|
|
3351
|
+
* @remarks
|
|
3352
|
+
* 构建的目标镜像是否支持 NVMe。可能值:
|
|
3353
|
+
* - supported:支持。表示以该镜像创建的实例支持 NVMe 协议。
|
|
3354
|
+
* - unsupported:不支持。表示以该镜像创建的实例不支持 NVMe 协议。
|
|
3355
|
+
* - auto:自动检测。由系统自动检测您的镜像是否安装NVMe驱动,该行为发生在构建阶段前,若您在构建时安装或者卸载了NVMe驱动,可能会出现结果偏差,建议您根据构建内容设置为supported或unsupported。
|
|
3356
|
+
*
|
|
3357
|
+
* @example
|
|
3358
|
+
* auto
|
|
3359
|
+
*/
|
|
3360
|
+
nvmeSupport?: string;
|
|
3361
|
+
static names(): {
|
|
3362
|
+
[key: string]: string;
|
|
3363
|
+
};
|
|
3364
|
+
static types(): {
|
|
3365
|
+
[key: string]: any;
|
|
3366
|
+
};
|
|
3367
|
+
validate(): void;
|
|
3368
|
+
constructor(map?: {
|
|
3369
|
+
[key: string]: any;
|
|
3370
|
+
});
|
|
3371
|
+
}
|
|
3372
|
+
export declare class CreateImagePipelineRequestImageOptionsImageTags extends $dara.Model {
|
|
3373
|
+
/**
|
|
3374
|
+
* @remarks
|
|
3375
|
+
* 标签键。N 的取值范围:1~20。一旦传入该值,则不允许为空字符串。最多支持 128 个字符,不能以`aliyun`和`acs:`开头,不能包含`http://`或者`https://`。
|
|
3376
|
+
*
|
|
3377
|
+
* @example
|
|
3378
|
+
* TestKey
|
|
3379
|
+
*/
|
|
3380
|
+
key?: string;
|
|
3381
|
+
/**
|
|
3382
|
+
* @remarks
|
|
3383
|
+
* 资源的标签值。N 的取值范围:1~20。一旦传入该值,可以为空字符串。最多支持 128 个字符,不能以`acs:`开头,不能包含`http://`或者`https://`。
|
|
3384
|
+
*
|
|
3385
|
+
* @example
|
|
3386
|
+
* TestValue
|
|
3387
|
+
*/
|
|
3388
|
+
value?: string;
|
|
3389
|
+
static names(): {
|
|
3390
|
+
[key: string]: string;
|
|
3391
|
+
};
|
|
3392
|
+
static types(): {
|
|
3393
|
+
[key: string]: any;
|
|
3394
|
+
};
|
|
3395
|
+
validate(): void;
|
|
3396
|
+
constructor(map?: {
|
|
3397
|
+
[key: string]: any;
|
|
3398
|
+
});
|
|
3399
|
+
}
|
|
3400
|
+
export declare class CreateImagePipelineRequestImageOptions extends $dara.Model {
|
|
3401
|
+
/**
|
|
3402
|
+
* @remarks
|
|
3403
|
+
* 描述信息。长度为2~256个英文或中文字符,不能以`http://`和`https://`开头。
|
|
3404
|
+
*
|
|
3405
|
+
* @example
|
|
3406
|
+
* This is description.
|
|
3407
|
+
*/
|
|
3408
|
+
description?: string;
|
|
3409
|
+
/**
|
|
3410
|
+
* @remarks
|
|
3411
|
+
* 目标镜像族系。长度为 2~128 个英文或中文字符。必须以大小写字母或中文开头,不能以 aliyun 和 acs:开头,不能包含 http://或者 https://。可以包含数字、半角冒号(:)、下划线(_)或者短划线(-)。
|
|
3412
|
+
*
|
|
3413
|
+
* @example
|
|
3414
|
+
* family
|
|
3415
|
+
*/
|
|
3416
|
+
imageFamily?: string;
|
|
3417
|
+
/**
|
|
3418
|
+
* @remarks
|
|
3419
|
+
* 目标镜像特性相关属性。
|
|
3420
|
+
*/
|
|
3421
|
+
imageFeatures?: CreateImagePipelineRequestImageOptionsImageFeatures;
|
|
3422
|
+
/**
|
|
3423
|
+
* @remarks
|
|
3424
|
+
* 目标镜像名称前缀。长度为2~64个字符,必须以大小写字母或中文开头,不能以`http://`和`https://`开头。可以包含中文、英文、数字、半角冒号(:)、下划线(_)、半角句号(.)或者短划线(-)。
|
|
3425
|
+
*
|
|
3426
|
+
* 最终完整的镜像名称由系统自动拼接名称前缀与构建任务ID(`ExecutionId`),格式为`{ImageName}_{ExecutionId}`。
|
|
3427
|
+
*
|
|
3428
|
+
* @example
|
|
3429
|
+
* testImageName
|
|
3430
|
+
*/
|
|
3431
|
+
imageName?: string;
|
|
3432
|
+
/**
|
|
3433
|
+
* @remarks
|
|
3434
|
+
* 目标镜像标签。
|
|
3435
|
+
*/
|
|
3436
|
+
imageTags?: CreateImagePipelineRequestImageOptionsImageTags[];
|
|
3437
|
+
static names(): {
|
|
3438
|
+
[key: string]: string;
|
|
3439
|
+
};
|
|
3440
|
+
static types(): {
|
|
3441
|
+
[key: string]: any;
|
|
3442
|
+
};
|
|
3443
|
+
validate(): void;
|
|
3444
|
+
constructor(map?: {
|
|
3445
|
+
[key: string]: any;
|
|
3446
|
+
});
|
|
3447
|
+
}
|
|
3282
3448
|
export declare class CreateImagePipelineRequestImportImageOptionsDiskDeviceMappings extends $dara.Model {
|
|
3283
3449
|
/**
|
|
3284
3450
|
* @remarks
|
|
@@ -3382,7 +3548,7 @@ export declare class CreateImagePipelineRequestImportImageOptions extends $dara.
|
|
|
3382
3548
|
* * BIOS: BIOS mode
|
|
3383
3549
|
* * UEFI: Unified Extensible Firmware Interface (UEFI) mode
|
|
3384
3550
|
*
|
|
3385
|
-
* Default value: BIOS. If you set Architecture to `arm64`, set
|
|
3551
|
+
* Default value: BIOS. If you set Architecture to `arm64`, set this parameter to UEFI.
|
|
3386
3552
|
*
|
|
3387
3553
|
* > Before you specify this parameter, make sure that you are familiar with the boot modes supported by the image. If you specify a boot mode that is not supported by the image, ECS instances created from the image cannot start as expected. For information about the boot modes of images, see the [Boot modes of images](~~2244655#b9caa9b8bb1wf~~) section of the "Best practices for ECS instance boot modes" topic.
|
|
3388
3554
|
*
|
|
@@ -3470,12 +3636,7 @@ export declare class CreateImagePipelineRequestImportImageOptions extends $dara.
|
|
|
3470
3636
|
platform?: string;
|
|
3471
3637
|
/**
|
|
3472
3638
|
* @remarks
|
|
3473
|
-
*
|
|
3474
|
-
*
|
|
3475
|
-
* * true: retains the imported original image. After the import is complete, the imported original image is not deleted even if the image building task is canceled or fails.
|
|
3476
|
-
* * false: does not retain the imported original image.
|
|
3477
|
-
*
|
|
3478
|
-
* Default value: false.
|
|
3639
|
+
* > This parameter is in invitational preview.
|
|
3479
3640
|
*
|
|
3480
3641
|
* @example
|
|
3481
3642
|
* false
|
|
@@ -4227,6 +4388,21 @@ export declare class CreateLaunchTemplateRequestDataDisk extends $dara.Model {
|
|
|
4227
4388
|
});
|
|
4228
4389
|
}
|
|
4229
4390
|
export declare class CreateLaunchTemplateRequestNetworkInterface extends $dara.Model {
|
|
4391
|
+
/**
|
|
4392
|
+
* @remarks
|
|
4393
|
+
* Specifies whether to release ENI N when the instance is released. Valid values:
|
|
4394
|
+
*
|
|
4395
|
+
* * true
|
|
4396
|
+
* * false
|
|
4397
|
+
*
|
|
4398
|
+
* Default value: true.
|
|
4399
|
+
*
|
|
4400
|
+
* > This parameter takes effect only for secondary ENIs.
|
|
4401
|
+
*
|
|
4402
|
+
* @example
|
|
4403
|
+
* true
|
|
4404
|
+
*/
|
|
4405
|
+
deleteOnRelease?: boolean;
|
|
4230
4406
|
/**
|
|
4231
4407
|
* @remarks
|
|
4232
4408
|
* The description of the secondary ENI. The description must be 2 to 256 characters in length and cannot start with `http://` or `https://`. The value of N in `NetworkInterface.N` cannot be greater than 1.
|
|
@@ -4257,7 +4433,7 @@ export declare class CreateLaunchTemplateRequestNetworkInterface extends $dara.M
|
|
|
4257
4433
|
* Take note of the following items:
|
|
4258
4434
|
*
|
|
4259
4435
|
* * Valid values of N: 1 and 2. If the value of N is 1, you can configure a primary or secondary ENI. If the value of N is 2, you must configure a primary ENI and a secondary ENI.
|
|
4260
|
-
* * If `NetworkInterface.N.InstanceType`
|
|
4436
|
+
* * If you set `NetworkInterface.N.InstanceType` to `Primary`, you do not need to specify this parameter.
|
|
4261
4437
|
*
|
|
4262
4438
|
* @example
|
|
4263
4439
|
* testEniName
|
|
@@ -4282,12 +4458,12 @@ export declare class CreateLaunchTemplateRequestNetworkInterface extends $dara.M
|
|
|
4282
4458
|
*
|
|
4283
4459
|
* * Valid values of N: 1 and 2.
|
|
4284
4460
|
*
|
|
4285
|
-
* * If the value of N is 1, you can configure a primary or secondary ENI. If this parameter
|
|
4286
|
-
* * If the value of N is 2, you
|
|
4461
|
+
* * If the value of N is 1, you can configure a primary or secondary ENI. If you specify this parameter, set `Amount` to a numeric value greater than 1, and set NetworkInterface.N.InstanceType to Primary, the specified number of instances are created and consecutive primary IP addresses starting from the specified IP address are assigned to the instances. In this case, you cannot attach secondary ENIs to the instances.
|
|
4462
|
+
* * If the value of N is 2, you must configure a primary ENI and a secondary ENI. If you specify this parameter, set `Amount` to a numeric value greater than 1, and set NetworkInterface.N.InstanceType to Primary, you cannot set `NetworkInterface.2.InstanceType` to Secondary to attach a secondary ENI.
|
|
4287
4463
|
*
|
|
4288
|
-
* * If `NetworkInterface.N.InstanceType`
|
|
4464
|
+
* * If you set `NetworkInterface.N.InstanceType` to `Primary`, this parameter is equivalent to `PrivateIpAddress`. You cannot specify both this parameter and `PrivateIpAddress` in the same request.
|
|
4289
4465
|
*
|
|
4290
|
-
* * If `NetworkInterface.N.InstanceType`
|
|
4466
|
+
* * If you set `NetworkInterface.N.InstanceType` to `Secondary` or leave NetworkInterface.N.InstanceType empty, the specified primary IP address is assigned to the secondary ENI. The default value is an IP address that is randomly selected from within the CIDR block of the vSwitch to which to connect the secondary ENI.
|
|
4291
4467
|
*
|
|
4292
4468
|
* > You can attach only a single secondary ENI when you create an instance. After the instance is created, you can call the [CreateNetworkInterface](https://help.aliyun.com/document_detail/58504.html) and [AttachNetworkInterface](https://help.aliyun.com/document_detail/58515.html) operations to attach more secondary ENIs.
|
|
4293
4469
|
*
|
|
@@ -4302,8 +4478,8 @@ export declare class CreateLaunchTemplateRequestNetworkInterface extends $dara.M
|
|
|
4302
4478
|
* Take note of the following items:
|
|
4303
4479
|
*
|
|
4304
4480
|
* * Valid values of N: 1 and 2. If the value of N is 1, you can configure a primary or secondary ENI. If the value of N is 2, you must configure a primary ENI and a secondary ENI.
|
|
4305
|
-
* * If `NetworkInterface.N.InstanceType`
|
|
4306
|
-
* * If `NetworkInterface.N.InstanceType`
|
|
4481
|
+
* * If you set `NetworkInterface.N.InstanceType` to `Primary`, you must specify this parameter. In this case, this parameter is equivalent to `SecurityGroupId`, and you cannot specify `SecurityGroupId`, `SecurityGroupIds.N`, or `NetworkInterface.N.SecurityGroupIds.N`.
|
|
4482
|
+
* * If you set `NetworkInterface.N.InstanceType` to `Secondary` or leave NetworkInterface.N.InstanceType empty, you do not need to specify this parameter. The default value is the ID of the security group to which to assign the instance.
|
|
4307
4483
|
*
|
|
4308
4484
|
* @example
|
|
4309
4485
|
* sg-bp15ed6xe1yxeycg****
|
|
@@ -4311,15 +4487,15 @@ export declare class CreateLaunchTemplateRequestNetworkInterface extends $dara.M
|
|
|
4311
4487
|
securityGroupId?: string;
|
|
4312
4488
|
/**
|
|
4313
4489
|
* @remarks
|
|
4314
|
-
* The
|
|
4490
|
+
* The IDs of security groups to which to assign ENI N.
|
|
4315
4491
|
*
|
|
4316
4492
|
* * Valid values of the first N: 1 and 2. If the value of N is 1, you can configure a primary or secondary ENI. If the value of N is 2, you must configure a primary ENI and a secondary ENI.
|
|
4317
|
-
* * The second N indicates that one or more security group IDs can be specified. The valid values of N vary based on the maximum number of security groups to which an instance can belong. For more information, see the [Security group limits](~~25412#SecurityGroupQuota1~~) section of the "Limits" topic.
|
|
4493
|
+
* * The second N in this parameter indicates that one or more security group IDs can be specified. The valid values of N vary based on the maximum number of security groups to which an instance can belong. For more information, see the [Security group limits](~~25412#SecurityGroupQuota1~~) section of the "Limits" topic.
|
|
4318
4494
|
*
|
|
4319
4495
|
* Take note of the following items:
|
|
4320
4496
|
*
|
|
4321
|
-
* * If `NetworkInterface.N.InstanceType`
|
|
4322
|
-
* * If `NetworkInterface.N.InstanceType`
|
|
4497
|
+
* * If you set `NetworkInterface.N.InstanceType` to `Primary`, you must specify this parameter or `NetworkInterface.N.SecurityGroupId`. In this case, this parameter is equivalent to `SecurityGroupIds.N`, and you cannot specify `SecurityGroupId`, `SecurityGroupIds.N`, or `NetworkInterface.N.SecurityGroupId`.
|
|
4498
|
+
* * If you set `NetworkInterface.N.InstanceType` to `Secondary` or leave NetworkInterface.N.InstanceType empty, you do not need to specify this parameter. The default value is the ID of the security group to which to assign the instance.
|
|
4323
4499
|
*
|
|
4324
4500
|
* @example
|
|
4325
4501
|
* sg-bp67acfmxazb4p****
|
|
@@ -4332,8 +4508,8 @@ export declare class CreateLaunchTemplateRequestNetworkInterface extends $dara.M
|
|
|
4332
4508
|
* Take note of the following items:
|
|
4333
4509
|
*
|
|
4334
4510
|
* * Valid values of N: 1 and 2. If the value of N is 1, you can configure a primary or secondary ENI. If the value of N is 2, you must configure a primary ENI and a secondary ENI.
|
|
4335
|
-
* * If `NetworkInterface.N.InstanceType`
|
|
4336
|
-
* * If `NetworkInterface.N.InstanceType`
|
|
4511
|
+
* * If you set `NetworkInterface.N.InstanceType` to `Primary`, you must specify this parameter. In this case, this parameter is equivalent to `VSwitchId`. You cannot specify both NetworkInterface.N.VSwitchId and `VSwitchId` in the same request.
|
|
4512
|
+
* * If you set `NetworkInterface.N.InstanceType` to `Secondary` or leave NetworkInterface.N.InstanceType empty, you do not need to specify this parameter. The default value is the VSwitchId value.
|
|
4337
4513
|
*
|
|
4338
4514
|
* @example
|
|
4339
4515
|
* vsw-bp1s5fnvk4gn2tws0****
|
|
@@ -4709,6 +4885,21 @@ export declare class CreateLaunchTemplateVersionRequestDataDisk extends $dara.Mo
|
|
|
4709
4885
|
});
|
|
4710
4886
|
}
|
|
4711
4887
|
export declare class CreateLaunchTemplateVersionRequestNetworkInterface extends $dara.Model {
|
|
4888
|
+
/**
|
|
4889
|
+
* @remarks
|
|
4890
|
+
* Specifies whether to release ENI N when the instance is released. Valid values:
|
|
4891
|
+
*
|
|
4892
|
+
* * true
|
|
4893
|
+
* * false
|
|
4894
|
+
*
|
|
4895
|
+
* Default value: true.
|
|
4896
|
+
*
|
|
4897
|
+
* > This parameter takes effect only for secondary ENIs.
|
|
4898
|
+
*
|
|
4899
|
+
* @example
|
|
4900
|
+
* true
|
|
4901
|
+
*/
|
|
4902
|
+
deleteOnRelease?: boolean;
|
|
4712
4903
|
/**
|
|
4713
4904
|
* @remarks
|
|
4714
4905
|
* The description of the secondary ENI. The description must be 2 to 256 characters in length and cannot start with `http://` or `https://`. The value of N in `NetworkInterface.N` cannot be greater than 1.
|
|
@@ -4771,7 +4962,7 @@ export declare class CreateLaunchTemplateVersionRequestNetworkInterface extends
|
|
|
4771
4962
|
securityGroupId?: string;
|
|
4772
4963
|
/**
|
|
4773
4964
|
* @remarks
|
|
4774
|
-
* The IDs of the security groups to which to assign the secondary ENI. The security
|
|
4965
|
+
* The IDs of the security groups to which to assign the secondary ENI. The security groups and the secondary ENI must reside in the same VPC. The valid values of N in `SecurityGroupIds.N` vary based on the maximum number of security groups to which a secondary ENI can belong. For more information, see the "Security group limits" section in [Limits](https://help.aliyun.com/document_detail/25412.html). The value of N in `NetworkInterface.N` cannot be greater than 1.
|
|
4775
4966
|
*
|
|
4776
4967
|
* > You cannot specify both `NetworkInterface.N.SecurityGroupId` and `NetworkInterface.N.SecurityGroupIds.N`.
|
|
4777
4968
|
*
|
|
@@ -4960,7 +5151,7 @@ export declare class CreateNetworkInterfaceRequestNetworkInterfaceTrafficConfig
|
|
|
4960
5151
|
queueNumber?: number;
|
|
4961
5152
|
/**
|
|
4962
5153
|
* @remarks
|
|
4963
|
-
* The number of
|
|
5154
|
+
* The number of QPs supported by the ERI.
|
|
4964
5155
|
*
|
|
4965
5156
|
* @example
|
|
4966
5157
|
* 8
|
|
@@ -4970,7 +5161,13 @@ export declare class CreateNetworkInterfaceRequestNetworkInterfaceTrafficConfig
|
|
|
4970
5161
|
* @remarks
|
|
4971
5162
|
* The Rx queue depth of the ENI.
|
|
4972
5163
|
*
|
|
4973
|
-
* > This parameter is not publicly available.
|
|
5164
|
+
* > This parameter is in invitational preview and is not publicly available. To use this parameter, [submit a ticket](https://smartservice.console.aliyun.com/service/create-ticket-intl).
|
|
5165
|
+
*
|
|
5166
|
+
* When you specify this parameter, take note of the following items:
|
|
5167
|
+
*
|
|
5168
|
+
* * This parameter is applicable only to 7th-generation or later ECS instance types.
|
|
5169
|
+
* * This parameter is applicable to Linux images.
|
|
5170
|
+
* * A larger Rx queue depth yields higher inbound throughput and reduces packet loss rates but consumes more memory.
|
|
4974
5171
|
*
|
|
4975
5172
|
* @example
|
|
4976
5173
|
* 8192
|
|
@@ -4980,7 +5177,13 @@ export declare class CreateNetworkInterfaceRequestNetworkInterfaceTrafficConfig
|
|
|
4980
5177
|
* @remarks
|
|
4981
5178
|
* The Tx queue depth of the ENI.
|
|
4982
5179
|
*
|
|
4983
|
-
* > This parameter is not publicly available.
|
|
5180
|
+
* > This parameter is in invitational preview and is not publicly available. To use this parameter, [submit a ticket](https://smartservice.console.aliyun.com/service/create-ticket-intl).
|
|
5181
|
+
*
|
|
5182
|
+
* When you specify this parameter, take note of the following items:
|
|
5183
|
+
*
|
|
5184
|
+
* * This parameter is applicable only to 7th-generation or later ECS instance types.
|
|
5185
|
+
* * This parameter is applicable to Linux images.
|
|
5186
|
+
* * A larger Tx queue depth yields higher outbound throughput and reduces packet loss rates but consumes more memory.
|
|
4984
5187
|
*
|
|
4985
5188
|
* @example
|
|
4986
5189
|
* 8192
|
|
@@ -7504,7 +7707,7 @@ export declare class DescribeBandwidthPackagesResponseBodyBandwidthPackages exte
|
|
|
7504
7707
|
export declare class DescribeCapacityReservationInstancesRequestPrivatePoolOptions extends $dara.Model {
|
|
7505
7708
|
/**
|
|
7506
7709
|
* @remarks
|
|
7507
|
-
* The
|
|
7710
|
+
* The ID of the capacity reservation.
|
|
7508
7711
|
*
|
|
7509
7712
|
* This parameter is required.
|
|
7510
7713
|
*
|
|
@@ -7525,6 +7728,9 @@ export declare class DescribeCapacityReservationInstancesRequestPrivatePoolOptio
|
|
|
7525
7728
|
}
|
|
7526
7729
|
export declare class DescribeCapacityReservationInstancesResponseBodyCapacityReservationItemInstanceIdSet extends $dara.Model {
|
|
7527
7730
|
/**
|
|
7731
|
+
* @remarks
|
|
7732
|
+
* The ID of the instance.
|
|
7733
|
+
*
|
|
7528
7734
|
* @example
|
|
7529
7735
|
* i-bp67acfmxazb4****
|
|
7530
7736
|
*/
|
|
@@ -8400,6 +8606,7 @@ export declare class DescribeCommandsResponseBodyCommandsCommandParameterDefinit
|
|
|
8400
8606
|
* DownloadUrl
|
|
8401
8607
|
*/
|
|
8402
8608
|
parameterName?: string;
|
|
8609
|
+
patternRegex?: string;
|
|
8403
8610
|
/**
|
|
8404
8611
|
* @remarks
|
|
8405
8612
|
* The valid values of the custom parameter of the enumeration type.
|
|
@@ -12052,6 +12259,89 @@ export declare class DescribeEipMonitorDataResponseBodyEipMonitorDatas extends $
|
|
|
12052
12259
|
[key: string]: any;
|
|
12053
12260
|
});
|
|
12054
12261
|
}
|
|
12262
|
+
export declare class DescribeElasticityAssuranceAutoRenewAttributeRequestPrivatePoolOptions extends $dara.Model {
|
|
12263
|
+
/**
|
|
12264
|
+
* @remarks
|
|
12265
|
+
* The IDs of elasticity assurances.
|
|
12266
|
+
*
|
|
12267
|
+
* **Limits**: You can specify up to 50 elasticity assurance IDs in a single request.
|
|
12268
|
+
*/
|
|
12269
|
+
id?: string[];
|
|
12270
|
+
static names(): {
|
|
12271
|
+
[key: string]: string;
|
|
12272
|
+
};
|
|
12273
|
+
static types(): {
|
|
12274
|
+
[key: string]: any;
|
|
12275
|
+
};
|
|
12276
|
+
validate(): void;
|
|
12277
|
+
constructor(map?: {
|
|
12278
|
+
[key: string]: any;
|
|
12279
|
+
});
|
|
12280
|
+
}
|
|
12281
|
+
export declare class DescribeElasticityAssuranceAutoRenewAttributeResponseBodyElasticityAssuranceRenewAttributesElasticityAssuranceRenewAttribute extends $dara.Model {
|
|
12282
|
+
/**
|
|
12283
|
+
* @remarks
|
|
12284
|
+
* The auto-renewal period. Valid values: Valid values: 1, 2, 3, 6, 12, 24, and 36.
|
|
12285
|
+
*
|
|
12286
|
+
* @example
|
|
12287
|
+
* 1
|
|
12288
|
+
*/
|
|
12289
|
+
period?: number;
|
|
12290
|
+
/**
|
|
12291
|
+
* @remarks
|
|
12292
|
+
* The unit of the auto-renewal period. Valid values:
|
|
12293
|
+
*
|
|
12294
|
+
* * Month (default)
|
|
12295
|
+
* * Year
|
|
12296
|
+
*
|
|
12297
|
+
* @example
|
|
12298
|
+
* Month
|
|
12299
|
+
*/
|
|
12300
|
+
periodUnit?: string;
|
|
12301
|
+
/**
|
|
12302
|
+
* @remarks
|
|
12303
|
+
* The ID of the elasticity assurance.
|
|
12304
|
+
*
|
|
12305
|
+
* @example
|
|
12306
|
+
* eap-bp67acfmxazb4****
|
|
12307
|
+
*/
|
|
12308
|
+
privatePoolOptionsId?: string;
|
|
12309
|
+
/**
|
|
12310
|
+
* @remarks
|
|
12311
|
+
* Indicates whether auto-renewal is enabled for the elasticity assurance. Valid values:
|
|
12312
|
+
*
|
|
12313
|
+
* * AutoRenewal: Auto-renewal is enabled for the elasticity assurance.
|
|
12314
|
+
* * Normal: Auto-renewal is disabled for the elasticity assurance.
|
|
12315
|
+
* * NotRenewal: The elasticity assurance is not renewed.
|
|
12316
|
+
*
|
|
12317
|
+
* @example
|
|
12318
|
+
* Normal
|
|
12319
|
+
*/
|
|
12320
|
+
renewalStatus?: string;
|
|
12321
|
+
static names(): {
|
|
12322
|
+
[key: string]: string;
|
|
12323
|
+
};
|
|
12324
|
+
static types(): {
|
|
12325
|
+
[key: string]: any;
|
|
12326
|
+
};
|
|
12327
|
+
validate(): void;
|
|
12328
|
+
constructor(map?: {
|
|
12329
|
+
[key: string]: any;
|
|
12330
|
+
});
|
|
12331
|
+
}
|
|
12332
|
+
export declare class DescribeElasticityAssuranceAutoRenewAttributeResponseBodyElasticityAssuranceRenewAttributes extends $dara.Model {
|
|
12333
|
+
elasticityAssuranceRenewAttribute?: DescribeElasticityAssuranceAutoRenewAttributeResponseBodyElasticityAssuranceRenewAttributesElasticityAssuranceRenewAttribute[];
|
|
12334
|
+
static names(): {
|
|
12335
|
+
[key: string]: string;
|
|
12336
|
+
};
|
|
12337
|
+
static types(): {
|
|
12338
|
+
[key: string]: any;
|
|
12339
|
+
};
|
|
12340
|
+
validate(): void;
|
|
12341
|
+
constructor(map?: {
|
|
12342
|
+
[key: string]: any;
|
|
12343
|
+
});
|
|
12344
|
+
}
|
|
12055
12345
|
export declare class DescribeElasticityAssuranceInstancesRequestPrivatePoolOptions extends $dara.Model {
|
|
12056
12346
|
/**
|
|
12057
12347
|
* @remarks
|
|
@@ -12276,6 +12566,71 @@ export declare class DescribeElasticityAssurancesResponseBodyElasticityAssurance
|
|
|
12276
12566
|
[key: string]: any;
|
|
12277
12567
|
});
|
|
12278
12568
|
}
|
|
12569
|
+
export declare class DescribeElasticityAssurancesResponseBodyElasticityAssuranceSetElasticityAssuranceItemRecurrenceRulesRecurrenceRule extends $dara.Model {
|
|
12570
|
+
/**
|
|
12571
|
+
* @remarks
|
|
12572
|
+
* The time when the time-segmented assurance ends.
|
|
12573
|
+
*
|
|
12574
|
+
* @example
|
|
12575
|
+
* 10
|
|
12576
|
+
*/
|
|
12577
|
+
endHour?: number;
|
|
12578
|
+
/**
|
|
12579
|
+
* @remarks
|
|
12580
|
+
* The type of the recurrence rule. Valid values:
|
|
12581
|
+
*
|
|
12582
|
+
* * Daily
|
|
12583
|
+
* * Weekly
|
|
12584
|
+
* * Monthly
|
|
12585
|
+
*
|
|
12586
|
+
* @example
|
|
12587
|
+
* Daily
|
|
12588
|
+
*/
|
|
12589
|
+
recurrenceType?: string;
|
|
12590
|
+
/**
|
|
12591
|
+
* @remarks
|
|
12592
|
+
* The recurrence value of the time-segmented assurance. Valid values:
|
|
12593
|
+
*
|
|
12594
|
+
* * If you set `RecurrenceType` to `Daily`, you can set RecurrenceValue to only one value. Valid values: 1 to 31. The time-segmented assurance is performed every few days.
|
|
12595
|
+
* * If you set `RecurrenceType` to `Weekly`, you can set RecurrenceValue to one or more values. Separate the values with commas (,). The values that correspond to Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, and Saturday are 0, 1, 2, 3, 4, 5, and 6. For example, `1,2` indicates that the time-segmented assurance is performed on Monday and Tuesday of every week.
|
|
12596
|
+
* * If you set `RecurrenceType` to `Monthly`, you can set RecurrenceValue to two values in the `A-B` format. Valid values of A and B: 1 to 31. B must be greater than or equal to A. For example, `1-5` indicates that the time-segmented assurance is performed from the 1st to the 5th of each month.
|
|
12597
|
+
*
|
|
12598
|
+
* @example
|
|
12599
|
+
* 1
|
|
12600
|
+
*/
|
|
12601
|
+
recurrenceValue?: string;
|
|
12602
|
+
/**
|
|
12603
|
+
* @remarks
|
|
12604
|
+
* The time when the time-segmented assurance takes effect.
|
|
12605
|
+
*
|
|
12606
|
+
* @example
|
|
12607
|
+
* 4
|
|
12608
|
+
*/
|
|
12609
|
+
startHour?: number;
|
|
12610
|
+
static names(): {
|
|
12611
|
+
[key: string]: string;
|
|
12612
|
+
};
|
|
12613
|
+
static types(): {
|
|
12614
|
+
[key: string]: any;
|
|
12615
|
+
};
|
|
12616
|
+
validate(): void;
|
|
12617
|
+
constructor(map?: {
|
|
12618
|
+
[key: string]: any;
|
|
12619
|
+
});
|
|
12620
|
+
}
|
|
12621
|
+
export declare class DescribeElasticityAssurancesResponseBodyElasticityAssuranceSetElasticityAssuranceItemRecurrenceRules extends $dara.Model {
|
|
12622
|
+
recurrenceRule?: DescribeElasticityAssurancesResponseBodyElasticityAssuranceSetElasticityAssuranceItemRecurrenceRulesRecurrenceRule[];
|
|
12623
|
+
static names(): {
|
|
12624
|
+
[key: string]: string;
|
|
12625
|
+
};
|
|
12626
|
+
static types(): {
|
|
12627
|
+
[key: string]: any;
|
|
12628
|
+
};
|
|
12629
|
+
validate(): void;
|
|
12630
|
+
constructor(map?: {
|
|
12631
|
+
[key: string]: any;
|
|
12632
|
+
});
|
|
12633
|
+
}
|
|
12279
12634
|
export declare class DescribeElasticityAssurancesResponseBodyElasticityAssuranceSetElasticityAssuranceItemTagsTag extends $dara.Model {
|
|
12280
12635
|
/**
|
|
12281
12636
|
* @remarks
|
|
@@ -12363,6 +12718,17 @@ export declare class DescribeElasticityAssurancesResponseBodyElasticityAssurance
|
|
|
12363
12718
|
* null
|
|
12364
12719
|
*/
|
|
12365
12720
|
latestStartTime?: string;
|
|
12721
|
+
/**
|
|
12722
|
+
* @remarks
|
|
12723
|
+
* The type of the elasticity assurance. Valid values:
|
|
12724
|
+
*
|
|
12725
|
+
* * ElasticityAssurance: the general-purpose elasticity assurance.
|
|
12726
|
+
* * TimeDivisionElasticityAssurance: the time-segmented assurance of the elasticity assurance.
|
|
12727
|
+
*
|
|
12728
|
+
* @example
|
|
12729
|
+
* ElasticityAssurance
|
|
12730
|
+
*/
|
|
12731
|
+
packageType?: string;
|
|
12366
12732
|
/**
|
|
12367
12733
|
* @remarks
|
|
12368
12734
|
* The ID of the elasticity assurance.
|
|
@@ -12390,6 +12756,11 @@ export declare class DescribeElasticityAssurancesResponseBodyElasticityAssurance
|
|
|
12390
12756
|
* eapTestName
|
|
12391
12757
|
*/
|
|
12392
12758
|
privatePoolOptionsName?: string;
|
|
12759
|
+
/**
|
|
12760
|
+
* @remarks
|
|
12761
|
+
* The recurrence rules of the time-segmented assurances.
|
|
12762
|
+
*/
|
|
12763
|
+
recurrenceRules?: DescribeElasticityAssurancesResponseBodyElasticityAssuranceSetElasticityAssuranceItemRecurrenceRules;
|
|
12393
12764
|
/**
|
|
12394
12765
|
* @remarks
|
|
12395
12766
|
* The region ID of the elasticity assurance.
|
|
@@ -13517,6 +13888,16 @@ export declare class DescribeImagePipelinesResponseBodyImagePipelineImagePipelin
|
|
|
13517
13888
|
});
|
|
13518
13889
|
}
|
|
13519
13890
|
export declare class DescribeImagePipelinesResponseBodyImagePipelineImagePipelineSetAdvancedOptions extends $dara.Model {
|
|
13891
|
+
/**
|
|
13892
|
+
* @remarks
|
|
13893
|
+
* Indicates whether to disable the feature that automatically adds a suffix to the name of the image created based on the image template. Valid value:
|
|
13894
|
+
*
|
|
13895
|
+
* * disable
|
|
13896
|
+
*
|
|
13897
|
+
* @example
|
|
13898
|
+
* disable
|
|
13899
|
+
*/
|
|
13900
|
+
imageNameSuffix?: string;
|
|
13520
13901
|
/**
|
|
13521
13902
|
* @remarks
|
|
13522
13903
|
* Indicates whether to retain Cloud Assistant. During the image building process, the system automatically installs Cloud Assistant in the intermediate instance to run commands. You can choose whether to retain Cloud Assistant in the new image created based on the image template. Valid values:
|
|
@@ -13541,6 +13922,117 @@ export declare class DescribeImagePipelinesResponseBodyImagePipelineImagePipelin
|
|
|
13541
13922
|
[key: string]: any;
|
|
13542
13923
|
});
|
|
13543
13924
|
}
|
|
13925
|
+
export declare class DescribeImagePipelinesResponseBodyImagePipelineImagePipelineSetImageOptionsImageFeatures extends $dara.Model {
|
|
13926
|
+
/**
|
|
13927
|
+
* @remarks
|
|
13928
|
+
* Indicates whether the image supports the NVMe protocol. Valid values:
|
|
13929
|
+
*
|
|
13930
|
+
* * supported: The image supports the NVMe protocol. Instances created from the image also support the NVMe protocol.
|
|
13931
|
+
* * unsupported: The image does not support the NVMe protocol. Instances created from the image do not support the NVMe protocol.
|
|
13932
|
+
* * auto: The system automatically checks whether the image supports the NVMe protocol. The system automatically checks whether the NVMe driver is installed on your image before the image is built. If you install or uninstall the NVMe driver during the image building task, the check result may be incorrect. We recommend that you set the value to supported or unsupported based on the image building content.
|
|
13933
|
+
*
|
|
13934
|
+
* @example
|
|
13935
|
+
* auto
|
|
13936
|
+
*/
|
|
13937
|
+
nvmeSupport?: string;
|
|
13938
|
+
static names(): {
|
|
13939
|
+
[key: string]: string;
|
|
13940
|
+
};
|
|
13941
|
+
static types(): {
|
|
13942
|
+
[key: string]: any;
|
|
13943
|
+
};
|
|
13944
|
+
validate(): void;
|
|
13945
|
+
constructor(map?: {
|
|
13946
|
+
[key: string]: any;
|
|
13947
|
+
});
|
|
13948
|
+
}
|
|
13949
|
+
export declare class DescribeImagePipelinesResponseBodyImagePipelineImagePipelineSetImageOptionsImageTagsImageTag extends $dara.Model {
|
|
13950
|
+
/**
|
|
13951
|
+
* @remarks
|
|
13952
|
+
* The tag key of the image.
|
|
13953
|
+
*
|
|
13954
|
+
* @example
|
|
13955
|
+
* testKey
|
|
13956
|
+
*/
|
|
13957
|
+
tagKey?: string;
|
|
13958
|
+
/**
|
|
13959
|
+
* @remarks
|
|
13960
|
+
* The tag value of the image.
|
|
13961
|
+
*
|
|
13962
|
+
* @example
|
|
13963
|
+
* testValue
|
|
13964
|
+
*/
|
|
13965
|
+
tagValue?: string;
|
|
13966
|
+
static names(): {
|
|
13967
|
+
[key: string]: string;
|
|
13968
|
+
};
|
|
13969
|
+
static types(): {
|
|
13970
|
+
[key: string]: any;
|
|
13971
|
+
};
|
|
13972
|
+
validate(): void;
|
|
13973
|
+
constructor(map?: {
|
|
13974
|
+
[key: string]: any;
|
|
13975
|
+
});
|
|
13976
|
+
}
|
|
13977
|
+
export declare class DescribeImagePipelinesResponseBodyImagePipelineImagePipelineSetImageOptionsImageTags extends $dara.Model {
|
|
13978
|
+
imageTag?: DescribeImagePipelinesResponseBodyImagePipelineImagePipelineSetImageOptionsImageTagsImageTag[];
|
|
13979
|
+
static names(): {
|
|
13980
|
+
[key: string]: string;
|
|
13981
|
+
};
|
|
13982
|
+
static types(): {
|
|
13983
|
+
[key: string]: any;
|
|
13984
|
+
};
|
|
13985
|
+
validate(): void;
|
|
13986
|
+
constructor(map?: {
|
|
13987
|
+
[key: string]: any;
|
|
13988
|
+
});
|
|
13989
|
+
}
|
|
13990
|
+
export declare class DescribeImagePipelinesResponseBodyImagePipelineImagePipelineSetImageOptions extends $dara.Model {
|
|
13991
|
+
/**
|
|
13992
|
+
* @remarks
|
|
13993
|
+
* The description of the image.
|
|
13994
|
+
*
|
|
13995
|
+
* @example
|
|
13996
|
+
* description.
|
|
13997
|
+
*/
|
|
13998
|
+
description?: string;
|
|
13999
|
+
/**
|
|
14000
|
+
* @remarks
|
|
14001
|
+
* The image family.
|
|
14002
|
+
*
|
|
14003
|
+
* @example
|
|
14004
|
+
* family
|
|
14005
|
+
*/
|
|
14006
|
+
imageFamily?: string;
|
|
14007
|
+
/**
|
|
14008
|
+
* @remarks
|
|
14009
|
+
* The feature attributes of the image.
|
|
14010
|
+
*/
|
|
14011
|
+
imageFeatures?: DescribeImagePipelinesResponseBodyImagePipelineImagePipelineSetImageOptionsImageFeatures;
|
|
14012
|
+
/**
|
|
14013
|
+
* @remarks
|
|
14014
|
+
* The prefix of the image name.
|
|
14015
|
+
*
|
|
14016
|
+
* @example
|
|
14017
|
+
* imageName
|
|
14018
|
+
*/
|
|
14019
|
+
imageName?: string;
|
|
14020
|
+
/**
|
|
14021
|
+
* @remarks
|
|
14022
|
+
* The tags of the image.
|
|
14023
|
+
*/
|
|
14024
|
+
imageTags?: DescribeImagePipelinesResponseBodyImagePipelineImagePipelineSetImageOptionsImageTags;
|
|
14025
|
+
static names(): {
|
|
14026
|
+
[key: string]: string;
|
|
14027
|
+
};
|
|
14028
|
+
static types(): {
|
|
14029
|
+
[key: string]: any;
|
|
14030
|
+
};
|
|
14031
|
+
validate(): void;
|
|
14032
|
+
constructor(map?: {
|
|
14033
|
+
[key: string]: any;
|
|
14034
|
+
});
|
|
14035
|
+
}
|
|
13544
14036
|
export declare class DescribeImagePipelinesResponseBodyImagePipelineImagePipelineSetImportImageOptionsDiskDeviceMappingsDiskDeviceMapping extends $dara.Model {
|
|
13545
14037
|
/**
|
|
13546
14038
|
* @remarks
|
|
@@ -13657,15 +14149,15 @@ export declare class DescribeImagePipelinesResponseBodyImagePipelineImagePipelin
|
|
|
13657
14149
|
bootMode?: string;
|
|
13658
14150
|
/**
|
|
13659
14151
|
* @remarks
|
|
13660
|
-
* The information of
|
|
14152
|
+
* The information of disks from which the custom images are created.
|
|
13661
14153
|
*
|
|
13662
|
-
* * When N is
|
|
13663
|
-
* * When N is
|
|
14154
|
+
* * When the value of N is 1, a custom image is created from the system disk.
|
|
14155
|
+
* * When the value of N is an integer in the range of 2 to 17, a custom image is created from a data disk.
|
|
13664
14156
|
*/
|
|
13665
14157
|
diskDeviceMappings?: DescribeImagePipelinesResponseBodyImagePipelineImagePipelineSetImportImageOptionsDiskDeviceMappings;
|
|
13666
14158
|
/**
|
|
13667
14159
|
* @remarks
|
|
13668
|
-
* The attributes of the
|
|
14160
|
+
* The feature attributes of the image.
|
|
13669
14161
|
*/
|
|
13670
14162
|
features?: DescribeImagePipelinesResponseBodyImagePipelineImagePipelineSetImportImageOptionsFeatures;
|
|
13671
14163
|
/**
|
|
@@ -13729,10 +14221,7 @@ export declare class DescribeImagePipelinesResponseBodyImagePipelineImagePipelin
|
|
|
13729
14221
|
platform?: string;
|
|
13730
14222
|
/**
|
|
13731
14223
|
* @remarks
|
|
13732
|
-
*
|
|
13733
|
-
*
|
|
13734
|
-
* * true: retains the image. After the image is imported, the source image is not deleted even if the image building task is canceled or fails.
|
|
13735
|
-
* * false: does not retain the image.
|
|
14224
|
+
* > This parameter is in invitational preview.
|
|
13736
14225
|
*
|
|
13737
14226
|
* @example
|
|
13738
14227
|
* false
|
|
@@ -13870,20 +14359,33 @@ export declare class DescribeImagePipelinesResponseBodyImagePipelineImagePipelin
|
|
|
13870
14359
|
description?: string;
|
|
13871
14360
|
/**
|
|
13872
14361
|
* @remarks
|
|
13873
|
-
* The image
|
|
14362
|
+
* The family of the image created based on the image template.
|
|
14363
|
+
*
|
|
14364
|
+
* > This parameter is no longer used. We recommend that you use ImageOptions.ImageFamily.
|
|
13874
14365
|
*
|
|
13875
14366
|
* @example
|
|
13876
14367
|
* null
|
|
14368
|
+
*
|
|
14369
|
+
* @deprecated
|
|
13877
14370
|
*/
|
|
13878
14371
|
imageFamily?: string;
|
|
13879
14372
|
/**
|
|
13880
14373
|
* @remarks
|
|
13881
|
-
* The name prefix of the image
|
|
14374
|
+
* The name prefix of the image created based on the image template.
|
|
14375
|
+
*
|
|
14376
|
+
* > This parameter is no longer used. We recommend that you use ImageOptions.ImageName.
|
|
13882
14377
|
*
|
|
13883
14378
|
* @example
|
|
13884
14379
|
* testImageName
|
|
14380
|
+
*
|
|
14381
|
+
* @deprecated
|
|
13885
14382
|
*/
|
|
13886
14383
|
imageName?: string;
|
|
14384
|
+
/**
|
|
14385
|
+
* @remarks
|
|
14386
|
+
* The attributes of the image created based on the image template.
|
|
14387
|
+
*/
|
|
14388
|
+
imageOptions?: DescribeImagePipelinesResponseBodyImagePipelineImagePipelineSetImageOptions;
|
|
13887
14389
|
/**
|
|
13888
14390
|
* @remarks
|
|
13889
14391
|
* The ID of the image template.
|
|
@@ -13894,7 +14396,7 @@ export declare class DescribeImagePipelinesResponseBodyImagePipelineImagePipelin
|
|
|
13894
14396
|
imagePipelineId?: string;
|
|
13895
14397
|
/**
|
|
13896
14398
|
* @remarks
|
|
13897
|
-
* The
|
|
14399
|
+
* The attributes and settings of the imported image.
|
|
13898
14400
|
*/
|
|
13899
14401
|
importImageOptions?: DescribeImagePipelinesResponseBodyImagePipelineImagePipelineSetImportImageOptions;
|
|
13900
14402
|
/**
|
|
@@ -13923,14 +14425,14 @@ export declare class DescribeImagePipelinesResponseBodyImagePipelineImagePipelin
|
|
|
13923
14425
|
name?: string;
|
|
13924
14426
|
/**
|
|
13925
14427
|
* @remarks
|
|
13926
|
-
* Indicates whether the image created based on the image template supports Non-Volatile Memory Express (NVMe).
|
|
14428
|
+
* Indicates whether the image created based on the image template supports the Non-Volatile Memory Express (NVMe) protocol.
|
|
13927
14429
|
*
|
|
13928
|
-
*
|
|
13929
|
-
* * unsupported: The image does not support the NVMe protocol. Instances created from the image do not support the NVMe protocol.
|
|
13930
|
-
* * auto: The system automatically checks whether the image supports the NVMe protocol. The system automatically checks whether the NVMe driver is installed on your image before the image is built. If you install or uninstall the NVMe driver during the image building task, the check result may be incorrect. We recommend that you set the value to supported or unsupported based on the image building content.
|
|
14430
|
+
* > This parameter is no longer used. We recommend that you use ImageOptions.ImageFeatures.NvmeSupport.
|
|
13931
14431
|
*
|
|
13932
14432
|
* @example
|
|
13933
14433
|
* auto
|
|
14434
|
+
*
|
|
14435
|
+
* @deprecated
|
|
13934
14436
|
*/
|
|
13935
14437
|
nvmeSupport?: string;
|
|
13936
14438
|
/**
|
|
@@ -14431,7 +14933,15 @@ export declare class DescribeImagesResponseBodyImagesImageDiskDeviceMappings ext
|
|
|
14431
14933
|
});
|
|
14432
14934
|
}
|
|
14433
14935
|
export declare class DescribeImagesResponseBodyImagesImageFeatures extends $dara.Model {
|
|
14936
|
+
/**
|
|
14937
|
+
* @example
|
|
14938
|
+
* supported
|
|
14939
|
+
*/
|
|
14434
14940
|
cpuOnlineDowngrade?: string;
|
|
14941
|
+
/**
|
|
14942
|
+
* @example
|
|
14943
|
+
* supported
|
|
14944
|
+
*/
|
|
14435
14945
|
cpuOnlineUpgrade?: string;
|
|
14436
14946
|
/**
|
|
14437
14947
|
* @remarks
|
|
@@ -14444,7 +14954,15 @@ export declare class DescribeImagesResponseBodyImagesImageFeatures extends $dara
|
|
|
14444
14954
|
* v2
|
|
14445
14955
|
*/
|
|
14446
14956
|
imdsSupport?: string;
|
|
14957
|
+
/**
|
|
14958
|
+
* @example
|
|
14959
|
+
* unsupported
|
|
14960
|
+
*/
|
|
14447
14961
|
memoryOnlineDowngrade?: string;
|
|
14962
|
+
/**
|
|
14963
|
+
* @example
|
|
14964
|
+
* unsupported
|
|
14965
|
+
*/
|
|
14448
14966
|
memoryOnlineUpgrade?: string;
|
|
14449
14967
|
/**
|
|
14450
14968
|
* @remarks
|
|
@@ -15852,7 +16370,21 @@ export declare class DescribeInstanceModificationPriceRequestDataDisk extends $d
|
|
|
15852
16370
|
});
|
|
15853
16371
|
}
|
|
15854
16372
|
export declare class DescribeInstanceModificationPriceResponseBodyPriceInfoPriceDetailInfosDetailInfoSubRulesRule extends $dara.Model {
|
|
16373
|
+
/**
|
|
16374
|
+
* @remarks
|
|
16375
|
+
* The description of the pricing rule.
|
|
16376
|
+
*
|
|
16377
|
+
* @example
|
|
16378
|
+
* If you subscribe to an instance for one year, you can receive a 15% discount off the list price.
|
|
16379
|
+
*/
|
|
15855
16380
|
description?: string;
|
|
16381
|
+
/**
|
|
16382
|
+
* @remarks
|
|
16383
|
+
* The ID of the pricing rule.
|
|
16384
|
+
*
|
|
16385
|
+
* @example
|
|
16386
|
+
* 315716429631488
|
|
16387
|
+
*/
|
|
15856
16388
|
ruleId?: number;
|
|
15857
16389
|
static names(): {
|
|
15858
16390
|
[key: string]: string;
|
|
@@ -15879,10 +16411,48 @@ export declare class DescribeInstanceModificationPriceResponseBodyPriceInfoPrice
|
|
|
15879
16411
|
});
|
|
15880
16412
|
}
|
|
15881
16413
|
export declare class DescribeInstanceModificationPriceResponseBodyPriceInfoPriceDetailInfosDetailInfo extends $dara.Model {
|
|
16414
|
+
/**
|
|
16415
|
+
* @remarks
|
|
16416
|
+
* The discount.
|
|
16417
|
+
*
|
|
16418
|
+
* @example
|
|
16419
|
+
* 655.2
|
|
16420
|
+
*/
|
|
15882
16421
|
discountPrice?: number;
|
|
16422
|
+
/**
|
|
16423
|
+
* @remarks
|
|
16424
|
+
* The original price.
|
|
16425
|
+
*
|
|
16426
|
+
* @example
|
|
16427
|
+
* 4368
|
|
16428
|
+
*/
|
|
15883
16429
|
originalPrice?: number;
|
|
16430
|
+
/**
|
|
16431
|
+
* @remarks
|
|
16432
|
+
* The resource name. Valid values:
|
|
16433
|
+
*
|
|
16434
|
+
* * InstanceType
|
|
16435
|
+
* * bandwidth
|
|
16436
|
+
* * image
|
|
16437
|
+
* * SystemDisk
|
|
16438
|
+
* * DataDisk
|
|
16439
|
+
*
|
|
16440
|
+
* @example
|
|
16441
|
+
* instanceType
|
|
16442
|
+
*/
|
|
15884
16443
|
resource?: string;
|
|
16444
|
+
/**
|
|
16445
|
+
* @remarks
|
|
16446
|
+
* The pricing rules.
|
|
16447
|
+
*/
|
|
15885
16448
|
subRules?: DescribeInstanceModificationPriceResponseBodyPriceInfoPriceDetailInfosDetailInfoSubRules;
|
|
16449
|
+
/**
|
|
16450
|
+
* @remarks
|
|
16451
|
+
* The transaction price.
|
|
16452
|
+
*
|
|
16453
|
+
* @example
|
|
16454
|
+
* 3712.8
|
|
16455
|
+
*/
|
|
15886
16456
|
tradePrice?: number;
|
|
15887
16457
|
static names(): {
|
|
15888
16458
|
[key: string]: string;
|
|
@@ -15911,16 +16481,21 @@ export declare class DescribeInstanceModificationPriceResponseBodyPriceInfoPrice
|
|
|
15911
16481
|
export declare class DescribeInstanceModificationPriceResponseBodyPriceInfoPrice extends $dara.Model {
|
|
15912
16482
|
/**
|
|
15913
16483
|
* @remarks
|
|
15914
|
-
* The currency unit.
|
|
16484
|
+
* The currency unit. Valid values:
|
|
15915
16485
|
*
|
|
15916
|
-
* Alibaba Cloud China site (aliyun.com): CNY
|
|
15917
|
-
*
|
|
15918
|
-
* Alibaba Cloud International site (alibabacloud.com): USD
|
|
16486
|
+
* * Alibaba Cloud China site (aliyun.com): CNY
|
|
16487
|
+
* * Alibaba Cloud International site (alibabacloud.com): USD
|
|
15919
16488
|
*
|
|
15920
16489
|
* @example
|
|
15921
16490
|
* CNY
|
|
15922
16491
|
*/
|
|
15923
16492
|
currency?: string;
|
|
16493
|
+
/**
|
|
16494
|
+
* @remarks
|
|
16495
|
+
* The information about the price.
|
|
16496
|
+
*
|
|
16497
|
+
* > This parameter is returned only when ResourceType is set to instance.
|
|
16498
|
+
*/
|
|
15924
16499
|
detailInfos?: DescribeInstanceModificationPriceResponseBodyPriceInfoPriceDetailInfos;
|
|
15925
16500
|
/**
|
|
15926
16501
|
* @remarks
|
|
@@ -16944,6 +17519,13 @@ export declare class DescribeInstancesRequestTag extends $dara.Model {
|
|
|
16944
17519
|
});
|
|
16945
17520
|
}
|
|
16946
17521
|
export declare class DescribeInstancesResponseBodyInstancesInstanceAdditionalInfo extends $dara.Model {
|
|
17522
|
+
/**
|
|
17523
|
+
* @remarks
|
|
17524
|
+
* > This parameter is in invitational preview and is not publicly available.
|
|
17525
|
+
*
|
|
17526
|
+
* @example
|
|
17527
|
+
* true
|
|
17528
|
+
*/
|
|
16947
17529
|
enableHighDensityMode?: boolean;
|
|
16948
17530
|
static names(): {
|
|
16949
17531
|
[key: string]: string;
|
|
@@ -17758,6 +18340,9 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceVpcAttributes
|
|
|
17758
18340
|
}
|
|
17759
18341
|
export declare class DescribeInstancesResponseBodyInstancesInstance extends $dara.Model {
|
|
17760
18342
|
/**
|
|
18343
|
+
* @remarks
|
|
18344
|
+
* > This parameter is in invitational preview and is not publicly available.
|
|
18345
|
+
*
|
|
17761
18346
|
* **if can be null:**
|
|
17762
18347
|
* true
|
|
17763
18348
|
*/
|
|
@@ -18122,6 +18707,8 @@ export declare class DescribeInstancesResponseBodyInstancesInstance extends $dar
|
|
|
18122
18707
|
* The private domain name options of the instance.
|
|
18123
18708
|
*
|
|
18124
18709
|
* For information about the resolution of ECS private domain names, see [ECS private DNS resolution](https://help.aliyun.com/document_detail/2844797.html).
|
|
18710
|
+
*
|
|
18711
|
+
* > This parameter is returned only when the `AdditionalAttributes` parameter contains `PRIVATE_DNS_OPTIONS` in the request.
|
|
18125
18712
|
*/
|
|
18126
18713
|
privateDnsNameOptions?: DescribeInstancesResponseBodyInstancesInstancePrivateDnsNameOptions;
|
|
18127
18714
|
/**
|
|
@@ -19996,6 +20583,17 @@ export declare class DescribeLaunchTemplateVersionsResponseBodyLaunchTemplateVer
|
|
|
19996
20583
|
});
|
|
19997
20584
|
}
|
|
19998
20585
|
export declare class DescribeLaunchTemplateVersionsResponseBodyLaunchTemplateVersionSetsLaunchTemplateVersionSetLaunchTemplateDataNetworkInterfacesNetworkInterface extends $dara.Model {
|
|
20586
|
+
/**
|
|
20587
|
+
* @remarks
|
|
20588
|
+
* Indicates whether to retain the ENI when the associated instance is released. Valid values:
|
|
20589
|
+
*
|
|
20590
|
+
* * true
|
|
20591
|
+
* * false
|
|
20592
|
+
*
|
|
20593
|
+
* @example
|
|
20594
|
+
* true
|
|
20595
|
+
*/
|
|
20596
|
+
deleteOnRelease?: boolean;
|
|
19999
20597
|
/**
|
|
20000
20598
|
* @remarks
|
|
20001
20599
|
* The description of the secondary ENI.
|
|
@@ -22411,13 +23009,16 @@ export declare class DescribePhysicalConnectionsResponseBodyPhysicalConnectionSe
|
|
|
22411
23009
|
export declare class DescribePrefixListAssociationsResponseBodyPrefixListAssociationsPrefixListAssociation extends $dara.Model {
|
|
22412
23010
|
/**
|
|
22413
23011
|
* @remarks
|
|
22414
|
-
* The
|
|
23012
|
+
* The ID of the resource.
|
|
22415
23013
|
*
|
|
22416
23014
|
* @example
|
|
22417
23015
|
* sg-bp11ujym6xsff6l0****
|
|
22418
23016
|
*/
|
|
22419
23017
|
resourceId?: string;
|
|
22420
23018
|
/**
|
|
23019
|
+
* @remarks
|
|
23020
|
+
* The type of the resource.
|
|
23021
|
+
*
|
|
22421
23022
|
* @example
|
|
22422
23023
|
* securitygroup
|
|
22423
23024
|
*/
|
|
@@ -22576,12 +23177,12 @@ export declare class DescribePriceRequestDataDisk extends $dara.Model {
|
|
|
22576
23177
|
* @remarks
|
|
22577
23178
|
* The category of data disk N. Valid values:
|
|
22578
23179
|
*
|
|
22579
|
-
* * cloud: basic disk
|
|
22580
|
-
* * cloud_efficiency: ultra disk
|
|
22581
|
-
* * cloud_ssd: standard SSD
|
|
22582
|
-
* * ephemeral_ssd: local SSD
|
|
22583
|
-
* * cloud_essd: ESSD
|
|
22584
|
-
* * cloud_auto: ESSD AutoPL disk
|
|
23180
|
+
* * cloud: basic disk.
|
|
23181
|
+
* * cloud_efficiency: ultra disk.
|
|
23182
|
+
* * cloud_ssd: standard SSD.
|
|
23183
|
+
* * ephemeral_ssd: local SSD.
|
|
23184
|
+
* * cloud_essd: ESSD.
|
|
23185
|
+
* * cloud_auto: ESSD AutoPL disk.
|
|
22585
23186
|
*
|
|
22586
23187
|
* Valid values of N: 1 to 16.
|
|
22587
23188
|
*
|
|
@@ -22608,22 +23209,22 @@ export declare class DescribePriceRequestDataDisk extends $dara.Model {
|
|
|
22608
23209
|
* @remarks
|
|
22609
23210
|
* The size of data disk N. Unit: GiB. Valid values:
|
|
22610
23211
|
*
|
|
22611
|
-
* * Valid values
|
|
23212
|
+
* * Valid values if DataDisk.N.Category is set to cloud: 5 to 2000.
|
|
22612
23213
|
*
|
|
22613
|
-
* * Valid values
|
|
23214
|
+
* * Valid values if DataDisk.N.Category is set to cloud_efficiency: 20 to 32768.
|
|
22614
23215
|
*
|
|
22615
|
-
* * Valid values
|
|
23216
|
+
* * Valid values if DataDisk.N.Category is set to cloud_ssd: 20 to 32768.
|
|
22616
23217
|
*
|
|
22617
|
-
* * Valid values
|
|
23218
|
+
* * Valid values if DataDisk.N.Category is set to cloud_auto: 1 to 32768.
|
|
22618
23219
|
*
|
|
22619
|
-
* * Valid values
|
|
23220
|
+
* * Valid values if DataDisk.N.Category is set to cloud_essd: vary based on the `DataDisk.N.PerformanceLevel` value.
|
|
22620
23221
|
*
|
|
22621
|
-
* * Valid values
|
|
22622
|
-
* * Valid values
|
|
22623
|
-
* * Valid values
|
|
22624
|
-
* * Valid values
|
|
23222
|
+
* * Valid values if DataDisk.N.PerformanceLevel is set to PL0: 1 to 32768.
|
|
23223
|
+
* * Valid values if DataDisk.N.PerformanceLevel is set to PL1: 20 to 32768.
|
|
23224
|
+
* * Valid values if DataDisk.N.PerformanceLevel is set to PL2: 461 to 32768.
|
|
23225
|
+
* * Valid values if DataDisk.N.PerformanceLevel is set to PL3: 1261 to 32768.
|
|
22625
23226
|
*
|
|
22626
|
-
* * Valid values
|
|
23227
|
+
* * Valid values if DataDisk.N.Category is set to ephemeral_ssd: 5 to 800.
|
|
22627
23228
|
*
|
|
22628
23229
|
* Valid values of N: 1 to 16.
|
|
22629
23230
|
*
|
|
@@ -22631,6 +23232,17 @@ export declare class DescribePriceRequestDataDisk extends $dara.Model {
|
|
|
22631
23232
|
* 2000
|
|
22632
23233
|
*/
|
|
22633
23234
|
size?: number;
|
|
23235
|
+
/**
|
|
23236
|
+
* @remarks
|
|
23237
|
+
* The provisioned read/write IOPS of the ESSD AutoPL disk to use as data disk N. Valid values: 0 to min{50,000, 1,000 × Capacity - Baseline IOPS}.
|
|
23238
|
+
*
|
|
23239
|
+
* Baseline IOPS = min{1,800 + 50 × Capacity, 50,000}.
|
|
23240
|
+
*
|
|
23241
|
+
* > This parameter is available only if you set `DataDisk.N.Category` to `cloud_auto`. For more information, see [ESSD AutoPL disks](https://help.aliyun.com/document_detail/368372.html).
|
|
23242
|
+
*
|
|
23243
|
+
* @example
|
|
23244
|
+
* 40000
|
|
23245
|
+
*/
|
|
22634
23246
|
provisionedIops?: number;
|
|
22635
23247
|
static names(): {
|
|
22636
23248
|
[key: string]: string;
|
|
@@ -22732,6 +23344,64 @@ export declare class DescribePriceRequestSystemDisk extends $dara.Model {
|
|
|
22732
23344
|
[key: string]: any;
|
|
22733
23345
|
});
|
|
22734
23346
|
}
|
|
23347
|
+
export declare class DescribePriceRequestRecurrenceRules extends $dara.Model {
|
|
23348
|
+
/**
|
|
23349
|
+
* @remarks
|
|
23350
|
+
* The time when the time-segmented assurance ends. The value must be on the hour.
|
|
23351
|
+
*
|
|
23352
|
+
* @example
|
|
23353
|
+
* 10
|
|
23354
|
+
*/
|
|
23355
|
+
endHour?: number;
|
|
23356
|
+
/**
|
|
23357
|
+
* @remarks
|
|
23358
|
+
* The type of the recurrence rule. Valid values:
|
|
23359
|
+
*
|
|
23360
|
+
* * Daily
|
|
23361
|
+
* * Weekly
|
|
23362
|
+
* * Monthly
|
|
23363
|
+
*
|
|
23364
|
+
* > If this parameter is specified, specify `RecurrenceType` and `RecurrenceValue`.
|
|
23365
|
+
*
|
|
23366
|
+
* @example
|
|
23367
|
+
* Daily
|
|
23368
|
+
*/
|
|
23369
|
+
recurrenceType?: string;
|
|
23370
|
+
/**
|
|
23371
|
+
* @remarks
|
|
23372
|
+
* The recurrency value of the time-segmented assurance.
|
|
23373
|
+
*
|
|
23374
|
+
* * If you set `RecurrenceType` to `Daily`, you can set RecurrenceValue to only one value. Valid values: 1 to 31. The time-segmented assurance is performed every few days.
|
|
23375
|
+
* * If you set `RecurrenceType` to `Weekly`, you can set RecurrenceValue to one or more values. Separate the values with commas (,). The values that correspond to Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, and Saturday are 0, 1, 2, 3, 4, 5, and 6. For example, `1,2` indicates that the time-segmented assurance is performed on Monday and Tuesday of every week.
|
|
23376
|
+
* * If you set `RecurrenceType` to `Monthly`, you can set RecurrenceValue to two values in the `A-B` format. Valid values of A and B: 1 to 31. B must be greater than or equal to A. For example, `1-5` indicates that the time-segmented assurance is performed from the 1st to the 5th of each month.
|
|
23377
|
+
*
|
|
23378
|
+
* > If this parameter is specified, you must specify `RecurrenceType` and `RecurrenceValue`.
|
|
23379
|
+
*
|
|
23380
|
+
* @example
|
|
23381
|
+
* 5
|
|
23382
|
+
*/
|
|
23383
|
+
recurrenceValue?: string;
|
|
23384
|
+
/**
|
|
23385
|
+
* @remarks
|
|
23386
|
+
* The time when the time-segmented assurance takes effect. The value must be on the hour.
|
|
23387
|
+
*
|
|
23388
|
+
* > You must specify both StartHour and EndHour. The EndHour time must be at least 4 hours later than the StartHour time.
|
|
23389
|
+
*
|
|
23390
|
+
* @example
|
|
23391
|
+
* 4
|
|
23392
|
+
*/
|
|
23393
|
+
startHour?: number;
|
|
23394
|
+
static names(): {
|
|
23395
|
+
[key: string]: string;
|
|
23396
|
+
};
|
|
23397
|
+
static types(): {
|
|
23398
|
+
[key: string]: any;
|
|
23399
|
+
};
|
|
23400
|
+
validate(): void;
|
|
23401
|
+
constructor(map?: {
|
|
23402
|
+
[key: string]: any;
|
|
23403
|
+
});
|
|
23404
|
+
}
|
|
22735
23405
|
export declare class DescribePriceResponseBodyPriceInfoPriceDetailInfosDetailInfoSubRulesRule extends $dara.Model {
|
|
22736
23406
|
/**
|
|
22737
23407
|
* @remarks
|
|
@@ -23250,28 +23920,34 @@ export declare class DescribeRecommendInstanceTypeResponseBodyData extends $dara
|
|
|
23250
23920
|
export declare class DescribeRegionsResponseBodyRegionsRegion extends $dara.Model {
|
|
23251
23921
|
/**
|
|
23252
23922
|
* @remarks
|
|
23253
|
-
*
|
|
23923
|
+
* The name of the region.
|
|
23254
23924
|
*
|
|
23255
23925
|
* @example
|
|
23256
|
-
*
|
|
23926
|
+
* China (Qingdao)
|
|
23257
23927
|
*/
|
|
23258
23928
|
localName?: string;
|
|
23259
23929
|
/**
|
|
23260
23930
|
* @remarks
|
|
23261
|
-
* The
|
|
23931
|
+
* The endpoint of the region.
|
|
23262
23932
|
*
|
|
23263
23933
|
* @example
|
|
23264
23934
|
* ecs.cn-qingdao.aliyuncs.com
|
|
23265
23935
|
*/
|
|
23266
23936
|
regionEndpoint?: string;
|
|
23267
23937
|
/**
|
|
23938
|
+
* @remarks
|
|
23939
|
+
* The ID of the region.
|
|
23940
|
+
*
|
|
23268
23941
|
* @example
|
|
23269
23942
|
* cn-qingdao
|
|
23270
23943
|
*/
|
|
23271
23944
|
regionId?: string;
|
|
23272
23945
|
/**
|
|
23273
23946
|
* @remarks
|
|
23274
|
-
*
|
|
23947
|
+
* Indicates whether clusters are sold out.
|
|
23948
|
+
* Valid values:
|
|
23949
|
+
* - available
|
|
23950
|
+
* - soldOut
|
|
23275
23951
|
*
|
|
23276
23952
|
* @example
|
|
23277
23953
|
* available
|
|
@@ -23506,7 +24182,7 @@ export declare class DescribeRenewalPriceResponseBodyPriceInfo extends $dara.Mod
|
|
|
23506
24182
|
price?: DescribeRenewalPriceResponseBodyPriceInfoPrice;
|
|
23507
24183
|
/**
|
|
23508
24184
|
* @remarks
|
|
23509
|
-
*
|
|
24185
|
+
* The information about the promotion rules.
|
|
23510
24186
|
*/
|
|
23511
24187
|
rules?: DescribeRenewalPriceResponseBodyPriceInfoRules;
|
|
23512
24188
|
static names(): {
|
|
@@ -28262,6 +28938,18 @@ export declare class ImportImageRequestDiskDeviceMapping extends $dara.Model {
|
|
|
28262
28938
|
});
|
|
28263
28939
|
}
|
|
28264
28940
|
export declare class ImportImageRequestFeatures extends $dara.Model {
|
|
28941
|
+
/**
|
|
28942
|
+
* @remarks
|
|
28943
|
+
* The metadata access mode version of the image. Valid values:
|
|
28944
|
+
*
|
|
28945
|
+
* * v1: You cannot set the metadata access mode to security hardening when you create instances from the image.
|
|
28946
|
+
* * v2: You can set the metadata access mode to security hardening when you create instances from the image.
|
|
28947
|
+
*
|
|
28948
|
+
* Default value: v1.
|
|
28949
|
+
*
|
|
28950
|
+
* @example
|
|
28951
|
+
* v2
|
|
28952
|
+
*/
|
|
28265
28953
|
imdsSupport?: string;
|
|
28266
28954
|
/**
|
|
28267
28955
|
* @remarks
|
|
@@ -29231,6 +29919,83 @@ export declare class ModifyElasticityAssuranceRequestPrivatePoolOptions extends
|
|
|
29231
29919
|
[key: string]: any;
|
|
29232
29920
|
});
|
|
29233
29921
|
}
|
|
29922
|
+
export declare class ModifyElasticityAssuranceRequestRecurrenceRules extends $dara.Model {
|
|
29923
|
+
/**
|
|
29924
|
+
* @remarks
|
|
29925
|
+
* The end time of the assurance period for the capacity reservation. Specify an on-the-hour point in time.
|
|
29926
|
+
*
|
|
29927
|
+
* @example
|
|
29928
|
+
* 10
|
|
29929
|
+
*/
|
|
29930
|
+
endHour?: number;
|
|
29931
|
+
/**
|
|
29932
|
+
* @remarks
|
|
29933
|
+
* The type of the assurance schedule. Valid values:
|
|
29934
|
+
*
|
|
29935
|
+
* * Daily
|
|
29936
|
+
* * Weekly
|
|
29937
|
+
* * Monthly
|
|
29938
|
+
*
|
|
29939
|
+
* > You must specify both `RecurrenceType` and `RecurrenceValue`.
|
|
29940
|
+
*
|
|
29941
|
+
* @example
|
|
29942
|
+
* Daily
|
|
29943
|
+
*/
|
|
29944
|
+
recurrenceType?: string;
|
|
29945
|
+
/**
|
|
29946
|
+
* @remarks
|
|
29947
|
+
* The days of the week or month on which the capacity reservation takes effect or the interval, in number of days, at which the capacity reservation takes effect.
|
|
29948
|
+
*
|
|
29949
|
+
* * If you set `RecurrenceType` to `Daily`, you can specify only one value for this parameter. Valid values: 1 to 31. The value specifies that the capacity reservation takes effect every few days.
|
|
29950
|
+
* * If you set `RecurrenceType` to `Weekly`, you can specify multiple values for this parameter. Separate the values with commas (,). Valid values: 0, 1, 2, 3, 4, 5, and 6, which specify Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, and Saturday, respectively. Example: `1,2`, which specifies that the capacity reservation takes effect on Monday and Tuesday.
|
|
29951
|
+
* * If you set `RecurrenceType` to `Monthly`, you can specify two values in the `A-B` format for this parameter. Valid values of A and B: 1 to 31. B must be greater than or equal to A. Example: `1-5`, which specifies that the capacity reservation takes effect every day from the first day up to the fifth day of each month.
|
|
29952
|
+
*
|
|
29953
|
+
* > You must specify both `RecurrenceType` and `RecurrenceValue`.
|
|
29954
|
+
*
|
|
29955
|
+
* @example
|
|
29956
|
+
* 5
|
|
29957
|
+
*/
|
|
29958
|
+
recurrenceValue?: string;
|
|
29959
|
+
/**
|
|
29960
|
+
* @remarks
|
|
29961
|
+
* The start time of the assurance period for the capacity reservation. Specify an on-the-hour point in time.
|
|
29962
|
+
*
|
|
29963
|
+
* > You must specify both `StartHour` and `EndHour`. EndHour must be at least four hours later than StartHour.
|
|
29964
|
+
*
|
|
29965
|
+
* @example
|
|
29966
|
+
* 4
|
|
29967
|
+
*/
|
|
29968
|
+
startHour?: number;
|
|
29969
|
+
static names(): {
|
|
29970
|
+
[key: string]: string;
|
|
29971
|
+
};
|
|
29972
|
+
static types(): {
|
|
29973
|
+
[key: string]: any;
|
|
29974
|
+
};
|
|
29975
|
+
validate(): void;
|
|
29976
|
+
constructor(map?: {
|
|
29977
|
+
[key: string]: any;
|
|
29978
|
+
});
|
|
29979
|
+
}
|
|
29980
|
+
export declare class ModifyElasticityAssuranceAutoRenewAttributeRequestPrivatePoolOptions extends $dara.Model {
|
|
29981
|
+
/**
|
|
29982
|
+
* @remarks
|
|
29983
|
+
* The IDs of elasticity assurances.
|
|
29984
|
+
*
|
|
29985
|
+
* > You can renew up to 50 elasticity assurances at a time.
|
|
29986
|
+
*/
|
|
29987
|
+
id?: string[];
|
|
29988
|
+
static names(): {
|
|
29989
|
+
[key: string]: string;
|
|
29990
|
+
};
|
|
29991
|
+
static types(): {
|
|
29992
|
+
[key: string]: any;
|
|
29993
|
+
};
|
|
29994
|
+
validate(): void;
|
|
29995
|
+
constructor(map?: {
|
|
29996
|
+
[key: string]: any;
|
|
29997
|
+
});
|
|
29998
|
+
}
|
|
29234
29999
|
export declare class ModifyImageAttributeRequestFeatures extends $dara.Model {
|
|
29235
30000
|
/**
|
|
29236
30001
|
* @remarks
|
|
@@ -29287,11 +30052,11 @@ export declare class ModifyInstanceAttachmentAttributesRequestPrivatePoolOptions
|
|
|
29287
30052
|
id?: string;
|
|
29288
30053
|
/**
|
|
29289
30054
|
* @remarks
|
|
29290
|
-
* The
|
|
30055
|
+
* The new type of private pool. Valid values:
|
|
29291
30056
|
*
|
|
29292
|
-
* * Open: open private pool. The system matches the instance with open private pools.
|
|
29293
|
-
* * Target: specified private pool. You must
|
|
29294
|
-
* * None: no private pool. The
|
|
30057
|
+
* * Open: open private pool. The system matches the instance with an open private pool. If no matching open private pools exist, the system uses resources in the public pool to start the instance.
|
|
30058
|
+
* * Target: specified private pool. The system uses the capacity in a specified private pool to start the instance. If the specified private pool is unavailable, the instance cannot be started. You must use `PrivatePoolOptions.Id` to specify the ID of a private pool.
|
|
30059
|
+
* * None: no private pool. The capacity in private pools is not used to start the instance.
|
|
29295
30060
|
*
|
|
29296
30061
|
* This parameter is required.
|
|
29297
30062
|
*
|
|
@@ -29311,7 +30076,24 @@ export declare class ModifyInstanceAttachmentAttributesRequestPrivatePoolOptions
|
|
|
29311
30076
|
});
|
|
29312
30077
|
}
|
|
29313
30078
|
export declare class ModifyInstanceAttributeRequestCpuOptions extends $dara.Model {
|
|
30079
|
+
/**
|
|
30080
|
+
* @remarks
|
|
30081
|
+
* The number of CPU cores. This parameter cannot be specified but only uses its default value.
|
|
30082
|
+
*
|
|
30083
|
+
* @example
|
|
30084
|
+
* 2
|
|
30085
|
+
*/
|
|
29314
30086
|
core?: number;
|
|
30087
|
+
/**
|
|
30088
|
+
* @remarks
|
|
30089
|
+
* The number of threads per CPU core. The following formula is used to calculate the number of vCPUs of the instance: `CpuOptions.Core` value × `CpuOptions.ThreadsPerCore` value.
|
|
30090
|
+
*
|
|
30091
|
+
* * If `CpuOptionsThreadPerCore` is set to 1, Hyper-Threading (HT) is disabled.
|
|
30092
|
+
* * This parameter is applicable only to specific instance types.
|
|
30093
|
+
*
|
|
30094
|
+
* @example
|
|
30095
|
+
* 2
|
|
30096
|
+
*/
|
|
29315
30097
|
threadsPerCore?: number;
|
|
29316
30098
|
/**
|
|
29317
30099
|
* @remarks
|
|
@@ -29593,16 +30375,25 @@ export declare class ModifyInstanceSpecRequestTemporary extends $dara.Model {
|
|
|
29593
30375
|
}
|
|
29594
30376
|
export declare class ModifyInstanceSpecRequestDisk extends $dara.Model {
|
|
29595
30377
|
/**
|
|
30378
|
+
* @remarks
|
|
30379
|
+
* > This parameter is in invitational preview and is not publicly available.
|
|
30380
|
+
*
|
|
29596
30381
|
* @example
|
|
29597
30382
|
* null
|
|
29598
30383
|
*/
|
|
29599
30384
|
category?: string;
|
|
29600
30385
|
/**
|
|
30386
|
+
* @remarks
|
|
30387
|
+
* > This parameter is in invitational preview and is not publicly available.
|
|
30388
|
+
*
|
|
29601
30389
|
* @example
|
|
29602
30390
|
* null
|
|
29603
30391
|
*/
|
|
29604
30392
|
diskId?: string;
|
|
29605
30393
|
/**
|
|
30394
|
+
* @remarks
|
|
30395
|
+
* > This parameter is in invitational preview and is not publicly available.
|
|
30396
|
+
*
|
|
29606
30397
|
* @example
|
|
29607
30398
|
* null
|
|
29608
30399
|
*/
|
|
@@ -29694,6 +30485,9 @@ export declare class ModifyNetworkInterfaceAttributeRequestConnectionTrackingCon
|
|
|
29694
30485
|
}
|
|
29695
30486
|
export declare class ModifyNetworkInterfaceAttributeRequestEnhancedNetwork extends $dara.Model {
|
|
29696
30487
|
/**
|
|
30488
|
+
* @remarks
|
|
30489
|
+
* >This parameter is in invitational preview and is not publicly available.
|
|
30490
|
+
*
|
|
29697
30491
|
* @example
|
|
29698
30492
|
* false
|
|
29699
30493
|
*/
|
|
@@ -30019,7 +30813,7 @@ export declare class PurchaseElasticityAssuranceRequestPrivatePoolOptions extend
|
|
|
30019
30813
|
* The type of the private pool that is associated with the elasticity assurance. Valid values:
|
|
30020
30814
|
*
|
|
30021
30815
|
* * Open: open private pool. If you use the elasticity assurance to create ECS instances, the open private pool that is associated with the elasticity assurance is automatically matched. If no capacity is available in the open private pool, resources in the public pool are automatically used to create the ECS instances.
|
|
30022
|
-
* * Target: targeted private pool. If you use the elasticity assurance to create ECS instances, the
|
|
30816
|
+
* * Target: targeted private pool. If you use the elasticity assurance to create ECS instances, the specified private pool that is associated with the elasticity assurance is automatically matched. If no capacity is available in the private pool, the ECS instances fail to be created.
|
|
30023
30817
|
*
|
|
30024
30818
|
* Default value: Open.
|
|
30025
30819
|
*
|
|
@@ -30880,8 +31674,8 @@ export declare class RunCommandRequestResourceTag extends $dara.Model {
|
|
|
30880
31674
|
* Take note of the following items:
|
|
30881
31675
|
*
|
|
30882
31676
|
* * This parameter and InstanceId.N are mutually exclusive.
|
|
30883
|
-
* *
|
|
30884
|
-
* * The number of instances that have the specified tags cannot exceed 100.
|
|
31677
|
+
* * The tag key cannot be an empty string.
|
|
31678
|
+
* * The number of instances that have the specified tags cannot exceed 100. Otherwise, we recommend that you use batch tags, such as batch: b1, to group the instances into batches of up to 100 instances.
|
|
30885
31679
|
* * The tag key can be up to 64 characters in length and cannot contain http:// or https://. The tag key cannot start with acs: or aliyun.
|
|
30886
31680
|
*
|
|
30887
31681
|
* @example
|
|
@@ -30894,7 +31688,6 @@ export declare class RunCommandRequestResourceTag extends $dara.Model {
|
|
|
30894
31688
|
*
|
|
30895
31689
|
* Take note of the following items:
|
|
30896
31690
|
*
|
|
30897
|
-
* * Valid values of N: 1 to 10.
|
|
30898
31691
|
* * The tag value can be an empty string.
|
|
30899
31692
|
* * The tag value can be up to 128 characters in length and cannot contain http:// or https://.
|
|
30900
31693
|
*
|
|
@@ -30916,11 +31709,11 @@ export declare class RunCommandRequestResourceTag extends $dara.Model {
|
|
|
30916
31709
|
export declare class RunCommandRequestTag extends $dara.Model {
|
|
30917
31710
|
/**
|
|
30918
31711
|
* @remarks
|
|
30919
|
-
* The key of tag N to add to the command task.
|
|
31712
|
+
* The key of tag N to add to the command task. The tag key cannot be an empty string.
|
|
30920
31713
|
*
|
|
30921
|
-
* If a
|
|
31714
|
+
* If a tag is specified to query resources, up to 1,000 resources that have this tag can be displayed in the response. If multiple tags are specified to query resources, up to 1,000 resources that have all the tags can be displayed in the response. To query more than 1,000 resources that have the specified tags, call the [ListTagResources](https://help.aliyun.com/document_detail/110425.html) operation.
|
|
30922
31715
|
*
|
|
30923
|
-
* The tag key can be up to 64 characters in length and cannot
|
|
31716
|
+
* The tag key can be up to 64 characters in length and cannot contain `http://` or `https://`. The tag key cannot start with `acs:` or `aliyun`.
|
|
30924
31717
|
*
|
|
30925
31718
|
* @example
|
|
30926
31719
|
* TestKey
|
|
@@ -30928,7 +31721,7 @@ export declare class RunCommandRequestTag extends $dara.Model {
|
|
|
30928
31721
|
key?: string;
|
|
30929
31722
|
/**
|
|
30930
31723
|
* @remarks
|
|
30931
|
-
* The value of tag N to add to the command task.
|
|
31724
|
+
* The value of tag N to add to the command task. The tag value can be an empty string.
|
|
30932
31725
|
*
|
|
30933
31726
|
* The tag value can be up to 128 characters in length and cannot contain `http://` or `https://`.
|
|
30934
31727
|
*
|
|
@@ -30955,8 +31748,8 @@ export declare class RunCommandShrinkRequestResourceTag extends $dara.Model {
|
|
|
30955
31748
|
* Take note of the following items:
|
|
30956
31749
|
*
|
|
30957
31750
|
* * This parameter and InstanceId.N are mutually exclusive.
|
|
30958
|
-
* *
|
|
30959
|
-
* * The number of instances that have the specified tags cannot exceed 100.
|
|
31751
|
+
* * The tag key cannot be an empty string.
|
|
31752
|
+
* * The number of instances that have the specified tags cannot exceed 100. Otherwise, we recommend that you use batch tags, such as batch: b1, to group the instances into batches of up to 100 instances.
|
|
30960
31753
|
* * The tag key can be up to 64 characters in length and cannot contain http:// or https://. The tag key cannot start with acs: or aliyun.
|
|
30961
31754
|
*
|
|
30962
31755
|
* @example
|
|
@@ -30969,7 +31762,6 @@ export declare class RunCommandShrinkRequestResourceTag extends $dara.Model {
|
|
|
30969
31762
|
*
|
|
30970
31763
|
* Take note of the following items:
|
|
30971
31764
|
*
|
|
30972
|
-
* * Valid values of N: 1 to 10.
|
|
30973
31765
|
* * The tag value can be an empty string.
|
|
30974
31766
|
* * The tag value can be up to 128 characters in length and cannot contain http:// or https://.
|
|
30975
31767
|
*
|
|
@@ -30991,11 +31783,11 @@ export declare class RunCommandShrinkRequestResourceTag extends $dara.Model {
|
|
|
30991
31783
|
export declare class RunCommandShrinkRequestTag extends $dara.Model {
|
|
30992
31784
|
/**
|
|
30993
31785
|
* @remarks
|
|
30994
|
-
* The key of tag N to add to the command task.
|
|
31786
|
+
* The key of tag N to add to the command task. The tag key cannot be an empty string.
|
|
30995
31787
|
*
|
|
30996
|
-
* If a
|
|
31788
|
+
* If a tag is specified to query resources, up to 1,000 resources that have this tag can be displayed in the response. If multiple tags are specified to query resources, up to 1,000 resources that have all the tags can be displayed in the response. To query more than 1,000 resources that have the specified tags, call the [ListTagResources](https://help.aliyun.com/document_detail/110425.html) operation.
|
|
30997
31789
|
*
|
|
30998
|
-
* The tag key can be up to 64 characters in length and cannot
|
|
31790
|
+
* The tag key can be up to 64 characters in length and cannot contain `http://` or `https://`. The tag key cannot start with `acs:` or `aliyun`.
|
|
30999
31791
|
*
|
|
31000
31792
|
* @example
|
|
31001
31793
|
* TestKey
|
|
@@ -31003,7 +31795,7 @@ export declare class RunCommandShrinkRequestTag extends $dara.Model {
|
|
|
31003
31795
|
key?: string;
|
|
31004
31796
|
/**
|
|
31005
31797
|
* @remarks
|
|
31006
|
-
* The value of tag N to add to the command task.
|
|
31798
|
+
* The value of tag N to add to the command task. The tag value can be an empty string.
|
|
31007
31799
|
*
|
|
31008
31800
|
* The tag value can be up to 128 characters in length and cannot contain `http://` or `https://`.
|
|
31009
31801
|
*
|
|
@@ -31935,7 +32727,12 @@ export declare class RunInstancesRequestNetworkOptions extends $dara.Model {
|
|
|
31935
32727
|
export declare class RunInstancesRequestPrivateDnsNameOptions extends $dara.Model {
|
|
31936
32728
|
/**
|
|
31937
32729
|
* @remarks
|
|
31938
|
-
*
|
|
32730
|
+
* Specifies whether DNS Resolution from the Instance ID-based Hostname to the Instance Primary Private IPv6 Address (AAAA Record) is enabled. Valid values:
|
|
32731
|
+
*
|
|
32732
|
+
* * true
|
|
32733
|
+
* * false
|
|
32734
|
+
*
|
|
32735
|
+
* Default value: false.
|
|
31939
32736
|
*
|
|
31940
32737
|
* @example
|
|
31941
32738
|
* true
|
|
@@ -31943,7 +32740,12 @@ export declare class RunInstancesRequestPrivateDnsNameOptions extends $dara.Mode
|
|
|
31943
32740
|
enableInstanceIdDnsAAAARecord?: boolean;
|
|
31944
32741
|
/**
|
|
31945
32742
|
* @remarks
|
|
31946
|
-
*
|
|
32743
|
+
* Specifies whether DNS Resolution from the Instance ID-based Hostname to the Instance Primary Private IPv4 Address (A Record) is enabled. Valid values:
|
|
32744
|
+
*
|
|
32745
|
+
* * true
|
|
32746
|
+
* * false
|
|
32747
|
+
*
|
|
32748
|
+
* Default value: false.
|
|
31947
32749
|
*
|
|
31948
32750
|
* @example
|
|
31949
32751
|
* false
|
|
@@ -31951,7 +32753,12 @@ export declare class RunInstancesRequestPrivateDnsNameOptions extends $dara.Mode
|
|
|
31951
32753
|
enableInstanceIdDnsARecord?: boolean;
|
|
31952
32754
|
/**
|
|
31953
32755
|
* @remarks
|
|
31954
|
-
*
|
|
32756
|
+
* Specifies whether DNS Resolution from the IP Address-based Hostname to the Instance Primary Private IPv4 Address (A Record) is enabled. Valid values:
|
|
32757
|
+
*
|
|
32758
|
+
* * true
|
|
32759
|
+
* * false
|
|
32760
|
+
*
|
|
32761
|
+
* Default value: false.
|
|
31955
32762
|
*
|
|
31956
32763
|
* @example
|
|
31957
32764
|
* true
|
|
@@ -31959,7 +32766,12 @@ export declare class RunInstancesRequestPrivateDnsNameOptions extends $dara.Mode
|
|
|
31959
32766
|
enableIpDnsARecord?: boolean;
|
|
31960
32767
|
/**
|
|
31961
32768
|
* @remarks
|
|
31962
|
-
*
|
|
32769
|
+
* Specifies whether Reverse DNS Resolution from the Instance Primary Private IPv4 Address to the IP Address-based Hostname (PTR Record) is enabled. Valid values:
|
|
32770
|
+
*
|
|
32771
|
+
* * true
|
|
32772
|
+
* * false
|
|
32773
|
+
*
|
|
32774
|
+
* Default value: false.
|
|
31963
32775
|
*
|
|
31964
32776
|
* @example
|
|
31965
32777
|
* false
|
|
@@ -31967,7 +32779,13 @@ export declare class RunInstancesRequestPrivateDnsNameOptions extends $dara.Mode
|
|
|
31967
32779
|
enableIpDnsPtrRecord?: boolean;
|
|
31968
32780
|
/**
|
|
31969
32781
|
* @remarks
|
|
31970
|
-
*
|
|
32782
|
+
* The type of hostname. Valid values:
|
|
32783
|
+
*
|
|
32784
|
+
* * Custom: custom hostname
|
|
32785
|
+
* * IpBased: IP address-based hostname
|
|
32786
|
+
* * InstanceIdBased: instance ID-based hostname
|
|
32787
|
+
*
|
|
32788
|
+
* Default value: Custom.
|
|
31971
32789
|
*
|
|
31972
32790
|
* @example
|
|
31973
32791
|
* Custom
|
|
@@ -32809,6 +33627,7 @@ export declare class AllocateDedicatedHostsResponseBody extends $dara.Model {
|
|
|
32809
33627
|
* The IDs of the dedicated hosts.
|
|
32810
33628
|
*/
|
|
32811
33629
|
dedicatedHostIdSets?: AllocateDedicatedHostsResponseBodyDedicatedHostIdSets;
|
|
33630
|
+
orderId?: string;
|
|
32812
33631
|
/**
|
|
32813
33632
|
* @remarks
|
|
32814
33633
|
* The ID of the request.
|
|
@@ -34926,6 +35745,9 @@ export declare class CancelTaskRequest extends $dara.Model {
|
|
|
34926
35745
|
}
|
|
34927
35746
|
export declare class CancelTaskResponseBody extends $dara.Model {
|
|
34928
35747
|
/**
|
|
35748
|
+
* @remarks
|
|
35749
|
+
* The ID of the request.
|
|
35750
|
+
*
|
|
34929
35751
|
* @example
|
|
34930
35752
|
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
34931
35753
|
*/
|
|
@@ -36813,7 +37635,7 @@ export declare class CreateDedicatedHostClusterRequest extends $dara.Model {
|
|
|
36813
37635
|
* @remarks
|
|
36814
37636
|
* Specifies whether to perform only a dry run, without performing the actual request. Valid values:
|
|
36815
37637
|
*
|
|
36816
|
-
* * true: performs only a dry run. The system checks the request for potential issues, including invalid AccessKey pairs, unauthorized Resource Access Management (RAM) users, and missing parameter values.
|
|
37638
|
+
* * true: performs only a dry run. The system checks the request for potential issues, including invalid AccessKey pairs, unauthorized Resource Access Management (RAM) users, and missing parameter values. Otherwise, an error message is returned. If the request passes the dry run, the `DryRunOperation` error code is returned.
|
|
36817
37639
|
* * false: performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
|
|
36818
37640
|
*
|
|
36819
37641
|
* Default value: false.
|
|
@@ -37820,7 +38642,31 @@ export declare class CreateElasticityAssuranceRequest extends $dara.Model {
|
|
|
37820
38642
|
* Unlimited
|
|
37821
38643
|
*/
|
|
37822
38644
|
assuranceTimes?: string;
|
|
38645
|
+
/**
|
|
38646
|
+
* @remarks
|
|
38647
|
+
* Specifies whether to enable auto-renewal for the elasticity assurance. Valid values:
|
|
38648
|
+
*
|
|
38649
|
+
* * true
|
|
38650
|
+
* * false
|
|
38651
|
+
*
|
|
38652
|
+
* Default value: false.
|
|
38653
|
+
*
|
|
38654
|
+
* @example
|
|
38655
|
+
* true
|
|
38656
|
+
*/
|
|
37823
38657
|
autoRenew?: boolean;
|
|
38658
|
+
/**
|
|
38659
|
+
* @remarks
|
|
38660
|
+
* The auto-renewal period. Unit: month. Valid values: 1, 2, 3, 6, 12, 24, and 36.
|
|
38661
|
+
*
|
|
38662
|
+
* * Default value when `PeriodUnit` is set to Month: 1.
|
|
38663
|
+
* * Default value when `PeriodUnit` is set to Year: 12.
|
|
38664
|
+
*
|
|
38665
|
+
* > If you set `AutoRenew` to `true`, you must specify this parameter.
|
|
38666
|
+
*
|
|
38667
|
+
* @example
|
|
38668
|
+
* 1
|
|
38669
|
+
*/
|
|
37824
38670
|
autoRenewPeriod?: number;
|
|
37825
38671
|
/**
|
|
37826
38672
|
* @remarks
|
|
@@ -37842,10 +38688,12 @@ export declare class CreateElasticityAssuranceRequest extends $dara.Model {
|
|
|
37842
38688
|
description?: string;
|
|
37843
38689
|
/**
|
|
37844
38690
|
* @remarks
|
|
37845
|
-
* The total number of instances for which to reserve capacity
|
|
38691
|
+
* The total number of instances of an instance type for which you want to reserve capacity.
|
|
37846
38692
|
*
|
|
37847
38693
|
* Valid values: 1 to 1000.
|
|
37848
38694
|
*
|
|
38695
|
+
* > You must specify this parameter.
|
|
38696
|
+
*
|
|
37849
38697
|
* @example
|
|
37850
38698
|
* 2
|
|
37851
38699
|
*/
|
|
@@ -37872,10 +38720,11 @@ export declare class CreateElasticityAssuranceRequest extends $dara.Model {
|
|
|
37872
38720
|
ownerId?: number;
|
|
37873
38721
|
/**
|
|
37874
38722
|
* @remarks
|
|
37875
|
-
* The term of the elasticity assurance. The unit of the term is determined by the `PeriodUnit
|
|
38723
|
+
* The term of the elasticity assurance. The unit of the term is determined by the value of `PeriodUnit`. Valid values:
|
|
37876
38724
|
*
|
|
37877
|
-
* * When `PeriodUnit` is
|
|
37878
|
-
* * When `PeriodUnit` is
|
|
38725
|
+
* * When the value of `PeriodUnit` is `Month`, the valid values are 1, 2, 3, 4, 5, 6, 7, 8, and 9.
|
|
38726
|
+
* * When the value of `PeriodUnit` is `Year`, the valid values are 1, 2, 3, 4, and 5.
|
|
38727
|
+
* * When the value of `PeriodUnit` is `Day`, the valid values are 1 to 365.
|
|
37879
38728
|
*
|
|
37880
38729
|
* Default value: 1.
|
|
37881
38730
|
*
|
|
@@ -37888,14 +38737,28 @@ export declare class CreateElasticityAssuranceRequest extends $dara.Model {
|
|
|
37888
38737
|
* The unit of the term of the elasticity assurance. Valid values:
|
|
37889
38738
|
*
|
|
37890
38739
|
* * Month
|
|
38740
|
+
*
|
|
37891
38741
|
* * Year
|
|
37892
38742
|
*
|
|
38743
|
+
* * Day
|
|
38744
|
+
*
|
|
38745
|
+
* **
|
|
38746
|
+
*
|
|
38747
|
+
* **Note** If you set `PeriodUnit` to `Day`, you must specify RecurrenceRules to create a time-segmented elasticity assurance.
|
|
38748
|
+
*
|
|
37893
38749
|
* Default value: Year.
|
|
37894
38750
|
*
|
|
37895
38751
|
* @example
|
|
37896
38752
|
* Year
|
|
37897
38753
|
*/
|
|
37898
38754
|
periodUnit?: string;
|
|
38755
|
+
/**
|
|
38756
|
+
* @remarks
|
|
38757
|
+
* The assurance schedules based on which the capacity reservation takes effect.
|
|
38758
|
+
*
|
|
38759
|
+
* > Time-segmented elasticity assurances are available only in specific regions and to specific users. To use time-segmented elasticity assurances, [submit a ticket](https://smartservice.console.aliyun.com/service/create-ticket-intl).
|
|
38760
|
+
*/
|
|
38761
|
+
recurrenceRules?: CreateElasticityAssuranceRequestRecurrenceRules[];
|
|
37899
38762
|
/**
|
|
37900
38763
|
* @remarks
|
|
37901
38764
|
* The ID of the region in which to create the elasticity assurance. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list.
|
|
@@ -38275,7 +39138,7 @@ export declare class CreateHpcClusterResponse extends $dara.Model {
|
|
|
38275
39138
|
export declare class CreateImageRequest extends $dara.Model {
|
|
38276
39139
|
/**
|
|
38277
39140
|
* @remarks
|
|
38278
|
-
* The system architecture of the system disk. If you specify a data disk snapshot to create the system disk of the custom image,
|
|
39141
|
+
* The system architecture of the system disk. If you specify a data disk snapshot to create the system disk of the custom image, use Architecture to specify the system architecture of the system disk. Valid values:
|
|
38279
39142
|
*
|
|
38280
39143
|
* * i386
|
|
38281
39144
|
* * x86_64
|
|
@@ -38331,7 +39194,7 @@ export declare class CreateImageRequest extends $dara.Model {
|
|
|
38331
39194
|
detectionStrategy?: string;
|
|
38332
39195
|
/**
|
|
38333
39196
|
* @remarks
|
|
38334
|
-
* The information about the custom image.
|
|
39197
|
+
* The information about the custom image. To create a custom image from multiple snapshots, specify the parameters in this parameter list.
|
|
38335
39198
|
*/
|
|
38336
39199
|
diskDeviceMapping?: CreateImageRequestDiskDeviceMapping[];
|
|
38337
39200
|
/**
|
|
@@ -38359,7 +39222,7 @@ export declare class CreateImageRequest extends $dara.Model {
|
|
|
38359
39222
|
* @remarks
|
|
38360
39223
|
* The image version.
|
|
38361
39224
|
*
|
|
38362
|
-
* >
|
|
39225
|
+
* > If you specify an ECS instance that runs an Alibaba Cloud Marketplace image or a custom image derived from an Alibaba Cloud Marketplace image by using `InstanceId`, you must leave this parameter empty or set this parameter to the `ImageVersion` value of the image run by the specified ECS instance.
|
|
38363
39226
|
*
|
|
38364
39227
|
* @example
|
|
38365
39228
|
* 2017011017
|
|
@@ -38367,7 +39230,7 @@ export declare class CreateImageRequest extends $dara.Model {
|
|
|
38367
39230
|
imageVersion?: string;
|
|
38368
39231
|
/**
|
|
38369
39232
|
* @remarks
|
|
38370
|
-
* The instance
|
|
39233
|
+
* The ID of the ECS instance from which to create the custom image. To create a custom image from an ECS instance, you must specify this parameter.
|
|
38371
39234
|
*
|
|
38372
39235
|
* @example
|
|
38373
39236
|
* i-bp1g6zv0ce8oghu7****
|
|
@@ -38424,9 +39287,9 @@ export declare class CreateImageRequest extends $dara.Model {
|
|
|
38424
39287
|
regionId?: string;
|
|
38425
39288
|
/**
|
|
38426
39289
|
* @remarks
|
|
38427
|
-
* The ID of the resource group to which to assign the custom image. If you
|
|
39290
|
+
* The ID of the resource group to which to assign the custom image. If you leave this parameter empty, the image is assigned to the default resource group.
|
|
38428
39291
|
*
|
|
38429
|
-
* > If you call the CreateImage operation as a Resource Access Management (RAM) user who does not have
|
|
39292
|
+
* > If you call the CreateImage operation as a Resource Access Management (RAM) user who does not have permissions on the default resource group and leave `ResourceGroupId` empty, the `Forbidden: User not authorized to operate on the specified resource` error message is returned. You must specify the ID of a resource group on which the RAM user has permissions or grant the RAM user permissions on the default resource group, and then call the CreateImage operation again.
|
|
38430
39293
|
*
|
|
38431
39294
|
* @example
|
|
38432
39295
|
* rg-bp67acfmxazb4p****
|
|
@@ -38436,7 +39299,9 @@ export declare class CreateImageRequest extends $dara.Model {
|
|
|
38436
39299
|
resourceOwnerId?: number;
|
|
38437
39300
|
/**
|
|
38438
39301
|
* @remarks
|
|
38439
|
-
* The ID of the snapshot
|
|
39302
|
+
* The ID of the snapshot from which to create the custom image.
|
|
39303
|
+
*
|
|
39304
|
+
* > To create a custom image from only a system disk snapshot of an ECS instance, you can specify this parameter or `DiskDeviceMapping.SnapshotId`. To create a custom image from multiple snapshots, you can specify only `DiskDeviceMapping.SnapshotId`.
|
|
38440
39305
|
*
|
|
38441
39306
|
* @example
|
|
38442
39307
|
* s-bp17441ohwkdca0****
|
|
@@ -38748,6 +39613,8 @@ export declare class CreateImagePipelineRequest extends $dara.Model {
|
|
|
38748
39613
|
*
|
|
38749
39614
|
* @example
|
|
38750
39615
|
* null
|
|
39616
|
+
*
|
|
39617
|
+
* @deprecated
|
|
38751
39618
|
*/
|
|
38752
39619
|
imageFamily?: string;
|
|
38753
39620
|
/**
|
|
@@ -38758,8 +39625,15 @@ export declare class CreateImagePipelineRequest extends $dara.Model {
|
|
|
38758
39625
|
*
|
|
38759
39626
|
* @example
|
|
38760
39627
|
* testImageName
|
|
39628
|
+
*
|
|
39629
|
+
* @deprecated
|
|
38761
39630
|
*/
|
|
38762
39631
|
imageName?: string;
|
|
39632
|
+
/**
|
|
39633
|
+
* @remarks
|
|
39634
|
+
* 目标镜像属性。
|
|
39635
|
+
*/
|
|
39636
|
+
imageOptions?: CreateImagePipelineRequestImageOptions;
|
|
38763
39637
|
/**
|
|
38764
39638
|
* @remarks
|
|
38765
39639
|
* The attributes and settings of the image that you want to import. If you set `BaseImageType` to OSS, you must specify this parameter.
|
|
@@ -38805,6 +39679,8 @@ export declare class CreateImagePipelineRequest extends $dara.Model {
|
|
|
38805
39679
|
*
|
|
38806
39680
|
* @example
|
|
38807
39681
|
* auto
|
|
39682
|
+
*
|
|
39683
|
+
* @deprecated
|
|
38808
39684
|
*/
|
|
38809
39685
|
nvmeSupport?: string;
|
|
38810
39686
|
ownerAccount?: string;
|
|
@@ -41039,11 +41915,11 @@ export declare class CreateNetworkInterfaceRequest extends $dara.Model {
|
|
|
41039
41915
|
queueNumber?: number;
|
|
41040
41916
|
/**
|
|
41041
41917
|
* @remarks
|
|
41042
|
-
* The number of queue
|
|
41918
|
+
* The number of queue pairs (QPs) supported by the elastic RDMA interface (ERI).
|
|
41043
41919
|
*
|
|
41044
|
-
* If you want to attach multiple ERIs to an instance, we recommend that you specify QueuePairNumber for each ERI based on the value of `QueuePairNumber` supported by the instance type and the number of ERIs that you want to use. Make sure that the total number of
|
|
41920
|
+
* If you want to attach multiple ERIs to an instance, we recommend that you specify QueuePairNumber for each ERI based on the value of `QueuePairNumber` supported by the instance type and the number of ERIs that you want to use. Make sure that the total number of QPs of all ERIs does not exceed the maximum number of QPs supported by the instance type. For information about the maximum number of QPs supported by an instance type, see [DescribeInstanceTypes](https://help.aliyun.com/document_detail/2679699.html).
|
|
41045
41921
|
*
|
|
41046
|
-
* > If you do not specify QueuePairNumber for an ERI, the maximum number of
|
|
41922
|
+
* > If you do not specify QueuePairNumber for an ERI, the maximum number of QPs supported by the instance type may be used as the number of QPs supported by the ERI. In this case, you cannot attach an additional ERI to the instance. However, you can attach other types of ENIs to the instance.
|
|
41047
41923
|
*
|
|
41048
41924
|
* @example
|
|
41049
41925
|
* 22
|
|
@@ -43297,7 +44173,7 @@ export declare class DeleteDedicatedHostClusterResponse extends $dara.Model {
|
|
|
43297
44173
|
export declare class DeleteDemandRequest extends $dara.Model {
|
|
43298
44174
|
/**
|
|
43299
44175
|
* @remarks
|
|
43300
|
-
* The client token that is used to ensure the
|
|
44176
|
+
* The client token that is used to ensure the idempotency of the request. You can use the client to generate a value, but you must make sure that the value is unique among all requests. The `token` 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).
|
|
43301
44177
|
*
|
|
43302
44178
|
* @example
|
|
43303
44179
|
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
@@ -43305,7 +44181,7 @@ export declare class DeleteDemandRequest extends $dara.Model {
|
|
|
43305
44181
|
clientToken?: string;
|
|
43306
44182
|
/**
|
|
43307
44183
|
* @remarks
|
|
43308
|
-
* The ID of the
|
|
44184
|
+
* The ID of the demand.
|
|
43309
44185
|
*
|
|
43310
44186
|
* This parameter is required.
|
|
43311
44187
|
*
|
|
@@ -43317,7 +44193,7 @@ export declare class DeleteDemandRequest extends $dara.Model {
|
|
|
43317
44193
|
ownerId?: number;
|
|
43318
44194
|
/**
|
|
43319
44195
|
* @remarks
|
|
43320
|
-
* The reason
|
|
44196
|
+
* The reason why you want to delete the demand.
|
|
43321
44197
|
*
|
|
43322
44198
|
* @example
|
|
43323
44199
|
* test-reason
|
|
@@ -43325,7 +44201,7 @@ export declare class DeleteDemandRequest extends $dara.Model {
|
|
|
43325
44201
|
reason?: string;
|
|
43326
44202
|
/**
|
|
43327
44203
|
* @remarks
|
|
43328
|
-
* The region ID of the
|
|
44204
|
+
* The region ID of the demand. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list.
|
|
43329
44205
|
*
|
|
43330
44206
|
* This parameter is required.
|
|
43331
44207
|
*
|
|
@@ -43349,7 +44225,7 @@ export declare class DeleteDemandRequest extends $dara.Model {
|
|
|
43349
44225
|
export declare class DeleteDemandResponseBody extends $dara.Model {
|
|
43350
44226
|
/**
|
|
43351
44227
|
* @remarks
|
|
43352
|
-
* The ID
|
|
44228
|
+
* The request ID.
|
|
43353
44229
|
*
|
|
43354
44230
|
* @example
|
|
43355
44231
|
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
@@ -47004,7 +47880,11 @@ export declare class DescribeCapacityReservationInstancesRequest extends $dara.M
|
|
|
47004
47880
|
privatePoolOptions?: DescribeCapacityReservationInstancesRequestPrivatePoolOptions;
|
|
47005
47881
|
/**
|
|
47006
47882
|
* @remarks
|
|
47007
|
-
* The
|
|
47883
|
+
* The maximum number of entries per page.
|
|
47884
|
+
*
|
|
47885
|
+
* Valid values: 1 to 100.
|
|
47886
|
+
*
|
|
47887
|
+
* Default value: 10.
|
|
47008
47888
|
*
|
|
47009
47889
|
* @example
|
|
47010
47890
|
* 10
|
|
@@ -47012,7 +47892,7 @@ export declare class DescribeCapacityReservationInstancesRequest extends $dara.M
|
|
|
47012
47892
|
maxResults?: number;
|
|
47013
47893
|
/**
|
|
47014
47894
|
* @remarks
|
|
47015
|
-
* The
|
|
47895
|
+
* The pagination token that is used in the next request to retrieve a new page of results. You do not need to specify this parameter for the first request. You must specify the token that is obtained from the previous query as the value of NextToken.
|
|
47016
47896
|
*
|
|
47017
47897
|
* @example
|
|
47018
47898
|
* caeba0bbb2be03f84eb48b699f0a4883
|
|
@@ -47022,11 +47902,7 @@ export declare class DescribeCapacityReservationInstancesRequest extends $dara.M
|
|
|
47022
47902
|
ownerId?: number;
|
|
47023
47903
|
/**
|
|
47024
47904
|
* @remarks
|
|
47025
|
-
* The
|
|
47026
|
-
*
|
|
47027
|
-
* Maximum value: 100.
|
|
47028
|
-
*
|
|
47029
|
-
* Default value: 10.
|
|
47905
|
+
* The region ID of the capacity reservation. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list.
|
|
47030
47906
|
*
|
|
47031
47907
|
* This parameter is required.
|
|
47032
47908
|
*
|
|
@@ -47050,12 +47926,12 @@ export declare class DescribeCapacityReservationInstancesRequest extends $dara.M
|
|
|
47050
47926
|
export declare class DescribeCapacityReservationInstancesResponseBody extends $dara.Model {
|
|
47051
47927
|
/**
|
|
47052
47928
|
* @remarks
|
|
47053
|
-
*
|
|
47929
|
+
* Details about the instances that match the capacity reservation.
|
|
47054
47930
|
*/
|
|
47055
47931
|
capacityReservationItem?: DescribeCapacityReservationInstancesResponseBodyCapacityReservationItem;
|
|
47056
47932
|
/**
|
|
47057
47933
|
* @remarks
|
|
47058
|
-
*
|
|
47934
|
+
* The maximum number of entries per page.
|
|
47059
47935
|
*
|
|
47060
47936
|
* @example
|
|
47061
47937
|
* 10
|
|
@@ -47063,7 +47939,7 @@ export declare class DescribeCapacityReservationInstancesResponseBody extends $d
|
|
|
47063
47939
|
maxResults?: number;
|
|
47064
47940
|
/**
|
|
47065
47941
|
* @remarks
|
|
47066
|
-
*
|
|
47942
|
+
* A pagination token. It can be used in the next request to retrieve a new page of results.
|
|
47067
47943
|
*
|
|
47068
47944
|
* @example
|
|
47069
47945
|
* caeba0bbb2be03f84eb48b699f0a4883
|
|
@@ -47071,7 +47947,7 @@ export declare class DescribeCapacityReservationInstancesResponseBody extends $d
|
|
|
47071
47947
|
nextToken?: string;
|
|
47072
47948
|
/**
|
|
47073
47949
|
* @remarks
|
|
47074
|
-
* The
|
|
47950
|
+
* The request ID.
|
|
47075
47951
|
*
|
|
47076
47952
|
* @example
|
|
47077
47953
|
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
@@ -47079,7 +47955,7 @@ export declare class DescribeCapacityReservationInstancesResponseBody extends $d
|
|
|
47079
47955
|
requestId?: string;
|
|
47080
47956
|
/**
|
|
47081
47957
|
* @remarks
|
|
47082
|
-
* The
|
|
47958
|
+
* The total number of entries returned.
|
|
47083
47959
|
*
|
|
47084
47960
|
* @example
|
|
47085
47961
|
* 10
|
|
@@ -49662,7 +50538,7 @@ export declare class DescribeDiskEncryptionByDefaultStatusResponse extends $dara
|
|
|
49662
50538
|
export declare class DescribeDiskMonitorDataRequest extends $dara.Model {
|
|
49663
50539
|
/**
|
|
49664
50540
|
* @remarks
|
|
49665
|
-
* The disk
|
|
50541
|
+
* The ID of the cloud disk that you want to query.
|
|
49666
50542
|
*
|
|
49667
50543
|
* This parameter is required.
|
|
49668
50544
|
*
|
|
@@ -49692,6 +50568,8 @@ export declare class DescribeDiskMonitorDataRequest extends $dara.Model {
|
|
|
49692
50568
|
*
|
|
49693
50569
|
* Default value: 60.
|
|
49694
50570
|
*
|
|
50571
|
+
* > Up to 400 monitoring data entries can be returned at a time. Make sure that the TotalCount value does not exceed 400. The value is calculated by using the following formula: TotalCount = (EndTime - StartTime)/Period.
|
|
50572
|
+
*
|
|
49695
50573
|
* @example
|
|
49696
50574
|
* 60
|
|
49697
50575
|
*/
|
|
@@ -49702,6 +50580,8 @@ export declare class DescribeDiskMonitorDataRequest extends $dara.Model {
|
|
|
49702
50580
|
* @remarks
|
|
49703
50581
|
* The beginning of the time range to query. Specify the time in the [ISO 8601](https://help.aliyun.com/document_detail/25696.html) standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC. If the value of seconds (ss) is not 00, the time is rounded up to the next minute.
|
|
49704
50582
|
*
|
|
50583
|
+
* > You can query the monitoring data in the last 30 days. If the value of `StartTime` is more than 30 days earlier than the current time, an error is returned.
|
|
50584
|
+
*
|
|
49705
50585
|
* This parameter is required.
|
|
49706
50586
|
*
|
|
49707
50587
|
* @example
|
|
@@ -49735,7 +50615,7 @@ export declare class DescribeDiskMonitorDataResponseBody extends $dara.Model {
|
|
|
49735
50615
|
requestId?: string;
|
|
49736
50616
|
/**
|
|
49737
50617
|
* @remarks
|
|
49738
|
-
* The total number of
|
|
50618
|
+
* The total number of monitoring data entries returned.
|
|
49739
50619
|
*
|
|
49740
50620
|
* @example
|
|
49741
50621
|
* 3
|
|
@@ -50012,11 +50892,7 @@ export declare class DescribeDisksRequest extends $dara.Model {
|
|
|
50012
50892
|
ownerId?: number;
|
|
50013
50893
|
/**
|
|
50014
50894
|
* @remarks
|
|
50015
|
-
*
|
|
50016
|
-
*
|
|
50017
|
-
* Pages start from page 1.
|
|
50018
|
-
*
|
|
50019
|
-
* Default value: 1.
|
|
50895
|
+
* > This parameter will be removed in the future. We recommend that you use `NextToken` and `MaxResults` for a paged query.
|
|
50020
50896
|
*
|
|
50021
50897
|
* @example
|
|
50022
50898
|
* 1
|
|
@@ -50024,11 +50900,7 @@ export declare class DescribeDisksRequest extends $dara.Model {
|
|
|
50024
50900
|
pageNumber?: number;
|
|
50025
50901
|
/**
|
|
50026
50902
|
* @remarks
|
|
50027
|
-
*
|
|
50028
|
-
*
|
|
50029
|
-
* Maximum value: 100.
|
|
50030
|
-
*
|
|
50031
|
-
* Default value: 10.
|
|
50903
|
+
* > This parameter will be removed in the future. We recommend that you use `NextToken` and `MaxResults` for a paged query.
|
|
50032
50904
|
*
|
|
50033
50905
|
* @example
|
|
50034
50906
|
* 10
|
|
@@ -50126,7 +50998,7 @@ export declare class DescribeDisksRequest extends $dara.Model {
|
|
|
50126
50998
|
export declare class DescribeDisksResponseBody extends $dara.Model {
|
|
50127
50999
|
/**
|
|
50128
51000
|
* @remarks
|
|
50129
|
-
*
|
|
51001
|
+
* Details about the disks.
|
|
50130
51002
|
*/
|
|
50131
51003
|
disks?: DescribeDisksResponseBodyDisks;
|
|
50132
51004
|
/**
|
|
@@ -50139,7 +51011,7 @@ export declare class DescribeDisksResponseBody extends $dara.Model {
|
|
|
50139
51011
|
nextToken?: string;
|
|
50140
51012
|
/**
|
|
50141
51013
|
* @remarks
|
|
50142
|
-
*
|
|
51014
|
+
* > This parameter will be removed in the future. We recommend that you use `NextToken` and `MaxResults` for a paged query.
|
|
50143
51015
|
*
|
|
50144
51016
|
* @example
|
|
50145
51017
|
* 1
|
|
@@ -50147,7 +51019,7 @@ export declare class DescribeDisksResponseBody extends $dara.Model {
|
|
|
50147
51019
|
pageNumber?: number;
|
|
50148
51020
|
/**
|
|
50149
51021
|
* @remarks
|
|
50150
|
-
*
|
|
51022
|
+
* > This parameter will be removed in the future. We recommend that you use `NextToken` and `MaxResults` for a paged query.
|
|
50151
51023
|
*
|
|
50152
51024
|
* @example
|
|
50153
51025
|
* 1
|
|
@@ -50511,6 +51383,75 @@ export declare class DescribeEipMonitorDataResponse extends $dara.Model {
|
|
|
50511
51383
|
[key: string]: any;
|
|
50512
51384
|
});
|
|
50513
51385
|
}
|
|
51386
|
+
export declare class DescribeElasticityAssuranceAutoRenewAttributeRequest extends $dara.Model {
|
|
51387
|
+
privatePoolOptions?: DescribeElasticityAssuranceAutoRenewAttributeRequestPrivatePoolOptions;
|
|
51388
|
+
ownerAccount?: string;
|
|
51389
|
+
ownerId?: number;
|
|
51390
|
+
/**
|
|
51391
|
+
* @remarks
|
|
51392
|
+
* The region ID of the elasticity assurance. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list.
|
|
51393
|
+
*
|
|
51394
|
+
* This parameter is required.
|
|
51395
|
+
*
|
|
51396
|
+
* @example
|
|
51397
|
+
* cn-hangzhou
|
|
51398
|
+
*/
|
|
51399
|
+
regionId?: string;
|
|
51400
|
+
resourceOwnerAccount?: string;
|
|
51401
|
+
resourceOwnerId?: number;
|
|
51402
|
+
static names(): {
|
|
51403
|
+
[key: string]: string;
|
|
51404
|
+
};
|
|
51405
|
+
static types(): {
|
|
51406
|
+
[key: string]: any;
|
|
51407
|
+
};
|
|
51408
|
+
validate(): void;
|
|
51409
|
+
constructor(map?: {
|
|
51410
|
+
[key: string]: any;
|
|
51411
|
+
});
|
|
51412
|
+
}
|
|
51413
|
+
export declare class DescribeElasticityAssuranceAutoRenewAttributeResponseBody extends $dara.Model {
|
|
51414
|
+
/**
|
|
51415
|
+
* @remarks
|
|
51416
|
+
* The auto-renewal attribute of the elasticity assurances.
|
|
51417
|
+
*/
|
|
51418
|
+
elasticityAssuranceRenewAttributes?: DescribeElasticityAssuranceAutoRenewAttributeResponseBodyElasticityAssuranceRenewAttributes;
|
|
51419
|
+
/**
|
|
51420
|
+
* @remarks
|
|
51421
|
+
* The request ID.
|
|
51422
|
+
*
|
|
51423
|
+
* @example
|
|
51424
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
51425
|
+
*/
|
|
51426
|
+
requestId?: string;
|
|
51427
|
+
static names(): {
|
|
51428
|
+
[key: string]: string;
|
|
51429
|
+
};
|
|
51430
|
+
static types(): {
|
|
51431
|
+
[key: string]: any;
|
|
51432
|
+
};
|
|
51433
|
+
validate(): void;
|
|
51434
|
+
constructor(map?: {
|
|
51435
|
+
[key: string]: any;
|
|
51436
|
+
});
|
|
51437
|
+
}
|
|
51438
|
+
export declare class DescribeElasticityAssuranceAutoRenewAttributeResponse extends $dara.Model {
|
|
51439
|
+
headers?: {
|
|
51440
|
+
[key: string]: string;
|
|
51441
|
+
};
|
|
51442
|
+
statusCode?: number;
|
|
51443
|
+
body?: DescribeElasticityAssuranceAutoRenewAttributeResponseBody;
|
|
51444
|
+
static names(): {
|
|
51445
|
+
[key: string]: string;
|
|
51446
|
+
};
|
|
51447
|
+
static types(): {
|
|
51448
|
+
[key: string]: any;
|
|
51449
|
+
};
|
|
51450
|
+
validate(): void;
|
|
51451
|
+
constructor(map?: {
|
|
51452
|
+
[key: string]: any;
|
|
51453
|
+
});
|
|
51454
|
+
}
|
|
50514
51455
|
export declare class DescribeElasticityAssuranceInstancesRequest extends $dara.Model {
|
|
50515
51456
|
privatePoolOptions?: DescribeElasticityAssuranceInstancesRequestPrivatePoolOptions;
|
|
50516
51457
|
/**
|
|
@@ -50666,6 +51607,19 @@ export declare class DescribeElasticityAssurancesRequest extends $dara.Model {
|
|
|
50666
51607
|
nextToken?: string;
|
|
50667
51608
|
ownerAccount?: string;
|
|
50668
51609
|
ownerId?: number;
|
|
51610
|
+
/**
|
|
51611
|
+
* @remarks
|
|
51612
|
+
* The type of the elasticity assurance. Valid values:
|
|
51613
|
+
*
|
|
51614
|
+
* * ElasticityAssurance: the general-purpose elasticity assurance. RecurrenceRules is not specified for a general-purpose elasticity assurance.
|
|
51615
|
+
* * TimeDivisionElasticityAssurance: the time-segmented elasticity assurance. RecurrenceRules is specified for a time-segmented assurance.
|
|
51616
|
+
*
|
|
51617
|
+
* > The time-segmented assurance of the elasticity assurance is available only in specific regions and to specific users. To use this feature, [submit a ticket](https://smartservice.console.aliyun.com/service/create-ticket-intl).
|
|
51618
|
+
*
|
|
51619
|
+
* @example
|
|
51620
|
+
* ElasticityAssurance
|
|
51621
|
+
*/
|
|
51622
|
+
packageType?: string;
|
|
50669
51623
|
/**
|
|
50670
51624
|
* @remarks
|
|
50671
51625
|
* > This parameter is deprecated.
|
|
@@ -50707,7 +51661,7 @@ export declare class DescribeElasticityAssurancesRequest extends $dara.Model {
|
|
|
50707
51661
|
* * Active: The elasticity assurance is in effect.
|
|
50708
51662
|
* * Released: The elasticity assurance is released.
|
|
50709
51663
|
*
|
|
50710
|
-
*
|
|
51664
|
+
* If you do not specify this parameter, elasticity assurances in states other than Pending and Released are queried.
|
|
50711
51665
|
*
|
|
50712
51666
|
* @example
|
|
50713
51667
|
* Active
|
|
@@ -51483,7 +52437,7 @@ export declare class DescribeImagePipelineExecutionsRequest extends $dara.Model
|
|
|
51483
52437
|
imagePipelineId?: string;
|
|
51484
52438
|
/**
|
|
51485
52439
|
* @remarks
|
|
51486
|
-
* The number of entries per page. Valid values: 1 to 500.
|
|
52440
|
+
* The maximum number of entries per page. Valid values: 1 to 500.
|
|
51487
52441
|
*
|
|
51488
52442
|
* Default value: 50.
|
|
51489
52443
|
*
|
|
@@ -51696,7 +52650,7 @@ export declare class DescribeImagePipelinesRequest extends $dara.Model {
|
|
|
51696
52650
|
export declare class DescribeImagePipelinesResponseBody extends $dara.Model {
|
|
51697
52651
|
/**
|
|
51698
52652
|
* @remarks
|
|
51699
|
-
* Details
|
|
52653
|
+
* Details about the image templates.
|
|
51700
52654
|
*/
|
|
51701
52655
|
imagePipeline?: DescribeImagePipelinesResponseBodyImagePipeline;
|
|
51702
52656
|
/**
|
|
@@ -51778,7 +52732,7 @@ export declare class DescribeImageSharePermissionRequest extends $dara.Model {
|
|
|
51778
52732
|
*
|
|
51779
52733
|
* Pages start from page 1.
|
|
51780
52734
|
*
|
|
51781
|
-
* Default value: 1
|
|
52735
|
+
* Default value: 1.
|
|
51782
52736
|
*
|
|
51783
52737
|
* @example
|
|
51784
52738
|
* 1
|
|
@@ -52219,7 +53173,7 @@ export declare class DescribeImagesRequest extends $dara.Model {
|
|
|
52219
53173
|
* @remarks
|
|
52220
53174
|
* The number of entries per page.
|
|
52221
53175
|
*
|
|
52222
|
-
* Valid values: 1 to 100
|
|
53176
|
+
* Valid values: 1 to 100
|
|
52223
53177
|
*
|
|
52224
53178
|
* Default value: 10.
|
|
52225
53179
|
*
|
|
@@ -52400,7 +53354,7 @@ export declare class DescribeInstanceAttachmentAttributesRequest extends $dara.M
|
|
|
52400
53354
|
* @remarks
|
|
52401
53355
|
* The page number.
|
|
52402
53356
|
*
|
|
52403
|
-
*
|
|
53357
|
+
* Page starts from page 1.
|
|
52404
53358
|
*
|
|
52405
53359
|
* Default value: 1.
|
|
52406
53360
|
*
|
|
@@ -53566,7 +54520,7 @@ export declare class DescribeInstanceMonitorDataResponse extends $dara.Model {
|
|
|
53566
54520
|
export declare class DescribeInstanceRamRoleRequest extends $dara.Model {
|
|
53567
54521
|
/**
|
|
53568
54522
|
* @remarks
|
|
53569
|
-
* The IDs of ECS instances. You can specify up to
|
|
54523
|
+
* The IDs of ECS instances. You can specify up to 50 instance IDs in a single request.
|
|
53570
54524
|
*
|
|
53571
54525
|
* > You must specify at least one parameter from `InstanceIds` and `RamRoleName`.
|
|
53572
54526
|
*
|
|
@@ -53717,9 +54671,9 @@ export declare class DescribeInstanceStatusRequest extends $dara.Model {
|
|
|
53717
54671
|
* @remarks
|
|
53718
54672
|
* The page number.
|
|
53719
54673
|
*
|
|
53720
|
-
*
|
|
54674
|
+
* Page starts from page 1.
|
|
53721
54675
|
*
|
|
53722
|
-
* Default value: 1
|
|
54676
|
+
* Default value: 1.
|
|
53723
54677
|
*
|
|
53724
54678
|
* @example
|
|
53725
54679
|
* 1
|
|
@@ -53727,7 +54681,7 @@ export declare class DescribeInstanceStatusRequest extends $dara.Model {
|
|
|
53727
54681
|
pageNumber?: number;
|
|
53728
54682
|
/**
|
|
53729
54683
|
* @remarks
|
|
53730
|
-
* The number of entries
|
|
54684
|
+
* The number of entries to return on each page. Valid values: 1 to 50
|
|
53731
54685
|
*
|
|
53732
54686
|
* Default value: 10
|
|
53733
54687
|
*
|
|
@@ -57421,7 +58375,11 @@ export declare class DescribePhysicalConnectionsResponse extends $dara.Model {
|
|
|
57421
58375
|
export declare class DescribePrefixListAssociationsRequest extends $dara.Model {
|
|
57422
58376
|
/**
|
|
57423
58377
|
* @remarks
|
|
57424
|
-
* The
|
|
58378
|
+
* The number of entries to return on each page.
|
|
58379
|
+
*
|
|
58380
|
+
* Maximum value: 100.
|
|
58381
|
+
*
|
|
58382
|
+
* Default value: 10.
|
|
57425
58383
|
*
|
|
57426
58384
|
* @example
|
|
57427
58385
|
* 10
|
|
@@ -57429,11 +58387,7 @@ export declare class DescribePrefixListAssociationsRequest extends $dara.Model {
|
|
|
57429
58387
|
maxResults?: number;
|
|
57430
58388
|
/**
|
|
57431
58389
|
* @remarks
|
|
57432
|
-
* The
|
|
57433
|
-
*
|
|
57434
|
-
* Maximum value: 100.
|
|
57435
|
-
*
|
|
57436
|
-
* Default value: 10.
|
|
58390
|
+
* The query token. Set the value to the `NextToken` value returned in the previous call to the DescribePrefixListAssociations operation. Leave this parameter empty the first time you call this operation.
|
|
57437
58391
|
*
|
|
57438
58392
|
* @example
|
|
57439
58393
|
* AAAAAdDWBF2****
|
|
@@ -57443,7 +58397,7 @@ export declare class DescribePrefixListAssociationsRequest extends $dara.Model {
|
|
|
57443
58397
|
ownerId?: number;
|
|
57444
58398
|
/**
|
|
57445
58399
|
* @remarks
|
|
57446
|
-
* The
|
|
58400
|
+
* The ID of the prefix list.
|
|
57447
58401
|
*
|
|
57448
58402
|
* This parameter is required.
|
|
57449
58403
|
*
|
|
@@ -57453,7 +58407,7 @@ export declare class DescribePrefixListAssociationsRequest extends $dara.Model {
|
|
|
57453
58407
|
prefixListId?: string;
|
|
57454
58408
|
/**
|
|
57455
58409
|
* @remarks
|
|
57456
|
-
* The ID of the prefix list.
|
|
58410
|
+
* The region ID of the prefix list. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list.
|
|
57457
58411
|
*
|
|
57458
58412
|
* This parameter is required.
|
|
57459
58413
|
*
|
|
@@ -57477,7 +58431,7 @@ export declare class DescribePrefixListAssociationsRequest extends $dara.Model {
|
|
|
57477
58431
|
export declare class DescribePrefixListAssociationsResponseBody extends $dara.Model {
|
|
57478
58432
|
/**
|
|
57479
58433
|
* @remarks
|
|
57480
|
-
* The
|
|
58434
|
+
* The query token that is returned in this call. If the return value is empty, no more data is returned.
|
|
57481
58435
|
*
|
|
57482
58436
|
* @example
|
|
57483
58437
|
* AAAAAdDWBF2****
|
|
@@ -57485,12 +58439,12 @@ export declare class DescribePrefixListAssociationsResponseBody extends $dara.Mo
|
|
|
57485
58439
|
nextToken?: string;
|
|
57486
58440
|
/**
|
|
57487
58441
|
* @remarks
|
|
57488
|
-
*
|
|
58442
|
+
* Details about the resources that are associated with the prefix list.
|
|
57489
58443
|
*/
|
|
57490
58444
|
prefixListAssociations?: DescribePrefixListAssociationsResponseBodyPrefixListAssociations;
|
|
57491
58445
|
/**
|
|
57492
58446
|
* @remarks
|
|
57493
|
-
*
|
|
58447
|
+
* The ID of the request.
|
|
57494
58448
|
*
|
|
57495
58449
|
* @example
|
|
57496
58450
|
* 38793DB8-A4B2-4AEC-BFD3-111234E9188D
|
|
@@ -57979,6 +58933,13 @@ export declare class DescribePriceRequest extends $dara.Model {
|
|
|
57979
58933
|
* Year
|
|
57980
58934
|
*/
|
|
57981
58935
|
priceUnit?: string;
|
|
58936
|
+
/**
|
|
58937
|
+
* @remarks
|
|
58938
|
+
* Recurrence rules for the time-segmented assurance of the elasticity assurance.
|
|
58939
|
+
*
|
|
58940
|
+
* > The time-segmented assurance of the elasticity assurance is available only in specific regions and to specific users. To use this feature, [submit a ticket](https://smartservice.console.aliyun.com/service/create-ticket-intl).
|
|
58941
|
+
*/
|
|
58942
|
+
recurrenceRules?: DescribePriceRequestRecurrenceRules[];
|
|
57982
58943
|
/**
|
|
57983
58944
|
* @remarks
|
|
57984
58945
|
* The region ID. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent list of regions.
|
|
@@ -57993,14 +58954,15 @@ export declare class DescribePriceRequest extends $dara.Model {
|
|
|
57993
58954
|
resourceOwnerId?: number;
|
|
57994
58955
|
/**
|
|
57995
58956
|
* @remarks
|
|
57996
|
-
* The resource
|
|
58957
|
+
* The type of the resource. Valid values:
|
|
57997
58958
|
*
|
|
57998
|
-
* * instance: queries the most recent prices of ECS instances.
|
|
57999
|
-
* * disk: queries the most recent prices of cloud disks.
|
|
58000
|
-
* *
|
|
58959
|
+
* * instance: queries the most recent prices of ECS instances. If you set this parameter to `instance`, specify `InstanceType`.
|
|
58960
|
+
* * disk: queries the most recent prices of cloud disks. If you set this parameter to `disk`, specify `DataDisk.1.Category` and `DataDisk.1.Size`.
|
|
58961
|
+
* * diskperformance: Queries the most recent prices of the provioned performance of the Enterprise SSD (ESSD) AutoPL disk. You must also specify `DataDisk.1.Category` and `DataDisk.1.ProvisionedIops`.
|
|
58962
|
+
* * bandwidth: queries the most recent prices for network usage.
|
|
58001
58963
|
* * ddh: queries the most recent prices of dedicated hosts.
|
|
58002
|
-
* * ElasticityAssurance: queries the most recent prices of elasticity assurances.
|
|
58003
|
-
* * CapacityReservation: queries the most recent prices of capacity reservations.
|
|
58964
|
+
* * ElasticityAssurance: queries the most recent prices of elasticity assurances. If you set this parameter to `ElasticityAssurance`, specify `InstanceType`.
|
|
58965
|
+
* * CapacityReservation: queries the most recent prices of capacity reservations. If you set this parameter to `CapacityReservation`, specify `InstanceType`.
|
|
58004
58966
|
*
|
|
58005
58967
|
* Default value: instance.
|
|
58006
58968
|
*
|
|
@@ -58052,6 +59014,14 @@ export declare class DescribePriceRequest extends $dara.Model {
|
|
|
58052
59014
|
* NoSpot
|
|
58053
59015
|
*/
|
|
58054
59016
|
spotStrategy?: string;
|
|
59017
|
+
/**
|
|
59018
|
+
* @remarks
|
|
59019
|
+
* The time when the time-segmented assurance of the elasticity assurance takes effect. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC. For more information, see [ISO 8601](https://help.aliyun.com/document_detail/25696.html).
|
|
59020
|
+
*
|
|
59021
|
+
* @example
|
|
59022
|
+
* 2020-10-30T06:32:00Z
|
|
59023
|
+
*/
|
|
59024
|
+
startTime?: string;
|
|
58055
59025
|
/**
|
|
58056
59026
|
* @remarks
|
|
58057
59027
|
* The zone ID.
|
|
@@ -58372,7 +59342,17 @@ export declare class DescribeRecommendInstanceTypeResponse extends $dara.Model {
|
|
|
58372
59342
|
export declare class DescribeRegionsRequest extends $dara.Model {
|
|
58373
59343
|
/**
|
|
58374
59344
|
* @remarks
|
|
58375
|
-
* The
|
|
59345
|
+
* The natural language that is used to filter responses. For more information, see [RFC 7231](https://tools.ietf.org/html/rfc7231). Valid values:
|
|
59346
|
+
*
|
|
59347
|
+
* * zh-CN: Simplified Chinese
|
|
59348
|
+
* * zh_TW: Traditional Chinese
|
|
59349
|
+
* * en-US: English
|
|
59350
|
+
* * ja: Japanese
|
|
59351
|
+
* * fr: French
|
|
59352
|
+
* * de: German
|
|
59353
|
+
* * ko: Korean
|
|
59354
|
+
*
|
|
59355
|
+
* Default value: zh-CN.
|
|
58376
59356
|
*
|
|
58377
59357
|
* @example
|
|
58378
59358
|
* zh-CN
|
|
@@ -58380,7 +59360,15 @@ export declare class DescribeRegionsRequest extends $dara.Model {
|
|
|
58380
59360
|
acceptLanguage?: string;
|
|
58381
59361
|
/**
|
|
58382
59362
|
* @remarks
|
|
58383
|
-
* The
|
|
59363
|
+
* The billing method of the instance. For more information, see [Billing overview](https://help.aliyun.com/document_detail/25398.html).
|
|
59364
|
+
* Valid values:
|
|
59365
|
+
*
|
|
59366
|
+
* - PrePaid: subscription. If you set this parameter to PrePaid, make sure that you have sufficient balance or credits in your account. Otherwise, the InvalidPayMethod error code is returned.
|
|
59367
|
+
* - PostPaid: pay-as-you-go.
|
|
59368
|
+
* SpotWithPriceLimit: preemptible instance for which a maximum hourly price is specified.
|
|
59369
|
+
* - SpotAsPriceGo: preemptible instance for which the market price at the time of purchase is automatically used as the bid price. The market price can be up to the pay-as-you-go price.
|
|
59370
|
+
*
|
|
59371
|
+
* Default value: PostPaid.
|
|
58384
59372
|
*
|
|
58385
59373
|
* @example
|
|
58386
59374
|
* PrePaid
|
|
@@ -58392,10 +59380,14 @@ export declare class DescribeRegionsRequest extends $dara.Model {
|
|
|
58392
59380
|
resourceOwnerId?: number;
|
|
58393
59381
|
/**
|
|
58394
59382
|
* @remarks
|
|
58395
|
-
*
|
|
59383
|
+
* The type of resource. Valid values:
|
|
58396
59384
|
*
|
|
58397
|
-
*
|
|
58398
|
-
*
|
|
59385
|
+
* - instance: Elastic Compute Service (ECS) instance
|
|
59386
|
+
* - disk: disk
|
|
59387
|
+
* - reservedinstance: reserved instance
|
|
59388
|
+
* - scu: storage capacity unit (SCU)
|
|
59389
|
+
*
|
|
59390
|
+
* Default value: instance.
|
|
58399
59391
|
*
|
|
58400
59392
|
* @example
|
|
58401
59393
|
* instance
|
|
@@ -58415,12 +59407,12 @@ export declare class DescribeRegionsRequest extends $dara.Model {
|
|
|
58415
59407
|
export declare class DescribeRegionsResponseBody extends $dara.Model {
|
|
58416
59408
|
/**
|
|
58417
59409
|
* @remarks
|
|
58418
|
-
* The
|
|
59410
|
+
* The information of the regions.
|
|
58419
59411
|
*/
|
|
58420
59412
|
regions?: DescribeRegionsResponseBodyRegions;
|
|
58421
59413
|
/**
|
|
58422
59414
|
* @remarks
|
|
58423
|
-
*
|
|
59415
|
+
* The request ID.
|
|
58424
59416
|
*
|
|
58425
59417
|
* @example
|
|
58426
59418
|
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
@@ -60159,7 +61151,7 @@ export declare class DescribeSnapshotGroupsRequest extends $dara.Model {
|
|
|
60159
61151
|
instanceId?: string;
|
|
60160
61152
|
/**
|
|
60161
61153
|
* @remarks
|
|
60162
|
-
* The number of entries per page.
|
|
61154
|
+
* The maximum number of entries per page.
|
|
60163
61155
|
*
|
|
60164
61156
|
* Valid values: 1 to 100.
|
|
60165
61157
|
*
|
|
@@ -60318,7 +61310,7 @@ export declare class DescribeSnapshotLinksRequest extends $dara.Model {
|
|
|
60318
61310
|
* @remarks
|
|
60319
61311
|
* The page number. Pages start from page 1.
|
|
60320
61312
|
*
|
|
60321
|
-
* Default value: 1
|
|
61313
|
+
* Default value: 1
|
|
60322
61314
|
*
|
|
60323
61315
|
* @example
|
|
60324
61316
|
* 1
|
|
@@ -60328,7 +61320,7 @@ export declare class DescribeSnapshotLinksRequest extends $dara.Model {
|
|
|
60328
61320
|
* @remarks
|
|
60329
61321
|
* The number of entries per page. Valid values: 1 to 100.
|
|
60330
61322
|
*
|
|
60331
|
-
* Default value: 10
|
|
61323
|
+
* Default value: 10
|
|
60332
61324
|
*
|
|
60333
61325
|
* @example
|
|
60334
61326
|
* 50
|
|
@@ -62283,6 +63275,7 @@ export declare class DescribeTasksRequest extends $dara.Model {
|
|
|
62283
63275
|
* * ExportImage
|
|
62284
63276
|
* * RedeployInstance
|
|
62285
63277
|
* * ModifyDiskSpec
|
|
63278
|
+
* * ArchiveSnapshot
|
|
62286
63279
|
*
|
|
62287
63280
|
* @example
|
|
62288
63281
|
* ImportImage
|
|
@@ -62626,6 +63619,8 @@ export declare class DescribeUserDataResponseBody extends $dara.Model {
|
|
|
62626
63619
|
* @remarks
|
|
62627
63620
|
* The user data of the instance.
|
|
62628
63621
|
*
|
|
63622
|
+
* > If no user data is configured for the instance, an empty string is returned.
|
|
63623
|
+
*
|
|
62629
63624
|
* @example
|
|
62630
63625
|
* ZWNobyBoZWxsbyBlY321ABC
|
|
62631
63626
|
*/
|
|
@@ -64354,6 +65349,13 @@ export declare class ImportImageRequest extends $dara.Model {
|
|
|
64354
65349
|
* BIOS
|
|
64355
65350
|
*/
|
|
64356
65351
|
bootMode?: string;
|
|
65352
|
+
/**
|
|
65353
|
+
* @remarks
|
|
65354
|
+
* The client token that is used to ensure the idempotence of the request. You can use the client to generate the token, but you must make sure that the token is unique among different requests. **The token 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).
|
|
65355
|
+
*
|
|
65356
|
+
* @example
|
|
65357
|
+
* 123e4567-e89b-12d3-a456-426655440000
|
|
65358
|
+
*/
|
|
64357
65359
|
clientToken?: string;
|
|
64358
65360
|
/**
|
|
64359
65361
|
* @remarks
|
|
@@ -64393,7 +65395,7 @@ export declare class ImportImageRequest extends $dara.Model {
|
|
|
64393
65395
|
dryRun?: boolean;
|
|
64394
65396
|
/**
|
|
64395
65397
|
* @remarks
|
|
64396
|
-
* The attributes of the
|
|
65398
|
+
* The attributes of the image.
|
|
64397
65399
|
*/
|
|
64398
65400
|
features?: ImportImageRequestFeatures;
|
|
64399
65401
|
/**
|
|
@@ -67664,10 +68666,12 @@ export declare class ModifyDiagnosticMetricSetResponse extends $dara.Model {
|
|
|
67664
68666
|
export declare class ModifyDiskAttributeRequest extends $dara.Model {
|
|
67665
68667
|
/**
|
|
67666
68668
|
* @remarks
|
|
67667
|
-
* Specifies whether to enable
|
|
68669
|
+
* Specifies whether to enable performance burst for the disk if the disk supports performance burst. Valid values:
|
|
67668
68670
|
*
|
|
67669
|
-
* * true
|
|
67670
|
-
* * false
|
|
68671
|
+
* * true
|
|
68672
|
+
* * false
|
|
68673
|
+
*
|
|
68674
|
+
* > An error is reported if you specify this parameter for a disk that does not support performance burst.
|
|
67671
68675
|
*
|
|
67672
68676
|
* @example
|
|
67673
68677
|
* false
|
|
@@ -67675,7 +68679,12 @@ export declare class ModifyDiskAttributeRequest extends $dara.Model {
|
|
|
67675
68679
|
burstingEnabled?: boolean;
|
|
67676
68680
|
/**
|
|
67677
68681
|
* @remarks
|
|
67678
|
-
* Specifies whether to delete the automatic snapshots of the disk when the disk is released.
|
|
68682
|
+
* Specifies whether to delete the automatic snapshots of the disk when the disk is released. Valid values:
|
|
68683
|
+
*
|
|
68684
|
+
* * true
|
|
68685
|
+
* * false
|
|
68686
|
+
*
|
|
68687
|
+
* This parameter is empty by default, which indicates that the current value remains unchanged.
|
|
67679
68688
|
*
|
|
67680
68689
|
* @example
|
|
67681
68690
|
* false
|
|
@@ -67683,13 +68692,17 @@ export declare class ModifyDiskAttributeRequest extends $dara.Model {
|
|
|
67683
68692
|
deleteAutoSnapshot?: boolean;
|
|
67684
68693
|
/**
|
|
67685
68694
|
* @remarks
|
|
67686
|
-
* Specifies whether to release the disk
|
|
68695
|
+
* Specifies whether to release the disk together with the associated instance. This parameter is empty by default, which indicates that the current value remains unchanged.
|
|
67687
68696
|
*
|
|
67688
68697
|
* An error is returned if you set `DeleteWithInstance` to `false` in one of the following cases:
|
|
67689
68698
|
*
|
|
67690
68699
|
* * The disk is a local disk.
|
|
67691
68700
|
* * The disk is a basic disk and is not removable. If the Portable attribute of a disk is set to false, the disk is not removable.
|
|
67692
68701
|
*
|
|
68702
|
+
* **
|
|
68703
|
+
*
|
|
68704
|
+
* **Warning** If you set DeleteWithInstance to false and the instance to which the disk is attached is locked for security reasons, the DeleteWithInstance attribute of the disk is ignored and the disk is released together with the instance. If "LockReason" : "security" is displayed in the response when you query information about an instance, the instance is locked for security reasons.
|
|
68705
|
+
*
|
|
67693
68706
|
* @example
|
|
67694
68707
|
* false
|
|
67695
68708
|
*/
|
|
@@ -67704,9 +68717,9 @@ export declare class ModifyDiskAttributeRequest extends $dara.Model {
|
|
|
67704
68717
|
description?: string;
|
|
67705
68718
|
/**
|
|
67706
68719
|
* @remarks
|
|
67707
|
-
* The ID of the disk.
|
|
68720
|
+
* The ID of the disk whose attributes you want to modify.
|
|
67708
68721
|
*
|
|
67709
|
-
* >
|
|
68722
|
+
* > You can specify `DiskId` or `DiskIds.N`, but not both.
|
|
67710
68723
|
*
|
|
67711
68724
|
* @example
|
|
67712
68725
|
* d-bp1famypsnar20bv****
|
|
@@ -67714,9 +68727,9 @@ export declare class ModifyDiskAttributeRequest extends $dara.Model {
|
|
|
67714
68727
|
diskId?: string;
|
|
67715
68728
|
/**
|
|
67716
68729
|
* @remarks
|
|
67717
|
-
* The
|
|
68730
|
+
* The IDs of the disks whose attributes you want to modify. Valid values of N: 0 to 100.
|
|
67718
68731
|
*
|
|
67719
|
-
* >
|
|
68732
|
+
* > You can specify `DiskId` or `DiskIds.N`, but not both.
|
|
67720
68733
|
*
|
|
67721
68734
|
* @example
|
|
67722
68735
|
* d-bp1famypsnar20bv****
|
|
@@ -67732,14 +68745,14 @@ export declare class ModifyDiskAttributeRequest extends $dara.Model {
|
|
|
67732
68745
|
diskName?: string;
|
|
67733
68746
|
/**
|
|
67734
68747
|
* @remarks
|
|
67735
|
-
* Specifies whether to enable the automatic snapshot policy feature for the
|
|
68748
|
+
* Specifies whether to enable the automatic snapshot policy feature for the disk. Valid values:
|
|
67736
68749
|
*
|
|
67737
68750
|
* * true
|
|
67738
68751
|
* * false
|
|
67739
68752
|
*
|
|
67740
68753
|
* This parameter is empty by default, which indicates that the current value remains unchanged.
|
|
67741
68754
|
*
|
|
67742
|
-
* > By default, the automatic snapshot policy feature is enabled for cloud disks. You
|
|
68755
|
+
* > By default, the automatic snapshot policy feature is enabled for cloud disks. You need to only apply an automatic snapshot policy to a cloud disk before you can use the automatic snapshot policy.
|
|
67743
68756
|
*
|
|
67744
68757
|
* @example
|
|
67745
68758
|
* true
|
|
@@ -68117,6 +69130,13 @@ export declare class ModifyDiskDeploymentResponse extends $dara.Model {
|
|
|
68117
69130
|
});
|
|
68118
69131
|
}
|
|
68119
69132
|
export declare class ModifyDiskSpecRequest extends $dara.Model {
|
|
69133
|
+
/**
|
|
69134
|
+
* @remarks
|
|
69135
|
+
* > This parameter is in invitational preview and is not publicly available.
|
|
69136
|
+
*
|
|
69137
|
+
* @example
|
|
69138
|
+
* cn-hangzhou-g
|
|
69139
|
+
*/
|
|
68120
69140
|
destinationZoneId?: string;
|
|
68121
69141
|
/**
|
|
68122
69142
|
* @remarks
|
|
@@ -68341,11 +69361,7 @@ export declare class ModifyElasticityAssuranceRequest extends $dara.Model {
|
|
|
68341
69361
|
description?: string;
|
|
68342
69362
|
/**
|
|
68343
69363
|
* @remarks
|
|
68344
|
-
* The total number of instances
|
|
68345
|
-
*
|
|
68346
|
-
* > Capacity scale-in, not capacity scale-out, is supported.
|
|
68347
|
-
*
|
|
68348
|
-
* > This parameter is in invitational preview and is not publicly available.
|
|
69364
|
+
* The total number of instances for which you want to reserve capacity. Valid values: the number of created instances to 1000. This parameter is mutually exclusive with other parameters in the same request.
|
|
68349
69365
|
*
|
|
68350
69366
|
* @example
|
|
68351
69367
|
* 10
|
|
@@ -68353,6 +69369,13 @@ export declare class ModifyElasticityAssuranceRequest extends $dara.Model {
|
|
|
68353
69369
|
instanceAmount?: number;
|
|
68354
69370
|
ownerAccount?: string;
|
|
68355
69371
|
ownerId?: number;
|
|
69372
|
+
/**
|
|
69373
|
+
* @remarks
|
|
69374
|
+
* The assurance schedules based on which the capacity reservation takes effect.
|
|
69375
|
+
*
|
|
69376
|
+
* > Time-segmented elasticity assurances are available only in specific regions and to specific users. To use time-segmented elasticity assurances, [submit a ticket](https://smartservice.console.aliyun.com/service/create-ticket-intl).
|
|
69377
|
+
*/
|
|
69378
|
+
recurrenceRules?: ModifyElasticityAssuranceRequestRecurrenceRules[];
|
|
68356
69379
|
/**
|
|
68357
69380
|
* @remarks
|
|
68358
69381
|
* The region ID of the elasticity assurance. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list.
|
|
@@ -68413,6 +69436,108 @@ export declare class ModifyElasticityAssuranceResponse extends $dara.Model {
|
|
|
68413
69436
|
[key: string]: any;
|
|
68414
69437
|
});
|
|
68415
69438
|
}
|
|
69439
|
+
export declare class ModifyElasticityAssuranceAutoRenewAttributeRequest extends $dara.Model {
|
|
69440
|
+
privatePoolOptions?: ModifyElasticityAssuranceAutoRenewAttributeRequestPrivatePoolOptions;
|
|
69441
|
+
ownerAccount?: string;
|
|
69442
|
+
ownerId?: number;
|
|
69443
|
+
/**
|
|
69444
|
+
* @remarks
|
|
69445
|
+
* The auto-renewal period for the elasticity assurance.
|
|
69446
|
+
*
|
|
69447
|
+
* * Valid values when `PeriodUnit` is set to `Year`: 1, 3, and 5.
|
|
69448
|
+
* * Valid values when `PeriodUnit` is set to `Month`: 1.
|
|
69449
|
+
*
|
|
69450
|
+
* Default value: 1.
|
|
69451
|
+
*
|
|
69452
|
+
* @example
|
|
69453
|
+
* 1
|
|
69454
|
+
*/
|
|
69455
|
+
period?: number;
|
|
69456
|
+
/**
|
|
69457
|
+
* @remarks
|
|
69458
|
+
* The unit of the renewal duration. Valid values:
|
|
69459
|
+
*
|
|
69460
|
+
* * Month
|
|
69461
|
+
* * Year
|
|
69462
|
+
*
|
|
69463
|
+
* Default value: Month.
|
|
69464
|
+
*
|
|
69465
|
+
* @example
|
|
69466
|
+
* Month
|
|
69467
|
+
*/
|
|
69468
|
+
periodUnit?: string;
|
|
69469
|
+
/**
|
|
69470
|
+
* @remarks
|
|
69471
|
+
* The ID of the region to which the elasticity assurance belongs. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list.
|
|
69472
|
+
*
|
|
69473
|
+
* This parameter is required.
|
|
69474
|
+
*
|
|
69475
|
+
* @example
|
|
69476
|
+
* cn-hangzhou
|
|
69477
|
+
*/
|
|
69478
|
+
regionId?: string;
|
|
69479
|
+
/**
|
|
69480
|
+
* @remarks
|
|
69481
|
+
* The auto-renewal status of the elasticity assurance. Valid values:
|
|
69482
|
+
*
|
|
69483
|
+
* * AutoRenewal: Auto-renewal is enabled for the elasticity assurance.
|
|
69484
|
+
* * Normal: Auto-renewal is disabled for the elasticity assurance.
|
|
69485
|
+
* * NotRenewal: The elasticity assurance is not renewed. The system no longer sends an expiration notification but sends only a renewal notification three days before the elasticity assurance expires. You can change the value of this parameter from NotRenewal to `Normal` for an elasticity assurance, and then manually renew the elasticity assurance. Alternatively, you can set the RenewalStatus parameter to AutoRenewal.
|
|
69486
|
+
*
|
|
69487
|
+
* @example
|
|
69488
|
+
* Normal
|
|
69489
|
+
*/
|
|
69490
|
+
renewalStatus?: string;
|
|
69491
|
+
resourceOwnerAccount?: string;
|
|
69492
|
+
resourceOwnerId?: number;
|
|
69493
|
+
static names(): {
|
|
69494
|
+
[key: string]: string;
|
|
69495
|
+
};
|
|
69496
|
+
static types(): {
|
|
69497
|
+
[key: string]: any;
|
|
69498
|
+
};
|
|
69499
|
+
validate(): void;
|
|
69500
|
+
constructor(map?: {
|
|
69501
|
+
[key: string]: any;
|
|
69502
|
+
});
|
|
69503
|
+
}
|
|
69504
|
+
export declare class ModifyElasticityAssuranceAutoRenewAttributeResponseBody extends $dara.Model {
|
|
69505
|
+
/**
|
|
69506
|
+
* @remarks
|
|
69507
|
+
* The request ID.
|
|
69508
|
+
*
|
|
69509
|
+
* @example
|
|
69510
|
+
* 2A4EA075-CB5B-41B7-B0EB-70D339F64DE7
|
|
69511
|
+
*/
|
|
69512
|
+
requestId?: string;
|
|
69513
|
+
static names(): {
|
|
69514
|
+
[key: string]: string;
|
|
69515
|
+
};
|
|
69516
|
+
static types(): {
|
|
69517
|
+
[key: string]: any;
|
|
69518
|
+
};
|
|
69519
|
+
validate(): void;
|
|
69520
|
+
constructor(map?: {
|
|
69521
|
+
[key: string]: any;
|
|
69522
|
+
});
|
|
69523
|
+
}
|
|
69524
|
+
export declare class ModifyElasticityAssuranceAutoRenewAttributeResponse extends $dara.Model {
|
|
69525
|
+
headers?: {
|
|
69526
|
+
[key: string]: string;
|
|
69527
|
+
};
|
|
69528
|
+
statusCode?: number;
|
|
69529
|
+
body?: ModifyElasticityAssuranceAutoRenewAttributeResponseBody;
|
|
69530
|
+
static names(): {
|
|
69531
|
+
[key: string]: string;
|
|
69532
|
+
};
|
|
69533
|
+
static types(): {
|
|
69534
|
+
[key: string]: any;
|
|
69535
|
+
};
|
|
69536
|
+
validate(): void;
|
|
69537
|
+
constructor(map?: {
|
|
69538
|
+
[key: string]: any;
|
|
69539
|
+
});
|
|
69540
|
+
}
|
|
68416
69541
|
export declare class ModifyForwardEntryRequest extends $dara.Model {
|
|
68417
69542
|
externalIp?: string;
|
|
68418
69543
|
externalPort?: string;
|
|
@@ -69353,6 +70478,9 @@ export declare class ModifyInstanceAutoRenewAttributeRequest extends $dara.Model
|
|
|
69353
70478
|
* @remarks
|
|
69354
70479
|
* Specifies whether to enable auto-renewal.
|
|
69355
70480
|
*
|
|
70481
|
+
* * true
|
|
70482
|
+
* * false
|
|
70483
|
+
*
|
|
69356
70484
|
* Default value: false.
|
|
69357
70485
|
*
|
|
69358
70486
|
* @example
|
|
@@ -69495,7 +70623,7 @@ export declare class ModifyInstanceChargeTypeRequest extends $dara.Model {
|
|
|
69495
70623
|
* @remarks
|
|
69496
70624
|
* Specifies whether to perform only a dry run, without performing the actual request. Valid values:
|
|
69497
70625
|
*
|
|
69498
|
-
* * true: performs only a dry run. The system checks the request for potential issues, including invalid AccessKey pairs, unauthorized RAM users, and missing parameter values. If the request fails the dry run, an error message is returned. If the request passes the dry run, the `DryRunOperation` error code is returned.
|
|
70626
|
+
* * true: performs only a dry run. The system checks the request for potential issues, including invalid AccessKey pairs, unauthorized Resource Access Management (RAM) users, and missing parameter values. If the request fails the dry run, an error message is returned. If the request passes the dry run, the `DryRunOperation` error code is returned.
|
|
69499
70627
|
* * false: performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
|
|
69500
70628
|
*
|
|
69501
70629
|
* Default value: false.
|
|
@@ -70285,6 +71413,10 @@ export declare class ModifyInstanceSpecRequest extends $dara.Model {
|
|
|
70285
71413
|
* 0c593ea1-3bea-11e9-b96b-88e9fe637760
|
|
70286
71414
|
*/
|
|
70287
71415
|
clientToken?: string;
|
|
71416
|
+
/**
|
|
71417
|
+
* @remarks
|
|
71418
|
+
* > This parameter is in invitational preview and is not publicly available.
|
|
71419
|
+
*/
|
|
70288
71420
|
disk?: ModifyInstanceSpecRequestDisk[];
|
|
70289
71421
|
/**
|
|
70290
71422
|
* @remarks
|
|
@@ -70342,6 +71474,11 @@ export declare class ModifyInstanceSpecRequest extends $dara.Model {
|
|
|
70342
71474
|
* @remarks
|
|
70343
71475
|
* > This parameter is not publicly available.
|
|
70344
71476
|
*
|
|
71477
|
+
* Valid values:
|
|
71478
|
+
*
|
|
71479
|
+
* * Online
|
|
71480
|
+
* * Offline
|
|
71481
|
+
*
|
|
70345
71482
|
* @example
|
|
70346
71483
|
* null
|
|
70347
71484
|
*/
|
|
@@ -73614,12 +74751,12 @@ export declare class PurchaseElasticityAssuranceRequest extends $dara.Model {
|
|
|
73614
74751
|
ownerId?: number;
|
|
73615
74752
|
/**
|
|
73616
74753
|
* @remarks
|
|
73617
|
-
* The
|
|
74754
|
+
* The validity period of the elasticity assurance. The unit of the validity period is determined by the PeriodUnit value. Valid values:
|
|
73618
74755
|
*
|
|
73619
74756
|
* * When the PeriodUnit parameter is set to Month, valid values are 1, 2, 3, 4, 5, 6, 7, 8, and 9.
|
|
73620
74757
|
* * When the PeriodUnit parameter is set to Year, valid values are 1, 2, 3, 4, and 5.
|
|
73621
74758
|
*
|
|
73622
|
-
* Default value: 1
|
|
74759
|
+
* Default value: 1.
|
|
73623
74760
|
*
|
|
73624
74761
|
* @example
|
|
73625
74762
|
* 1
|
|
@@ -73627,7 +74764,7 @@ export declare class PurchaseElasticityAssuranceRequest extends $dara.Model {
|
|
|
73627
74764
|
period?: number;
|
|
73628
74765
|
/**
|
|
73629
74766
|
* @remarks
|
|
73630
|
-
* The unit of the
|
|
74767
|
+
* The unit of the validity period of the elasticity assurance. Valid values:
|
|
73631
74768
|
*
|
|
73632
74769
|
* * Month
|
|
73633
74770
|
* * Year
|
|
@@ -73899,6 +75036,14 @@ export declare class PurchaseReservedInstancesOfferingRequest extends $dara.Mode
|
|
|
73899
75036
|
});
|
|
73900
75037
|
}
|
|
73901
75038
|
export declare class PurchaseReservedInstancesOfferingResponseBody extends $dara.Model {
|
|
75039
|
+
/**
|
|
75040
|
+
* @remarks
|
|
75041
|
+
* The order ID.
|
|
75042
|
+
*
|
|
75043
|
+
* @example
|
|
75044
|
+
* 23841229****
|
|
75045
|
+
*/
|
|
75046
|
+
orderId?: string;
|
|
73902
75047
|
/**
|
|
73903
75048
|
* @remarks
|
|
73904
75049
|
* The request ID.
|
|
@@ -74031,6 +75176,7 @@ export declare class PurchaseStorageCapacityUnitRequest extends $dara.Model {
|
|
|
74031
75176
|
* cn-hangzhou
|
|
74032
75177
|
*/
|
|
74033
75178
|
regionId?: string;
|
|
75179
|
+
resourceGroupId?: string;
|
|
74034
75180
|
resourceOwnerAccount?: string;
|
|
74035
75181
|
resourceOwnerId?: number;
|
|
74036
75182
|
/**
|
|
@@ -74572,6 +75718,14 @@ export declare class RedeployDedicatedHostRequest extends $dara.Model {
|
|
|
74572
75718
|
*/
|
|
74573
75719
|
dedicatedHostId?: string;
|
|
74574
75720
|
/**
|
|
75721
|
+
* @remarks
|
|
75722
|
+
* Specifies whether to stop the instance before it is migrated to the destination dedicated host. Specifies whether to check that the CPU tag set of the source host is the subset of the CPU tag set of the destination host. Valid values:
|
|
75723
|
+
*
|
|
75724
|
+
* * reboot: stops the instance before migration.
|
|
75725
|
+
* * LiveMigrationFirst: migrates the instance without stopping it. If the MigrationType parameter is set to live, you must specify the DedicatedHostId parameter. In this case, you cannot change the instance type of the ECS instance when the instance is migrated. If the migration in LiveMigrationFirst mode fails, the system switches to the Reboot mode.
|
|
75726
|
+
*
|
|
75727
|
+
* Default value: reboot.
|
|
75728
|
+
*
|
|
74575
75729
|
* @example
|
|
74576
75730
|
* Reboot
|
|
74577
75731
|
*
|
|
@@ -75249,6 +76403,11 @@ export declare class RenewDedicatedHostsRequest extends $dara.Model {
|
|
|
75249
76403
|
});
|
|
75250
76404
|
}
|
|
75251
76405
|
export declare class RenewDedicatedHostsResponseBody extends $dara.Model {
|
|
76406
|
+
/**
|
|
76407
|
+
* @example
|
|
76408
|
+
* 23841229****
|
|
76409
|
+
*/
|
|
76410
|
+
orderId?: string;
|
|
75252
76411
|
/**
|
|
75253
76412
|
* @remarks
|
|
75254
76413
|
* The request ID.
|
|
@@ -75300,7 +76459,31 @@ export declare class RenewElasticityAssurancesRequest extends $dara.Model {
|
|
|
75300
76459
|
* true
|
|
75301
76460
|
*/
|
|
75302
76461
|
autoPay?: boolean;
|
|
76462
|
+
/**
|
|
76463
|
+
* @remarks
|
|
76464
|
+
* Specifies whether to enable auto-renewal for the elasticity assurance. Valid values:
|
|
76465
|
+
*
|
|
76466
|
+
* * true
|
|
76467
|
+
* * false
|
|
76468
|
+
*
|
|
76469
|
+
* Default value: false.
|
|
76470
|
+
*
|
|
76471
|
+
* @example
|
|
76472
|
+
* true
|
|
76473
|
+
*/
|
|
75303
76474
|
autoRenew?: boolean;
|
|
76475
|
+
/**
|
|
76476
|
+
* @remarks
|
|
76477
|
+
* The auto-renewal period. Unit: month. Valid values: 1, 2, 3, 6, 12, 24, and 36.
|
|
76478
|
+
*
|
|
76479
|
+
* * If you set `PeriodUnit` to Month, the default value is 1.
|
|
76480
|
+
* * If you set `PeriodUnit` to Year, the default value is 12.
|
|
76481
|
+
*
|
|
76482
|
+
* > This parameter is required if you set `AutoRenew` to `true`.
|
|
76483
|
+
*
|
|
76484
|
+
* @example
|
|
76485
|
+
* 1
|
|
76486
|
+
*/
|
|
75304
76487
|
autoRenewPeriod?: number;
|
|
75305
76488
|
/**
|
|
75306
76489
|
* @remarks
|
|
@@ -76339,7 +77522,7 @@ export declare class ResizeDiskRequest extends $dara.Model {
|
|
|
76339
77522
|
* The method that you want to use to resize the disk. Valid values:
|
|
76340
77523
|
*
|
|
76341
77524
|
* * offline (default): resizes the disk offline. After you resize a disk offline, you must restart the associated instance in the ECS console or by calling the [RebootInstance](https://help.aliyun.com/document_detail/25502.html) operation for the resizing operation to take effect. For information about how to restart an ECS instance in the ECS console, see [Restart an instance](https://help.aliyun.com/document_detail/25440.html).
|
|
76342
|
-
* * online: resizes the disk online. After you resize a disk online, the resizing operation immediately takes effect. You do not need to restart the associated instance. You can resize ultra disks, standard SSDs,
|
|
77525
|
+
* * online: resizes the disk online. After you resize a disk online, the resizing operation immediately takes effect. You do not need to restart the associated instance. You can resize ultra disks, standard SSDs, ESSDs, and elastic ephemeral disks online.
|
|
76343
77526
|
*
|
|
76344
77527
|
* @example
|
|
76345
77528
|
* offline
|
|
@@ -76896,39 +78079,39 @@ export declare class RunCommandRequest extends $dara.Model {
|
|
|
76896
78079
|
* @remarks
|
|
76897
78080
|
* The content of the command. The command content can be plaintext or Base64-encoded. Take note of the following items:
|
|
76898
78081
|
*
|
|
76899
|
-
* * If you want to retain the command, make sure that the Base64-encoded command content does not exceed 18 KB
|
|
78082
|
+
* * If you want to retain the command, make sure that the size of the Base64-encoded command content does not exceed 18 KB. If you do not want to retain the command, make sure that the size of the Base64-encoded command content does not exceed 24 KB. You can set `KeepCommand` to specify whether to retain the command.
|
|
76900
78083
|
*
|
|
76901
|
-
* * If the command content is encoded
|
|
78084
|
+
* * If the command content is Base64-encoded, set `ContentEncoding` to Base64.
|
|
76902
78085
|
*
|
|
76903
|
-
* * If you
|
|
78086
|
+
* * If you specify `EnableParameter` to true, the custom parameter feature is enable. You can configure custom parameters based on the following rules:
|
|
76904
78087
|
*
|
|
76905
|
-
* * Specify custom parameters in the `{{}}` format.
|
|
78088
|
+
* * Specify custom parameters in the `{{}}` format. The spaces and line feeds before and after the parameter names within `{{}}` are ignored.
|
|
76906
78089
|
* * You can specify up to 20 custom parameters.
|
|
76907
|
-
* * A custom parameter name can contain
|
|
78090
|
+
* * A custom parameter name can contain letters, digits, underscores (_), and hyphens (-). The name is case-insensitive. The ACS:: prefix cannot be used to specify non-built-in environment parameters.
|
|
76908
78091
|
* * Each custom parameter name cannot exceed 64 bytes in length.
|
|
76909
78092
|
*
|
|
76910
|
-
* * You can specify built-in environment parameters as custom parameters.
|
|
78093
|
+
* * You can specify built-in environment parameters as custom parameters. When you run a command, the parameters are automatically specified by Cloud Assistant. You can specify the following built-in environment parameters:
|
|
76911
78094
|
*
|
|
76912
78095
|
* * `{{ACS::RegionId}}`: the region ID.
|
|
76913
78096
|
*
|
|
76914
78097
|
* * `{{ACS::AccountId}}`: the UID of the Alibaba Cloud account.
|
|
76915
78098
|
*
|
|
76916
|
-
* * `{{ACS::InstanceId}}`: the instance ID. If you want to run the command on multiple instances and specify `{{ACS::InstanceId}}` as a built-in environment parameter, make sure that the Cloud Assistant Agent version is not earlier than the following
|
|
78099
|
+
* * `{{ACS::InstanceId}}`: the instance ID. If you want to run the command on multiple instances and specify `{{ACS::InstanceId}}` as a built-in environment parameter, make sure that the Cloud Assistant Agent version is not earlier than the following versions:
|
|
76917
78100
|
*
|
|
76918
78101
|
* * Linux: 2.2.3.309
|
|
76919
78102
|
* * Windows: 2.1.3.309
|
|
76920
78103
|
*
|
|
76921
|
-
* * `{{ACS::InstanceName}}`: the instance name. If you want to run the command on multiple instances and specify `{{ACS::InstanceName}}` as a built-in environment parameter, make sure that the Cloud Assistant Agent version is not earlier than the following
|
|
78104
|
+
* * `{{ACS::InstanceName}}`: the instance name. If you want to run the command on multiple instances and specify `{{ACS::InstanceName}}` as a built-in environment parameter, make sure that the Cloud Assistant Agent version is not earlier than the following versions:
|
|
76922
78105
|
*
|
|
76923
78106
|
* * Linux: 2.2.3.344
|
|
76924
78107
|
* * Windows: 2.1.3.344
|
|
76925
78108
|
*
|
|
76926
|
-
* * `{{ACS::InvokeId}}`: the ID
|
|
78109
|
+
* * `{{ACS::InvokeId}}`: the task ID. If you want to specify `{{ACS::InvokeId}}` as a built-in environment parameter, make sure that the Cloud Assistant Agent version is not earlier than the following versions:
|
|
76927
78110
|
*
|
|
76928
78111
|
* * Linux: 2.2.3.309
|
|
76929
78112
|
* * Windows: 2.1.3.309
|
|
76930
78113
|
*
|
|
76931
|
-
* * `{{ACS::CommandId}}`: the ID
|
|
78114
|
+
* * `{{ACS::CommandId}}`: the command ID. If you want to specify `{{ACS::CommandId}}` as a built-in environment parameter, make sure that the Cloud Assistant Agent version is not earlier than the following versions:
|
|
76932
78115
|
*
|
|
76933
78116
|
* * Linux: 2.2.3.309
|
|
76934
78117
|
* * Windows: 2.1.3.309
|
|
@@ -76941,14 +78124,15 @@ export declare class RunCommandRequest extends $dara.Model {
|
|
|
76941
78124
|
commandContent?: string;
|
|
76942
78125
|
/**
|
|
76943
78126
|
* @remarks
|
|
76944
|
-
* The ID
|
|
78127
|
+
* The container ID. Only 64-bit hexadecimal strings are supported. `docker://`, `containerd://`, or `cri-o://` can be used as the prefix of the container ID to specify the container runtime.
|
|
76945
78128
|
*
|
|
76946
78129
|
* Take note of the following items:
|
|
76947
78130
|
*
|
|
76948
|
-
* * If this parameter
|
|
76949
|
-
* * If this parameter
|
|
76950
|
-
* * If this parameter
|
|
76951
|
-
*
|
|
78131
|
+
* * If you specify this parameter, Cloud Assistant runs the command in the specified container of the instances.
|
|
78132
|
+
* * If you specify this parameter, make sure that the Cloud Assistant Agent version installed on Linux instances is 2.2.3.344 or later.
|
|
78133
|
+
* * If you specify this parameter, `Username` and `WorkingDir` do not take effect. You can run the command in the default working directory of the container by using only the default user of the container. For more information, see [Use Cloud Assistant to run commands in containers](https://help.aliyun.com/document_detail/456641.html).
|
|
78134
|
+
*
|
|
78135
|
+
* > Only shell scripts can run in Linux containers. You cannot add a command whose format is similar to `#!/usr/bin/python` at the beginning of a script to specify a script interpreter. For more information, see [Use Cloud Assistant to run commands in containers](https://help.aliyun.com/document_detail/456641.html).
|
|
76952
78136
|
*
|
|
76953
78137
|
* @example
|
|
76954
78138
|
* ab141ddfbacfe02d9dbc25966ed971536124527097398d419a6746873fea****
|
|
@@ -76956,14 +78140,15 @@ export declare class RunCommandRequest extends $dara.Model {
|
|
|
76956
78140
|
containerId?: string;
|
|
76957
78141
|
/**
|
|
76958
78142
|
* @remarks
|
|
76959
|
-
* The name
|
|
78143
|
+
* The container name.
|
|
76960
78144
|
*
|
|
76961
78145
|
* Take note of the following items:
|
|
76962
78146
|
*
|
|
76963
|
-
* * If this parameter
|
|
76964
|
-
* * If this parameter
|
|
76965
|
-
* * If this parameter
|
|
76966
|
-
*
|
|
78147
|
+
* * If you specify this parameter, Cloud Assistant runs the command in the specified container of the instances.
|
|
78148
|
+
* * If you specify this parameter, make sure that the Cloud Assistant Agent version installed on Linux instances is 2.2.3.344 or later.
|
|
78149
|
+
* * If you specify this parameter, `Username` and `WorkingDir` do not take effect. You can run the command in the default working directory of the container by using only the default user of the container. For more information, see [Use Cloud Assistant to run commands in containers](https://help.aliyun.com/document_detail/456641.html).
|
|
78150
|
+
*
|
|
78151
|
+
* > Only shell scripts can run in Linux containers. You cannot add a command whose format is similar to `#!/usr/bin/python` at the beginning of a script to specify a script interpreter. For more information, see [Use Cloud Assistant to run commands in containers](https://help.aliyun.com/document_detail/456641.html).
|
|
76967
78152
|
*
|
|
76968
78153
|
* @example
|
|
76969
78154
|
* test-container
|
|
@@ -77031,11 +78216,11 @@ export declare class RunCommandRequest extends $dara.Model {
|
|
|
77031
78216
|
frequency?: string;
|
|
77032
78217
|
/**
|
|
77033
78218
|
* @remarks
|
|
77034
|
-
* The IDs of instances on which to run the command.
|
|
78219
|
+
* The IDs of instances on which to create and run the command. Specify at least one instance ID. You can specify up to 100 instance IDs.
|
|
77035
78220
|
*
|
|
77036
78221
|
* If one of the specified instances does not meet the conditions for running the command, the call fails. To ensure that the call is successful, specify only the IDs of instances that meet the conditions.
|
|
77037
78222
|
*
|
|
77038
|
-
* You can
|
|
78223
|
+
* You can request a quota increase in the Quota Center console. The quota name is Maximum number of instances supported for command execution.
|
|
77039
78224
|
*
|
|
77040
78225
|
* @example
|
|
77041
78226
|
* i-bp185dy2o3o6neg****
|
|
@@ -77106,34 +78291,20 @@ export declare class RunCommandRequest extends $dara.Model {
|
|
|
77106
78291
|
* Specifies how to run the command. Valid values:
|
|
77107
78292
|
*
|
|
77108
78293
|
* * Once: immediately runs the command.
|
|
77109
|
-
* * Period: runs the command on a schedule. If you set this parameter to `Period`, you must
|
|
77110
|
-
* * NextRebootOnly: runs the command the next time the instances start.
|
|
77111
|
-
* * EveryReboot: runs the command every time the instances start. Specifies how to run the command. Valid values:
|
|
77112
|
-
* * Once: immediately runs the command.
|
|
77113
|
-
* * Period: runs the command on a schedule. If you set this parameter to `Period`, you must also configure the `Frequency` parameter.
|
|
78294
|
+
* * Period: runs the command based on a schedule. If you set this parameter to `Period`, you must specify `Frequency`.
|
|
77114
78295
|
* * NextRebootOnly: runs the command the next time the instances start.
|
|
77115
78296
|
* * EveryReboot: runs the command every time the instances start.
|
|
77116
78297
|
* * DryRun: performs only a dry run, without running the actual command. The system checks the request parameters, the execution environments on the instances, and the status of Cloud Assistant Agent.
|
|
77117
78298
|
*
|
|
77118
78299
|
* Default value:
|
|
77119
78300
|
*
|
|
77120
|
-
* * If you do not specify
|
|
77121
|
-
* * If you specify
|
|
77122
|
-
*
|
|
77123
|
-
* Take note of the following items:
|
|
77124
|
-
*
|
|
77125
|
-
* * You can call the [StopInvocation](https://help.aliyun.com/document_detail/64838.html) operation to stop the pending or scheduled executions of the command.
|
|
77126
|
-
* * If you set this parameter to `Period` or `EveryReboot`, you can call the [DescribeInvocationResults](https://help.aliyun.com/document_detail/64845.html) operation with `IncludeHistory` set to true to query the results of historical scheduled executions.
|
|
77127
|
-
*
|
|
77128
|
-
* Default value:
|
|
77129
|
-
*
|
|
77130
|
-
* * If you do not specify the `Frequency` parameter, the default value is `Once`.
|
|
77131
|
-
* * If you specify the `Frequency` parameter, `Period` is used as the value of RepeatMode regardless of whether RepeatMode is set to Period.
|
|
78301
|
+
* * If you do not specify `Frequency`, the default value is `Once`.
|
|
78302
|
+
* * If you specify `Frequency`, RepeatMode is set to `Period` regardless of whether a value is already specified for RepeatMode.
|
|
77132
78303
|
*
|
|
77133
78304
|
* Take note of the following items:
|
|
77134
78305
|
*
|
|
77135
78306
|
* * You can call the [StopInvocation](https://help.aliyun.com/document_detail/64838.html) operation to stop the pending or scheduled executions of the command.
|
|
77136
|
-
* * If you set this parameter to `Period` or `EveryReboot`, you can call the [DescribeInvocationResults](https://help.aliyun.com/document_detail/64845.html) operation with `IncludeHistory` set to true to query the
|
|
78307
|
+
* * If you set this parameter to `Period` or `EveryReboot`, you can call the [DescribeInvocationResults](https://help.aliyun.com/document_detail/64845.html) operation with `IncludeHistory` set to true to query the historical scheduled executions.
|
|
77137
78308
|
*
|
|
77138
78309
|
* @example
|
|
77139
78310
|
* Once
|
|
@@ -77154,12 +78325,12 @@ export declare class RunCommandRequest extends $dara.Model {
|
|
|
77154
78325
|
resourceOwnerId?: number;
|
|
77155
78326
|
/**
|
|
77156
78327
|
* @remarks
|
|
77157
|
-
* The tags of the instance. If you do not specify InstanceId
|
|
78328
|
+
* The tags of the instance. You can leave this parameter empty or specify up to 20 tags. If you do not specify InstanceId, the command is run on instances that have the specified tags.
|
|
77158
78329
|
*/
|
|
77159
78330
|
resourceTag?: RunCommandRequestResourceTag[];
|
|
77160
78331
|
/**
|
|
77161
78332
|
* @remarks
|
|
77162
|
-
* The
|
|
78333
|
+
* The tags to add to the command task. You can leave this parameter empty or specify up to 20 tags.
|
|
77163
78334
|
*/
|
|
77164
78335
|
tag?: RunCommandRequestTag[];
|
|
77165
78336
|
/**
|
|
@@ -77195,7 +78366,7 @@ export declare class RunCommandRequest extends $dara.Model {
|
|
|
77195
78366
|
timeout?: number;
|
|
77196
78367
|
/**
|
|
77197
78368
|
* @remarks
|
|
77198
|
-
* The
|
|
78369
|
+
* The type of the command. Valid values:
|
|
77199
78370
|
*
|
|
77200
78371
|
* * RunBatScript: batch command, applicable to Windows instances.
|
|
77201
78372
|
* * RunPowerShellScript: PowerShell command, applicable to Windows instances.
|
|
@@ -77269,39 +78440,39 @@ export declare class RunCommandShrinkRequest extends $dara.Model {
|
|
|
77269
78440
|
* @remarks
|
|
77270
78441
|
* The content of the command. The command content can be plaintext or Base64-encoded. Take note of the following items:
|
|
77271
78442
|
*
|
|
77272
|
-
* * If you want to retain the command, make sure that the Base64-encoded command content does not exceed 18 KB
|
|
78443
|
+
* * If you want to retain the command, make sure that the size of the Base64-encoded command content does not exceed 18 KB. If you do not want to retain the command, make sure that the size of the Base64-encoded command content does not exceed 24 KB. You can set `KeepCommand` to specify whether to retain the command.
|
|
77273
78444
|
*
|
|
77274
|
-
* * If the command content is encoded
|
|
78445
|
+
* * If the command content is Base64-encoded, set `ContentEncoding` to Base64.
|
|
77275
78446
|
*
|
|
77276
|
-
* * If you
|
|
78447
|
+
* * If you specify `EnableParameter` to true, the custom parameter feature is enable. You can configure custom parameters based on the following rules:
|
|
77277
78448
|
*
|
|
77278
|
-
* * Specify custom parameters in the `{{}}` format.
|
|
78449
|
+
* * Specify custom parameters in the `{{}}` format. The spaces and line feeds before and after the parameter names within `{{}}` are ignored.
|
|
77279
78450
|
* * You can specify up to 20 custom parameters.
|
|
77280
|
-
* * A custom parameter name can contain
|
|
78451
|
+
* * A custom parameter name can contain letters, digits, underscores (_), and hyphens (-). The name is case-insensitive. The ACS:: prefix cannot be used to specify non-built-in environment parameters.
|
|
77281
78452
|
* * Each custom parameter name cannot exceed 64 bytes in length.
|
|
77282
78453
|
*
|
|
77283
|
-
* * You can specify built-in environment parameters as custom parameters.
|
|
78454
|
+
* * You can specify built-in environment parameters as custom parameters. When you run a command, the parameters are automatically specified by Cloud Assistant. You can specify the following built-in environment parameters:
|
|
77284
78455
|
*
|
|
77285
78456
|
* * `{{ACS::RegionId}}`: the region ID.
|
|
77286
78457
|
*
|
|
77287
78458
|
* * `{{ACS::AccountId}}`: the UID of the Alibaba Cloud account.
|
|
77288
78459
|
*
|
|
77289
|
-
* * `{{ACS::InstanceId}}`: the instance ID. If you want to run the command on multiple instances and specify `{{ACS::InstanceId}}` as a built-in environment parameter, make sure that the Cloud Assistant Agent version is not earlier than the following
|
|
78460
|
+
* * `{{ACS::InstanceId}}`: the instance ID. If you want to run the command on multiple instances and specify `{{ACS::InstanceId}}` as a built-in environment parameter, make sure that the Cloud Assistant Agent version is not earlier than the following versions:
|
|
77290
78461
|
*
|
|
77291
78462
|
* * Linux: 2.2.3.309
|
|
77292
78463
|
* * Windows: 2.1.3.309
|
|
77293
78464
|
*
|
|
77294
|
-
* * `{{ACS::InstanceName}}`: the instance name. If you want to run the command on multiple instances and specify `{{ACS::InstanceName}}` as a built-in environment parameter, make sure that the Cloud Assistant Agent version is not earlier than the following
|
|
78465
|
+
* * `{{ACS::InstanceName}}`: the instance name. If you want to run the command on multiple instances and specify `{{ACS::InstanceName}}` as a built-in environment parameter, make sure that the Cloud Assistant Agent version is not earlier than the following versions:
|
|
77295
78466
|
*
|
|
77296
78467
|
* * Linux: 2.2.3.344
|
|
77297
78468
|
* * Windows: 2.1.3.344
|
|
77298
78469
|
*
|
|
77299
|
-
* * `{{ACS::InvokeId}}`: the ID
|
|
78470
|
+
* * `{{ACS::InvokeId}}`: the task ID. If you want to specify `{{ACS::InvokeId}}` as a built-in environment parameter, make sure that the Cloud Assistant Agent version is not earlier than the following versions:
|
|
77300
78471
|
*
|
|
77301
78472
|
* * Linux: 2.2.3.309
|
|
77302
78473
|
* * Windows: 2.1.3.309
|
|
77303
78474
|
*
|
|
77304
|
-
* * `{{ACS::CommandId}}`: the ID
|
|
78475
|
+
* * `{{ACS::CommandId}}`: the command ID. If you want to specify `{{ACS::CommandId}}` as a built-in environment parameter, make sure that the Cloud Assistant Agent version is not earlier than the following versions:
|
|
77305
78476
|
*
|
|
77306
78477
|
* * Linux: 2.2.3.309
|
|
77307
78478
|
* * Windows: 2.1.3.309
|
|
@@ -77314,14 +78485,15 @@ export declare class RunCommandShrinkRequest extends $dara.Model {
|
|
|
77314
78485
|
commandContent?: string;
|
|
77315
78486
|
/**
|
|
77316
78487
|
* @remarks
|
|
77317
|
-
* The ID
|
|
78488
|
+
* The container ID. Only 64-bit hexadecimal strings are supported. `docker://`, `containerd://`, or `cri-o://` can be used as the prefix of the container ID to specify the container runtime.
|
|
77318
78489
|
*
|
|
77319
78490
|
* Take note of the following items:
|
|
77320
78491
|
*
|
|
77321
|
-
* * If this parameter
|
|
77322
|
-
* * If this parameter
|
|
77323
|
-
* * If this parameter
|
|
77324
|
-
*
|
|
78492
|
+
* * If you specify this parameter, Cloud Assistant runs the command in the specified container of the instances.
|
|
78493
|
+
* * If you specify this parameter, make sure that the Cloud Assistant Agent version installed on Linux instances is 2.2.3.344 or later.
|
|
78494
|
+
* * If you specify this parameter, `Username` and `WorkingDir` do not take effect. You can run the command in the default working directory of the container by using only the default user of the container. For more information, see [Use Cloud Assistant to run commands in containers](https://help.aliyun.com/document_detail/456641.html).
|
|
78495
|
+
*
|
|
78496
|
+
* > Only shell scripts can run in Linux containers. You cannot add a command whose format is similar to `#!/usr/bin/python` at the beginning of a script to specify a script interpreter. For more information, see [Use Cloud Assistant to run commands in containers](https://help.aliyun.com/document_detail/456641.html).
|
|
77325
78497
|
*
|
|
77326
78498
|
* @example
|
|
77327
78499
|
* ab141ddfbacfe02d9dbc25966ed971536124527097398d419a6746873fea****
|
|
@@ -77329,14 +78501,15 @@ export declare class RunCommandShrinkRequest extends $dara.Model {
|
|
|
77329
78501
|
containerId?: string;
|
|
77330
78502
|
/**
|
|
77331
78503
|
* @remarks
|
|
77332
|
-
* The name
|
|
78504
|
+
* The container name.
|
|
77333
78505
|
*
|
|
77334
78506
|
* Take note of the following items:
|
|
77335
78507
|
*
|
|
77336
|
-
* * If this parameter
|
|
77337
|
-
* * If this parameter
|
|
77338
|
-
* * If this parameter
|
|
77339
|
-
*
|
|
78508
|
+
* * If you specify this parameter, Cloud Assistant runs the command in the specified container of the instances.
|
|
78509
|
+
* * If you specify this parameter, make sure that the Cloud Assistant Agent version installed on Linux instances is 2.2.3.344 or later.
|
|
78510
|
+
* * If you specify this parameter, `Username` and `WorkingDir` do not take effect. You can run the command in the default working directory of the container by using only the default user of the container. For more information, see [Use Cloud Assistant to run commands in containers](https://help.aliyun.com/document_detail/456641.html).
|
|
78511
|
+
*
|
|
78512
|
+
* > Only shell scripts can run in Linux containers. You cannot add a command whose format is similar to `#!/usr/bin/python` at the beginning of a script to specify a script interpreter. For more information, see [Use Cloud Assistant to run commands in containers](https://help.aliyun.com/document_detail/456641.html).
|
|
77340
78513
|
*
|
|
77341
78514
|
* @example
|
|
77342
78515
|
* test-container
|
|
@@ -77404,11 +78577,11 @@ export declare class RunCommandShrinkRequest extends $dara.Model {
|
|
|
77404
78577
|
frequency?: string;
|
|
77405
78578
|
/**
|
|
77406
78579
|
* @remarks
|
|
77407
|
-
* The IDs of instances on which to run the command.
|
|
78580
|
+
* The IDs of instances on which to create and run the command. Specify at least one instance ID. You can specify up to 100 instance IDs.
|
|
77408
78581
|
*
|
|
77409
78582
|
* If one of the specified instances does not meet the conditions for running the command, the call fails. To ensure that the call is successful, specify only the IDs of instances that meet the conditions.
|
|
77410
78583
|
*
|
|
77411
|
-
* You can
|
|
78584
|
+
* You can request a quota increase in the Quota Center console. The quota name is Maximum number of instances supported for command execution.
|
|
77412
78585
|
*
|
|
77413
78586
|
* @example
|
|
77414
78587
|
* i-bp185dy2o3o6neg****
|
|
@@ -77477,34 +78650,20 @@ export declare class RunCommandShrinkRequest extends $dara.Model {
|
|
|
77477
78650
|
* Specifies how to run the command. Valid values:
|
|
77478
78651
|
*
|
|
77479
78652
|
* * Once: immediately runs the command.
|
|
77480
|
-
* * Period: runs the command on a schedule. If you set this parameter to `Period`, you must
|
|
77481
|
-
* * NextRebootOnly: runs the command the next time the instances start.
|
|
77482
|
-
* * EveryReboot: runs the command every time the instances start. Specifies how to run the command. Valid values:
|
|
77483
|
-
* * Once: immediately runs the command.
|
|
77484
|
-
* * Period: runs the command on a schedule. If you set this parameter to `Period`, you must also configure the `Frequency` parameter.
|
|
78653
|
+
* * Period: runs the command based on a schedule. If you set this parameter to `Period`, you must specify `Frequency`.
|
|
77485
78654
|
* * NextRebootOnly: runs the command the next time the instances start.
|
|
77486
78655
|
* * EveryReboot: runs the command every time the instances start.
|
|
77487
78656
|
* * DryRun: performs only a dry run, without running the actual command. The system checks the request parameters, the execution environments on the instances, and the status of Cloud Assistant Agent.
|
|
77488
78657
|
*
|
|
77489
78658
|
* Default value:
|
|
77490
78659
|
*
|
|
77491
|
-
* * If you do not specify
|
|
77492
|
-
* * If you specify
|
|
77493
|
-
*
|
|
77494
|
-
* Take note of the following items:
|
|
77495
|
-
*
|
|
77496
|
-
* * You can call the [StopInvocation](https://help.aliyun.com/document_detail/64838.html) operation to stop the pending or scheduled executions of the command.
|
|
77497
|
-
* * If you set this parameter to `Period` or `EveryReboot`, you can call the [DescribeInvocationResults](https://help.aliyun.com/document_detail/64845.html) operation with `IncludeHistory` set to true to query the results of historical scheduled executions.
|
|
77498
|
-
*
|
|
77499
|
-
* Default value:
|
|
77500
|
-
*
|
|
77501
|
-
* * If you do not specify the `Frequency` parameter, the default value is `Once`.
|
|
77502
|
-
* * If you specify the `Frequency` parameter, `Period` is used as the value of RepeatMode regardless of whether RepeatMode is set to Period.
|
|
78660
|
+
* * If you do not specify `Frequency`, the default value is `Once`.
|
|
78661
|
+
* * If you specify `Frequency`, RepeatMode is set to `Period` regardless of whether a value is already specified for RepeatMode.
|
|
77503
78662
|
*
|
|
77504
78663
|
* Take note of the following items:
|
|
77505
78664
|
*
|
|
77506
78665
|
* * You can call the [StopInvocation](https://help.aliyun.com/document_detail/64838.html) operation to stop the pending or scheduled executions of the command.
|
|
77507
|
-
* * If you set this parameter to `Period` or `EveryReboot`, you can call the [DescribeInvocationResults](https://help.aliyun.com/document_detail/64845.html) operation with `IncludeHistory` set to true to query the
|
|
78666
|
+
* * If you set this parameter to `Period` or `EveryReboot`, you can call the [DescribeInvocationResults](https://help.aliyun.com/document_detail/64845.html) operation with `IncludeHistory` set to true to query the historical scheduled executions.
|
|
77508
78667
|
*
|
|
77509
78668
|
* @example
|
|
77510
78669
|
* Once
|
|
@@ -77525,12 +78684,12 @@ export declare class RunCommandShrinkRequest extends $dara.Model {
|
|
|
77525
78684
|
resourceOwnerId?: number;
|
|
77526
78685
|
/**
|
|
77527
78686
|
* @remarks
|
|
77528
|
-
* The tags of the instance. If you do not specify InstanceId
|
|
78687
|
+
* The tags of the instance. You can leave this parameter empty or specify up to 20 tags. If you do not specify InstanceId, the command is run on instances that have the specified tags.
|
|
77529
78688
|
*/
|
|
77530
78689
|
resourceTag?: RunCommandShrinkRequestResourceTag[];
|
|
77531
78690
|
/**
|
|
77532
78691
|
* @remarks
|
|
77533
|
-
* The
|
|
78692
|
+
* The tags to add to the command task. You can leave this parameter empty or specify up to 20 tags.
|
|
77534
78693
|
*/
|
|
77535
78694
|
tag?: RunCommandShrinkRequestTag[];
|
|
77536
78695
|
/**
|
|
@@ -77566,7 +78725,7 @@ export declare class RunCommandShrinkRequest extends $dara.Model {
|
|
|
77566
78725
|
timeout?: number;
|
|
77567
78726
|
/**
|
|
77568
78727
|
* @remarks
|
|
77569
|
-
* The
|
|
78728
|
+
* The type of the command. Valid values:
|
|
77570
78729
|
*
|
|
77571
78730
|
* * RunBatScript: batch command, applicable to Windows instances.
|
|
77572
78731
|
* * RunPowerShellScript: PowerShell command, applicable to Windows instances.
|
|
@@ -78231,7 +79390,9 @@ export declare class RunInstancesRequest extends $dara.Model {
|
|
|
78231
79390
|
periodUnit?: string;
|
|
78232
79391
|
/**
|
|
78233
79392
|
* @remarks
|
|
78234
|
-
*
|
|
79393
|
+
* The private domain name options of the instance.
|
|
79394
|
+
*
|
|
79395
|
+
* For information about the resolution of ECS private domain names, see [ECS private DNS resolution](https://help.aliyun.com/document_detail/2844797.html).
|
|
78235
79396
|
*/
|
|
78236
79397
|
privateDnsNameOptions?: RunInstancesRequestPrivateDnsNameOptions;
|
|
78237
79398
|
/**
|
|
@@ -78327,7 +79488,7 @@ export declare class RunInstancesRequest extends $dara.Model {
|
|
|
78327
79488
|
* * 1: After a preemptible instance is created, Alibaba Cloud ensures that the instance is not automatically released within 1 hour. After the 1-hour protection period ends, the system compares the bid price with the market price and checks the resource inventory to determine whether to retain or release the instance.
|
|
78328
79489
|
* * 0: After a preemptible instance is created, Alibaba Cloud does not ensure that the instance runs for 1 hour. The system compares the bid price with the market price and checks the resource inventory to determine whether to retain or release the instance.
|
|
78329
79490
|
*
|
|
78330
|
-
* Alibaba Cloud sends an ECS system event to notify you 5 minutes before the instance is released.
|
|
79491
|
+
* Alibaba Cloud sends an ECS system event to notify you 5 minutes before the instance is released. The preemptible instance is billed by second. We recommend that you specify an appropriate protection period based on your business requirements.
|
|
78331
79492
|
*
|
|
78332
79493
|
* @example
|
|
78333
79494
|
* 1
|
|
@@ -80960,7 +82121,7 @@ export default class Client extends OpenApi {
|
|
|
80960
82121
|
*/
|
|
80961
82122
|
convertNatPublicIpToEip(request: ConvertNatPublicIpToEipRequest): Promise<ConvertNatPublicIpToEipResponse>;
|
|
80962
82123
|
/**
|
|
80963
|
-
* Copies a custom image from one region to another. You can deploy or copy Elastic Compute Service (ECS) instances across regions
|
|
82124
|
+
* Copies a custom image from one region to another region. You can copy custom images to deploy or copy Elastic Compute Service (ECS) instances across regions.
|
|
80964
82125
|
*
|
|
80965
82126
|
* @remarks
|
|
80966
82127
|
* ## [](#)Usage notes
|
|
@@ -80978,7 +82139,7 @@ export default class Client extends OpenApi {
|
|
|
80978
82139
|
*/
|
|
80979
82140
|
copyImageWithOptions(request: CopyImageRequest, runtime: $dara.RuntimeOptions): Promise<CopyImageResponse>;
|
|
80980
82141
|
/**
|
|
80981
|
-
* Copies a custom image from one region to another. You can deploy or copy Elastic Compute Service (ECS) instances across regions
|
|
82142
|
+
* Copies a custom image from one region to another region. You can copy custom images to deploy or copy Elastic Compute Service (ECS) instances across regions.
|
|
80982
82143
|
*
|
|
80983
82144
|
* @remarks
|
|
80984
82145
|
* ## [](#)Usage notes
|
|
@@ -81251,7 +82412,7 @@ export default class Client extends OpenApi {
|
|
|
81251
82412
|
*/
|
|
81252
82413
|
createDemand(request: CreateDemandRequest): Promise<CreateDemandResponse>;
|
|
81253
82414
|
/**
|
|
81254
|
-
* Creates a deployment set in a region.
|
|
82415
|
+
* Creates a deployment set in a region. Before you call this operation, you can specify parameters, such as OnUnableToRedeployFailedInstance, DeploymentSetName, and Strategy, in the request.
|
|
81255
82416
|
*
|
|
81256
82417
|
* @param request - CreateDeploymentSetRequest
|
|
81257
82418
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -81259,7 +82420,7 @@ export default class Client extends OpenApi {
|
|
|
81259
82420
|
*/
|
|
81260
82421
|
createDeploymentSetWithOptions(request: CreateDeploymentSetRequest, runtime: $dara.RuntimeOptions): Promise<CreateDeploymentSetResponse>;
|
|
81261
82422
|
/**
|
|
81262
|
-
* Creates a deployment set in a region.
|
|
82423
|
+
* Creates a deployment set in a region. Before you call this operation, you can specify parameters, such as OnUnableToRedeployFailedInstance, DeploymentSetName, and Strategy, in the request.
|
|
81263
82424
|
*
|
|
81264
82425
|
* @param request - CreateDeploymentSetRequest
|
|
81265
82426
|
* @returns CreateDeploymentSetResponse
|
|
@@ -81331,13 +82492,13 @@ export default class Client extends OpenApi {
|
|
|
81331
82492
|
*/
|
|
81332
82493
|
createDisk(request: CreateDiskRequest): Promise<CreateDiskResponse>;
|
|
81333
82494
|
/**
|
|
81334
|
-
* Creates an elasticity assurance.
|
|
82495
|
+
* Creates an elasticity assurance in a region. When you call this operation, you can specify parameters, such as ZoneId, InstanceType, Period, PeriodUnit, and AutoRenew, in the request.
|
|
81335
82496
|
*
|
|
81336
82497
|
* @remarks
|
|
81337
|
-
* Elasticity Assurance provides a new
|
|
81338
|
-
* *
|
|
81339
|
-
* * Elasticity assurances
|
|
81340
|
-
* * Elasticity assurances support
|
|
82498
|
+
* Elasticity Assurance provides a new method to purchase and use guaranteed resources in a flexible manner. Elasticity Assurance is a resource reservation service that provides assured access to resources for pay-as-you-go Elastic Compute Service (ECS) instances. For more information, see [Overview of Elasticity Assurance](https://help.aliyun.com/document_detail/193630.html).
|
|
82499
|
+
* * After you purchase an elasticity assurance, you cannot request a refund for the elasticity assurance. For information about the billing of elasticity assurances, see [Resource assurance](https://help.aliyun.com/document_detail/432502.html).
|
|
82500
|
+
* * Elasticity assurances can be used to create only pay-as-you-go ECS instances.
|
|
82501
|
+
* * Elasticity assurances only support the unlimited mode. You can set `AssuranceTimes` only to `Unlimited`. Elasticity assurances in unlimited mode can be used for an unlimited number of times within their terms. Elasticity assurances in unlimited mode take effect immediately after creation.
|
|
81341
82502
|
*
|
|
81342
82503
|
* @param request - CreateElasticityAssuranceRequest
|
|
81343
82504
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -81345,13 +82506,13 @@ export default class Client extends OpenApi {
|
|
|
81345
82506
|
*/
|
|
81346
82507
|
createElasticityAssuranceWithOptions(request: CreateElasticityAssuranceRequest, runtime: $dara.RuntimeOptions): Promise<CreateElasticityAssuranceResponse>;
|
|
81347
82508
|
/**
|
|
81348
|
-
* Creates an elasticity assurance.
|
|
82509
|
+
* Creates an elasticity assurance in a region. When you call this operation, you can specify parameters, such as ZoneId, InstanceType, Period, PeriodUnit, and AutoRenew, in the request.
|
|
81349
82510
|
*
|
|
81350
82511
|
* @remarks
|
|
81351
|
-
* Elasticity Assurance provides a new
|
|
81352
|
-
* *
|
|
81353
|
-
* * Elasticity assurances
|
|
81354
|
-
* * Elasticity assurances support
|
|
82512
|
+
* Elasticity Assurance provides a new method to purchase and use guaranteed resources in a flexible manner. Elasticity Assurance is a resource reservation service that provides assured access to resources for pay-as-you-go Elastic Compute Service (ECS) instances. For more information, see [Overview of Elasticity Assurance](https://help.aliyun.com/document_detail/193630.html).
|
|
82513
|
+
* * After you purchase an elasticity assurance, you cannot request a refund for the elasticity assurance. For information about the billing of elasticity assurances, see [Resource assurance](https://help.aliyun.com/document_detail/432502.html).
|
|
82514
|
+
* * Elasticity assurances can be used to create only pay-as-you-go ECS instances.
|
|
82515
|
+
* * Elasticity assurances only support the unlimited mode. You can set `AssuranceTimes` only to `Unlimited`. Elasticity assurances in unlimited mode can be used for an unlimited number of times within their terms. Elasticity assurances in unlimited mode take effect immediately after creation.
|
|
81355
82516
|
*
|
|
81356
82517
|
* @param request - CreateElasticityAssuranceRequest
|
|
81357
82518
|
* @returns CreateElasticityAssuranceResponse
|
|
@@ -81406,20 +82567,19 @@ export default class Client extends OpenApi {
|
|
|
81406
82567
|
* Creates a custom image. After you call this operation to create a custom image, you can call the RunInstances operation to create Elastic Compute Service (ECS) instances from the custom image or call the ReplaceSystemDisk operation to replace system disks by using the custom image.
|
|
81407
82568
|
*
|
|
81408
82569
|
* @remarks
|
|
81409
|
-
*
|
|
82570
|
+
* Before you call this operation, read [Overview](https://help.aliyun.com/document_detail/172789.html).
|
|
81410
82571
|
* Take note of the following items:
|
|
81411
|
-
* *
|
|
81412
|
-
* *
|
|
81413
|
-
* *
|
|
81414
|
-
* You can call the CreateImage operation to create a custom image by using one of the following methods. The following request parameters are sorted by priority: `InstanceId` > `DiskDeviceMapping` > `SnapshotId`. If your request contains two or more of
|
|
81415
|
-
* * **
|
|
81416
|
-
* * **
|
|
81417
|
-
* * **
|
|
81418
|
-
*
|
|
81419
|
-
*
|
|
81420
|
-
*
|
|
81421
|
-
*
|
|
81422
|
-
* * The specified disk snapshot must be created after July 15, 2013.
|
|
82572
|
+
* * If the response contains `{"OperationLocks": {"LockReason" : "security"}}` when you query information about an ECS instance, the instance is locked for security reasons, and you cannot create a custom image from the instance.
|
|
82573
|
+
* * To optimize the image, we recommend that you specify `DetectionStrategy` when you create a custom image. For more information, see [Overview](https://help.aliyun.com/document_detail/439819.html).
|
|
82574
|
+
* * You can use the created custom image only if the image is in the Available (`Available`) state.
|
|
82575
|
+
* You can call the CreateImage operation to create a custom image by using one of the following methods. The following request parameters are sorted by priority from high to low: `InstanceId` > `DiskDeviceMapping` > `SnapshotId`. If your request contains two or more of the preceding parameters, the custom image is created based on the parameter that has a higher priority.
|
|
82576
|
+
* * **Create a custom image from an ECS instance**. You need to only specify the instance ID by using `InstanceId`. The instance must be in the Running (`Running`) or Stopped (`Stopped`) state. After you call the CreateImage operation, a snapshot is created for each disk of the instance. When you create a custom image from a running ECS instance, cache data may not be written to disks. In this case, the data of the custom image may be slightly different from the data of the instance. Before you create a custom image from the instance, we recommend that you stop the instance by calling the [StopInstances](https://help.aliyun.com/document_detail/155372.html) operation.
|
|
82577
|
+
* * **Create a custom image from a system disk snapshot of an ECS instance**. You need to only specify the ID of the system disk snapshot by using `SnapshotId`. The specified system disk snapshot must be created after July 15, 2013.
|
|
82578
|
+
* * **Create a custom image from multiple snapshots**. You must specify data mappings between the snapshots and the disks to be created by using the parameters that start with `DiskDeviceMapping`. Take note of the following items:
|
|
82579
|
+
* * You can specify only one snapshot to create the system disk in the custom image. The device name of the system disk must be /dev/xvda.
|
|
82580
|
+
* * You can specify up to 16 snapshots to create data disks in the custom image. The device names of the data disks must be unique and range from /dev/xvdb to /dev/xvdz in alphabetical order.
|
|
82581
|
+
* * You can leave `SnapshotId` empty. In this case, an empty data disk with the specified size is created.
|
|
82582
|
+
* * The specified snapshot must be created after July 15, 2013.
|
|
81423
82583
|
*
|
|
81424
82584
|
* @param request - CreateImageRequest
|
|
81425
82585
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -81430,20 +82590,19 @@ export default class Client extends OpenApi {
|
|
|
81430
82590
|
* Creates a custom image. After you call this operation to create a custom image, you can call the RunInstances operation to create Elastic Compute Service (ECS) instances from the custom image or call the ReplaceSystemDisk operation to replace system disks by using the custom image.
|
|
81431
82591
|
*
|
|
81432
82592
|
* @remarks
|
|
81433
|
-
*
|
|
82593
|
+
* Before you call this operation, read [Overview](https://help.aliyun.com/document_detail/172789.html).
|
|
81434
82594
|
* Take note of the following items:
|
|
81435
|
-
* *
|
|
81436
|
-
* *
|
|
81437
|
-
* *
|
|
81438
|
-
* You can call the CreateImage operation to create a custom image by using one of the following methods. The following request parameters are sorted by priority: `InstanceId` > `DiskDeviceMapping` > `SnapshotId`. If your request contains two or more of
|
|
81439
|
-
* * **
|
|
81440
|
-
* * **
|
|
81441
|
-
* * **
|
|
81442
|
-
*
|
|
81443
|
-
*
|
|
81444
|
-
*
|
|
81445
|
-
*
|
|
81446
|
-
* * The specified disk snapshot must be created after July 15, 2013.
|
|
82595
|
+
* * If the response contains `{"OperationLocks": {"LockReason" : "security"}}` when you query information about an ECS instance, the instance is locked for security reasons, and you cannot create a custom image from the instance.
|
|
82596
|
+
* * To optimize the image, we recommend that you specify `DetectionStrategy` when you create a custom image. For more information, see [Overview](https://help.aliyun.com/document_detail/439819.html).
|
|
82597
|
+
* * You can use the created custom image only if the image is in the Available (`Available`) state.
|
|
82598
|
+
* You can call the CreateImage operation to create a custom image by using one of the following methods. The following request parameters are sorted by priority from high to low: `InstanceId` > `DiskDeviceMapping` > `SnapshotId`. If your request contains two or more of the preceding parameters, the custom image is created based on the parameter that has a higher priority.
|
|
82599
|
+
* * **Create a custom image from an ECS instance**. You need to only specify the instance ID by using `InstanceId`. The instance must be in the Running (`Running`) or Stopped (`Stopped`) state. After you call the CreateImage operation, a snapshot is created for each disk of the instance. When you create a custom image from a running ECS instance, cache data may not be written to disks. In this case, the data of the custom image may be slightly different from the data of the instance. Before you create a custom image from the instance, we recommend that you stop the instance by calling the [StopInstances](https://help.aliyun.com/document_detail/155372.html) operation.
|
|
82600
|
+
* * **Create a custom image from a system disk snapshot of an ECS instance**. You need to only specify the ID of the system disk snapshot by using `SnapshotId`. The specified system disk snapshot must be created after July 15, 2013.
|
|
82601
|
+
* * **Create a custom image from multiple snapshots**. You must specify data mappings between the snapshots and the disks to be created by using the parameters that start with `DiskDeviceMapping`. Take note of the following items:
|
|
82602
|
+
* * You can specify only one snapshot to create the system disk in the custom image. The device name of the system disk must be /dev/xvda.
|
|
82603
|
+
* * You can specify up to 16 snapshots to create data disks in the custom image. The device names of the data disks must be unique and range from /dev/xvdb to /dev/xvdz in alphabetical order.
|
|
82604
|
+
* * You can leave `SnapshotId` empty. In this case, an empty data disk with the specified size is created.
|
|
82605
|
+
* * The specified snapshot must be created after July 15, 2013.
|
|
81447
82606
|
*
|
|
81448
82607
|
* @param request - CreateImageRequest
|
|
81449
82608
|
* @returns CreateImageResponse
|
|
@@ -82167,12 +83326,10 @@ export default class Client extends OpenApi {
|
|
|
82167
83326
|
*/
|
|
82168
83327
|
deleteDedicatedHostCluster(request: DeleteDedicatedHostClusterRequest): Promise<DeleteDedicatedHostClusterResponse>;
|
|
82169
83328
|
/**
|
|
82170
|
-
* You can call this operation to delete
|
|
82171
|
-
* This operation allows you to delete the resource requirement information that you
|
|
82172
|
-
* submitted.
|
|
83329
|
+
* Deletes a demand for Elastic Compute Service (ECS) resources. You can call this operation to delete a demand that you submit for ECS resources.
|
|
82173
83330
|
*
|
|
82174
83331
|
* @remarks
|
|
82175
|
-
* > This operation is in
|
|
83332
|
+
* > This operation is in invitational preview and is not publicly available.
|
|
82176
83333
|
*
|
|
82177
83334
|
* @deprecated OpenAPI DeleteDemand is deprecated, please use Ecs::2014-05-26::ReleaseCapacityReservation instead.
|
|
82178
83335
|
*
|
|
@@ -82182,12 +83339,10 @@ export default class Client extends OpenApi {
|
|
|
82182
83339
|
*/
|
|
82183
83340
|
deleteDemandWithOptions(request: DeleteDemandRequest, runtime: $dara.RuntimeOptions): Promise<DeleteDemandResponse>;
|
|
82184
83341
|
/**
|
|
82185
|
-
* You can call this operation to delete
|
|
82186
|
-
* This operation allows you to delete the resource requirement information that you
|
|
82187
|
-
* submitted.
|
|
83342
|
+
* Deletes a demand for Elastic Compute Service (ECS) resources. You can call this operation to delete a demand that you submit for ECS resources.
|
|
82188
83343
|
*
|
|
82189
83344
|
* @remarks
|
|
82190
|
-
* > This operation is in
|
|
83345
|
+
* > This operation is in invitational preview and is not publicly available.
|
|
82191
83346
|
*
|
|
82192
83347
|
* @deprecated OpenAPI DeleteDemand is deprecated, please use Ecs::2014-05-26::ReleaseCapacityReservation instead.
|
|
82193
83348
|
*
|
|
@@ -82397,11 +83552,11 @@ export default class Client extends OpenApi {
|
|
|
82397
83552
|
* **Warning** After you release an instance, the physical resources used by the instance are recycled. Relevant data is erased and cannot be restored.
|
|
82398
83553
|
* * After you release an instance, manual snapshots of the cloud disks attached to the instance are retained and continue to be billed. You can call the [DeleteSnapshot](https://help.aliyun.com/document_detail/2679824.html) operation to delete the snapshots.
|
|
82399
83554
|
* * After you release an instance, whether the cloud disks attached to the instance and the automatic snapshots of the disks are released is determined by the disk attributes. Before you release an instance, you can call the [DescribeDisks](https://help.aliyun.com/document_detail/2679767.html) and [ModifyDiskAttribute](https://help.aliyun.com/document_detail/2679770.html) operations to query and modify disk attributes.
|
|
82400
|
-
* *
|
|
82401
|
-
* * If `DeleteAutoSnapshot` is set to false for a cloud disk attached to the instance, the automatic snapshots of the disk are retained when the instance is released. If DeleteAutoSnapshot is set to true for the cloud disk, the automatic snapshots of the disk are released
|
|
83555
|
+
* * The cloud disks for which `DeleteWithInstance` is set to false are retained as pay-as-you-go disks after the instance is released. The cloud disks for which DeleteWithInstance is set to true are released along with the instance.
|
|
83556
|
+
* * If `DeleteAutoSnapshot` is set to false for a cloud disk attached to the instance, the automatic snapshots of the cloud disk are retained when the instance is released. If DeleteAutoSnapshot is set to true for the cloud disk, the automatic snapshots of the disk are released along with the instance.
|
|
82402
83557
|
* * Elastic IP addresses (EIPs) are not released together with instances. You can call the [ReleaseEipAddress](https://help.aliyun.com/document_detail/448702.html) operation to release EIPs.
|
|
82403
83558
|
* **
|
|
82404
|
-
* **Note** When you release an instance that is locked for security reasons, the cloud disks attached to the instance are released
|
|
83559
|
+
* **Note** When you release an instance that is locked for security reasons, the cloud disks attached to the instance are released even if DeleteWithInstance is set to false.
|
|
82405
83560
|
*
|
|
82406
83561
|
* @param request - DeleteInstanceRequest
|
|
82407
83562
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -82416,11 +83571,11 @@ export default class Client extends OpenApi {
|
|
|
82416
83571
|
* **Warning** After you release an instance, the physical resources used by the instance are recycled. Relevant data is erased and cannot be restored.
|
|
82417
83572
|
* * After you release an instance, manual snapshots of the cloud disks attached to the instance are retained and continue to be billed. You can call the [DeleteSnapshot](https://help.aliyun.com/document_detail/2679824.html) operation to delete the snapshots.
|
|
82418
83573
|
* * After you release an instance, whether the cloud disks attached to the instance and the automatic snapshots of the disks are released is determined by the disk attributes. Before you release an instance, you can call the [DescribeDisks](https://help.aliyun.com/document_detail/2679767.html) and [ModifyDiskAttribute](https://help.aliyun.com/document_detail/2679770.html) operations to query and modify disk attributes.
|
|
82419
|
-
* *
|
|
82420
|
-
* * If `DeleteAutoSnapshot` is set to false for a cloud disk attached to the instance, the automatic snapshots of the disk are retained when the instance is released. If DeleteAutoSnapshot is set to true for the cloud disk, the automatic snapshots of the disk are released
|
|
83574
|
+
* * The cloud disks for which `DeleteWithInstance` is set to false are retained as pay-as-you-go disks after the instance is released. The cloud disks for which DeleteWithInstance is set to true are released along with the instance.
|
|
83575
|
+
* * If `DeleteAutoSnapshot` is set to false for a cloud disk attached to the instance, the automatic snapshots of the cloud disk are retained when the instance is released. If DeleteAutoSnapshot is set to true for the cloud disk, the automatic snapshots of the disk are released along with the instance.
|
|
82421
83576
|
* * Elastic IP addresses (EIPs) are not released together with instances. You can call the [ReleaseEipAddress](https://help.aliyun.com/document_detail/448702.html) operation to release EIPs.
|
|
82422
83577
|
* **
|
|
82423
|
-
* **Note** When you release an instance that is locked for security reasons, the cloud disks attached to the instance are released
|
|
83578
|
+
* **Note** When you release an instance that is locked for security reasons, the cloud disks attached to the instance are released even if DeleteWithInstance is set to false.
|
|
82424
83579
|
*
|
|
82425
83580
|
* @param request - DeleteInstanceRequest
|
|
82426
83581
|
* @returns DeleteInstanceResponse
|
|
@@ -82776,7 +83931,7 @@ export default class Client extends OpenApi {
|
|
|
82776
83931
|
*/
|
|
82777
83932
|
deleteStorageSet(request: DeleteStorageSetRequest): Promise<DeleteStorageSetResponse>;
|
|
82778
83933
|
/**
|
|
82779
|
-
* @deprecated OpenAPI DeleteVSwitch is deprecated
|
|
83934
|
+
* @deprecated OpenAPI DeleteVSwitch is deprecated, please use Vpc::2016-04-28::DeleteVSwitch instead.
|
|
82780
83935
|
*
|
|
82781
83936
|
* @param request - DeleteVSwitchRequest
|
|
82782
83937
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -82784,7 +83939,7 @@ export default class Client extends OpenApi {
|
|
|
82784
83939
|
*/
|
|
82785
83940
|
deleteVSwitchWithOptions(request: DeleteVSwitchRequest, runtime: $dara.RuntimeOptions): Promise<DeleteVSwitchResponse>;
|
|
82786
83941
|
/**
|
|
82787
|
-
* @deprecated OpenAPI DeleteVSwitch is deprecated
|
|
83942
|
+
* @deprecated OpenAPI DeleteVSwitch is deprecated, please use Vpc::2016-04-28::DeleteVSwitch instead.
|
|
82788
83943
|
*
|
|
82789
83944
|
* @param request - DeleteVSwitchRequest
|
|
82790
83945
|
* @returns DeleteVSwitchResponse
|
|
@@ -83036,7 +84191,7 @@ export default class Client extends OpenApi {
|
|
|
83036
84191
|
*/
|
|
83037
84192
|
describeBandwidthPackages(request: DescribeBandwidthPackagesRequest): Promise<DescribeBandwidthPackagesResponse>;
|
|
83038
84193
|
/**
|
|
83039
|
-
*
|
|
84194
|
+
* Queries the Elastic Compute Service (ECS) instances that match a capacity reservation.
|
|
83040
84195
|
*
|
|
83041
84196
|
* @param request - DescribeCapacityReservationInstancesRequest
|
|
83042
84197
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -83044,7 +84199,7 @@ export default class Client extends OpenApi {
|
|
|
83044
84199
|
*/
|
|
83045
84200
|
describeCapacityReservationInstancesWithOptions(request: DescribeCapacityReservationInstancesRequest, runtime: $dara.RuntimeOptions): Promise<DescribeCapacityReservationInstancesResponse>;
|
|
83046
84201
|
/**
|
|
83047
|
-
*
|
|
84202
|
+
* Queries the Elastic Compute Service (ECS) instances that match a capacity reservation.
|
|
83048
84203
|
*
|
|
83049
84204
|
* @param request - DescribeCapacityReservationInstancesRequest
|
|
83050
84205
|
* @returns DescribeCapacityReservationInstancesResponse
|
|
@@ -83066,7 +84221,7 @@ export default class Client extends OpenApi {
|
|
|
83066
84221
|
*/
|
|
83067
84222
|
describeCapacityReservations(request: DescribeCapacityReservationsRequest): Promise<DescribeCapacityReservationsResponse>;
|
|
83068
84223
|
/**
|
|
83069
|
-
* Queries instances located in the classic network that have established ClassicLink connections
|
|
84224
|
+
* Queries instances located in the classic network that have established ClassicLink connections to virtual private clouds (VPCs).
|
|
83070
84225
|
*
|
|
83071
84226
|
* @remarks
|
|
83072
84227
|
* Take note of the following items:
|
|
@@ -83080,7 +84235,7 @@ export default class Client extends OpenApi {
|
|
|
83080
84235
|
*/
|
|
83081
84236
|
describeClassicLinkInstancesWithOptions(request: DescribeClassicLinkInstancesRequest, runtime: $dara.RuntimeOptions): Promise<DescribeClassicLinkInstancesResponse>;
|
|
83082
84237
|
/**
|
|
83083
|
-
* Queries instances located in the classic network that have established ClassicLink connections
|
|
84238
|
+
* Queries instances located in the classic network that have established ClassicLink connections to virtual private clouds (VPCs).
|
|
83084
84239
|
*
|
|
83085
84240
|
* @remarks
|
|
83086
84241
|
* Take note of the following items:
|
|
@@ -83410,17 +84565,22 @@ export default class Client extends OpenApi {
|
|
|
83410
84565
|
*/
|
|
83411
84566
|
describeDiskEncryptionByDefaultStatus(request: DescribeDiskEncryptionByDefaultStatusRequest): Promise<DescribeDiskEncryptionByDefaultStatusResponse>;
|
|
83412
84567
|
/**
|
|
83413
|
-
* Queries the monitoring data of a disk
|
|
84568
|
+
* Queries the monitoring data of a cloud disk within a specific period of time, such as the read IOPS, write IOPS, read bandwidth (byte/s), write bandwidth (byte/s), read latency (microseconds), and write latency (microseconds).
|
|
83414
84569
|
*
|
|
83415
84570
|
* @remarks
|
|
83416
|
-
* ## [](#)Usage notes
|
|
83417
|
-
* You can query the following monitoring data of a disk: the read IOPS, write IOPS, read bandwidth (byte/s), write bandwidth (byte/s), read latency (microseconds), and write latency (microseconds).
|
|
83418
84571
|
* Take note of the following items:
|
|
83419
84572
|
* * Monitoring data of only disks that are in the In Use (`In_use`) state can be queried. For more information, see [Disk states](https://help.aliyun.com/document_detail/25689.html).
|
|
83420
84573
|
* **
|
|
83421
84574
|
* **Note** Some information may be missing from the monitoring data of a disk because the disk is not in the In Use `(In_use)` state and the system cannot obtain the relevant information.
|
|
83422
84575
|
* * Up to 400 monitoring data entries can be returned at a time. Make sure that the `TotalCount` value does not exceed 400. The value is calculated by using the following formula: `TotalCount = (EndTime - StartTime)/Period`. If the TotalCount value is greater than 400, the `InvalidParameter.TooManyDataQueried` error is returned.
|
|
83423
84576
|
* * You can query the monitoring data in the last 30 days. If the value of `StartTime` is more than 30 days earlier than the current time, an error is returned.
|
|
84577
|
+
* ## [](#)Sample requests
|
|
84578
|
+
* For example, you want to query the monitoring data of a cloud disk whose ID is `d-bp14emm68wx98vjk****` in the China (Hangzhou) region every 600 seconds from `2025-02-17T00:00:00Z` to `2025-02-18T10:00:00Z`. Request parameters:
|
|
84579
|
+
* RegionId:"cn-hangzhou", // Set the region ID to cn-hangzhou, which specifies the China (Hangzhou) region.
|
|
84580
|
+
* DiskId:"d-bp14emm68wx98vjk****", // Specify the disk ID.
|
|
84581
|
+
* StartTime:"2025-02-15T00:00:00Z", // Specify the beginning of the time range to query.
|
|
84582
|
+
* EndTime:"2025-02-17T00:00:00Z", // Specify the end of the time range to query.
|
|
84583
|
+
* Period:"600", // Specify the interval at which to retrieve the monitoring data.
|
|
83424
84584
|
*
|
|
83425
84585
|
* @param request - DescribeDiskMonitorDataRequest
|
|
83426
84586
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -83428,17 +84588,22 @@ export default class Client extends OpenApi {
|
|
|
83428
84588
|
*/
|
|
83429
84589
|
describeDiskMonitorDataWithOptions(request: DescribeDiskMonitorDataRequest, runtime: $dara.RuntimeOptions): Promise<DescribeDiskMonitorDataResponse>;
|
|
83430
84590
|
/**
|
|
83431
|
-
* Queries the monitoring data of a disk
|
|
84591
|
+
* Queries the monitoring data of a cloud disk within a specific period of time, such as the read IOPS, write IOPS, read bandwidth (byte/s), write bandwidth (byte/s), read latency (microseconds), and write latency (microseconds).
|
|
83432
84592
|
*
|
|
83433
84593
|
* @remarks
|
|
83434
|
-
* ## [](#)Usage notes
|
|
83435
|
-
* You can query the following monitoring data of a disk: the read IOPS, write IOPS, read bandwidth (byte/s), write bandwidth (byte/s), read latency (microseconds), and write latency (microseconds).
|
|
83436
84594
|
* Take note of the following items:
|
|
83437
84595
|
* * Monitoring data of only disks that are in the In Use (`In_use`) state can be queried. For more information, see [Disk states](https://help.aliyun.com/document_detail/25689.html).
|
|
83438
84596
|
* **
|
|
83439
84597
|
* **Note** Some information may be missing from the monitoring data of a disk because the disk is not in the In Use `(In_use)` state and the system cannot obtain the relevant information.
|
|
83440
84598
|
* * Up to 400 monitoring data entries can be returned at a time. Make sure that the `TotalCount` value does not exceed 400. The value is calculated by using the following formula: `TotalCount = (EndTime - StartTime)/Period`. If the TotalCount value is greater than 400, the `InvalidParameter.TooManyDataQueried` error is returned.
|
|
83441
84599
|
* * You can query the monitoring data in the last 30 days. If the value of `StartTime` is more than 30 days earlier than the current time, an error is returned.
|
|
84600
|
+
* ## [](#)Sample requests
|
|
84601
|
+
* For example, you want to query the monitoring data of a cloud disk whose ID is `d-bp14emm68wx98vjk****` in the China (Hangzhou) region every 600 seconds from `2025-02-17T00:00:00Z` to `2025-02-18T10:00:00Z`. Request parameters:
|
|
84602
|
+
* RegionId:"cn-hangzhou", // Set the region ID to cn-hangzhou, which specifies the China (Hangzhou) region.
|
|
84603
|
+
* DiskId:"d-bp14emm68wx98vjk****", // Specify the disk ID.
|
|
84604
|
+
* StartTime:"2025-02-15T00:00:00Z", // Specify the beginning of the time range to query.
|
|
84605
|
+
* EndTime:"2025-02-17T00:00:00Z", // Specify the end of the time range to query.
|
|
84606
|
+
* Period:"600", // Specify the interval at which to retrieve the monitoring data.
|
|
83442
84607
|
*
|
|
83443
84608
|
* @param request - DescribeDiskMonitorDataRequest
|
|
83444
84609
|
* @returns DescribeDiskMonitorDataResponse
|
|
@@ -83448,15 +84613,11 @@ export default class Client extends OpenApi {
|
|
|
83448
84613
|
* Queries block storage devices that you created, including cloud disks, local disks, and elastic ephemeral disks.
|
|
83449
84614
|
*
|
|
83450
84615
|
* @remarks
|
|
83451
|
-
*
|
|
83452
|
-
* *
|
|
83453
|
-
* *
|
|
83454
|
-
* * You can use one of the following methods to check the responses:
|
|
83455
|
-
* * Method 1: Use `NextToken` to specify the pagination token. Set the value to the `NextToken` value that is obtained from the previous query. Then, use `MaxResults` to specify the maximum number of entries to return on each page.
|
|
83456
|
-
* * Method 2: Use `PageSize` to specify the number of entries to return on each page, and then use `PageNumber` to specify the number of the page to return.
|
|
83457
|
-
* You can use only one of the preceding methods. If a large number of entries are to be returned, we recommend that you use Method 1. If `NextToken` is specified, `PageSize` and `PageNumber` do not take effect and `TotalCount` in the response is invalid.
|
|
84616
|
+
* You can specify multiple request parameters such as `RegionId`, `ZoneId`, `DiskIds`, and `InstanceId` as filters. The specified parameters are evaluated by using the "AND" operator. If you specify more than one filter, the records that match all filters are returned.
|
|
84617
|
+
* * The value of `DiskIds` is a JSON array. If you do not specify DiskIds, the parameter is not used as a filter. If you set `DiskIds` to an empty JSON array, the parameter is regarded as a valid filter, and an empty result is returned.
|
|
84618
|
+
* * Token-based paged query: Use `NextToken` to configure the query token. Set the value to the `NextToken` value returned in the previous call to the DescribeDisks operation. Then, use `MaxResults` to specify the maximum number of entries to return on each page.
|
|
83458
84619
|
* * You can attach a disk for which the multi-attach feature is enabled to multiple instances. You can query the attachment information of the disk based on the `Attachment` values in the response.
|
|
83459
|
-
* When you call
|
|
84620
|
+
* When you call the API operation by using Alibaba Cloud CLI, you must specify request parameter values of different data types in the required formats. For more information, see [Parameter formats](https://help.aliyun.com/document_detail/110340.html).
|
|
83460
84621
|
*
|
|
83461
84622
|
* @param request - DescribeDisksRequest
|
|
83462
84623
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -83467,15 +84628,11 @@ export default class Client extends OpenApi {
|
|
|
83467
84628
|
* Queries block storage devices that you created, including cloud disks, local disks, and elastic ephemeral disks.
|
|
83468
84629
|
*
|
|
83469
84630
|
* @remarks
|
|
83470
|
-
*
|
|
83471
|
-
* *
|
|
83472
|
-
* *
|
|
83473
|
-
* * You can use one of the following methods to check the responses:
|
|
83474
|
-
* * Method 1: Use `NextToken` to specify the pagination token. Set the value to the `NextToken` value that is obtained from the previous query. Then, use `MaxResults` to specify the maximum number of entries to return on each page.
|
|
83475
|
-
* * Method 2: Use `PageSize` to specify the number of entries to return on each page, and then use `PageNumber` to specify the number of the page to return.
|
|
83476
|
-
* You can use only one of the preceding methods. If a large number of entries are to be returned, we recommend that you use Method 1. If `NextToken` is specified, `PageSize` and `PageNumber` do not take effect and `TotalCount` in the response is invalid.
|
|
84631
|
+
* You can specify multiple request parameters such as `RegionId`, `ZoneId`, `DiskIds`, and `InstanceId` as filters. The specified parameters are evaluated by using the "AND" operator. If you specify more than one filter, the records that match all filters are returned.
|
|
84632
|
+
* * The value of `DiskIds` is a JSON array. If you do not specify DiskIds, the parameter is not used as a filter. If you set `DiskIds` to an empty JSON array, the parameter is regarded as a valid filter, and an empty result is returned.
|
|
84633
|
+
* * Token-based paged query: Use `NextToken` to configure the query token. Set the value to the `NextToken` value returned in the previous call to the DescribeDisks operation. Then, use `MaxResults` to specify the maximum number of entries to return on each page.
|
|
83477
84634
|
* * You can attach a disk for which the multi-attach feature is enabled to multiple instances. You can query the attachment information of the disk based on the `Attachment` values in the response.
|
|
83478
|
-
* When you call
|
|
84635
|
+
* When you call the API operation by using Alibaba Cloud CLI, you must specify request parameter values of different data types in the required formats. For more information, see [Parameter formats](https://help.aliyun.com/document_detail/110340.html).
|
|
83479
84636
|
*
|
|
83480
84637
|
* @param request - DescribeDisksRequest
|
|
83481
84638
|
* @returns DescribeDisksResponse
|
|
@@ -83535,7 +84692,22 @@ export default class Client extends OpenApi {
|
|
|
83535
84692
|
*/
|
|
83536
84693
|
describeEipMonitorData(request: DescribeEipMonitorDataRequest): Promise<DescribeEipMonitorDataResponse>;
|
|
83537
84694
|
/**
|
|
83538
|
-
* Queries the
|
|
84695
|
+
* Queries the auto-renewal attribute of elasticity assurances.
|
|
84696
|
+
*
|
|
84697
|
+
* @param request - DescribeElasticityAssuranceAutoRenewAttributeRequest
|
|
84698
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
84699
|
+
* @returns DescribeElasticityAssuranceAutoRenewAttributeResponse
|
|
84700
|
+
*/
|
|
84701
|
+
describeElasticityAssuranceAutoRenewAttributeWithOptions(request: DescribeElasticityAssuranceAutoRenewAttributeRequest, runtime: $dara.RuntimeOptions): Promise<DescribeElasticityAssuranceAutoRenewAttributeResponse>;
|
|
84702
|
+
/**
|
|
84703
|
+
* Queries the auto-renewal attribute of elasticity assurances.
|
|
84704
|
+
*
|
|
84705
|
+
* @param request - DescribeElasticityAssuranceAutoRenewAttributeRequest
|
|
84706
|
+
* @returns DescribeElasticityAssuranceAutoRenewAttributeResponse
|
|
84707
|
+
*/
|
|
84708
|
+
describeElasticityAssuranceAutoRenewAttribute(request: DescribeElasticityAssuranceAutoRenewAttributeRequest): Promise<DescribeElasticityAssuranceAutoRenewAttributeResponse>;
|
|
84709
|
+
/**
|
|
84710
|
+
* Queries the running Elastic Compute Service (ECS) instances that use an elasticity assurance.
|
|
83539
84711
|
*
|
|
83540
84712
|
* @remarks
|
|
83541
84713
|
* When an elasticity assurance expires, data about the association between the instances and the private pool generated by the elasticity assurance becomes invalid. When you call this operation to query the expired elasticity assurance, no value is returned.
|
|
@@ -83546,7 +84718,7 @@ export default class Client extends OpenApi {
|
|
|
83546
84718
|
*/
|
|
83547
84719
|
describeElasticityAssuranceInstancesWithOptions(request: DescribeElasticityAssuranceInstancesRequest, runtime: $dara.RuntimeOptions): Promise<DescribeElasticityAssuranceInstancesResponse>;
|
|
83548
84720
|
/**
|
|
83549
|
-
* Queries the running Elastic Compute Service (ECS) instances that
|
|
84721
|
+
* Queries the running Elastic Compute Service (ECS) instances that use an elasticity assurance.
|
|
83550
84722
|
*
|
|
83551
84723
|
* @remarks
|
|
83552
84724
|
* When an elasticity assurance expires, data about the association between the instances and the private pool generated by the elasticity assurance becomes invalid. When you call this operation to query the expired elasticity assurance, no value is returned.
|
|
@@ -83714,7 +84886,7 @@ export default class Client extends OpenApi {
|
|
|
83714
84886
|
*/
|
|
83715
84887
|
describeImagePipelineExecutions(request: DescribeImagePipelineExecutionsRequest): Promise<DescribeImagePipelineExecutionsResponse>;
|
|
83716
84888
|
/**
|
|
83717
|
-
* Queries the
|
|
84889
|
+
* Queries the details of one or more image templates.
|
|
83718
84890
|
*
|
|
83719
84891
|
* @remarks
|
|
83720
84892
|
* You can use `NextToken` to configure the query token. Set the value to the `NextToken` value that is returned in the previous call to the `DescribeImagePipelines` operation. Then, use `MaxResults` to specify the maximum number of entries to return on each page.
|
|
@@ -83725,7 +84897,7 @@ export default class Client extends OpenApi {
|
|
|
83725
84897
|
*/
|
|
83726
84898
|
describeImagePipelinesWithOptions(request: DescribeImagePipelinesRequest, runtime: $dara.RuntimeOptions): Promise<DescribeImagePipelinesResponse>;
|
|
83727
84899
|
/**
|
|
83728
|
-
* Queries the
|
|
84900
|
+
* Queries the details of one or more image templates.
|
|
83729
84901
|
*
|
|
83730
84902
|
* @remarks
|
|
83731
84903
|
* You can use `NextToken` to configure the query token. Set the value to the `NextToken` value that is returned in the previous call to the `DescribeImagePipelines` operation. Then, use `MaxResults` to specify the maximum number of entries to return on each page.
|
|
@@ -83750,7 +84922,7 @@ export default class Client extends OpenApi {
|
|
|
83750
84922
|
*/
|
|
83751
84923
|
describeImageSharePermission(request: DescribeImageSharePermissionRequest): Promise<DescribeImageSharePermissionResponse>;
|
|
83752
84924
|
/**
|
|
83753
|
-
* Queries the instance types supported by an image.
|
|
84925
|
+
* Queries the ECS instance types supported by an image.
|
|
83754
84926
|
*
|
|
83755
84927
|
* @param request - DescribeImageSupportInstanceTypesRequest
|
|
83756
84928
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -83758,14 +84930,14 @@ export default class Client extends OpenApi {
|
|
|
83758
84930
|
*/
|
|
83759
84931
|
describeImageSupportInstanceTypesWithOptions(request: DescribeImageSupportInstanceTypesRequest, runtime: $dara.RuntimeOptions): Promise<DescribeImageSupportInstanceTypesResponse>;
|
|
83760
84932
|
/**
|
|
83761
|
-
* Queries the instance types supported by an image.
|
|
84933
|
+
* Queries the ECS instance types supported by an image.
|
|
83762
84934
|
*
|
|
83763
84935
|
* @param request - DescribeImageSupportInstanceTypesRequest
|
|
83764
84936
|
* @returns DescribeImageSupportInstanceTypesResponse
|
|
83765
84937
|
*/
|
|
83766
84938
|
describeImageSupportInstanceTypes(request: DescribeImageSupportInstanceTypesRequest): Promise<DescribeImageSupportInstanceTypesResponse>;
|
|
83767
84939
|
/**
|
|
83768
|
-
* Queries
|
|
84940
|
+
* Queries image resources that you can use. You can specify parameters, such as the image ID and the scenario in which the image is used in the request.
|
|
83769
84941
|
*
|
|
83770
84942
|
* @remarks
|
|
83771
84943
|
* ## [](#)Usage notes
|
|
@@ -83780,7 +84952,7 @@ export default class Client extends OpenApi {
|
|
|
83780
84952
|
*/
|
|
83781
84953
|
describeImagesWithOptions(request: DescribeImagesRequest, runtime: $dara.RuntimeOptions): Promise<DescribeImagesResponse>;
|
|
83782
84954
|
/**
|
|
83783
|
-
* Queries
|
|
84955
|
+
* Queries image resources that you can use. You can specify parameters, such as the image ID and the scenario in which the image is used in the request.
|
|
83784
84956
|
*
|
|
83785
84957
|
* @remarks
|
|
83786
84958
|
* ## [](#)Usage notes
|
|
@@ -84290,10 +85462,6 @@ export default class Client extends OpenApi {
|
|
|
84290
85462
|
/**
|
|
84291
85463
|
* Queries the information of launch template versions, such as the total number of launch templates, launch template names, and launch template version numbers.
|
|
84292
85464
|
*
|
|
84293
|
-
* @remarks
|
|
84294
|
-
* ## Debugging
|
|
84295
|
-
* [OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer. OpenAPI Explorer dynamically generates the sample code of the operation for different SDKs.](https://api.aliyun.com/#product=Ecs\\&api=DescribeLaunchTemplateVersions\\&type=RPC\\&version=2014-05-26)
|
|
84296
|
-
*
|
|
84297
85465
|
* @param request - DescribeLaunchTemplateVersionsRequest
|
|
84298
85466
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
84299
85467
|
* @returns DescribeLaunchTemplateVersionsResponse
|
|
@@ -84302,10 +85470,6 @@ export default class Client extends OpenApi {
|
|
|
84302
85470
|
/**
|
|
84303
85471
|
* Queries the information of launch template versions, such as the total number of launch templates, launch template names, and launch template version numbers.
|
|
84304
85472
|
*
|
|
84305
|
-
* @remarks
|
|
84306
|
-
* ## Debugging
|
|
84307
|
-
* [OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer. OpenAPI Explorer dynamically generates the sample code of the operation for different SDKs.](https://api.aliyun.com/#product=Ecs\\&api=DescribeLaunchTemplateVersions\\&type=RPC\\&version=2014-05-26)
|
|
84308
|
-
*
|
|
84309
85473
|
* @param request - DescribeLaunchTemplateVersionsRequest
|
|
84310
85474
|
* @returns DescribeLaunchTemplateVersionsResponse
|
|
84311
85475
|
*/
|
|
@@ -84472,7 +85636,7 @@ export default class Client extends OpenApi {
|
|
|
84472
85636
|
*/
|
|
84473
85637
|
describePhysicalConnections(request: DescribePhysicalConnectionsRequest): Promise<DescribePhysicalConnectionsResponse>;
|
|
84474
85638
|
/**
|
|
84475
|
-
*
|
|
85639
|
+
* Queries the information of resources that are associated with a specific prefix list.
|
|
84476
85640
|
*
|
|
84477
85641
|
* @param request - DescribePrefixListAssociationsRequest
|
|
84478
85642
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -84480,7 +85644,7 @@ export default class Client extends OpenApi {
|
|
|
84480
85644
|
*/
|
|
84481
85645
|
describePrefixListAssociationsWithOptions(request: DescribePrefixListAssociationsRequest, runtime: $dara.RuntimeOptions): Promise<DescribePrefixListAssociationsResponse>;
|
|
84482
85646
|
/**
|
|
84483
|
-
*
|
|
85647
|
+
* Queries the information of resources that are associated with a specific prefix list.
|
|
84484
85648
|
*
|
|
84485
85649
|
* @param request - DescribePrefixListAssociationsRequest
|
|
84486
85650
|
* @returns DescribePrefixListAssociationsResponse
|
|
@@ -84523,19 +85687,17 @@ export default class Client extends OpenApi {
|
|
|
84523
85687
|
*/
|
|
84524
85688
|
describePrefixLists(request: DescribePrefixListsRequest): Promise<DescribePrefixListsResponse>;
|
|
84525
85689
|
/**
|
|
84526
|
-
* Queries
|
|
85690
|
+
* Queries the most recent prices of specified resources. You can specify a resource type in the request, such as the Elastic Compute Service (ECS) instance, cloud disk, dedicated host, elasticity assurance, and capacity reservation. You can also query the activity rules, prices, and discounts of resources.
|
|
84527
85691
|
*
|
|
84528
85692
|
* @remarks
|
|
84529
|
-
*
|
|
84530
|
-
* *
|
|
84531
|
-
*
|
|
84532
|
-
*
|
|
84533
|
-
*
|
|
84534
|
-
*
|
|
84535
|
-
*
|
|
84536
|
-
* * When `ResourceType` is set to bandwidth, only the pay-by-traffic (`PayByTraffic`)
|
|
84537
|
-
* * When `ResourceType` is set to instance, the prices of up to four data disks can be queried.
|
|
84538
|
-
* * By default, `ChargeType` is set to `PostPaid`. You can specify `PriceUnit` to query prices of ECS resources that have different billing cycles.
|
|
85693
|
+
* The required parameters vary based on the type of resource whose prices you want to query.
|
|
85694
|
+
* * When `ResourceType` is set to instance, you must specify `InstanceType`. By default, `ChargeType` is set to `PostPaid`. You can specify `PriceUnit` to query the ECS resource prices in different billing cycles.
|
|
85695
|
+
* * When `ResourceType` is set to disk, you must specify `DataDisk.1.Category` and `DataDisk.1.Size` in the same request. When `ResourceType` is set to disk, only pay-as-you-go prices of cloud disks are returned. In this scenario, `PriceUnit` can be set only to `Hour`.
|
|
85696
|
+
* * When `ResourceType` is set to diskperformance, you must specify `DataDisk.1.Category` and `DataDisk.1.ProvisionedIops`.
|
|
85697
|
+
* * When `ResourceType` is set to ddh, you must specify `DedicatedHostType`.
|
|
85698
|
+
* * When `ResourceType` is set to ElasticityAssurance, you must specify `InstanceType`.
|
|
85699
|
+
* * When `ResourceType` is set to CapacityReservation, you must specify `InstanceType`.
|
|
85700
|
+
* * When `ResourceType` is set to bandwidth, only the pay-by-traffic (`PayByTraffic`) prices for network usage are returned.
|
|
84539
85701
|
*
|
|
84540
85702
|
* @param request - DescribePriceRequest
|
|
84541
85703
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -84543,19 +85705,17 @@ export default class Client extends OpenApi {
|
|
|
84543
85705
|
*/
|
|
84544
85706
|
describePriceWithOptions(request: DescribePriceRequest, runtime: $dara.RuntimeOptions): Promise<DescribePriceResponse>;
|
|
84545
85707
|
/**
|
|
84546
|
-
* Queries
|
|
85708
|
+
* Queries the most recent prices of specified resources. You can specify a resource type in the request, such as the Elastic Compute Service (ECS) instance, cloud disk, dedicated host, elasticity assurance, and capacity reservation. You can also query the activity rules, prices, and discounts of resources.
|
|
84547
85709
|
*
|
|
84548
85710
|
* @remarks
|
|
84549
|
-
*
|
|
84550
|
-
* *
|
|
84551
|
-
*
|
|
84552
|
-
*
|
|
84553
|
-
*
|
|
84554
|
-
*
|
|
84555
|
-
*
|
|
84556
|
-
* * When `ResourceType` is set to bandwidth, only the pay-by-traffic (`PayByTraffic`)
|
|
84557
|
-
* * When `ResourceType` is set to instance, the prices of up to four data disks can be queried.
|
|
84558
|
-
* * By default, `ChargeType` is set to `PostPaid`. You can specify `PriceUnit` to query prices of ECS resources that have different billing cycles.
|
|
85711
|
+
* The required parameters vary based on the type of resource whose prices you want to query.
|
|
85712
|
+
* * When `ResourceType` is set to instance, you must specify `InstanceType`. By default, `ChargeType` is set to `PostPaid`. You can specify `PriceUnit` to query the ECS resource prices in different billing cycles.
|
|
85713
|
+
* * When `ResourceType` is set to disk, you must specify `DataDisk.1.Category` and `DataDisk.1.Size` in the same request. When `ResourceType` is set to disk, only pay-as-you-go prices of cloud disks are returned. In this scenario, `PriceUnit` can be set only to `Hour`.
|
|
85714
|
+
* * When `ResourceType` is set to diskperformance, you must specify `DataDisk.1.Category` and `DataDisk.1.ProvisionedIops`.
|
|
85715
|
+
* * When `ResourceType` is set to ddh, you must specify `DedicatedHostType`.
|
|
85716
|
+
* * When `ResourceType` is set to ElasticityAssurance, you must specify `InstanceType`.
|
|
85717
|
+
* * When `ResourceType` is set to CapacityReservation, you must specify `InstanceType`.
|
|
85718
|
+
* * When `ResourceType` is set to bandwidth, only the pay-by-traffic (`PayByTraffic`) prices for network usage are returned.
|
|
84559
85719
|
*
|
|
84560
85720
|
* @param request - DescribePriceRequest
|
|
84561
85721
|
* @returns DescribePriceResponse
|
|
@@ -84577,7 +85737,7 @@ export default class Client extends OpenApi {
|
|
|
84577
85737
|
*/
|
|
84578
85738
|
describeRecommendInstanceType(request: DescribeRecommendInstanceTypeRequest): Promise<DescribeRecommendInstanceTypeResponse>;
|
|
84579
85739
|
/**
|
|
84580
|
-
*
|
|
85740
|
+
* Queries Alibaba Cloud regions. When you call this operation, you can specify parameters, such as InstanceChargeType and ResourceType, in the request.
|
|
84581
85741
|
*
|
|
84582
85742
|
* @param request - DescribeRegionsRequest
|
|
84583
85743
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -84585,7 +85745,7 @@ export default class Client extends OpenApi {
|
|
|
84585
85745
|
*/
|
|
84586
85746
|
describeRegionsWithOptions(request: DescribeRegionsRequest, runtime: $dara.RuntimeOptions): Promise<DescribeRegionsResponse>;
|
|
84587
85747
|
/**
|
|
84588
|
-
*
|
|
85748
|
+
* Queries Alibaba Cloud regions. When you call this operation, you can specify parameters, such as InstanceChargeType and ResourceType, in the request.
|
|
84589
85749
|
*
|
|
84590
85750
|
* @param request - DescribeRegionsRequest
|
|
84591
85751
|
* @returns DescribeRegionsResponse
|
|
@@ -85112,7 +86272,11 @@ export default class Client extends OpenApi {
|
|
|
85112
86272
|
*/
|
|
85113
86273
|
describeSpotAdvice(request: DescribeSpotAdviceRequest): Promise<DescribeSpotAdviceResponse>;
|
|
85114
86274
|
/**
|
|
85115
|
-
* Queries the historical prices of preemptible instances within the previous 30 days.
|
|
86275
|
+
* Queries the historical prices of preemptible instances within up to the previous 30 days. You can set the maximum price of a preemptible instance based on the historical prices.
|
|
86276
|
+
*
|
|
86277
|
+
* @remarks
|
|
86278
|
+
* This operation is applicable only to I/O optimized preemptible instances.
|
|
86279
|
+
* * The data returned by the interface may be paginated. If the returned data contains the `NextOffset` parameter, you can set the `Offset` parameter in the request to the value of the `NextOffset` parameter for subsequent data query.
|
|
85116
86280
|
*
|
|
85117
86281
|
* @param request - DescribeSpotPriceHistoryRequest
|
|
85118
86282
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -85120,7 +86284,11 @@ export default class Client extends OpenApi {
|
|
|
85120
86284
|
*/
|
|
85121
86285
|
describeSpotPriceHistoryWithOptions(request: DescribeSpotPriceHistoryRequest, runtime: $dara.RuntimeOptions): Promise<DescribeSpotPriceHistoryResponse>;
|
|
85122
86286
|
/**
|
|
85123
|
-
* Queries the historical prices of preemptible instances within the previous 30 days.
|
|
86287
|
+
* Queries the historical prices of preemptible instances within up to the previous 30 days. You can set the maximum price of a preemptible instance based on the historical prices.
|
|
86288
|
+
*
|
|
86289
|
+
* @remarks
|
|
86290
|
+
* This operation is applicable only to I/O optimized preemptible instances.
|
|
86291
|
+
* * The data returned by the interface may be paginated. If the returned data contains the `NextOffset` parameter, you can set the `Offset` parameter in the request to the value of the `NextOffset` parameter for subsequent data query.
|
|
85124
86292
|
*
|
|
85125
86293
|
* @param request - DescribeSpotPriceHistoryRequest
|
|
85126
86294
|
* @returns DescribeSpotPriceHistoryResponse
|
|
@@ -85172,7 +86340,7 @@ export default class Client extends OpenApi {
|
|
|
85172
86340
|
*/
|
|
85173
86341
|
describeStorageSets(request: DescribeStorageSetsRequest): Promise<DescribeStorageSetsResponse>;
|
|
85174
86342
|
/**
|
|
85175
|
-
* Queries
|
|
86343
|
+
* Queries the available tags. You can specify multiple filter conditions, such as a resource type, a resource ID, a tag key, and a tag value, to query tags. The specified filter conditions have logical AND relations.
|
|
85176
86344
|
*
|
|
85177
86345
|
* @remarks
|
|
85178
86346
|
* If a tag key that has no tag value is specified, all tags that contain the tag key are returned. If a tag key-value pair is specified, only tags that exactly match the key-value pair are returned.
|
|
@@ -85185,7 +86353,7 @@ export default class Client extends OpenApi {
|
|
|
85185
86353
|
*/
|
|
85186
86354
|
describeTagsWithOptions(request: DescribeTagsRequest, runtime: $dara.RuntimeOptions): Promise<DescribeTagsResponse>;
|
|
85187
86355
|
/**
|
|
85188
|
-
* Queries
|
|
86356
|
+
* Queries the available tags. You can specify multiple filter conditions, such as a resource type, a resource ID, a tag key, and a tag value, to query tags. The specified filter conditions have logical AND relations.
|
|
85189
86357
|
*
|
|
85190
86358
|
* @remarks
|
|
85191
86359
|
* If a tag key that has no tag value is specified, all tags that contain the tag key are returned. If a tag key-value pair is specified, only tags that exactly match the key-value pair are returned.
|
|
@@ -85256,6 +86424,8 @@ export default class Client extends OpenApi {
|
|
|
85256
86424
|
*/
|
|
85257
86425
|
describeTerminalSessions(request: DescribeTerminalSessionsRequest): Promise<DescribeTerminalSessionsResponse>;
|
|
85258
86426
|
/**
|
|
86427
|
+
* 获取用户级别默认属性
|
|
86428
|
+
*
|
|
85259
86429
|
* @deprecated OpenAPI DescribeUserBusinessBehavior is deprecated
|
|
85260
86430
|
*
|
|
85261
86431
|
* @param request - DescribeUserBusinessBehaviorRequest
|
|
@@ -85264,6 +86434,8 @@ export default class Client extends OpenApi {
|
|
|
85264
86434
|
*/
|
|
85265
86435
|
describeUserBusinessBehaviorWithOptions(request: DescribeUserBusinessBehaviorRequest, runtime: $dara.RuntimeOptions): Promise<DescribeUserBusinessBehaviorResponse>;
|
|
85266
86436
|
/**
|
|
86437
|
+
* 获取用户级别默认属性
|
|
86438
|
+
*
|
|
85267
86439
|
* @deprecated OpenAPI DescribeUserBusinessBehavior is deprecated
|
|
85268
86440
|
*
|
|
85269
86441
|
* @param request - DescribeUserBusinessBehaviorRequest
|
|
@@ -85371,7 +86543,7 @@ export default class Client extends OpenApi {
|
|
|
85371
86543
|
*/
|
|
85372
86544
|
describeVpcs(request: DescribeVpcsRequest): Promise<DescribeVpcsResponse>;
|
|
85373
86545
|
/**
|
|
85374
|
-
* Queries
|
|
86546
|
+
* Queries Alibaba Cloud regions. You can specify parameters, such as InstanceChargeType and ResourceType, in the request.
|
|
85375
86547
|
*
|
|
85376
86548
|
* @remarks
|
|
85377
86549
|
* When you call this operation, only a list of zones and some resource information of each zone are returned. If you want to query instance types and disk categories that are available for purchase in a specific zone, we recommend that you call the [DescribeAvailableResource](https://help.aliyun.com/document_detail/66186.html) operation.
|
|
@@ -85382,7 +86554,7 @@ export default class Client extends OpenApi {
|
|
|
85382
86554
|
*/
|
|
85383
86555
|
describeZonesWithOptions(request: DescribeZonesRequest, runtime: $dara.RuntimeOptions): Promise<DescribeZonesResponse>;
|
|
85384
86556
|
/**
|
|
85385
|
-
* Queries
|
|
86557
|
+
* Queries Alibaba Cloud regions. You can specify parameters, such as InstanceChargeType and ResourceType, in the request.
|
|
85386
86558
|
*
|
|
85387
86559
|
* @remarks
|
|
85388
86560
|
* When you call this operation, only a list of zones and some resource information of each zone are returned. If you want to query instance types and disk categories that are available for purchase in a specific zone, we recommend that you call the [DescribeAvailableResource](https://help.aliyun.com/document_detail/66186.html) operation.
|
|
@@ -85816,7 +86988,7 @@ export default class Client extends OpenApi {
|
|
|
85816
86988
|
*/
|
|
85817
86989
|
getInstanceScreenshot(request: GetInstanceScreenshotRequest): Promise<GetInstanceScreenshotResponse>;
|
|
85818
86990
|
/**
|
|
85819
|
-
* Imports an on-premise image to Elastic Compute Service (ECS). The imported image exists as a custom image in the destination region. You can use the imported image to create ECS instances by calling the RunInstances operation or replace the system
|
|
86991
|
+
* Imports an on-premise image to Elastic Compute Service (ECS). The imported image exists as a custom image in the destination region. You can use the imported image to create ECS instances by calling the RunInstances operation or replace the system disk of an ECS instance by calling the ReplaceSystemDisk operation.
|
|
85820
86992
|
*
|
|
85821
86993
|
* @remarks
|
|
85822
86994
|
* ### [](#)Usage notes
|
|
@@ -85912,7 +87084,7 @@ export default class Client extends OpenApi {
|
|
|
85912
87084
|
*/
|
|
85913
87085
|
importImageWithOptions(request: ImportImageRequest, runtime: $dara.RuntimeOptions): Promise<ImportImageResponse>;
|
|
85914
87086
|
/**
|
|
85915
|
-
* Imports an on-premise image to Elastic Compute Service (ECS). The imported image exists as a custom image in the destination region. You can use the imported image to create ECS instances by calling the RunInstances operation or replace the system
|
|
87087
|
+
* Imports an on-premise image to Elastic Compute Service (ECS). The imported image exists as a custom image in the destination region. You can use the imported image to create ECS instances by calling the RunInstances operation or replace the system disk of an ECS instance by calling the ReplaceSystemDisk operation.
|
|
85916
87088
|
*
|
|
85917
87089
|
* @remarks
|
|
85918
87090
|
* ### [](#)Usage notes
|
|
@@ -86563,12 +87735,10 @@ export default class Client extends OpenApi {
|
|
|
86563
87735
|
*/
|
|
86564
87736
|
modifyDiagnosticMetricSet(request: ModifyDiagnosticMetricSetRequest): Promise<ModifyDiagnosticMetricSetResponse>;
|
|
86565
87737
|
/**
|
|
86566
|
-
* Modifies the attributes of block storage devices,
|
|
87738
|
+
* Modifies the attributes of one or more block storage devices, such as the names and descriptions of the devices and whether to release the devices together with the associated Elastic Compute Service (ECS) instances.
|
|
86567
87739
|
*
|
|
86568
87740
|
* @remarks
|
|
86569
|
-
*
|
|
86570
|
-
* * When you call this operation to modify the attributes of a disk, if you set DeleteWithInstance to false and the instance to which the disk is attached is locked for security reasons, the DeleteWithInstance settings of the disk are ignored and the disk is released together with the instance. If `"LockReason" : "security"` is displayed in the response when you query the information about an instance, the instance is locked for security reasons.
|
|
86571
|
-
* * You can use `DiskIds.N` to specify multiple block storage devices and batch modify the attributes of the devices, including the names and descriptions of the devices and whether to release the devices together with the associated instances.
|
|
87741
|
+
* You can use `DiskId` to specify a block storage device and modify the attributes of the device, such as the name and description of the device and whether to release the device together with the associated instance. You can use `DiskIds.N` to specify multiple block storage devices and batch modify the attributes of the devices.
|
|
86572
87742
|
*
|
|
86573
87743
|
* @param request - ModifyDiskAttributeRequest
|
|
86574
87744
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -86576,12 +87746,10 @@ export default class Client extends OpenApi {
|
|
|
86576
87746
|
*/
|
|
86577
87747
|
modifyDiskAttributeWithOptions(request: ModifyDiskAttributeRequest, runtime: $dara.RuntimeOptions): Promise<ModifyDiskAttributeResponse>;
|
|
86578
87748
|
/**
|
|
86579
|
-
* Modifies the attributes of block storage devices,
|
|
87749
|
+
* Modifies the attributes of one or more block storage devices, such as the names and descriptions of the devices and whether to release the devices together with the associated Elastic Compute Service (ECS) instances.
|
|
86580
87750
|
*
|
|
86581
87751
|
* @remarks
|
|
86582
|
-
*
|
|
86583
|
-
* * When you call this operation to modify the attributes of a disk, if you set DeleteWithInstance to false and the instance to which the disk is attached is locked for security reasons, the DeleteWithInstance settings of the disk are ignored and the disk is released together with the instance. If `"LockReason" : "security"` is displayed in the response when you query the information about an instance, the instance is locked for security reasons.
|
|
86584
|
-
* * You can use `DiskIds.N` to specify multiple block storage devices and batch modify the attributes of the devices, including the names and descriptions of the devices and whether to release the devices together with the associated instances.
|
|
87752
|
+
* You can use `DiskId` to specify a block storage device and modify the attributes of the device, such as the name and description of the device and whether to release the device together with the associated instance. You can use `DiskIds.N` to specify multiple block storage devices and batch modify the attributes of the devices.
|
|
86585
87753
|
*
|
|
86586
87754
|
* @param request - ModifyDiskAttributeRequest
|
|
86587
87755
|
* @returns ModifyDiskAttributeResponse
|
|
@@ -86765,6 +87933,21 @@ export default class Client extends OpenApi {
|
|
|
86765
87933
|
* @returns ModifyElasticityAssuranceResponse
|
|
86766
87934
|
*/
|
|
86767
87935
|
modifyElasticityAssurance(request: ModifyElasticityAssuranceRequest): Promise<ModifyElasticityAssuranceResponse>;
|
|
87936
|
+
/**
|
|
87937
|
+
* Modifies the auto-renewal attribute of elasticity assurances.
|
|
87938
|
+
*
|
|
87939
|
+
* @param request - ModifyElasticityAssuranceAutoRenewAttributeRequest
|
|
87940
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
87941
|
+
* @returns ModifyElasticityAssuranceAutoRenewAttributeResponse
|
|
87942
|
+
*/
|
|
87943
|
+
modifyElasticityAssuranceAutoRenewAttributeWithOptions(request: ModifyElasticityAssuranceAutoRenewAttributeRequest, runtime: $dara.RuntimeOptions): Promise<ModifyElasticityAssuranceAutoRenewAttributeResponse>;
|
|
87944
|
+
/**
|
|
87945
|
+
* Modifies the auto-renewal attribute of elasticity assurances.
|
|
87946
|
+
*
|
|
87947
|
+
* @param request - ModifyElasticityAssuranceAutoRenewAttributeRequest
|
|
87948
|
+
* @returns ModifyElasticityAssuranceAutoRenewAttributeResponse
|
|
87949
|
+
*/
|
|
87950
|
+
modifyElasticityAssuranceAutoRenewAttribute(request: ModifyElasticityAssuranceAutoRenewAttributeRequest): Promise<ModifyElasticityAssuranceAutoRenewAttributeResponse>;
|
|
86768
87951
|
/**
|
|
86769
87952
|
* @deprecated OpenAPI ModifyForwardEntry is deprecated
|
|
86770
87953
|
*
|
|
@@ -86845,21 +88028,21 @@ export default class Client extends OpenApi {
|
|
|
86845
88028
|
*/
|
|
86846
88029
|
modifyImageShareGroupPermission(request: ModifyImageShareGroupPermissionRequest): Promise<ModifyImageShareGroupPermissionResponse>;
|
|
86847
88030
|
/**
|
|
86848
|
-
*
|
|
88031
|
+
* Modifies the share permissions on an image. You can share your custom images with other Alibaba Cloud accounts or publish the images as community images.
|
|
86849
88032
|
*
|
|
86850
88033
|
* @remarks
|
|
86851
|
-
*
|
|
86852
|
-
*
|
|
86853
|
-
* * You can share only your
|
|
86854
|
-
* * You can share a custom image to up to 10 Alibaba Cloud accounts at a time. You can specify up to 10 Alibaba Cloud account IDs by using AddAccount.N or RemoveAccount.N. If you specify more than 10 account IDs, the system processes only the
|
|
86855
|
-
* * You can share a custom image
|
|
88034
|
+
* Before you call this operation, read [Share custom images](https://help.aliyun.com/document_detail/25463.html).
|
|
88035
|
+
* When you call this operation, take note of the following sharing rules:
|
|
88036
|
+
* * You can share only your custom images that were created in your Alibaba Cloud to other accounts.
|
|
88037
|
+
* * You can share a custom image to up to 10 Alibaba Cloud accounts at a time. You can specify up to 10 Alibaba Cloud account IDs by using the AddAccount.N or RemoveAccount.N parameter. If you specify more than 10 account IDs, the system processes only the previous 10 account IDs. The excess account IDs are ignored.
|
|
88038
|
+
* * You can share a custom image with up to 50 Alibaba Cloud accounts.
|
|
86856
88039
|
* * If an Elastic Compute Service (ECS) instance was created ([RunInstances](https://help.aliyun.com/document_detail/63440.html)) from a shared image, you cannot re-initialize the instance ([ReInitDisk](https://help.aliyun.com/document_detail/25519.html)) after the image owner unshares or deletes the image ([DeleteImage](https://help.aliyun.com/document_detail/25537.html)).
|
|
86857
88040
|
* When you publish or unpublish a community image, take note of the following items:
|
|
86858
88041
|
* * Alibaba Cloud provides only the platform on which community images can be published and managed. The owner of a community image is responsible for the quality and updates of the image. Make sure that you acknowledge and agree to the Community Image Agreement. Otherwise, you cannot publish community images. For more information, see [Publish a community image](https://help.aliyun.com/document_detail/208370.html).
|
|
86859
88042
|
* * You cannot publish encrypted images as community images.
|
|
86860
88043
|
* * Community images are publicly available. A community image is available to all Alibaba Cloud accounts in the region where the image resides.
|
|
86861
88044
|
* * You cannot share, export, or copy community images.
|
|
86862
|
-
* * After you unpublish a community image, the image is no longer available to other Alibaba Cloud accounts. If an image is shared
|
|
88045
|
+
* * After you unpublish a community image, the image is no longer available to other Alibaba Cloud accounts. If an image is shared with other Alibaba Cloud accounts before it is unpublished, the image remains available to the accounts.
|
|
86863
88046
|
*
|
|
86864
88047
|
* @param request - ModifyImageSharePermissionRequest
|
|
86865
88048
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -86867,21 +88050,21 @@ export default class Client extends OpenApi {
|
|
|
86867
88050
|
*/
|
|
86868
88051
|
modifyImageSharePermissionWithOptions(request: ModifyImageSharePermissionRequest, runtime: $dara.RuntimeOptions): Promise<ModifyImageSharePermissionResponse>;
|
|
86869
88052
|
/**
|
|
86870
|
-
*
|
|
88053
|
+
* Modifies the share permissions on an image. You can share your custom images with other Alibaba Cloud accounts or publish the images as community images.
|
|
86871
88054
|
*
|
|
86872
88055
|
* @remarks
|
|
86873
|
-
*
|
|
86874
|
-
*
|
|
86875
|
-
* * You can share only your
|
|
86876
|
-
* * You can share a custom image to up to 10 Alibaba Cloud accounts at a time. You can specify up to 10 Alibaba Cloud account IDs by using AddAccount.N or RemoveAccount.N. If you specify more than 10 account IDs, the system processes only the
|
|
86877
|
-
* * You can share a custom image
|
|
88056
|
+
* Before you call this operation, read [Share custom images](https://help.aliyun.com/document_detail/25463.html).
|
|
88057
|
+
* When you call this operation, take note of the following sharing rules:
|
|
88058
|
+
* * You can share only your custom images that were created in your Alibaba Cloud to other accounts.
|
|
88059
|
+
* * You can share a custom image to up to 10 Alibaba Cloud accounts at a time. You can specify up to 10 Alibaba Cloud account IDs by using the AddAccount.N or RemoveAccount.N parameter. If you specify more than 10 account IDs, the system processes only the previous 10 account IDs. The excess account IDs are ignored.
|
|
88060
|
+
* * You can share a custom image with up to 50 Alibaba Cloud accounts.
|
|
86878
88061
|
* * If an Elastic Compute Service (ECS) instance was created ([RunInstances](https://help.aliyun.com/document_detail/63440.html)) from a shared image, you cannot re-initialize the instance ([ReInitDisk](https://help.aliyun.com/document_detail/25519.html)) after the image owner unshares or deletes the image ([DeleteImage](https://help.aliyun.com/document_detail/25537.html)).
|
|
86879
88062
|
* When you publish or unpublish a community image, take note of the following items:
|
|
86880
88063
|
* * Alibaba Cloud provides only the platform on which community images can be published and managed. The owner of a community image is responsible for the quality and updates of the image. Make sure that you acknowledge and agree to the Community Image Agreement. Otherwise, you cannot publish community images. For more information, see [Publish a community image](https://help.aliyun.com/document_detail/208370.html).
|
|
86881
88064
|
* * You cannot publish encrypted images as community images.
|
|
86882
88065
|
* * Community images are publicly available. A community image is available to all Alibaba Cloud accounts in the region where the image resides.
|
|
86883
88066
|
* * You cannot share, export, or copy community images.
|
|
86884
|
-
* * After you unpublish a community image, the image is no longer available to other Alibaba Cloud accounts. If an image is shared
|
|
88067
|
+
* * After you unpublish a community image, the image is no longer available to other Alibaba Cloud accounts. If an image is shared with other Alibaba Cloud accounts before it is unpublished, the image remains available to the accounts.
|
|
86885
88068
|
*
|
|
86886
88069
|
* @param request - ModifyImageSharePermissionRequest
|
|
86887
88070
|
* @returns ModifyImageSharePermissionResponse
|
|
@@ -86891,14 +88074,14 @@ export default class Client extends OpenApi {
|
|
|
86891
88074
|
* Changes the type of the private pool for an Elastic Compute Service (ECS) instance.
|
|
86892
88075
|
*
|
|
86893
88076
|
* @remarks
|
|
86894
|
-
* A private pool is generated after an elasticity assurance or a capacity reservation is created. The private pool is associated with information about the instances that
|
|
86895
|
-
* *
|
|
86896
|
-
* * When you call the following operations on an instance, the system attempts to match the instance with active private pools. If the instance is
|
|
86897
|
-
* * StartInstance:
|
|
86898
|
-
* * ReActivateInstances
|
|
86899
|
-
* * ModifyInstanceChargeType
|
|
86900
|
-
* * ModifyPrepayInstanceSpec
|
|
86901
|
-
* * ReplaceSystemDisk
|
|
88077
|
+
* A private pool is generated after an elasticity assurance or a capacity reservation is created. The private pool is associated with information about the instances that use the private pool. You can specify whether to use a private pool when you create an ECS instance to match the instance with the associated elasticity assurance or capacity reservation.
|
|
88078
|
+
* * After you call this operation to modify the private pool attributes of an ECS instance, you do not need to restart the instance for the changes to take effect.
|
|
88079
|
+
* * When you call the following operations on an ECS instance, the system attempts to match the instance with active private pools. If the instance is already matched to a specified private pool, the call to an operation may fail when the private pool capacity is used up or the private pool expires. If the call fails, call the ModifyInstanceAttachmentAttributes operation to change the type of the private pool to `Open`.
|
|
88080
|
+
* * [StartInstance](https://help.aliyun.com/document_detail/2679679.html): start an ECS instance that is stopped in economical mode.
|
|
88081
|
+
* * [ReActivateInstances](https://help.aliyun.com/document_detail/2679707.html): reactivates an ECS instance that has expired or is reclaimed due to an overdue payment.
|
|
88082
|
+
* * [ModifyInstanceChargeType](https://help.aliyun.com/document_detail/2679704.html): changes the billing method of an ECS instance.
|
|
88083
|
+
* * [ModifyPrepayInstanceSpec](https://help.aliyun.com/document_detail/2679706.html): changes the instance type of an ECS instance.
|
|
88084
|
+
* * [ReplaceSystemDisk](https://help.aliyun.com/document_detail/2679771.html): replaces the operating system of an ECS instance.
|
|
86902
88085
|
*
|
|
86903
88086
|
* @param request - ModifyInstanceAttachmentAttributesRequest
|
|
86904
88087
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -86909,14 +88092,14 @@ export default class Client extends OpenApi {
|
|
|
86909
88092
|
* Changes the type of the private pool for an Elastic Compute Service (ECS) instance.
|
|
86910
88093
|
*
|
|
86911
88094
|
* @remarks
|
|
86912
|
-
* A private pool is generated after an elasticity assurance or a capacity reservation is created. The private pool is associated with information about the instances that
|
|
86913
|
-
* *
|
|
86914
|
-
* * When you call the following operations on an instance, the system attempts to match the instance with active private pools. If the instance is
|
|
86915
|
-
* * StartInstance:
|
|
86916
|
-
* * ReActivateInstances
|
|
86917
|
-
* * ModifyInstanceChargeType
|
|
86918
|
-
* * ModifyPrepayInstanceSpec
|
|
86919
|
-
* * ReplaceSystemDisk
|
|
88095
|
+
* A private pool is generated after an elasticity assurance or a capacity reservation is created. The private pool is associated with information about the instances that use the private pool. You can specify whether to use a private pool when you create an ECS instance to match the instance with the associated elasticity assurance or capacity reservation.
|
|
88096
|
+
* * After you call this operation to modify the private pool attributes of an ECS instance, you do not need to restart the instance for the changes to take effect.
|
|
88097
|
+
* * When you call the following operations on an ECS instance, the system attempts to match the instance with active private pools. If the instance is already matched to a specified private pool, the call to an operation may fail when the private pool capacity is used up or the private pool expires. If the call fails, call the ModifyInstanceAttachmentAttributes operation to change the type of the private pool to `Open`.
|
|
88098
|
+
* * [StartInstance](https://help.aliyun.com/document_detail/2679679.html): start an ECS instance that is stopped in economical mode.
|
|
88099
|
+
* * [ReActivateInstances](https://help.aliyun.com/document_detail/2679707.html): reactivates an ECS instance that has expired or is reclaimed due to an overdue payment.
|
|
88100
|
+
* * [ModifyInstanceChargeType](https://help.aliyun.com/document_detail/2679704.html): changes the billing method of an ECS instance.
|
|
88101
|
+
* * [ModifyPrepayInstanceSpec](https://help.aliyun.com/document_detail/2679706.html): changes the instance type of an ECS instance.
|
|
88102
|
+
* * [ReplaceSystemDisk](https://help.aliyun.com/document_detail/2679771.html): replaces the operating system of an ECS instance.
|
|
86920
88103
|
*
|
|
86921
88104
|
* @param request - ModifyInstanceAttachmentAttributesRequest
|
|
86922
88105
|
* @returns ModifyInstanceAttachmentAttributesResponse
|
|
@@ -86962,9 +88145,11 @@ export default class Client extends OpenApi {
|
|
|
86962
88145
|
* Configures auto-renewal for subscription instances to help reduce the maintenance workloads on instance expiration.
|
|
86963
88146
|
*
|
|
86964
88147
|
* @remarks
|
|
86965
|
-
* Before you call this operation, make sure that you are familiar with the billing methods and pricing
|
|
88148
|
+
* *Before you call this operation, make sure that you are familiar with the billing methods and [pricing](https://www.alibabacloud.com/product/ecs#pricing) of Elastic Compute Service (ECS)**.
|
|
88149
|
+
* * Make sure that your account balance or credit balance is sufficient.
|
|
88150
|
+
* * Only subscription instances are supported. If you call this operation for a pay-as-you-go instance, an error is returned.
|
|
86966
88151
|
* * The payment for auto-renewal of an instance is automatically deducted at 08:00:00 (UTC+8) nine days before the instance expires.
|
|
86967
|
-
* * If the deduction fails, Alibaba Cloud attempts to deduct the payment every day until the payment is deducted or until the instance is locked
|
|
88152
|
+
* * If the deduction fails, Alibaba Cloud attempts to deduct the payment every day until the payment is deducted or until the instance is locked on expiration.
|
|
86968
88153
|
*
|
|
86969
88154
|
* @param request - ModifyInstanceAutoRenewAttributeRequest
|
|
86970
88155
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -86975,9 +88160,11 @@ export default class Client extends OpenApi {
|
|
|
86975
88160
|
* Configures auto-renewal for subscription instances to help reduce the maintenance workloads on instance expiration.
|
|
86976
88161
|
*
|
|
86977
88162
|
* @remarks
|
|
86978
|
-
* Before you call this operation, make sure that you are familiar with the billing methods and pricing
|
|
88163
|
+
* *Before you call this operation, make sure that you are familiar with the billing methods and [pricing](https://www.alibabacloud.com/product/ecs#pricing) of Elastic Compute Service (ECS)**.
|
|
88164
|
+
* * Make sure that your account balance or credit balance is sufficient.
|
|
88165
|
+
* * Only subscription instances are supported. If you call this operation for a pay-as-you-go instance, an error is returned.
|
|
86979
88166
|
* * The payment for auto-renewal of an instance is automatically deducted at 08:00:00 (UTC+8) nine days before the instance expires.
|
|
86980
|
-
* * If the deduction fails, Alibaba Cloud attempts to deduct the payment every day until the payment is deducted or until the instance is locked
|
|
88167
|
+
* * If the deduction fails, Alibaba Cloud attempts to deduct the payment every day until the payment is deducted or until the instance is locked on expiration.
|
|
86981
88168
|
*
|
|
86982
88169
|
* @param request - ModifyInstanceAutoRenewAttributeRequest
|
|
86983
88170
|
* @returns ModifyInstanceAutoRenewAttributeResponse
|
|
@@ -87025,7 +88212,7 @@ export default class Client extends OpenApi {
|
|
|
87025
88212
|
*/
|
|
87026
88213
|
modifyInstanceChargeType(request: ModifyInstanceChargeTypeRequest): Promise<ModifyInstanceChargeTypeResponse>;
|
|
87027
88214
|
/**
|
|
87028
|
-
* Changes the deployment set of an Elastic Compute Service (ECS) instance or migrates an ECS instance to a dedicated host. You can change the instance type of an instance when you migrate the instance.
|
|
88215
|
+
* Changes the deployment set of an Elastic Compute Service (ECS) instance or migrates an ECS instance to a dedicated host. You can change the instance type of an ECS instance when you migrate the instance.
|
|
87029
88216
|
*
|
|
87030
88217
|
* @remarks
|
|
87031
88218
|
* Take note of the following items:
|
|
@@ -87042,7 +88229,7 @@ export default class Client extends OpenApi {
|
|
|
87042
88229
|
*/
|
|
87043
88230
|
modifyInstanceDeploymentWithOptions(request: ModifyInstanceDeploymentRequest, runtime: $dara.RuntimeOptions): Promise<ModifyInstanceDeploymentResponse>;
|
|
87044
88231
|
/**
|
|
87045
|
-
* Changes the deployment set of an Elastic Compute Service (ECS) instance or migrates an ECS instance to a dedicated host. You can change the instance type of an instance when you migrate the instance.
|
|
88232
|
+
* Changes the deployment set of an Elastic Compute Service (ECS) instance or migrates an ECS instance to a dedicated host. You can change the instance type of an ECS instance when you migrate the instance.
|
|
87046
88233
|
*
|
|
87047
88234
|
* @remarks
|
|
87048
88235
|
* Take note of the following items:
|
|
@@ -87758,7 +88945,7 @@ export default class Client extends OpenApi {
|
|
|
87758
88945
|
* * You can archive only standard snapshots that have been retained for at least 14 days.
|
|
87759
88946
|
* * You cannot archive encrypted snapshots.
|
|
87760
88947
|
* * You cannot archive snapshots that are shared to you, snapshots managed by Cloud Backup, or snapshots in cloud boxes.
|
|
87761
|
-
* * The
|
|
88948
|
+
* * The archive snapshot feature is available only in the China (Hohhot), Malaysia (Kuala Lumpur), South Korea (Seoul), Philippines (Manila), Thailand (Bangkok), and Mexico regions. The availability of the feature in other regions is subject to notice.
|
|
87762
88949
|
*
|
|
87763
88950
|
* @param request - ModifySnapshotCategoryRequest
|
|
87764
88951
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -87773,7 +88960,7 @@ export default class Client extends OpenApi {
|
|
|
87773
88960
|
* * You can archive only standard snapshots that have been retained for at least 14 days.
|
|
87774
88961
|
* * You cannot archive encrypted snapshots.
|
|
87775
88962
|
* * You cannot archive snapshots that are shared to you, snapshots managed by Cloud Backup, or snapshots in cloud boxes.
|
|
87776
|
-
* * The
|
|
88963
|
+
* * The archive snapshot feature is available only in the China (Hohhot), Malaysia (Kuala Lumpur), South Korea (Seoul), Philippines (Manila), Thailand (Bangkok), and Mexico regions. The availability of the feature in other regions is subject to notice.
|
|
87777
88964
|
*
|
|
87778
88965
|
* @param request - ModifySnapshotCategoryRequest
|
|
87779
88966
|
* @returns ModifySnapshotCategoryResponse
|
|
@@ -87825,6 +89012,8 @@ export default class Client extends OpenApi {
|
|
|
87825
89012
|
*/
|
|
87826
89013
|
modifyStorageSetAttribute(request: ModifyStorageSetAttributeRequest): Promise<ModifyStorageSetAttributeResponse>;
|
|
87827
89014
|
/**
|
|
89015
|
+
* 设置用户级别默认属性
|
|
89016
|
+
*
|
|
87828
89017
|
* @deprecated OpenAPI ModifyUserBusinessBehavior is deprecated
|
|
87829
89018
|
*
|
|
87830
89019
|
* @param request - ModifyUserBusinessBehaviorRequest
|
|
@@ -87833,6 +89022,8 @@ export default class Client extends OpenApi {
|
|
|
87833
89022
|
*/
|
|
87834
89023
|
modifyUserBusinessBehaviorWithOptions(request: ModifyUserBusinessBehaviorRequest, runtime: $dara.RuntimeOptions): Promise<ModifyUserBusinessBehaviorResponse>;
|
|
87835
89024
|
/**
|
|
89025
|
+
* 设置用户级别默认属性
|
|
89026
|
+
*
|
|
87836
89027
|
* @deprecated OpenAPI ModifyUserBusinessBehavior is deprecated
|
|
87837
89028
|
*
|
|
87838
89029
|
* @param request - ModifyUserBusinessBehaviorRequest
|
|
@@ -88120,7 +89311,7 @@ export default class Client extends OpenApi {
|
|
|
88120
89311
|
*/
|
|
88121
89312
|
recoverVirtualBorderRouter(request: RecoverVirtualBorderRouterRequest): Promise<RecoverVirtualBorderRouterResponse>;
|
|
88122
89313
|
/**
|
|
88123
|
-
* Migrates Elastic Compute Service (ECS) instances
|
|
89314
|
+
* Migrates Elastic Compute Service (ECS) instances from a failed dedicated host.
|
|
88124
89315
|
*
|
|
88125
89316
|
* @remarks
|
|
88126
89317
|
* If a dedicated host is in the UnderAssessment state, we recommend that you call this operation to migrate ECS instances away from the dedicated host to prevent permanent failures. You can call the [DescribeDedicatedHosts](https://help.aliyun.com/document_detail/134242.html) operation to query the status of a dedicated host.
|
|
@@ -88131,7 +89322,7 @@ export default class Client extends OpenApi {
|
|
|
88131
89322
|
*/
|
|
88132
89323
|
redeployDedicatedHostWithOptions(request: RedeployDedicatedHostRequest, runtime: $dara.RuntimeOptions): Promise<RedeployDedicatedHostResponse>;
|
|
88133
89324
|
/**
|
|
88134
|
-
* Migrates Elastic Compute Service (ECS) instances
|
|
89325
|
+
* Migrates Elastic Compute Service (ECS) instances from a failed dedicated host.
|
|
88135
89326
|
*
|
|
88136
89327
|
* @remarks
|
|
88137
89328
|
* If a dedicated host is in the UnderAssessment state, we recommend that you call this operation to migrate ECS instances away from the dedicated host to prevent permanent failures. You can call the [DescribeDedicatedHosts](https://help.aliyun.com/document_detail/134242.html) operation to query the status of a dedicated host.
|
|
@@ -88141,7 +89332,7 @@ export default class Client extends OpenApi {
|
|
|
88141
89332
|
*/
|
|
88142
89333
|
redeployDedicatedHost(request: RedeployDedicatedHostRequest): Promise<RedeployDedicatedHostResponse>;
|
|
88143
89334
|
/**
|
|
88144
|
-
* Redeploys an instance when the instance receives a system event notification.
|
|
89335
|
+
* Redeploys an Elastic Compute Service (ECS) instance. You can call this operation to redeploy an ECS instance when the instance receives a system event notification.
|
|
88145
89336
|
*
|
|
88146
89337
|
* @remarks
|
|
88147
89338
|
* RedeployInstance is an asynchronous operation. This operation migrates data before it restarts the instance. After the instance is redeployed, the instance enters the `Running` state. If the instance fails to be redeployed, the instance returns to the original physical server and the state before redeployment.
|
|
@@ -88172,7 +89363,7 @@ export default class Client extends OpenApi {
|
|
|
88172
89363
|
*/
|
|
88173
89364
|
redeployInstanceWithOptions(request: RedeployInstanceRequest, runtime: $dara.RuntimeOptions): Promise<RedeployInstanceResponse>;
|
|
88174
89365
|
/**
|
|
88175
|
-
* Redeploys an instance when the instance receives a system event notification.
|
|
89366
|
+
* Redeploys an Elastic Compute Service (ECS) instance. You can call this operation to redeploy an ECS instance when the instance receives a system event notification.
|
|
88176
89367
|
*
|
|
88177
89368
|
* @remarks
|
|
88178
89369
|
* RedeployInstance is an asynchronous operation. This operation migrates data before it restarts the instance. After the instance is redeployed, the instance enters the `Running` state. If the instance fails to be redeployed, the instance returns to the original physical server and the state before redeployment.
|
|
@@ -88337,7 +89528,7 @@ export default class Client extends OpenApi {
|
|
|
88337
89528
|
*/
|
|
88338
89529
|
renewDedicatedHosts(request: RenewDedicatedHostsRequest): Promise<RenewDedicatedHostsResponse>;
|
|
88339
89530
|
/**
|
|
88340
|
-
* Renews
|
|
89531
|
+
* Renews elasticity assurances that you purchased.
|
|
88341
89532
|
*
|
|
88342
89533
|
* @param request - RenewElasticityAssurancesRequest
|
|
88343
89534
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -88345,7 +89536,7 @@ export default class Client extends OpenApi {
|
|
|
88345
89536
|
*/
|
|
88346
89537
|
renewElasticityAssurancesWithOptions(request: RenewElasticityAssurancesRequest, runtime: $dara.RuntimeOptions): Promise<RenewElasticityAssurancesResponse>;
|
|
88347
89538
|
/**
|
|
88348
|
-
* Renews
|
|
89539
|
+
* Renews elasticity assurances that you purchased.
|
|
88349
89540
|
*
|
|
88350
89541
|
* @param request - RenewElasticityAssurancesRequest
|
|
88351
89542
|
* @returns RenewElasticityAssurancesResponse
|
|
@@ -88544,15 +89735,15 @@ export default class Client extends OpenApi {
|
|
|
88544
89735
|
* Resizes a system disk or a data disk.
|
|
88545
89736
|
*
|
|
88546
89737
|
* @remarks
|
|
88547
|
-
* > Before you call this operation to resize a disk, you must check the partition format of the disk. You cannot resize a master boot record (MBR) disk to a size that is larger than 2 TiB. If you resize an MBR disk to a size that is larger than 2 TiB, data may be lost. If you want to resize an MBR disk to a size that is larger than 2 TiB, we recommend that you perform the following steps: Create a new data disk that is larger than 2 TiB in size, partition and format the new data disk by using the GUID Partition Table (GPT) format, and then copy data from the MBR disk to the GPT data disk. For more information, see [Step 1: Resize a disk to extend the capacity
|
|
89738
|
+
* > Before you call this operation to resize a disk, you must check the partition format of the disk. You cannot resize a master boot record (MBR) disk to a size that is larger than 2 TiB. If you resize an MBR disk to a size that is larger than 2 TiB, data may be lost. If you want to resize an MBR disk to a size that is larger than 2 TiB, we recommend that you perform the following steps: Create a new data disk that is larger than 2 TiB in size, partition and format the new data disk by using the GUID Partition Table (GPT) format, and then copy data from the MBR disk to the GPT data disk. For more information, see [Step 1: Resize a disk to extend the disk capacity](https://help.aliyun.com/document_detail/44986.html).
|
|
88548
89739
|
* * You can resize disks of the following disk categories: basic disks (`cloud`), ultra disks (`cloud_efficiency`), standard SSDs (`cloud_ssd`), Enterprise SSDs (ESSDs) (`cloud_essd`), ESSD AutoPL disks (cloud_auto), standard elastic ephemeral disks (elastic_ephemeral_disk_standard), and premium elastic ephemeral disks (elastic_ephemeral_disk_premium).
|
|
88549
|
-
* * You cannot resize a disk
|
|
88550
|
-
* * You cannot call this operation to resize partitions or file systems on a disk. You must manually resize the partitions and file systems after the disk is resized. For more information, see [Step 2: Resize partitions and file systems](https://help.aliyun.com/document_detail/470068.html).
|
|
88551
|
-
* * If the multi-attach feature is enabled for a disk, you can resize the disk online or offline. Make sure that the Elastic Compute Service (ECS) instances to which the disk is attached meet the following requirements:
|
|
89740
|
+
* * You cannot resize a cloud disk when a snapshot is being created for the disk. Wait until the snapshot is created before you resize the cloud disk.
|
|
89741
|
+
* * You cannot call this operation to resize partitions or file systems on a cloud disk. You must manually resize the partitions and file systems after the disk is resized. For more information, see [Step 2: Resize partitions and file systems](https://help.aliyun.com/document_detail/470068.html).
|
|
89742
|
+
* * If the multi-attach feature is enabled for a cloud disk, you can resize the disk online or offline. Make sure that the Elastic Compute Service (ECS) instances to which the disk is attached meet the following requirements:
|
|
88552
89743
|
* * If you want to resize the disk online, the ECS instances must be in the **Running** (`Running`) state.
|
|
88553
89744
|
* * If you want to resize the disk offline, the ECS instances must be in the **Running** (`Running`) or **Stopped** (`Stopped`) state.
|
|
88554
|
-
* * The disk that you want to resize must meet the following requirements:
|
|
88555
|
-
* * The disk is in the
|
|
89745
|
+
* * The cloud disk that you want to resize must meet the following requirements:
|
|
89746
|
+
* * The disk is in the In Use (`In_use`) or Unattached (`Available`) state.
|
|
88556
89747
|
* * (Recommended) Snapshots are created for the disk to back up disk data. For information about how to create snapshots for a disk, see [Create a snapshot](https://help.aliyun.com/document_detail/25455.html).
|
|
88557
89748
|
* * If the disk is a new data disk, initialize the disk before you resize the disk. For more information, see [Overview](https://help.aliyun.com/document_detail/466323.html).
|
|
88558
89749
|
*
|
|
@@ -88565,15 +89756,15 @@ export default class Client extends OpenApi {
|
|
|
88565
89756
|
* Resizes a system disk or a data disk.
|
|
88566
89757
|
*
|
|
88567
89758
|
* @remarks
|
|
88568
|
-
* > Before you call this operation to resize a disk, you must check the partition format of the disk. You cannot resize a master boot record (MBR) disk to a size that is larger than 2 TiB. If you resize an MBR disk to a size that is larger than 2 TiB, data may be lost. If you want to resize an MBR disk to a size that is larger than 2 TiB, we recommend that you perform the following steps: Create a new data disk that is larger than 2 TiB in size, partition and format the new data disk by using the GUID Partition Table (GPT) format, and then copy data from the MBR disk to the GPT data disk. For more information, see [Step 1: Resize a disk to extend the capacity
|
|
89759
|
+
* > Before you call this operation to resize a disk, you must check the partition format of the disk. You cannot resize a master boot record (MBR) disk to a size that is larger than 2 TiB. If you resize an MBR disk to a size that is larger than 2 TiB, data may be lost. If you want to resize an MBR disk to a size that is larger than 2 TiB, we recommend that you perform the following steps: Create a new data disk that is larger than 2 TiB in size, partition and format the new data disk by using the GUID Partition Table (GPT) format, and then copy data from the MBR disk to the GPT data disk. For more information, see [Step 1: Resize a disk to extend the disk capacity](https://help.aliyun.com/document_detail/44986.html).
|
|
88569
89760
|
* * You can resize disks of the following disk categories: basic disks (`cloud`), ultra disks (`cloud_efficiency`), standard SSDs (`cloud_ssd`), Enterprise SSDs (ESSDs) (`cloud_essd`), ESSD AutoPL disks (cloud_auto), standard elastic ephemeral disks (elastic_ephemeral_disk_standard), and premium elastic ephemeral disks (elastic_ephemeral_disk_premium).
|
|
88570
|
-
* * You cannot resize a disk
|
|
88571
|
-
* * You cannot call this operation to resize partitions or file systems on a disk. You must manually resize the partitions and file systems after the disk is resized. For more information, see [Step 2: Resize partitions and file systems](https://help.aliyun.com/document_detail/470068.html).
|
|
88572
|
-
* * If the multi-attach feature is enabled for a disk, you can resize the disk online or offline. Make sure that the Elastic Compute Service (ECS) instances to which the disk is attached meet the following requirements:
|
|
89761
|
+
* * You cannot resize a cloud disk when a snapshot is being created for the disk. Wait until the snapshot is created before you resize the cloud disk.
|
|
89762
|
+
* * You cannot call this operation to resize partitions or file systems on a cloud disk. You must manually resize the partitions and file systems after the disk is resized. For more information, see [Step 2: Resize partitions and file systems](https://help.aliyun.com/document_detail/470068.html).
|
|
89763
|
+
* * If the multi-attach feature is enabled for a cloud disk, you can resize the disk online or offline. Make sure that the Elastic Compute Service (ECS) instances to which the disk is attached meet the following requirements:
|
|
88573
89764
|
* * If you want to resize the disk online, the ECS instances must be in the **Running** (`Running`) state.
|
|
88574
89765
|
* * If you want to resize the disk offline, the ECS instances must be in the **Running** (`Running`) or **Stopped** (`Stopped`) state.
|
|
88575
|
-
* * The disk that you want to resize must meet the following requirements:
|
|
88576
|
-
* * The disk is in the
|
|
89766
|
+
* * The cloud disk that you want to resize must meet the following requirements:
|
|
89767
|
+
* * The disk is in the In Use (`In_use`) or Unattached (`Available`) state.
|
|
88577
89768
|
* * (Recommended) Snapshots are created for the disk to back up disk data. For information about how to create snapshots for a disk, see [Create a snapshot](https://help.aliyun.com/document_detail/25455.html).
|
|
88578
89769
|
* * If the disk is a new data disk, initialize the disk before you resize the disk. For more information, see [Overview](https://help.aliyun.com/document_detail/466323.html).
|
|
88579
89770
|
*
|
|
@@ -88808,26 +89999,28 @@ export default class Client extends OpenApi {
|
|
|
88808
89999
|
*/
|
|
88809
90000
|
revokeSecurityGroupEgress(request: RevokeSecurityGroupEgressRequest): Promise<RevokeSecurityGroupEgressResponse>;
|
|
88810
90001
|
/**
|
|
88811
|
-
*
|
|
90002
|
+
* Creates and runs a Cloud Assistant command on one or more Elastic Compute Service (ECS) instances. Shell, PowerShell, and batch commands are supported. You can run the command based on a schedule, include custom parameters in the command, or run the command in containers on instances.
|
|
88812
90003
|
*
|
|
88813
90004
|
* @remarks
|
|
88814
|
-
*
|
|
88815
|
-
*
|
|
88816
|
-
*
|
|
88817
|
-
* *
|
|
88818
|
-
*
|
|
90005
|
+
* This operation is an asynchronous operation. After a request is sent, a response that contains a command ID and a command task ID is immediately returned. You can call the [DescribeInvocations](https://help.aliyun.com/document_detail/2679916.html) or [DescribeInvocationResults](https://help.aliyun.com/document_detail/2679916.html) operation with the command ID or task ID to query the execution results of the command.
|
|
90006
|
+
* ### [](#)Precautions
|
|
90007
|
+
* * The instances on which you want to create and run a Cloud Assistant command must be in the Running (`Running`) state. You can call the [DescribeInstances](https://help.aliyun.com/document_detail/25506.html) operation to query the status of instances.
|
|
90008
|
+
* * [Cloud Assistant Agent](https://help.aliyun.com/document_detail/64921.html) must be pre-installed on the instances on which you want to create and run a Cloud Assistant command. You can call the [InstallCloudAssistant](https://help.aliyun.com/document_detail/2679925.html) operation to install Cloud Assistant Agent on instances and the [DescribeCloudAssistantStatus](https://help.aliyun.com/document_detail/2679924.html) operation to query whether Cloud Assistant Agent is installed on instances.
|
|
90009
|
+
* **
|
|
90010
|
+
* **Note** By default, Cloud Assistant Agent is pre-installed on instances created from public images on or after December 1, 2017.
|
|
88819
90011
|
* * Before you run a PowerShell command on a Windows instance, make sure that the PowerShell module is installed on the instance.
|
|
90012
|
+
* ### [](#)Considerations
|
|
90013
|
+
* * You can retain up to 500 to 50,000 Cloud Assistant commands in each region. You can also request a quota increase. For information about how to view quotas and request a quota increase, see [Manage quotas](https://help.aliyun.com/document_detail/184116.html).
|
|
90014
|
+
* * To ensure that scheduled tasks can run as expected, make sure that the Cloud Assistant Agent version is not earlier than the following versions. A scheduled task can run a command at a specific interval, only once at a specific time, or at designated times based on a cron expression in a specific year or time zone. If the `ClientNeedUpgrade` error code is returned, you must update Cloud Assistant Agent to the latest version. For more information, see [Upgrade or disable upgrades of Cloud Assistant Agent](https://help.aliyun.com/document_detail/134383.html).
|
|
90015
|
+
* - Linux: 2.2.3.282
|
|
90016
|
+
* - Windows: 2.1.3.282
|
|
88820
90017
|
* * When you use a cron expression to specify a schedule, you can specify a time zone based on your business requirements. If you do not specify a time zone, the schedule is determined by the system time of the instances. Make sure that the time or time zone of the instances meets your business requirements. For information about time zones, see [Configure the NTP service for ECS instances that run CentOS 6](https://help.aliyun.com/document_detail/92803.html) or [Configure the NTP service for Windows instances](https://help.aliyun.com/document_detail/51890.html).
|
|
88821
|
-
*
|
|
88822
|
-
*
|
|
88823
|
-
* *
|
|
88824
|
-
*
|
|
88825
|
-
*
|
|
88826
|
-
*
|
|
88827
|
-
* * Command executions may fail due to instance status exceptions, network exceptions, or exceptions on Cloud Assistant Agent. If a command execution fails, no execution information is generated. For more information, see the [Command errors and solutions](https://help.aliyun.com/document_detail/87029.html) section in the "Check execution results and troubleshoot common issues" topic.
|
|
88828
|
-
* * If you set `EnableParameter` to true, the custom parameter feature is enabled. When you configure `CommandContent`, you can define custom parameters in the `{{parameter}}` format. Then, when the command is run, the key-value pairs of the custom parameters are passed in.
|
|
88829
|
-
* * You can retain up to 500 to 50,000 Cloud Assistant commands in each region. You can also apply for a quota increase. For information about how to query and increase quotas, see [Manage quotas](https://help.aliyun.com/document_detail/184116.html).
|
|
88830
|
-
* * Before you run a command on instances, especially new instances, we recommend that you call the [DescribeCloudAssistantStatus](https://help.aliyun.com/document_detail/87346.html) operation to query the status of Cloud Assistant Agent on the instances and run the command when the value of CloudAssistantStatus in the response is true for the instances.
|
|
90018
|
+
* ### [](#)Suggestions
|
|
90019
|
+
* * **Timeout settings**: You can set `Timeout` to specify the timeout period for command executions on instances. If an execution times out, Cloud Assistant Agent forcefully terminates the command process.
|
|
90020
|
+
* * When the one-time execution of the command times out, the execution status ([InvokeRecordStatus](https://help.aliyun.com/document_detail/64845.html)) of the command becomes Failed.
|
|
90021
|
+
* * For a scheduled task, the timeout period takes effect on every execution of the command. When a command execution times out, the subsequent executions of the command are not affected. When a scheduled execution of the command times out, the execution status ([InvokeRecordStatus](https://help.aliyun.com/document_detail/64845.html)) of the command becomes Failed.
|
|
90022
|
+
* * **Execution failure**: Command executions may fail due to instance status exceptions, network exceptions, or exceptions on Cloud Assistant Agent. If a command execution fails, no execution information is generated. For more information, see [Check execution results and troubleshoot common issues](https://help.aliyun.com/document_detail/87029.html).
|
|
90023
|
+
* * **Custom parameters**: If you set `EnableParameter` to true, the custom parameter feature is enabled. When you specify `CommandContent`, you can define custom parameters in the `{{parameter}}` format. Then, the key-value pairs of the custom parameters are passed in when you run the command.
|
|
88831
90024
|
*
|
|
88832
90025
|
* @param tmpReq - RunCommandRequest
|
|
88833
90026
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -88835,26 +90028,28 @@ export default class Client extends OpenApi {
|
|
|
88835
90028
|
*/
|
|
88836
90029
|
runCommandWithOptions(tmpReq: RunCommandRequest, runtime: $dara.RuntimeOptions): Promise<RunCommandResponse>;
|
|
88837
90030
|
/**
|
|
88838
|
-
*
|
|
90031
|
+
* Creates and runs a Cloud Assistant command on one or more Elastic Compute Service (ECS) instances. Shell, PowerShell, and batch commands are supported. You can run the command based on a schedule, include custom parameters in the command, or run the command in containers on instances.
|
|
88839
90032
|
*
|
|
88840
90033
|
* @remarks
|
|
88841
|
-
*
|
|
88842
|
-
*
|
|
88843
|
-
*
|
|
88844
|
-
* *
|
|
88845
|
-
*
|
|
90034
|
+
* This operation is an asynchronous operation. After a request is sent, a response that contains a command ID and a command task ID is immediately returned. You can call the [DescribeInvocations](https://help.aliyun.com/document_detail/2679916.html) or [DescribeInvocationResults](https://help.aliyun.com/document_detail/2679916.html) operation with the command ID or task ID to query the execution results of the command.
|
|
90035
|
+
* ### [](#)Precautions
|
|
90036
|
+
* * The instances on which you want to create and run a Cloud Assistant command must be in the Running (`Running`) state. You can call the [DescribeInstances](https://help.aliyun.com/document_detail/25506.html) operation to query the status of instances.
|
|
90037
|
+
* * [Cloud Assistant Agent](https://help.aliyun.com/document_detail/64921.html) must be pre-installed on the instances on which you want to create and run a Cloud Assistant command. You can call the [InstallCloudAssistant](https://help.aliyun.com/document_detail/2679925.html) operation to install Cloud Assistant Agent on instances and the [DescribeCloudAssistantStatus](https://help.aliyun.com/document_detail/2679924.html) operation to query whether Cloud Assistant Agent is installed on instances.
|
|
90038
|
+
* **
|
|
90039
|
+
* **Note** By default, Cloud Assistant Agent is pre-installed on instances created from public images on or after December 1, 2017.
|
|
88846
90040
|
* * Before you run a PowerShell command on a Windows instance, make sure that the PowerShell module is installed on the instance.
|
|
90041
|
+
* ### [](#)Considerations
|
|
90042
|
+
* * You can retain up to 500 to 50,000 Cloud Assistant commands in each region. You can also request a quota increase. For information about how to view quotas and request a quota increase, see [Manage quotas](https://help.aliyun.com/document_detail/184116.html).
|
|
90043
|
+
* * To ensure that scheduled tasks can run as expected, make sure that the Cloud Assistant Agent version is not earlier than the following versions. A scheduled task can run a command at a specific interval, only once at a specific time, or at designated times based on a cron expression in a specific year or time zone. If the `ClientNeedUpgrade` error code is returned, you must update Cloud Assistant Agent to the latest version. For more information, see [Upgrade or disable upgrades of Cloud Assistant Agent](https://help.aliyun.com/document_detail/134383.html).
|
|
90044
|
+
* - Linux: 2.2.3.282
|
|
90045
|
+
* - Windows: 2.1.3.282
|
|
88847
90046
|
* * When you use a cron expression to specify a schedule, you can specify a time zone based on your business requirements. If you do not specify a time zone, the schedule is determined by the system time of the instances. Make sure that the time or time zone of the instances meets your business requirements. For information about time zones, see [Configure the NTP service for ECS instances that run CentOS 6](https://help.aliyun.com/document_detail/92803.html) or [Configure the NTP service for Windows instances](https://help.aliyun.com/document_detail/51890.html).
|
|
88848
|
-
*
|
|
88849
|
-
*
|
|
88850
|
-
* *
|
|
88851
|
-
*
|
|
88852
|
-
*
|
|
88853
|
-
*
|
|
88854
|
-
* * Command executions may fail due to instance status exceptions, network exceptions, or exceptions on Cloud Assistant Agent. If a command execution fails, no execution information is generated. For more information, see the [Command errors and solutions](https://help.aliyun.com/document_detail/87029.html) section in the "Check execution results and troubleshoot common issues" topic.
|
|
88855
|
-
* * If you set `EnableParameter` to true, the custom parameter feature is enabled. When you configure `CommandContent`, you can define custom parameters in the `{{parameter}}` format. Then, when the command is run, the key-value pairs of the custom parameters are passed in.
|
|
88856
|
-
* * You can retain up to 500 to 50,000 Cloud Assistant commands in each region. You can also apply for a quota increase. For information about how to query and increase quotas, see [Manage quotas](https://help.aliyun.com/document_detail/184116.html).
|
|
88857
|
-
* * Before you run a command on instances, especially new instances, we recommend that you call the [DescribeCloudAssistantStatus](https://help.aliyun.com/document_detail/87346.html) operation to query the status of Cloud Assistant Agent on the instances and run the command when the value of CloudAssistantStatus in the response is true for the instances.
|
|
90047
|
+
* ### [](#)Suggestions
|
|
90048
|
+
* * **Timeout settings**: You can set `Timeout` to specify the timeout period for command executions on instances. If an execution times out, Cloud Assistant Agent forcefully terminates the command process.
|
|
90049
|
+
* * When the one-time execution of the command times out, the execution status ([InvokeRecordStatus](https://help.aliyun.com/document_detail/64845.html)) of the command becomes Failed.
|
|
90050
|
+
* * For a scheduled task, the timeout period takes effect on every execution of the command. When a command execution times out, the subsequent executions of the command are not affected. When a scheduled execution of the command times out, the execution status ([InvokeRecordStatus](https://help.aliyun.com/document_detail/64845.html)) of the command becomes Failed.
|
|
90051
|
+
* * **Execution failure**: Command executions may fail due to instance status exceptions, network exceptions, or exceptions on Cloud Assistant Agent. If a command execution fails, no execution information is generated. For more information, see [Check execution results and troubleshoot common issues](https://help.aliyun.com/document_detail/87029.html).
|
|
90052
|
+
* * **Custom parameters**: If you set `EnableParameter` to true, the custom parameter feature is enabled. When you specify `CommandContent`, you can define custom parameters in the `{{parameter}}` format. Then, the key-value pairs of the custom parameters are passed in when you run the command.
|
|
88858
90053
|
*
|
|
88859
90054
|
* @param request - RunCommandRequest
|
|
88860
90055
|
* @returns RunCommandResponse
|