tencentcloud-sdk-nodejs-as 4.0.265 → 4.0.269

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.
@@ -104,6 +104,10 @@ export interface ModifyLaunchConfigurationAttributesRequest {
104
104
  * 增强服务。通过该参数可以指定是否开启云安全、云监控等服务。
105
105
  */
106
106
  EnhancedService?: EnhancedService;
107
+ /**
108
+ * CAM角色名称。可通过DescribeRoleList接口返回值中的roleName获取。
109
+ */
110
+ CamRoleName?: string;
107
111
  }
108
112
  /**
109
113
  * DisableAutoScalingGroup请求参数结构体
@@ -343,17 +347,123 @@ export interface DescribeAutoScalingGroupsRequest {
343
347
  Offset?: number;
344
348
  }
345
349
  /**
346
- * CreateAutoScalingGroup返回参数结构体
350
+ * 符合条件的启动配置信息的集合。
347
351
  */
348
- export interface CreateAutoScalingGroupResponse {
352
+ export interface LaunchConfiguration {
349
353
  /**
350
- * 伸缩组ID
354
+ * 实例所属项目ID
351
355
  */
352
- AutoScalingGroupId: string;
356
+ ProjectId: number;
353
357
  /**
354
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId
358
+ * 启动配置ID。
355
359
  */
356
- RequestId?: string;
360
+ LaunchConfigurationId: string;
361
+ /**
362
+ * 启动配置名称。
363
+ */
364
+ LaunchConfigurationName: string;
365
+ /**
366
+ * 实例机型。
367
+ */
368
+ InstanceType: string;
369
+ /**
370
+ * 实例系统盘配置信息。
371
+ */
372
+ SystemDisk: SystemDisk;
373
+ /**
374
+ * 实例数据盘配置信息。
375
+ */
376
+ DataDisks: Array<DataDisk>;
377
+ /**
378
+ * 实例登录设置。
379
+ */
380
+ LoginSettings: LimitedLoginSettings;
381
+ /**
382
+ * 公网带宽相关信息设置。
383
+ */
384
+ InternetAccessible: InternetAccessible;
385
+ /**
386
+ * 实例所属安全组。
387
+ */
388
+ SecurityGroupIds: Array<string>;
389
+ /**
390
+ * 启动配置关联的伸缩组。
391
+ */
392
+ AutoScalingGroupAbstractSet: Array<AutoScalingGroupAbstract>;
393
+ /**
394
+ * 自定义数据。
395
+ 注意:此字段可能返回 null,表示取不到有效值。
396
+ */
397
+ UserData: string;
398
+ /**
399
+ * 启动配置创建时间。
400
+ */
401
+ CreatedTime: string;
402
+ /**
403
+ * 实例的增强服务启用情况与其设置。
404
+ */
405
+ EnhancedService: EnhancedService;
406
+ /**
407
+ * 镜像ID。
408
+ */
409
+ ImageId: string;
410
+ /**
411
+ * 启动配置当前状态。取值范围:<br><li>NORMAL:正常<br><li>IMAGE_ABNORMAL:启动配置镜像异常<br><li>CBS_SNAP_ABNORMAL:启动配置数据盘快照异常<br><li>SECURITY_GROUP_ABNORMAL:启动配置安全组异常<br>
412
+ */
413
+ LaunchConfigurationStatus: string;
414
+ /**
415
+ * 实例计费类型,CVM默认值按照POSTPAID_BY_HOUR处理。
416
+ <br><li>POSTPAID_BY_HOUR:按小时后付费
417
+ <br><li>SPOTPAID:竞价付费
418
+ */
419
+ InstanceChargeType: string;
420
+ /**
421
+ * 实例的市场相关选项,如竞价实例相关参数,若指定实例的付费模式为竞价付费则该参数必传。
422
+ 注意:此字段可能返回 null,表示取不到有效值。
423
+ */
424
+ InstanceMarketOptions: InstanceMarketOptionsRequest;
425
+ /**
426
+ * 实例机型列表。
427
+ */
428
+ InstanceTypes: Array<string>;
429
+ /**
430
+ * 标签列表。
431
+ */
432
+ InstanceTags: Array<InstanceTag>;
433
+ /**
434
+ * 版本号。
435
+ */
436
+ VersionNumber: number;
437
+ /**
438
+ * 更新时间。
439
+ */
440
+ UpdatedTime: string;
441
+ /**
442
+ * CAM角色名称。可通过DescribeRoleList接口返回值中的roleName获取。
443
+ */
444
+ CamRoleName: string;
445
+ /**
446
+ * 上次操作时,InstanceTypesCheckPolicy 取值。
447
+ */
448
+ LastOperationInstanceTypesCheckPolicy: string;
449
+ /**
450
+ * 云服务器主机名(HostName)的相关设置。
451
+ */
452
+ HostNameSettings: HostNameSettings;
453
+ /**
454
+ * 云服务器实例名(InstanceName)的相关设置。
455
+ */
456
+ InstanceNameSettings: InstanceNameSettings;
457
+ /**
458
+ * 预付费模式,即包年包月相关参数设置。通过该参数可以指定包年包月实例的购买时长、是否设置自动续费等属性。若指定实例的付费模式为预付费则该参数必传。
459
+ */
460
+ InstanceChargePrepaid: InstanceChargePrepaid;
461
+ /**
462
+ * 云盘类型选择策略。取值范围:
463
+ <br><li>ORIGINAL:使用设置的云盘类型
464
+ <br><li>AUTOMATIC:自动选择当前可用区下可用的云盘类型
465
+ */
466
+ DiskTypePolicy: string;
357
467
  }
358
468
  /**
359
469
  * DescribeAccountLimits返回参数结构体
@@ -449,6 +559,43 @@ export interface DescribeAutoScalingGroupsResponse {
449
559
  */
450
560
  RequestId?: string;
451
561
  }
562
+ /**
563
+ * CreateScheduledAction请求参数结构体
564
+ */
565
+ export interface CreateScheduledActionRequest {
566
+ /**
567
+ * 伸缩组ID
568
+ */
569
+ AutoScalingGroupId: string;
570
+ /**
571
+ * 定时任务名称。名称仅支持中文、英文、数字、下划线、分隔符"-"、小数点,最大长度不能超60个字节。同一伸缩组下必须唯一。
572
+ */
573
+ ScheduledActionName: string;
574
+ /**
575
+ * 当定时任务触发时,设置的伸缩组最大实例数。
576
+ */
577
+ MaxSize: number;
578
+ /**
579
+ * 当定时任务触发时,设置的伸缩组最小实例数。
580
+ */
581
+ MinSize: number;
582
+ /**
583
+ * 当定时任务触发时,设置的伸缩组期望实例数。
584
+ */
585
+ DesiredCapacity: number;
586
+ /**
587
+ * 定时任务的首次触发时间,取值为`北京时间`(UTC+8),按照`ISO8601`标准,格式:`YYYY-MM-DDThh:mm:ss+08:00`。
588
+ */
589
+ StartTime: string;
590
+ /**
591
+ * 定时任务的结束时间,取值为`北京时间`(UTC+8),按照`ISO8601`标准,格式:`YYYY-MM-DDThh:mm:ss+08:00`。<br><br>此参数与`Recurrence`需要同时指定,到达结束时间之后,定时任务将不再生效。
592
+ */
593
+ EndTime?: string;
594
+ /**
595
+ * 定时任务的重复方式。为标准 Cron 格式<br><br>此参数与`EndTime`需要同时指定。
596
+ */
597
+ Recurrence?: string;
598
+ }
452
599
  /**
453
600
  * 启动配置的系统盘配置信息。若不指定该参数,则按照系统默认值进行分配。
454
601
  */
@@ -579,33 +726,17 @@ export interface ModifyScheduledActionResponse {
579
726
  RequestId?: string;
580
727
  }
581
728
  /**
582
- * CreateAutoScalingGroupFromInstance请求参数结构体
729
+ * AttachLoadBalancers返回参数结构体
583
730
  */
584
- export interface CreateAutoScalingGroupFromInstanceRequest {
585
- /**
586
- * 伸缩组名称,在您账号中必须唯一。名称仅支持中文、英文、数字、下划线、分隔符"-"、小数点,最大长度不能超55个字节。
587
- */
588
- AutoScalingGroupName: string;
731
+ export interface AttachLoadBalancersResponse {
589
732
  /**
590
- * 实例ID
591
- */
592
- InstanceId: string;
593
- /**
594
- * 最小实例数,取值范围为0-2000。
595
- */
596
- MinSize: number;
597
- /**
598
- * 最大实例数,取值范围为0-2000。
599
- */
600
- MaxSize: number;
601
- /**
602
- * 期望实例数,大小介于最小实例数和最大实例数之间。
733
+ * 伸缩活动ID
603
734
  */
604
- DesiredCapacity?: number;
735
+ ActivityId: string;
605
736
  /**
606
- * 是否继承实例标签,默认值为False
737
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
607
738
  */
608
- InheritInstanceTag?: boolean;
739
+ RequestId?: string;
609
740
  }
610
741
  /**
611
742
  * ExecuteScalingPolicy返回参数结构体
@@ -621,13 +752,13 @@ export interface ExecuteScalingPolicyResponse {
621
752
  RequestId?: string;
622
753
  }
623
754
  /**
624
- * ModifyLaunchConfigurationAttributes返回参数结构体
755
+ * DeleteAutoScalingGroup请求参数结构体
625
756
  */
626
- export interface ModifyLaunchConfigurationAttributesResponse {
757
+ export interface DeleteAutoScalingGroupRequest {
627
758
  /**
628
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
759
+ * 伸缩组ID
629
760
  */
630
- RequestId?: string;
761
+ AutoScalingGroupId: string;
631
762
  }
632
763
  /**
633
764
  * SetInstancesProtection返回参数结构体
@@ -755,6 +886,23 @@ export interface Tag {
755
886
  */
756
887
  ResourceType?: string;
757
888
  }
889
+ /**
890
+ * DetachLoadBalancers请求参数结构体
891
+ */
892
+ export interface DetachLoadBalancersRequest {
893
+ /**
894
+ * 伸缩组ID
895
+ */
896
+ AutoScalingGroupId: string;
897
+ /**
898
+ * 传统负载均衡器ID列表,目前长度上限为20,LoadBalancerIds 和 ForwardLoadBalancerIdentifications 二者同时最多只能指定一个
899
+ */
900
+ LoadBalancerIds?: Array<string>;
901
+ /**
902
+ * 应用型负载均衡器标识信息列表,目前长度上限为50,LoadBalancerIds 和 ForwardLoadBalancerIdentifications二者同时最多只能指定一个
903
+ */
904
+ ForwardLoadBalancerIdentifications?: Array<ForwardLoadBalancerIdentification>;
905
+ }
758
906
  /**
759
907
  * DescribeAutoScalingInstances请求参数结构体
760
908
  */
@@ -779,15 +927,6 @@ export interface DescribeAutoScalingInstancesRequest {
779
927
  */
780
928
  Limit?: number;
781
929
  }
782
- /**
783
- * 描述了实例登录相关配置与信息,出于安全性考虑,不会描述敏感信息。
784
- */
785
- export interface LimitedLoginSettings {
786
- /**
787
- * 密钥ID列表。
788
- */
789
- KeyIds: Array<string>;
790
- }
791
930
  /**
792
931
  * ModifyLoadBalancers请求参数结构体
793
932
  */
@@ -872,6 +1011,15 @@ export interface DetachInstancesResponse {
872
1011
  */
873
1012
  RequestId?: string;
874
1013
  }
1014
+ /**
1015
+ * ModifyLaunchConfigurationAttributes返回参数结构体
1016
+ */
1017
+ export interface ModifyLaunchConfigurationAttributesResponse {
1018
+ /**
1019
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1020
+ */
1021
+ RequestId?: string;
1022
+ }
875
1023
  /**
876
1024
  * CreateLaunchConfiguration请求参数结构体
877
1025
  */
@@ -1178,6 +1326,19 @@ export interface UpgradeLifecycleHookRequest {
1178
1326
  */
1179
1327
  LifecycleTransitionType?: string;
1180
1328
  }
1329
+ /**
1330
+ * DetachLoadBalancers返回参数结构体
1331
+ */
1332
+ export interface DetachLoadBalancersResponse {
1333
+ /**
1334
+ * 伸缩活动ID
1335
+ */
1336
+ ActivityId: string;
1337
+ /**
1338
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1339
+ */
1340
+ RequestId?: string;
1341
+ }
1181
1342
  /**
1182
1343
  * 告警触发策略。
1183
1344
  */
@@ -1377,6 +1538,19 @@ export interface DeleteLifecycleHookRequest {
1377
1538
  */
1378
1539
  LifecycleHookId: string;
1379
1540
  }
1541
+ /**
1542
+ * ModifyLoadBalancerTargetAttributes返回参数结构体
1543
+ */
1544
+ export interface ModifyLoadBalancerTargetAttributesResponse {
1545
+ /**
1546
+ * 伸缩活动ID
1547
+ */
1548
+ ActivityId: string;
1549
+ /**
1550
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1551
+ */
1552
+ RequestId?: string;
1553
+ }
1380
1554
  /**
1381
1555
  * ModifyAutoScalingGroup返回参数结构体
1382
1556
  */
@@ -1917,41 +2091,21 @@ export interface Instance {
1917
2091
  AutoScalingGroupName: string;
1918
2092
  }
1919
2093
  /**
1920
- * CreateScheduledAction请求参数结构体
2094
+ * DescribeAutoScalingInstances返回参数结构体
1921
2095
  */
1922
- export interface CreateScheduledActionRequest {
1923
- /**
1924
- * 伸缩组ID
1925
- */
1926
- AutoScalingGroupId: string;
1927
- /**
1928
- * 定时任务名称。名称仅支持中文、英文、数字、下划线、分隔符"-"、小数点,最大长度不能超60个字节。同一伸缩组下必须唯一。
1929
- */
1930
- ScheduledActionName: string;
1931
- /**
1932
- * 当定时任务触发时,设置的伸缩组最大实例数。
1933
- */
1934
- MaxSize: number;
1935
- /**
1936
- * 当定时任务触发时,设置的伸缩组最小实例数。
1937
- */
1938
- MinSize: number;
1939
- /**
1940
- * 当定时任务触发时,设置的伸缩组期望实例数。
1941
- */
1942
- DesiredCapacity: number;
2096
+ export interface DescribeAutoScalingInstancesResponse {
1943
2097
  /**
1944
- * 定时任务的首次触发时间,取值为`北京时间`(UTC+8),按照`ISO8601`标准,格式:`YYYY-MM-DDThh:mm:ss+08:00`。
2098
+ * 实例详细信息列表。
1945
2099
  */
1946
- StartTime: string;
2100
+ AutoScalingInstanceSet?: Array<Instance>;
1947
2101
  /**
1948
- * 定时任务的结束时间,取值为`北京时间`(UTC+8),按照`ISO8601`标准,格式:`YYYY-MM-DDThh:mm:ss+08:00`。<br><br>此参数与`Recurrence`需要同时指定,到达结束时间之后,定时任务将不再生效。
2102
+ * 符合条件的实例数量。
1949
2103
  */
1950
- EndTime?: string;
2104
+ TotalCount?: number;
1951
2105
  /**
1952
- * 定时任务的重复方式。为标准 Cron 格式<br><br>此参数与`EndTime`需要同时指定。
2106
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1953
2107
  */
1954
- Recurrence?: string;
2108
+ RequestId?: string;
1955
2109
  }
1956
2110
  /**
1957
2111
  * 描述了实例的增强服务启用情况与其设置,如云安全,云监控等实例 Agent。
@@ -2252,123 +2406,17 @@ export interface ServiceSettings {
2252
2406
  ReplaceLoadBalancerUnhealthy?: boolean;
2253
2407
  }
2254
2408
  /**
2255
- * 符合条件的启动配置信息的集合。
2409
+ * CreateAutoScalingGroup返回参数结构体
2256
2410
  */
2257
- export interface LaunchConfiguration {
2258
- /**
2259
- * 实例所属项目ID。
2260
- */
2261
- ProjectId: number;
2262
- /**
2263
- * 启动配置ID。
2264
- */
2265
- LaunchConfigurationId: string;
2266
- /**
2267
- * 启动配置名称。
2268
- */
2269
- LaunchConfigurationName: string;
2270
- /**
2271
- * 实例机型。
2272
- */
2273
- InstanceType: string;
2274
- /**
2275
- * 实例系统盘配置信息。
2276
- */
2277
- SystemDisk: SystemDisk;
2278
- /**
2279
- * 实例数据盘配置信息。
2280
- */
2281
- DataDisks: Array<DataDisk>;
2282
- /**
2283
- * 实例登录设置。
2284
- */
2285
- LoginSettings: LimitedLoginSettings;
2286
- /**
2287
- * 公网带宽相关信息设置。
2288
- */
2289
- InternetAccessible: InternetAccessible;
2290
- /**
2291
- * 实例所属安全组。
2292
- */
2293
- SecurityGroupIds: Array<string>;
2294
- /**
2295
- * 启动配置关联的伸缩组。
2296
- */
2297
- AutoScalingGroupAbstractSet: Array<AutoScalingGroupAbstract>;
2298
- /**
2299
- * 自定义数据。
2300
- 注意:此字段可能返回 null,表示取不到有效值。
2301
- */
2302
- UserData: string;
2303
- /**
2304
- * 启动配置创建时间。
2305
- */
2306
- CreatedTime: string;
2307
- /**
2308
- * 实例的增强服务启用情况与其设置。
2309
- */
2310
- EnhancedService: EnhancedService;
2311
- /**
2312
- * 镜像ID。
2313
- */
2314
- ImageId: string;
2315
- /**
2316
- * 启动配置当前状态。取值范围:<br><li>NORMAL:正常<br><li>IMAGE_ABNORMAL:启动配置镜像异常<br><li>CBS_SNAP_ABNORMAL:启动配置数据盘快照异常<br><li>SECURITY_GROUP_ABNORMAL:启动配置安全组异常<br>
2317
- */
2318
- LaunchConfigurationStatus: string;
2319
- /**
2320
- * 实例计费类型,CVM默认值按照POSTPAID_BY_HOUR处理。
2321
- <br><li>POSTPAID_BY_HOUR:按小时后付费
2322
- <br><li>SPOTPAID:竞价付费
2323
- */
2324
- InstanceChargeType: string;
2325
- /**
2326
- * 实例的市场相关选项,如竞价实例相关参数,若指定实例的付费模式为竞价付费则该参数必传。
2327
- 注意:此字段可能返回 null,表示取不到有效值。
2328
- */
2329
- InstanceMarketOptions: InstanceMarketOptionsRequest;
2330
- /**
2331
- * 实例机型列表。
2332
- */
2333
- InstanceTypes: Array<string>;
2334
- /**
2335
- * 标签列表。
2336
- */
2337
- InstanceTags: Array<InstanceTag>;
2338
- /**
2339
- * 版本号。
2340
- */
2341
- VersionNumber: number;
2342
- /**
2343
- * 更新时间。
2344
- */
2345
- UpdatedTime: string;
2346
- /**
2347
- * CAM角色名称。可通过DescribeRoleList接口返回值中的roleName获取。
2348
- */
2349
- CamRoleName: string;
2350
- /**
2351
- * 上次操作时,InstanceTypesCheckPolicy 取值。
2352
- */
2353
- LastOperationInstanceTypesCheckPolicy: string;
2354
- /**
2355
- * 云服务器主机名(HostName)的相关设置。
2356
- */
2357
- HostNameSettings: HostNameSettings;
2411
+ export interface CreateAutoScalingGroupResponse {
2358
2412
  /**
2359
- * 云服务器实例名(InstanceName)的相关设置。
2413
+ * 伸缩组ID
2360
2414
  */
2361
- InstanceNameSettings: InstanceNameSettings;
2415
+ AutoScalingGroupId: string;
2362
2416
  /**
2363
- * 预付费模式,即包年包月相关参数设置。通过该参数可以指定包年包月实例的购买时长、是否设置自动续费等属性。若指定实例的付费模式为预付费则该参数必传。
2417
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2364
2418
  */
2365
- InstanceChargePrepaid: InstanceChargePrepaid;
2366
- /**
2367
- * 云盘类型选择策略。取值范围:
2368
- <br><li>ORIGINAL:使用设置的云盘类型
2369
- <br><li>AUTOMATIC:自动选择当前可用区下可用的云盘类型
2370
- */
2371
- DiskTypePolicy: string;
2419
+ RequestId?: string;
2372
2420
  }
2373
2421
  /**
2374
2422
  * 负载均衡器目标属性
@@ -2393,21 +2441,13 @@ export interface ModifyNotificationConfigurationResponse {
2393
2441
  RequestId?: string;
2394
2442
  }
2395
2443
  /**
2396
- * DescribeAutoScalingInstances返回参数结构体
2444
+ * 描述了实例登录相关配置与信息,出于安全性考虑,不会描述敏感信息。
2397
2445
  */
2398
- export interface DescribeAutoScalingInstancesResponse {
2399
- /**
2400
- * 实例详细信息列表。
2401
- */
2402
- AutoScalingInstanceSet?: Array<Instance>;
2403
- /**
2404
- * 符合条件的实例数量。
2405
- */
2406
- TotalCount?: number;
2446
+ export interface LimitedLoginSettings {
2407
2447
  /**
2408
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2448
+ * 密钥ID列表。
2409
2449
  */
2410
- RequestId?: string;
2450
+ KeyIds: Array<string>;
2411
2451
  }
2412
2452
  /**
2413
2453
  * DescribeLifecycleHooks返回参数结构体
@@ -2536,6 +2576,19 @@ export interface NotificationTarget {
2536
2576
  */
2537
2577
  TopicName?: string;
2538
2578
  }
2579
+ /**
2580
+ * ModifyLoadBalancerTargetAttributes请求参数结构体
2581
+ */
2582
+ export interface ModifyLoadBalancerTargetAttributesRequest {
2583
+ /**
2584
+ * 伸缩组ID
2585
+ */
2586
+ AutoScalingGroupId: string;
2587
+ /**
2588
+ * 需修改目标规则属性的应用型负载均衡器列表,长度上限为50
2589
+ */
2590
+ ForwardLoadBalancers: Array<ForwardLoadBalancer>;
2591
+ }
2539
2592
  /**
2540
2593
  * DeleteAutoScalingGroup返回参数结构体
2541
2594
  */
@@ -2766,13 +2819,21 @@ export interface PreviewPaiDomainNameResponse {
2766
2819
  RequestId?: string;
2767
2820
  }
2768
2821
  /**
2769
- * DeleteAutoScalingGroup请求参数结构体
2822
+ * 应用型负载均衡器标识信息
2770
2823
  */
2771
- export interface DeleteAutoScalingGroupRequest {
2824
+ export interface ForwardLoadBalancerIdentification {
2772
2825
  /**
2773
- * 伸缩组ID
2826
+ * 负载均衡器ID
2774
2827
  */
2775
- AutoScalingGroupId: string;
2828
+ LoadBalancerId: string;
2829
+ /**
2830
+ * 应用型负载均衡监听器 ID
2831
+ */
2832
+ ListenerId: string;
2833
+ /**
2834
+ * 转发规则ID,注意:针对七层监听器此参数必填
2835
+ */
2836
+ LocationId?: string;
2776
2837
  }
2777
2838
  /**
2778
2839
  * 伸缩组配置建议。
@@ -2813,6 +2874,23 @@ export interface AttachInstancesRequest {
2813
2874
  */
2814
2875
  InstanceIds: Array<string>;
2815
2876
  }
2877
+ /**
2878
+ * AttachLoadBalancers请求参数结构体
2879
+ */
2880
+ export interface AttachLoadBalancersRequest {
2881
+ /**
2882
+ * 伸缩组ID
2883
+ */
2884
+ AutoScalingGroupId: string;
2885
+ /**
2886
+ * 传统负载均衡器ID列表,伸缩组绑定数量上限为20,LoadBalancerIds 和 ForwardLoadBalancers 二者同时最多只能指定一个
2887
+ */
2888
+ LoadBalancerIds?: Array<string>;
2889
+ /**
2890
+ * 应用型负载均衡器列表,伸缩组绑定数量上限为50,LoadBalancerIds 和 ForwardLoadBalancers 二者同时最多只能指定一个
2891
+ */
2892
+ ForwardLoadBalancers?: Array<ForwardLoadBalancer>;
2893
+ }
2816
2894
  /**
2817
2895
  * 竞价混合模式下,各计费类型实例的分配策略。包括按量计费实例和竞价计费实例。
2818
2896
  */
@@ -2997,6 +3075,35 @@ export interface ActivtyRelatedInstance {
2997
3075
  */
2998
3076
  InstanceStatus: string;
2999
3077
  }
3078
+ /**
3079
+ * CreateAutoScalingGroupFromInstance请求参数结构体
3080
+ */
3081
+ export interface CreateAutoScalingGroupFromInstanceRequest {
3082
+ /**
3083
+ * 伸缩组名称,在您账号中必须唯一。名称仅支持中文、英文、数字、下划线、分隔符"-"、小数点,最大长度不能超55个字节。
3084
+ */
3085
+ AutoScalingGroupName: string;
3086
+ /**
3087
+ * 实例ID
3088
+ */
3089
+ InstanceId: string;
3090
+ /**
3091
+ * 最小实例数,取值范围为0-2000。
3092
+ */
3093
+ MinSize: number;
3094
+ /**
3095
+ * 最大实例数,取值范围为0-2000。
3096
+ */
3097
+ MaxSize: number;
3098
+ /**
3099
+ * 期望实例数,大小介于最小实例数和最大实例数之间。
3100
+ */
3101
+ DesiredCapacity?: number;
3102
+ /**
3103
+ * 是否继承实例标签,默认值为False
3104
+ */
3105
+ InheritInstanceTag?: boolean;
3106
+ }
3000
3107
  /**
3001
3108
  * 描述了启动配置创建实例的公网可访问性,声明了实例的公网使用计费模式,最大带宽等
3002
3109
  */