@alicloud/ga20191120 2.1.0 → 2.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +37 -8
- package/dist/client.js +52 -8
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +65 -8
package/dist/client.d.ts
CHANGED
|
@@ -2660,6 +2660,7 @@ export declare class DescribeApplicationMonitorResponseBody extends $tea.Model {
|
|
|
2660
2660
|
regionId?: string;
|
|
2661
2661
|
requestId?: string;
|
|
2662
2662
|
silenceTime?: number;
|
|
2663
|
+
state?: string;
|
|
2663
2664
|
taskId?: string;
|
|
2664
2665
|
taskName?: string;
|
|
2665
2666
|
static names(): {
|
|
@@ -7690,6 +7691,33 @@ export declare class CreateEndpointGroupsRequestEndpointGroupConfigurationsPortO
|
|
|
7690
7691
|
[key: string]: any;
|
|
7691
7692
|
});
|
|
7692
7693
|
}
|
|
7694
|
+
export declare class CreateEndpointGroupsRequestEndpointGroupConfigurationsSystemTag extends $tea.Model {
|
|
7695
|
+
key?: string;
|
|
7696
|
+
scope?: string;
|
|
7697
|
+
value?: string;
|
|
7698
|
+
static names(): {
|
|
7699
|
+
[key: string]: string;
|
|
7700
|
+
};
|
|
7701
|
+
static types(): {
|
|
7702
|
+
[key: string]: any;
|
|
7703
|
+
};
|
|
7704
|
+
constructor(map?: {
|
|
7705
|
+
[key: string]: any;
|
|
7706
|
+
});
|
|
7707
|
+
}
|
|
7708
|
+
export declare class CreateEndpointGroupsRequestEndpointGroupConfigurationsTag extends $tea.Model {
|
|
7709
|
+
key?: string;
|
|
7710
|
+
value?: string;
|
|
7711
|
+
static names(): {
|
|
7712
|
+
[key: string]: string;
|
|
7713
|
+
};
|
|
7714
|
+
static types(): {
|
|
7715
|
+
[key: string]: any;
|
|
7716
|
+
};
|
|
7717
|
+
constructor(map?: {
|
|
7718
|
+
[key: string]: any;
|
|
7719
|
+
});
|
|
7720
|
+
}
|
|
7693
7721
|
export declare class CreateEndpointGroupsRequestEndpointGroupConfigurations extends $tea.Model {
|
|
7694
7722
|
enableClientIPPreservationProxyProtocol?: boolean;
|
|
7695
7723
|
enableClientIPPreservationToa?: boolean;
|
|
@@ -7705,6 +7733,8 @@ export declare class CreateEndpointGroupsRequestEndpointGroupConfigurations exte
|
|
|
7705
7733
|
healthCheckPort?: number;
|
|
7706
7734
|
healthCheckProtocol?: string;
|
|
7707
7735
|
portOverrides?: CreateEndpointGroupsRequestEndpointGroupConfigurationsPortOverrides[];
|
|
7736
|
+
systemTag?: CreateEndpointGroupsRequestEndpointGroupConfigurationsSystemTag[];
|
|
7737
|
+
tag?: CreateEndpointGroupsRequestEndpointGroupConfigurationsTag[];
|
|
7708
7738
|
thresholdCount?: number;
|
|
7709
7739
|
trafficPercentage?: number;
|
|
7710
7740
|
static names(): {
|
|
@@ -7938,6 +7968,7 @@ export declare class CreateListenerRequestCustomRoutingEndpointGroupConfiguratio
|
|
|
7938
7968
|
}
|
|
7939
7969
|
export declare class CreateListenerRequestEndpointGroupConfigurationsEndpointConfigurations extends $tea.Model {
|
|
7940
7970
|
endpoint?: string;
|
|
7971
|
+
subAddress?: string;
|
|
7941
7972
|
type?: string;
|
|
7942
7973
|
weight?: number;
|
|
7943
7974
|
static names(): {
|
|
@@ -12271,10 +12302,10 @@ export default class Client extends OpenApi {
|
|
|
12271
12302
|
*/
|
|
12272
12303
|
updateEndpointGroups(request: UpdateEndpointGroupsRequest): Promise<UpdateEndpointGroupsResponse>;
|
|
12273
12304
|
/**
|
|
12274
|
-
* * **UpdateForwardingRules** is an asynchronous operation. After
|
|
12305
|
+
* * **UpdateForwardingRules** is an asynchronous operation. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [ListForwardingRules](~~205817~~) operation to query the status of a forwarding rule.
|
|
12275
12306
|
* * If the forwarding rule is in the **configuring** state, it indicates that the forwarding rule is being modified. In this case, you can perform only query operations.
|
|
12276
12307
|
* * If the forwarding rule is in the **active** state, it indicates that the forwarding rule is modified.
|
|
12277
|
-
* * The **UpdateForwardingRules** operation
|
|
12308
|
+
* * The **UpdateForwardingRules** operation holds an exclusive lock on the Global Accelerator (GA) instance. While the operation is in progress, you cannot call the same operation in the same Alibaba Cloud account.
|
|
12278
12309
|
*
|
|
12279
12310
|
* @param request UpdateForwardingRulesRequest
|
|
12280
12311
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -12282,10 +12313,10 @@ export default class Client extends OpenApi {
|
|
|
12282
12313
|
*/
|
|
12283
12314
|
updateForwardingRulesWithOptions(request: UpdateForwardingRulesRequest, runtime: $Util.RuntimeOptions): Promise<UpdateForwardingRulesResponse>;
|
|
12284
12315
|
/**
|
|
12285
|
-
* * **UpdateForwardingRules** is an asynchronous operation. After
|
|
12316
|
+
* * **UpdateForwardingRules** is an asynchronous operation. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [ListForwardingRules](~~205817~~) operation to query the status of a forwarding rule.
|
|
12286
12317
|
* * If the forwarding rule is in the **configuring** state, it indicates that the forwarding rule is being modified. In this case, you can perform only query operations.
|
|
12287
12318
|
* * If the forwarding rule is in the **active** state, it indicates that the forwarding rule is modified.
|
|
12288
|
-
* * The **UpdateForwardingRules** operation
|
|
12319
|
+
* * The **UpdateForwardingRules** operation holds an exclusive lock on the Global Accelerator (GA) instance. While the operation is in progress, you cannot call the same operation in the same Alibaba Cloud account.
|
|
12289
12320
|
*
|
|
12290
12321
|
* @param request UpdateForwardingRulesRequest
|
|
12291
12322
|
* @return UpdateForwardingRulesResponse
|
|
@@ -12362,8 +12393,7 @@ export default class Client extends OpenApi {
|
|
|
12362
12393
|
* * This operation is applicable only to **managed** Global Accelerator (GA) instances.
|
|
12363
12394
|
* * After you change the control mode of a GA instance from managed mode to unmanaged mode, you cannot change the mode of the instance to managed mode.
|
|
12364
12395
|
* * After you change the control mode of a GA instance from managed mode to unmanaged mode, you can obtain all operation permissions on the instance.
|
|
12365
|
-
*
|
|
12366
|
-
* **Warning** If you change or delete a configuration of a GA instance whose control mode is changed from managed mode to unmanaged mode, the cloud services that depend on the instance may not work as expected. Proceed with caution.
|
|
12396
|
+
* <warning>If you change or delete a configuration of a GA instance whose control mode is changed from managed mode to unmanaged mode, the cloud services that depend on the instance may not work as expected. Proceed with caution.></warning>
|
|
12367
12397
|
*
|
|
12368
12398
|
* @param request UpdateServiceManagedControlRequest
|
|
12369
12399
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -12374,8 +12404,7 @@ export default class Client extends OpenApi {
|
|
|
12374
12404
|
* * This operation is applicable only to **managed** Global Accelerator (GA) instances.
|
|
12375
12405
|
* * After you change the control mode of a GA instance from managed mode to unmanaged mode, you cannot change the mode of the instance to managed mode.
|
|
12376
12406
|
* * After you change the control mode of a GA instance from managed mode to unmanaged mode, you can obtain all operation permissions on the instance.
|
|
12377
|
-
*
|
|
12378
|
-
* **Warning** If you change or delete a configuration of a GA instance whose control mode is changed from managed mode to unmanaged mode, the cloud services that depend on the instance may not work as expected. Proceed with caution.
|
|
12407
|
+
* <warning>If you change or delete a configuration of a GA instance whose control mode is changed from managed mode to unmanaged mode, the cloud services that depend on the instance may not work as expected. Proceed with caution.></warning>
|
|
12379
12408
|
*
|
|
12380
12409
|
* @param request UpdateServiceManagedControlRequest
|
|
12381
12410
|
* @return UpdateServiceManagedControlResponse
|
package/dist/client.js
CHANGED
|
@@ -3720,6 +3720,7 @@ class DescribeApplicationMonitorResponseBody extends $tea.Model {
|
|
|
3720
3720
|
regionId: 'RegionId',
|
|
3721
3721
|
requestId: 'RequestId',
|
|
3722
3722
|
silenceTime: 'SilenceTime',
|
|
3723
|
+
state: 'State',
|
|
3723
3724
|
taskId: 'TaskId',
|
|
3724
3725
|
taskName: 'TaskName',
|
|
3725
3726
|
};
|
|
@@ -3737,6 +3738,7 @@ class DescribeApplicationMonitorResponseBody extends $tea.Model {
|
|
|
3737
3738
|
regionId: 'string',
|
|
3738
3739
|
requestId: 'string',
|
|
3739
3740
|
silenceTime: 'number',
|
|
3741
|
+
state: 'string',
|
|
3740
3742
|
taskId: 'string',
|
|
3741
3743
|
taskName: 'string',
|
|
3742
3744
|
};
|
|
@@ -10807,6 +10809,44 @@ class CreateEndpointGroupsRequestEndpointGroupConfigurationsPortOverrides extend
|
|
|
10807
10809
|
}
|
|
10808
10810
|
}
|
|
10809
10811
|
exports.CreateEndpointGroupsRequestEndpointGroupConfigurationsPortOverrides = CreateEndpointGroupsRequestEndpointGroupConfigurationsPortOverrides;
|
|
10812
|
+
class CreateEndpointGroupsRequestEndpointGroupConfigurationsSystemTag extends $tea.Model {
|
|
10813
|
+
constructor(map) {
|
|
10814
|
+
super(map);
|
|
10815
|
+
}
|
|
10816
|
+
static names() {
|
|
10817
|
+
return {
|
|
10818
|
+
key: 'Key',
|
|
10819
|
+
scope: 'Scope',
|
|
10820
|
+
value: 'Value',
|
|
10821
|
+
};
|
|
10822
|
+
}
|
|
10823
|
+
static types() {
|
|
10824
|
+
return {
|
|
10825
|
+
key: 'string',
|
|
10826
|
+
scope: 'string',
|
|
10827
|
+
value: 'string',
|
|
10828
|
+
};
|
|
10829
|
+
}
|
|
10830
|
+
}
|
|
10831
|
+
exports.CreateEndpointGroupsRequestEndpointGroupConfigurationsSystemTag = CreateEndpointGroupsRequestEndpointGroupConfigurationsSystemTag;
|
|
10832
|
+
class CreateEndpointGroupsRequestEndpointGroupConfigurationsTag extends $tea.Model {
|
|
10833
|
+
constructor(map) {
|
|
10834
|
+
super(map);
|
|
10835
|
+
}
|
|
10836
|
+
static names() {
|
|
10837
|
+
return {
|
|
10838
|
+
key: 'Key',
|
|
10839
|
+
value: 'Value',
|
|
10840
|
+
};
|
|
10841
|
+
}
|
|
10842
|
+
static types() {
|
|
10843
|
+
return {
|
|
10844
|
+
key: 'string',
|
|
10845
|
+
value: 'string',
|
|
10846
|
+
};
|
|
10847
|
+
}
|
|
10848
|
+
}
|
|
10849
|
+
exports.CreateEndpointGroupsRequestEndpointGroupConfigurationsTag = CreateEndpointGroupsRequestEndpointGroupConfigurationsTag;
|
|
10810
10850
|
class CreateEndpointGroupsRequestEndpointGroupConfigurations extends $tea.Model {
|
|
10811
10851
|
constructor(map) {
|
|
10812
10852
|
super(map);
|
|
@@ -10827,6 +10867,8 @@ class CreateEndpointGroupsRequestEndpointGroupConfigurations extends $tea.Model
|
|
|
10827
10867
|
healthCheckPort: 'HealthCheckPort',
|
|
10828
10868
|
healthCheckProtocol: 'HealthCheckProtocol',
|
|
10829
10869
|
portOverrides: 'PortOverrides',
|
|
10870
|
+
systemTag: 'SystemTag',
|
|
10871
|
+
tag: 'Tag',
|
|
10830
10872
|
thresholdCount: 'ThresholdCount',
|
|
10831
10873
|
trafficPercentage: 'TrafficPercentage',
|
|
10832
10874
|
};
|
|
@@ -10847,6 +10889,8 @@ class CreateEndpointGroupsRequestEndpointGroupConfigurations extends $tea.Model
|
|
|
10847
10889
|
healthCheckPort: 'number',
|
|
10848
10890
|
healthCheckProtocol: 'string',
|
|
10849
10891
|
portOverrides: { 'type': 'array', 'itemType': CreateEndpointGroupsRequestEndpointGroupConfigurationsPortOverrides },
|
|
10892
|
+
systemTag: { 'type': 'array', 'itemType': CreateEndpointGroupsRequestEndpointGroupConfigurationsSystemTag },
|
|
10893
|
+
tag: { 'type': 'array', 'itemType': CreateEndpointGroupsRequestEndpointGroupConfigurationsTag },
|
|
10850
10894
|
thresholdCount: 'number',
|
|
10851
10895
|
trafficPercentage: 'number',
|
|
10852
10896
|
};
|
|
@@ -11170,6 +11214,7 @@ class CreateListenerRequestEndpointGroupConfigurationsEndpointConfigurations ext
|
|
|
11170
11214
|
static names() {
|
|
11171
11215
|
return {
|
|
11172
11216
|
endpoint: 'Endpoint',
|
|
11217
|
+
subAddress: 'SubAddress',
|
|
11173
11218
|
type: 'Type',
|
|
11174
11219
|
weight: 'Weight',
|
|
11175
11220
|
};
|
|
@@ -11177,6 +11222,7 @@ class CreateListenerRequestEndpointGroupConfigurationsEndpointConfigurations ext
|
|
|
11177
11222
|
static types() {
|
|
11178
11223
|
return {
|
|
11179
11224
|
endpoint: 'string',
|
|
11225
|
+
subAddress: 'string',
|
|
11180
11226
|
type: 'string',
|
|
11181
11227
|
weight: 'number',
|
|
11182
11228
|
};
|
|
@@ -22009,10 +22055,10 @@ class Client extends openapi_client_1.default {
|
|
|
22009
22055
|
return await this.updateEndpointGroupsWithOptions(request, runtime);
|
|
22010
22056
|
}
|
|
22011
22057
|
/**
|
|
22012
|
-
* * **UpdateForwardingRules** is an asynchronous operation. After
|
|
22058
|
+
* * **UpdateForwardingRules** is an asynchronous operation. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [ListForwardingRules](~~205817~~) operation to query the status of a forwarding rule.
|
|
22013
22059
|
* * If the forwarding rule is in the **configuring** state, it indicates that the forwarding rule is being modified. In this case, you can perform only query operations.
|
|
22014
22060
|
* * If the forwarding rule is in the **active** state, it indicates that the forwarding rule is modified.
|
|
22015
|
-
* * The **UpdateForwardingRules** operation
|
|
22061
|
+
* * The **UpdateForwardingRules** operation holds an exclusive lock on the Global Accelerator (GA) instance. While the operation is in progress, you cannot call the same operation in the same Alibaba Cloud account.
|
|
22016
22062
|
*
|
|
22017
22063
|
* @param request UpdateForwardingRulesRequest
|
|
22018
22064
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -22053,10 +22099,10 @@ class Client extends openapi_client_1.default {
|
|
|
22053
22099
|
return $tea.cast(await this.callApi(params, req, runtime), new UpdateForwardingRulesResponse({}));
|
|
22054
22100
|
}
|
|
22055
22101
|
/**
|
|
22056
|
-
* * **UpdateForwardingRules** is an asynchronous operation. After
|
|
22102
|
+
* * **UpdateForwardingRules** is an asynchronous operation. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [ListForwardingRules](~~205817~~) operation to query the status of a forwarding rule.
|
|
22057
22103
|
* * If the forwarding rule is in the **configuring** state, it indicates that the forwarding rule is being modified. In this case, you can perform only query operations.
|
|
22058
22104
|
* * If the forwarding rule is in the **active** state, it indicates that the forwarding rule is modified.
|
|
22059
|
-
* * The **UpdateForwardingRules** operation
|
|
22105
|
+
* * The **UpdateForwardingRules** operation holds an exclusive lock on the Global Accelerator (GA) instance. While the operation is in progress, you cannot call the same operation in the same Alibaba Cloud account.
|
|
22060
22106
|
*
|
|
22061
22107
|
* @param request UpdateForwardingRulesRequest
|
|
22062
22108
|
* @return UpdateForwardingRulesResponse
|
|
@@ -22256,8 +22302,7 @@ class Client extends openapi_client_1.default {
|
|
|
22256
22302
|
* * This operation is applicable only to **managed** Global Accelerator (GA) instances.
|
|
22257
22303
|
* * After you change the control mode of a GA instance from managed mode to unmanaged mode, you cannot change the mode of the instance to managed mode.
|
|
22258
22304
|
* * After you change the control mode of a GA instance from managed mode to unmanaged mode, you can obtain all operation permissions on the instance.
|
|
22259
|
-
*
|
|
22260
|
-
* **Warning** If you change or delete a configuration of a GA instance whose control mode is changed from managed mode to unmanaged mode, the cloud services that depend on the instance may not work as expected. Proceed with caution.
|
|
22305
|
+
* <warning>If you change or delete a configuration of a GA instance whose control mode is changed from managed mode to unmanaged mode, the cloud services that depend on the instance may not work as expected. Proceed with caution.></warning>
|
|
22261
22306
|
*
|
|
22262
22307
|
* @param request UpdateServiceManagedControlRequest
|
|
22263
22308
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -22301,8 +22346,7 @@ class Client extends openapi_client_1.default {
|
|
|
22301
22346
|
* * This operation is applicable only to **managed** Global Accelerator (GA) instances.
|
|
22302
22347
|
* * After you change the control mode of a GA instance from managed mode to unmanaged mode, you cannot change the mode of the instance to managed mode.
|
|
22303
22348
|
* * After you change the control mode of a GA instance from managed mode to unmanaged mode, you can obtain all operation permissions on the instance.
|
|
22304
|
-
*
|
|
22305
|
-
* **Warning** If you change or delete a configuration of a GA instance whose control mode is changed from managed mode to unmanaged mode, the cloud services that depend on the instance may not work as expected. Proceed with caution.
|
|
22349
|
+
* <warning>If you change or delete a configuration of a GA instance whose control mode is changed from managed mode to unmanaged mode, the cloud services that depend on the instance may not work as expected. Proceed with caution.></warning>
|
|
22306
22350
|
*
|
|
22307
22351
|
* @param request UpdateServiceManagedControlRequest
|
|
22308
22352
|
* @return UpdateServiceManagedControlResponse
|