@alicloud/ga20191120 2.1.1 → 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 +32 -4
- package/dist/client.js +46 -4
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +58 -4
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -13718,6 +13718,53 @@ export class CreateEndpointGroupsRequestEndpointGroupConfigurationsPortOverrides
|
|
|
13718
13718
|
}
|
|
13719
13719
|
}
|
|
13720
13720
|
|
|
13721
|
+
export class CreateEndpointGroupsRequestEndpointGroupConfigurationsSystemTag extends $tea.Model {
|
|
13722
|
+
key?: string;
|
|
13723
|
+
scope?: string;
|
|
13724
|
+
value?: string;
|
|
13725
|
+
static names(): { [key: string]: string } {
|
|
13726
|
+
return {
|
|
13727
|
+
key: 'Key',
|
|
13728
|
+
scope: 'Scope',
|
|
13729
|
+
value: 'Value',
|
|
13730
|
+
};
|
|
13731
|
+
}
|
|
13732
|
+
|
|
13733
|
+
static types(): { [key: string]: any } {
|
|
13734
|
+
return {
|
|
13735
|
+
key: 'string',
|
|
13736
|
+
scope: 'string',
|
|
13737
|
+
value: 'string',
|
|
13738
|
+
};
|
|
13739
|
+
}
|
|
13740
|
+
|
|
13741
|
+
constructor(map?: { [key: string]: any }) {
|
|
13742
|
+
super(map);
|
|
13743
|
+
}
|
|
13744
|
+
}
|
|
13745
|
+
|
|
13746
|
+
export class CreateEndpointGroupsRequestEndpointGroupConfigurationsTag extends $tea.Model {
|
|
13747
|
+
key?: string;
|
|
13748
|
+
value?: string;
|
|
13749
|
+
static names(): { [key: string]: string } {
|
|
13750
|
+
return {
|
|
13751
|
+
key: 'Key',
|
|
13752
|
+
value: 'Value',
|
|
13753
|
+
};
|
|
13754
|
+
}
|
|
13755
|
+
|
|
13756
|
+
static types(): { [key: string]: any } {
|
|
13757
|
+
return {
|
|
13758
|
+
key: 'string',
|
|
13759
|
+
value: 'string',
|
|
13760
|
+
};
|
|
13761
|
+
}
|
|
13762
|
+
|
|
13763
|
+
constructor(map?: { [key: string]: any }) {
|
|
13764
|
+
super(map);
|
|
13765
|
+
}
|
|
13766
|
+
}
|
|
13767
|
+
|
|
13721
13768
|
export class CreateEndpointGroupsRequestEndpointGroupConfigurations extends $tea.Model {
|
|
13722
13769
|
enableClientIPPreservationProxyProtocol?: boolean;
|
|
13723
13770
|
enableClientIPPreservationToa?: boolean;
|
|
@@ -13733,6 +13780,8 @@ export class CreateEndpointGroupsRequestEndpointGroupConfigurations extends $tea
|
|
|
13733
13780
|
healthCheckPort?: number;
|
|
13734
13781
|
healthCheckProtocol?: string;
|
|
13735
13782
|
portOverrides?: CreateEndpointGroupsRequestEndpointGroupConfigurationsPortOverrides[];
|
|
13783
|
+
systemTag?: CreateEndpointGroupsRequestEndpointGroupConfigurationsSystemTag[];
|
|
13784
|
+
tag?: CreateEndpointGroupsRequestEndpointGroupConfigurationsTag[];
|
|
13736
13785
|
thresholdCount?: number;
|
|
13737
13786
|
trafficPercentage?: number;
|
|
13738
13787
|
static names(): { [key: string]: string } {
|
|
@@ -13751,6 +13800,8 @@ export class CreateEndpointGroupsRequestEndpointGroupConfigurations extends $tea
|
|
|
13751
13800
|
healthCheckPort: 'HealthCheckPort',
|
|
13752
13801
|
healthCheckProtocol: 'HealthCheckProtocol',
|
|
13753
13802
|
portOverrides: 'PortOverrides',
|
|
13803
|
+
systemTag: 'SystemTag',
|
|
13804
|
+
tag: 'Tag',
|
|
13754
13805
|
thresholdCount: 'ThresholdCount',
|
|
13755
13806
|
trafficPercentage: 'TrafficPercentage',
|
|
13756
13807
|
};
|
|
@@ -13772,6 +13823,8 @@ export class CreateEndpointGroupsRequestEndpointGroupConfigurations extends $tea
|
|
|
13772
13823
|
healthCheckPort: 'number',
|
|
13773
13824
|
healthCheckProtocol: 'string',
|
|
13774
13825
|
portOverrides: { 'type': 'array', 'itemType': CreateEndpointGroupsRequestEndpointGroupConfigurationsPortOverrides },
|
|
13826
|
+
systemTag: { 'type': 'array', 'itemType': CreateEndpointGroupsRequestEndpointGroupConfigurationsSystemTag },
|
|
13827
|
+
tag: { 'type': 'array', 'itemType': CreateEndpointGroupsRequestEndpointGroupConfigurationsTag },
|
|
13775
13828
|
thresholdCount: 'number',
|
|
13776
13829
|
trafficPercentage: 'number',
|
|
13777
13830
|
};
|
|
@@ -14169,11 +14222,13 @@ export class CreateListenerRequestCustomRoutingEndpointGroupConfigurations exten
|
|
|
14169
14222
|
|
|
14170
14223
|
export class CreateListenerRequestEndpointGroupConfigurationsEndpointConfigurations extends $tea.Model {
|
|
14171
14224
|
endpoint?: string;
|
|
14225
|
+
subAddress?: string;
|
|
14172
14226
|
type?: string;
|
|
14173
14227
|
weight?: number;
|
|
14174
14228
|
static names(): { [key: string]: string } {
|
|
14175
14229
|
return {
|
|
14176
14230
|
endpoint: 'Endpoint',
|
|
14231
|
+
subAddress: 'SubAddress',
|
|
14177
14232
|
type: 'Type',
|
|
14178
14233
|
weight: 'Weight',
|
|
14179
14234
|
};
|
|
@@ -14182,6 +14237,7 @@ export class CreateListenerRequestEndpointGroupConfigurationsEndpointConfigurati
|
|
|
14182
14237
|
static types(): { [key: string]: any } {
|
|
14183
14238
|
return {
|
|
14184
14239
|
endpoint: 'string',
|
|
14240
|
+
subAddress: 'string',
|
|
14185
14241
|
type: 'string',
|
|
14186
14242
|
weight: 'number',
|
|
14187
14243
|
};
|
|
@@ -27296,8 +27352,7 @@ export default class Client extends OpenApi {
|
|
|
27296
27352
|
* * This operation is applicable only to **managed** Global Accelerator (GA) instances.
|
|
27297
27353
|
* * 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.
|
|
27298
27354
|
* * 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.
|
|
27299
|
-
*
|
|
27300
|
-
* **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.
|
|
27355
|
+
* <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>
|
|
27301
27356
|
*
|
|
27302
27357
|
* @param request UpdateServiceManagedControlRequest
|
|
27303
27358
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -27347,8 +27402,7 @@ export default class Client extends OpenApi {
|
|
|
27347
27402
|
* * This operation is applicable only to **managed** Global Accelerator (GA) instances.
|
|
27348
27403
|
* * 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.
|
|
27349
27404
|
* * 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.
|
|
27350
|
-
*
|
|
27351
|
-
* **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.
|
|
27405
|
+
* <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>
|
|
27352
27406
|
*
|
|
27353
27407
|
* @param request UpdateServiceManagedControlRequest
|
|
27354
27408
|
* @return UpdateServiceManagedControlResponse
|