@alicloud/ess20220222 1.2.0 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +123 -18
- package/dist/client.js +1548 -1384
- package/dist/client.js.map +1 -1
- package/package.json +4 -4
- package/src/client.ts +206 -18
package/dist/client.d.ts
CHANGED
|
@@ -744,6 +744,7 @@ export declare class CreateScalingConfigurationRequest extends $tea.Model {
|
|
|
744
744
|
keyPairName?: string;
|
|
745
745
|
loadBalancerWeight?: number;
|
|
746
746
|
memory?: number;
|
|
747
|
+
networkInterfaces?: CreateScalingConfigurationRequestNetworkInterfaces[];
|
|
747
748
|
ownerAccount?: string;
|
|
748
749
|
ownerId?: number;
|
|
749
750
|
password?: string;
|
|
@@ -812,6 +813,7 @@ export declare class CreateScalingConfigurationShrinkRequest extends $tea.Model
|
|
|
812
813
|
keyPairName?: string;
|
|
813
814
|
loadBalancerWeight?: number;
|
|
814
815
|
memory?: number;
|
|
816
|
+
networkInterfaces?: CreateScalingConfigurationShrinkRequestNetworkInterfaces[];
|
|
815
817
|
ownerAccount?: string;
|
|
816
818
|
ownerId?: number;
|
|
817
819
|
password?: string;
|
|
@@ -3410,6 +3412,7 @@ export declare class ModifyScalingConfigurationRequest extends $tea.Model {
|
|
|
3410
3412
|
keyPairName?: string;
|
|
3411
3413
|
loadBalancerWeight?: number;
|
|
3412
3414
|
memory?: number;
|
|
3415
|
+
networkInterfaces?: ModifyScalingConfigurationRequestNetworkInterfaces[];
|
|
3413
3416
|
override?: boolean;
|
|
3414
3417
|
ownerAccount?: string;
|
|
3415
3418
|
ownerId?: number;
|
|
@@ -3474,6 +3477,7 @@ export declare class ModifyScalingConfigurationShrinkRequest extends $tea.Model
|
|
|
3474
3477
|
keyPairName?: string;
|
|
3475
3478
|
loadBalancerWeight?: number;
|
|
3476
3479
|
memory?: number;
|
|
3480
|
+
networkInterfaces?: ModifyScalingConfigurationShrinkRequestNetworkInterfaces[];
|
|
3477
3481
|
override?: boolean;
|
|
3478
3482
|
ownerAccount?: string;
|
|
3479
3483
|
ownerId?: number;
|
|
@@ -5056,6 +5060,21 @@ export declare class CreateScalingConfigurationRequestInstanceTypeOverrides exte
|
|
|
5056
5060
|
[key: string]: any;
|
|
5057
5061
|
});
|
|
5058
5062
|
}
|
|
5063
|
+
export declare class CreateScalingConfigurationRequestNetworkInterfaces extends $tea.Model {
|
|
5064
|
+
instanceType?: string;
|
|
5065
|
+
ipv6AddressCount?: number;
|
|
5066
|
+
networkInterfaceTrafficMode?: string;
|
|
5067
|
+
securityGroupIds?: string[];
|
|
5068
|
+
static names(): {
|
|
5069
|
+
[key: string]: string;
|
|
5070
|
+
};
|
|
5071
|
+
static types(): {
|
|
5072
|
+
[key: string]: any;
|
|
5073
|
+
};
|
|
5074
|
+
constructor(map?: {
|
|
5075
|
+
[key: string]: any;
|
|
5076
|
+
});
|
|
5077
|
+
}
|
|
5059
5078
|
export declare class CreateScalingConfigurationRequestSpotPriceLimits extends $tea.Model {
|
|
5060
5079
|
instanceType?: string;
|
|
5061
5080
|
priceLimit?: number;
|
|
@@ -5185,6 +5204,21 @@ export declare class CreateScalingConfigurationShrinkRequestInstanceTypeOverride
|
|
|
5185
5204
|
[key: string]: any;
|
|
5186
5205
|
});
|
|
5187
5206
|
}
|
|
5207
|
+
export declare class CreateScalingConfigurationShrinkRequestNetworkInterfaces extends $tea.Model {
|
|
5208
|
+
instanceType?: string;
|
|
5209
|
+
ipv6AddressCount?: number;
|
|
5210
|
+
networkInterfaceTrafficMode?: string;
|
|
5211
|
+
securityGroupIds?: string[];
|
|
5212
|
+
static names(): {
|
|
5213
|
+
[key: string]: string;
|
|
5214
|
+
};
|
|
5215
|
+
static types(): {
|
|
5216
|
+
[key: string]: any;
|
|
5217
|
+
};
|
|
5218
|
+
constructor(map?: {
|
|
5219
|
+
[key: string]: any;
|
|
5220
|
+
});
|
|
5221
|
+
}
|
|
5188
5222
|
export declare class CreateScalingConfigurationShrinkRequestSpotPriceLimits extends $tea.Model {
|
|
5189
5223
|
instanceType?: string;
|
|
5190
5224
|
priceLimit?: number;
|
|
@@ -6295,6 +6329,21 @@ export declare class DescribeScalingConfigurationsResponseBodyScalingConfigurati
|
|
|
6295
6329
|
[key: string]: any;
|
|
6296
6330
|
});
|
|
6297
6331
|
}
|
|
6332
|
+
export declare class DescribeScalingConfigurationsResponseBodyScalingConfigurationsNetworkInterfaces extends $tea.Model {
|
|
6333
|
+
instanceType?: string;
|
|
6334
|
+
ipv6AddressCount?: number;
|
|
6335
|
+
networkInterfaceTrafficMode?: string;
|
|
6336
|
+
securityGroupIds?: string[];
|
|
6337
|
+
static names(): {
|
|
6338
|
+
[key: string]: string;
|
|
6339
|
+
};
|
|
6340
|
+
static types(): {
|
|
6341
|
+
[key: string]: any;
|
|
6342
|
+
};
|
|
6343
|
+
constructor(map?: {
|
|
6344
|
+
[key: string]: any;
|
|
6345
|
+
});
|
|
6346
|
+
}
|
|
6298
6347
|
export declare class DescribeScalingConfigurationsResponseBodyScalingConfigurationsSchedulerOptions extends $tea.Model {
|
|
6299
6348
|
managedPrivateSpaceId?: string;
|
|
6300
6349
|
static names(): {
|
|
@@ -6365,6 +6414,7 @@ export declare class DescribeScalingConfigurationsResponseBodyScalingConfigurati
|
|
|
6365
6414
|
lifecycleState?: string;
|
|
6366
6415
|
loadBalancerWeight?: number;
|
|
6367
6416
|
memory?: number;
|
|
6417
|
+
networkInterfaces?: DescribeScalingConfigurationsResponseBodyScalingConfigurationsNetworkInterfaces[];
|
|
6368
6418
|
passwordInherit?: boolean;
|
|
6369
6419
|
privatePoolOptions_id?: string;
|
|
6370
6420
|
privatePoolOptions_matchCriteria?: string;
|
|
@@ -7674,6 +7724,21 @@ export declare class ModifyScalingConfigurationRequestInstanceTypeOverrides exte
|
|
|
7674
7724
|
[key: string]: any;
|
|
7675
7725
|
});
|
|
7676
7726
|
}
|
|
7727
|
+
export declare class ModifyScalingConfigurationRequestNetworkInterfaces extends $tea.Model {
|
|
7728
|
+
instanceType?: string;
|
|
7729
|
+
ipv6AddressCount?: number;
|
|
7730
|
+
networkInterfaceTrafficMode?: string;
|
|
7731
|
+
securityGroupIds?: string[];
|
|
7732
|
+
static names(): {
|
|
7733
|
+
[key: string]: string;
|
|
7734
|
+
};
|
|
7735
|
+
static types(): {
|
|
7736
|
+
[key: string]: any;
|
|
7737
|
+
};
|
|
7738
|
+
constructor(map?: {
|
|
7739
|
+
[key: string]: any;
|
|
7740
|
+
});
|
|
7741
|
+
}
|
|
7677
7742
|
export declare class ModifyScalingConfigurationRequestSpotPriceLimits extends $tea.Model {
|
|
7678
7743
|
instanceType?: string;
|
|
7679
7744
|
priceLimit?: number;
|
|
@@ -7803,6 +7868,21 @@ export declare class ModifyScalingConfigurationShrinkRequestInstanceTypeOverride
|
|
|
7803
7868
|
[key: string]: any;
|
|
7804
7869
|
});
|
|
7805
7870
|
}
|
|
7871
|
+
export declare class ModifyScalingConfigurationShrinkRequestNetworkInterfaces extends $tea.Model {
|
|
7872
|
+
instanceType?: string;
|
|
7873
|
+
ipv6AddressCount?: number;
|
|
7874
|
+
networkInterfaceTrafficMode?: string;
|
|
7875
|
+
securityGroupIds?: string[];
|
|
7876
|
+
static names(): {
|
|
7877
|
+
[key: string]: string;
|
|
7878
|
+
};
|
|
7879
|
+
static types(): {
|
|
7880
|
+
[key: string]: any;
|
|
7881
|
+
};
|
|
7882
|
+
constructor(map?: {
|
|
7883
|
+
[key: string]: any;
|
|
7884
|
+
});
|
|
7885
|
+
}
|
|
7806
7886
|
export declare class ModifyScalingConfigurationShrinkRequestSpotPriceLimits extends $tea.Model {
|
|
7807
7887
|
instanceType?: string;
|
|
7808
7888
|
priceLimit?: number;
|
|
@@ -8199,7 +8279,7 @@ export default class Client extends OpenApi {
|
|
|
8199
8279
|
* A scaling group is a group of Elastic Compute Service (ECS) instances that can be used in similar business scenarios.
|
|
8200
8280
|
* You can create only a limited number of scaling groups in a region. Go to Quota Center to check the quota of the scaling groups.
|
|
8201
8281
|
* A scaling group does not immediately take effect after you create the scaling group. You must call the EnableScalingGroup operation to enable the scaling group. After you enable the scaling group, Auto Scaling can execute scaling rules to trigger scaling activities in the scaling group.
|
|
8202
|
-
* The Classic Load Balancer (CLB) instances and ApsaraDB RDS instances that you want to associate with a scaling group must reside in the same region as the scaling group. CLB instances are formerly known as Server Load Balancer (SLB) instances. For more information, see the
|
|
8282
|
+
* The Classic Load Balancer (CLB) instances and ApsaraDB RDS instances that you want to associate with a scaling group must reside in the same region as the scaling group. CLB instances are formerly known as Server Load Balancer (SLB) instances. For more information, see the [Regions and zones](~~40654~~) topic.
|
|
8203
8283
|
* If you associate a CLB instance when you create a scaling group, Auto Scaling automatically adds ECS instances in the scaling group to the backend server group of the associated CLB instance. You can specify a server group to which ECS instances can be added. You can add ECS instances to the following types of server groups:
|
|
8204
8284
|
* * Default server group: a group of ECS instances that are used to receive requests. If you do not specify a vServer group or a primary/secondary server group for a listener, requests are forwarded to the ECS instances in the default server group.
|
|
8205
8285
|
* * vServer group: If you want to forward requests to backend servers that are not in the default server group or configure domain name-based or URL-based forwarding rules, you can use vServer groups.
|
|
@@ -8228,7 +8308,7 @@ export default class Client extends OpenApi {
|
|
|
8228
8308
|
* A scaling group is a group of Elastic Compute Service (ECS) instances that can be used in similar business scenarios.
|
|
8229
8309
|
* You can create only a limited number of scaling groups in a region. Go to Quota Center to check the quota of the scaling groups.
|
|
8230
8310
|
* A scaling group does not immediately take effect after you create the scaling group. You must call the EnableScalingGroup operation to enable the scaling group. After you enable the scaling group, Auto Scaling can execute scaling rules to trigger scaling activities in the scaling group.
|
|
8231
|
-
* The Classic Load Balancer (CLB) instances and ApsaraDB RDS instances that you want to associate with a scaling group must reside in the same region as the scaling group. CLB instances are formerly known as Server Load Balancer (SLB) instances. For more information, see the
|
|
8311
|
+
* The Classic Load Balancer (CLB) instances and ApsaraDB RDS instances that you want to associate with a scaling group must reside in the same region as the scaling group. CLB instances are formerly known as Server Load Balancer (SLB) instances. For more information, see the [Regions and zones](~~40654~~) topic.
|
|
8232
8312
|
* If you associate a CLB instance when you create a scaling group, Auto Scaling automatically adds ECS instances in the scaling group to the backend server group of the associated CLB instance. You can specify a server group to which ECS instances can be added. You can add ECS instances to the following types of server groups:
|
|
8233
8313
|
* * Default server group: a group of ECS instances that are used to receive requests. If you do not specify a vServer group or a primary/secondary server group for a listener, requests are forwarded to the ECS instances in the default server group.
|
|
8234
8314
|
* * vServer group: If you want to forward requests to backend servers that are not in the default server group or configure domain name-based or URL-based forwarding rules, you can use vServer groups.
|
|
@@ -8582,11 +8662,11 @@ export default class Client extends OpenApi {
|
|
|
8582
8662
|
listTagValuesWithOptions(request: ListTagValuesRequest, runtime: $Util.RuntimeOptions): Promise<ListTagValuesResponse>;
|
|
8583
8663
|
listTagValues(request: ListTagValuesRequest): Promise<ListTagValuesResponse>;
|
|
8584
8664
|
/**
|
|
8585
|
-
* * If you set MetricType to custom, you must report your custom metrics to CloudMonitor before you can create event-triggered tasks by using the custom metrics. For more information, see [Custom monitoring event-triggered tasks](~~74861~~).
|
|
8586
|
-
* * When you create an event-triggered task, you must specify MetricName, DimensionKey, and DimensionValue to determine the range of statistics that you want to aggregate for the metrics of the scaling group. For example, you can specify the user_id and scaling_group dimensions for an event-triggered task to aggregate monitoring data of all Elastic Compute Service (ECS) instances in a scaling group within an Alibaba Cloud account.
|
|
8587
|
-
* * If you set MetricType to custom, the valid values are your custom metrics.
|
|
8588
|
-
* * For information about the metrics that are supported if you set MetricType to system, see
|
|
8589
|
-
* > The user_id and scaling_group dimensions are automatically populated. You need to only specify the device and state dimensions. For more information, see `DimensionKey` and `DimensionValue` in the "Request parameters" section of this topic.
|
|
8665
|
+
* * If you set the MetricType parameter to custom, you must report your custom metrics to CloudMonitor before you can create event-triggered tasks by using the custom metrics. For more information, see [Custom monitoring event-triggered tasks](~~74861~~).
|
|
8666
|
+
* * When you create an event-triggered task, you must specify the MetricName, DimensionKey, and DimensionValue parameters to determine the range of statistics that you want to aggregate for the metrics of the scaling group. For example, you can specify the user_id and scaling_group dimensions for an event-triggered task to aggregate monitoring data of all Elastic Compute Service (ECS) instances or elastic container instances in a scaling group within an Alibaba Cloud account.
|
|
8667
|
+
* * If you set the MetricType parameter to custom, the valid values are your custom metrics.
|
|
8668
|
+
* * For information about the metrics that are supported if you set the MetricType parameter to system, see[ Event-triggered task for system monitoring](~~74854~~).
|
|
8669
|
+
* > The user_id and scaling_group dimensions are automatically populated. You need to only specify the device and state dimensions. For more information, see the `DimensionKey` and `DimensionValue` parameters in the "Request parameters" section of this topic.
|
|
8590
8670
|
*
|
|
8591
8671
|
* @param request ModifyAlarmRequest
|
|
8592
8672
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -8594,11 +8674,11 @@ export default class Client extends OpenApi {
|
|
|
8594
8674
|
*/
|
|
8595
8675
|
modifyAlarmWithOptions(request: ModifyAlarmRequest, runtime: $Util.RuntimeOptions): Promise<ModifyAlarmResponse>;
|
|
8596
8676
|
/**
|
|
8597
|
-
* * If you set MetricType to custom, you must report your custom metrics to CloudMonitor before you can create event-triggered tasks by using the custom metrics. For more information, see [Custom monitoring event-triggered tasks](~~74861~~).
|
|
8598
|
-
* * When you create an event-triggered task, you must specify MetricName, DimensionKey, and DimensionValue to determine the range of statistics that you want to aggregate for the metrics of the scaling group. For example, you can specify the user_id and scaling_group dimensions for an event-triggered task to aggregate monitoring data of all Elastic Compute Service (ECS) instances in a scaling group within an Alibaba Cloud account.
|
|
8599
|
-
* * If you set MetricType to custom, the valid values are your custom metrics.
|
|
8600
|
-
* * For information about the metrics that are supported if you set MetricType to system, see
|
|
8601
|
-
* > The user_id and scaling_group dimensions are automatically populated. You need to only specify the device and state dimensions. For more information, see `DimensionKey` and `DimensionValue` in the "Request parameters" section of this topic.
|
|
8677
|
+
* * If you set the MetricType parameter to custom, you must report your custom metrics to CloudMonitor before you can create event-triggered tasks by using the custom metrics. For more information, see [Custom monitoring event-triggered tasks](~~74861~~).
|
|
8678
|
+
* * When you create an event-triggered task, you must specify the MetricName, DimensionKey, and DimensionValue parameters to determine the range of statistics that you want to aggregate for the metrics of the scaling group. For example, you can specify the user_id and scaling_group dimensions for an event-triggered task to aggregate monitoring data of all Elastic Compute Service (ECS) instances or elastic container instances in a scaling group within an Alibaba Cloud account.
|
|
8679
|
+
* * If you set the MetricType parameter to custom, the valid values are your custom metrics.
|
|
8680
|
+
* * For information about the metrics that are supported if you set the MetricType parameter to system, see[ Event-triggered task for system monitoring](~~74854~~).
|
|
8681
|
+
* > The user_id and scaling_group dimensions are automatically populated. You need to only specify the device and state dimensions. For more information, see the `DimensionKey` and `DimensionValue` parameters in the "Request parameters" section of this topic.
|
|
8602
8682
|
*
|
|
8603
8683
|
* @param request ModifyAlarmRequest
|
|
8604
8684
|
* @return ModifyAlarmResponse
|
|
@@ -8661,10 +8741,9 @@ export default class Client extends OpenApi {
|
|
|
8661
8741
|
* * You cannot call this operation to modify the settings of the following parameters:
|
|
8662
8742
|
* * RegionId
|
|
8663
8743
|
* * LoadBalancerId
|
|
8664
|
-
*
|
|
8744
|
+
* > If you want to change the CLB instances that are associated with your scaling group, call the AttachLoadBalancers and DetachLoadBalancers operations.
|
|
8665
8745
|
* * DBInstanceId
|
|
8666
|
-
*
|
|
8667
|
-
* **Note**If you want to change the ApsaraDB RDS instances that are associated with your scaling group, call the AttachDBInstances and DetachDBInstances operations.
|
|
8746
|
+
* > If you want to change the ApsaraDB RDS instances that are associated with your scaling group, call the AttachDBInstances and DetachDBInstances operations.
|
|
8668
8747
|
* * You can modify only scaling groups that are in the Active or Inactive state.
|
|
8669
8748
|
* * If you enable a new scaling configuration, Elastic Compute Service (ECS) instances that are created based on the previous scaling configuration still run as expected in the scaling group.
|
|
8670
8749
|
* * If the total number of instances in the scaling group is greater than the allowed maximum number after you change the value of the MaxSize parameter, Auto Scaling automatically removes instances from the scaling group to ensure that the number of instances is within the new range.
|
|
@@ -8680,10 +8759,9 @@ export default class Client extends OpenApi {
|
|
|
8680
8759
|
* * You cannot call this operation to modify the settings of the following parameters:
|
|
8681
8760
|
* * RegionId
|
|
8682
8761
|
* * LoadBalancerId
|
|
8683
|
-
*
|
|
8762
|
+
* > If you want to change the CLB instances that are associated with your scaling group, call the AttachLoadBalancers and DetachLoadBalancers operations.
|
|
8684
8763
|
* * DBInstanceId
|
|
8685
|
-
*
|
|
8686
|
-
* **Note**If you want to change the ApsaraDB RDS instances that are associated with your scaling group, call the AttachDBInstances and DetachDBInstances operations.
|
|
8764
|
+
* > If you want to change the ApsaraDB RDS instances that are associated with your scaling group, call the AttachDBInstances and DetachDBInstances operations.
|
|
8687
8765
|
* * You can modify only scaling groups that are in the Active or Inactive state.
|
|
8688
8766
|
* * If you enable a new scaling configuration, Elastic Compute Service (ECS) instances that are created based on the previous scaling configuration still run as expected in the scaling group.
|
|
8689
8767
|
* * If the total number of instances in the scaling group is greater than the allowed maximum number after you change the value of the MaxSize parameter, Auto Scaling automatically removes instances from the scaling group to ensure that the number of instances is within the new range.
|
|
@@ -8734,7 +8812,34 @@ export default class Client extends OpenApi {
|
|
|
8734
8812
|
* @return RecordLifecycleActionHeartbeatResponse
|
|
8735
8813
|
*/
|
|
8736
8814
|
recordLifecycleActionHeartbeat(request: RecordLifecycleActionHeartbeatRequest): Promise<RecordLifecycleActionHeartbeatResponse>;
|
|
8815
|
+
/**
|
|
8816
|
+
* * Before you call this operation, make sure that the following requirements are met:
|
|
8817
|
+
* * The scaling group is in the Active state.
|
|
8818
|
+
* * No scaling activity is in progress within the scaling group.
|
|
8819
|
+
* > If no scaling activity is in progress within the scaling group, you can call the operation even within the cooldown period.
|
|
8820
|
+
* * If an ECS instance is automatically created by Auto Scaling, or if an ECS instance is manually added to a scaling group and managed by the scaling group, the ECS instance is stopped in economical mode or is released after the instance is removed from the scaling group.
|
|
8821
|
+
* * If an ECS instance is manually added to a scaling group and is not managed by the scaling group, the ECS instance is not stopped or released after the instance is removed from the scaling group.
|
|
8822
|
+
* * If the difference between the number of existing ECS instances specified by the TotalCapacity parameter and the number of ECS instances that you call this operation to remove is less than the value of the MinSize parameter, the call fails.
|
|
8823
|
+
* A successful call only means that Auto Scaling accepts the request. The scaling activity may still fail. You can obtain the status of a scaling activity based on the value of the ScalingActivityId parameter in the response.
|
|
8824
|
+
*
|
|
8825
|
+
* @param request RemoveInstancesRequest
|
|
8826
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8827
|
+
* @return RemoveInstancesResponse
|
|
8828
|
+
*/
|
|
8737
8829
|
removeInstancesWithOptions(request: RemoveInstancesRequest, runtime: $Util.RuntimeOptions): Promise<RemoveInstancesResponse>;
|
|
8830
|
+
/**
|
|
8831
|
+
* * Before you call this operation, make sure that the following requirements are met:
|
|
8832
|
+
* * The scaling group is in the Active state.
|
|
8833
|
+
* * No scaling activity is in progress within the scaling group.
|
|
8834
|
+
* > If no scaling activity is in progress within the scaling group, you can call the operation even within the cooldown period.
|
|
8835
|
+
* * If an ECS instance is automatically created by Auto Scaling, or if an ECS instance is manually added to a scaling group and managed by the scaling group, the ECS instance is stopped in economical mode or is released after the instance is removed from the scaling group.
|
|
8836
|
+
* * If an ECS instance is manually added to a scaling group and is not managed by the scaling group, the ECS instance is not stopped or released after the instance is removed from the scaling group.
|
|
8837
|
+
* * If the difference between the number of existing ECS instances specified by the TotalCapacity parameter and the number of ECS instances that you call this operation to remove is less than the value of the MinSize parameter, the call fails.
|
|
8838
|
+
* A successful call only means that Auto Scaling accepts the request. The scaling activity may still fail. You can obtain the status of a scaling activity based on the value of the ScalingActivityId parameter in the response.
|
|
8839
|
+
*
|
|
8840
|
+
* @param request RemoveInstancesRequest
|
|
8841
|
+
* @return RemoveInstancesResponse
|
|
8842
|
+
*/
|
|
8738
8843
|
removeInstances(request: RemoveInstancesRequest): Promise<RemoveInstancesResponse>;
|
|
8739
8844
|
resumeProcessesWithOptions(request: ResumeProcessesRequest, runtime: $Util.RuntimeOptions): Promise<ResumeProcessesResponse>;
|
|
8740
8845
|
resumeProcesses(request: ResumeProcessesRequest): Promise<ResumeProcessesResponse>;
|