@alicloud/cloudapi20160714 4.2.0 → 4.3.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 +224 -0
- package/dist/client.js +399 -14
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +487 -0
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -8648,6 +8648,192 @@ export class DescribeImportOASTaskResponse extends $tea.Model {
|
|
|
8648
8648
|
}
|
|
8649
8649
|
}
|
|
8650
8650
|
|
|
8651
|
+
export class DescribeInstanceClusterInfoRequest extends $tea.Model {
|
|
8652
|
+
instanceClusterName?: string;
|
|
8653
|
+
securityToken?: string;
|
|
8654
|
+
static names(): { [key: string]: string } {
|
|
8655
|
+
return {
|
|
8656
|
+
instanceClusterName: 'InstanceClusterName',
|
|
8657
|
+
securityToken: 'SecurityToken',
|
|
8658
|
+
};
|
|
8659
|
+
}
|
|
8660
|
+
|
|
8661
|
+
static types(): { [key: string]: any } {
|
|
8662
|
+
return {
|
|
8663
|
+
instanceClusterName: 'string',
|
|
8664
|
+
securityToken: 'string',
|
|
8665
|
+
};
|
|
8666
|
+
}
|
|
8667
|
+
|
|
8668
|
+
constructor(map?: { [key: string]: any }) {
|
|
8669
|
+
super(map);
|
|
8670
|
+
}
|
|
8671
|
+
}
|
|
8672
|
+
|
|
8673
|
+
export class DescribeInstanceClusterInfoResponseBody extends $tea.Model {
|
|
8674
|
+
createdTime?: string;
|
|
8675
|
+
description?: string;
|
|
8676
|
+
instanceClusterAttribute?: DescribeInstanceClusterInfoResponseBodyInstanceClusterAttribute;
|
|
8677
|
+
instanceClusterId?: string;
|
|
8678
|
+
instanceClusterName?: string;
|
|
8679
|
+
instanceClusterStatus?: string;
|
|
8680
|
+
instanceClusterType?: string;
|
|
8681
|
+
instanceClusterVersion?: string;
|
|
8682
|
+
instanceList?: DescribeInstanceClusterInfoResponseBodyInstanceList;
|
|
8683
|
+
modifiedTime?: string;
|
|
8684
|
+
regionId?: string;
|
|
8685
|
+
requestId?: string;
|
|
8686
|
+
static names(): { [key: string]: string } {
|
|
8687
|
+
return {
|
|
8688
|
+
createdTime: 'CreatedTime',
|
|
8689
|
+
description: 'Description',
|
|
8690
|
+
instanceClusterAttribute: 'InstanceClusterAttribute',
|
|
8691
|
+
instanceClusterId: 'InstanceClusterId',
|
|
8692
|
+
instanceClusterName: 'InstanceClusterName',
|
|
8693
|
+
instanceClusterStatus: 'InstanceClusterStatus',
|
|
8694
|
+
instanceClusterType: 'InstanceClusterType',
|
|
8695
|
+
instanceClusterVersion: 'InstanceClusterVersion',
|
|
8696
|
+
instanceList: 'InstanceList',
|
|
8697
|
+
modifiedTime: 'ModifiedTime',
|
|
8698
|
+
regionId: 'RegionId',
|
|
8699
|
+
requestId: 'RequestId',
|
|
8700
|
+
};
|
|
8701
|
+
}
|
|
8702
|
+
|
|
8703
|
+
static types(): { [key: string]: any } {
|
|
8704
|
+
return {
|
|
8705
|
+
createdTime: 'string',
|
|
8706
|
+
description: 'string',
|
|
8707
|
+
instanceClusterAttribute: DescribeInstanceClusterInfoResponseBodyInstanceClusterAttribute,
|
|
8708
|
+
instanceClusterId: 'string',
|
|
8709
|
+
instanceClusterName: 'string',
|
|
8710
|
+
instanceClusterStatus: 'string',
|
|
8711
|
+
instanceClusterType: 'string',
|
|
8712
|
+
instanceClusterVersion: 'string',
|
|
8713
|
+
instanceList: DescribeInstanceClusterInfoResponseBodyInstanceList,
|
|
8714
|
+
modifiedTime: 'string',
|
|
8715
|
+
regionId: 'string',
|
|
8716
|
+
requestId: 'string',
|
|
8717
|
+
};
|
|
8718
|
+
}
|
|
8719
|
+
|
|
8720
|
+
constructor(map?: { [key: string]: any }) {
|
|
8721
|
+
super(map);
|
|
8722
|
+
}
|
|
8723
|
+
}
|
|
8724
|
+
|
|
8725
|
+
export class DescribeInstanceClusterInfoResponse extends $tea.Model {
|
|
8726
|
+
headers?: { [key: string]: string };
|
|
8727
|
+
statusCode?: number;
|
|
8728
|
+
body?: DescribeInstanceClusterInfoResponseBody;
|
|
8729
|
+
static names(): { [key: string]: string } {
|
|
8730
|
+
return {
|
|
8731
|
+
headers: 'headers',
|
|
8732
|
+
statusCode: 'statusCode',
|
|
8733
|
+
body: 'body',
|
|
8734
|
+
};
|
|
8735
|
+
}
|
|
8736
|
+
|
|
8737
|
+
static types(): { [key: string]: any } {
|
|
8738
|
+
return {
|
|
8739
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8740
|
+
statusCode: 'number',
|
|
8741
|
+
body: DescribeInstanceClusterInfoResponseBody,
|
|
8742
|
+
};
|
|
8743
|
+
}
|
|
8744
|
+
|
|
8745
|
+
constructor(map?: { [key: string]: any }) {
|
|
8746
|
+
super(map);
|
|
8747
|
+
}
|
|
8748
|
+
}
|
|
8749
|
+
|
|
8750
|
+
export class DescribeInstanceClusterListRequest extends $tea.Model {
|
|
8751
|
+
instanceClusterId?: string;
|
|
8752
|
+
instanceClusterName?: string;
|
|
8753
|
+
pageNumber?: number;
|
|
8754
|
+
pageSize?: number;
|
|
8755
|
+
securityToken?: string;
|
|
8756
|
+
static names(): { [key: string]: string } {
|
|
8757
|
+
return {
|
|
8758
|
+
instanceClusterId: 'InstanceClusterId',
|
|
8759
|
+
instanceClusterName: 'InstanceClusterName',
|
|
8760
|
+
pageNumber: 'PageNumber',
|
|
8761
|
+
pageSize: 'PageSize',
|
|
8762
|
+
securityToken: 'SecurityToken',
|
|
8763
|
+
};
|
|
8764
|
+
}
|
|
8765
|
+
|
|
8766
|
+
static types(): { [key: string]: any } {
|
|
8767
|
+
return {
|
|
8768
|
+
instanceClusterId: 'string',
|
|
8769
|
+
instanceClusterName: 'string',
|
|
8770
|
+
pageNumber: 'number',
|
|
8771
|
+
pageSize: 'number',
|
|
8772
|
+
securityToken: 'string',
|
|
8773
|
+
};
|
|
8774
|
+
}
|
|
8775
|
+
|
|
8776
|
+
constructor(map?: { [key: string]: any }) {
|
|
8777
|
+
super(map);
|
|
8778
|
+
}
|
|
8779
|
+
}
|
|
8780
|
+
|
|
8781
|
+
export class DescribeInstanceClusterListResponseBody extends $tea.Model {
|
|
8782
|
+
instanceClusters?: DescribeInstanceClusterListResponseBodyInstanceClusters;
|
|
8783
|
+
pageNumber?: number;
|
|
8784
|
+
pageSize?: number;
|
|
8785
|
+
requestId?: string;
|
|
8786
|
+
totalCount?: number;
|
|
8787
|
+
static names(): { [key: string]: string } {
|
|
8788
|
+
return {
|
|
8789
|
+
instanceClusters: 'InstanceClusters',
|
|
8790
|
+
pageNumber: 'PageNumber',
|
|
8791
|
+
pageSize: 'PageSize',
|
|
8792
|
+
requestId: 'RequestId',
|
|
8793
|
+
totalCount: 'TotalCount',
|
|
8794
|
+
};
|
|
8795
|
+
}
|
|
8796
|
+
|
|
8797
|
+
static types(): { [key: string]: any } {
|
|
8798
|
+
return {
|
|
8799
|
+
instanceClusters: DescribeInstanceClusterListResponseBodyInstanceClusters,
|
|
8800
|
+
pageNumber: 'number',
|
|
8801
|
+
pageSize: 'number',
|
|
8802
|
+
requestId: 'string',
|
|
8803
|
+
totalCount: 'number',
|
|
8804
|
+
};
|
|
8805
|
+
}
|
|
8806
|
+
|
|
8807
|
+
constructor(map?: { [key: string]: any }) {
|
|
8808
|
+
super(map);
|
|
8809
|
+
}
|
|
8810
|
+
}
|
|
8811
|
+
|
|
8812
|
+
export class DescribeInstanceClusterListResponse extends $tea.Model {
|
|
8813
|
+
headers?: { [key: string]: string };
|
|
8814
|
+
statusCode?: number;
|
|
8815
|
+
body?: DescribeInstanceClusterListResponseBody;
|
|
8816
|
+
static names(): { [key: string]: string } {
|
|
8817
|
+
return {
|
|
8818
|
+
headers: 'headers',
|
|
8819
|
+
statusCode: 'statusCode',
|
|
8820
|
+
body: 'body',
|
|
8821
|
+
};
|
|
8822
|
+
}
|
|
8823
|
+
|
|
8824
|
+
static types(): { [key: string]: any } {
|
|
8825
|
+
return {
|
|
8826
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8827
|
+
statusCode: 'number',
|
|
8828
|
+
body: DescribeInstanceClusterListResponseBody,
|
|
8829
|
+
};
|
|
8830
|
+
}
|
|
8831
|
+
|
|
8832
|
+
constructor(map?: { [key: string]: any }) {
|
|
8833
|
+
super(map);
|
|
8834
|
+
}
|
|
8835
|
+
}
|
|
8836
|
+
|
|
8651
8837
|
export class DescribeInstanceDropConnectionsRequest extends $tea.Model {
|
|
8652
8838
|
endTime?: string;
|
|
8653
8839
|
instanceId?: string;
|
|
@@ -17589,6 +17775,7 @@ export class DescribeApiResponseBodyOpenIdConnectConfig extends $tea.Model {
|
|
|
17589
17775
|
export class DescribeApiResponseBodyRequestConfig extends $tea.Model {
|
|
17590
17776
|
bodyFormat?: string;
|
|
17591
17777
|
bodyModel?: string;
|
|
17778
|
+
escapePathParam?: boolean;
|
|
17592
17779
|
postBodyDescription?: string;
|
|
17593
17780
|
requestHttpMethod?: string;
|
|
17594
17781
|
requestMode?: string;
|
|
@@ -17598,6 +17785,7 @@ export class DescribeApiResponseBodyRequestConfig extends $tea.Model {
|
|
|
17598
17785
|
return {
|
|
17599
17786
|
bodyFormat: 'BodyFormat',
|
|
17600
17787
|
bodyModel: 'BodyModel',
|
|
17788
|
+
escapePathParam: 'EscapePathParam',
|
|
17601
17789
|
postBodyDescription: 'PostBodyDescription',
|
|
17602
17790
|
requestHttpMethod: 'RequestHttpMethod',
|
|
17603
17791
|
requestMode: 'RequestMode',
|
|
@@ -17610,6 +17798,7 @@ export class DescribeApiResponseBodyRequestConfig extends $tea.Model {
|
|
|
17610
17798
|
return {
|
|
17611
17799
|
bodyFormat: 'string',
|
|
17612
17800
|
bodyModel: 'string',
|
|
17801
|
+
escapePathParam: 'boolean',
|
|
17613
17802
|
postBodyDescription: 'string',
|
|
17614
17803
|
requestHttpMethod: 'string',
|
|
17615
17804
|
requestMode: 'string',
|
|
@@ -18178,6 +18367,7 @@ export class DescribeApiDocResponseBodyErrorCodeSamples extends $tea.Model {
|
|
|
18178
18367
|
|
|
18179
18368
|
export class DescribeApiDocResponseBodyRequestConfig extends $tea.Model {
|
|
18180
18369
|
bodyFormat?: string;
|
|
18370
|
+
escapePathParam?: boolean;
|
|
18181
18371
|
postBodyDescription?: string;
|
|
18182
18372
|
requestHttpMethod?: string;
|
|
18183
18373
|
requestMode?: string;
|
|
@@ -18186,6 +18376,7 @@ export class DescribeApiDocResponseBodyRequestConfig extends $tea.Model {
|
|
|
18186
18376
|
static names(): { [key: string]: string } {
|
|
18187
18377
|
return {
|
|
18188
18378
|
bodyFormat: 'BodyFormat',
|
|
18379
|
+
escapePathParam: 'EscapePathParam',
|
|
18189
18380
|
postBodyDescription: 'PostBodyDescription',
|
|
18190
18381
|
requestHttpMethod: 'RequestHttpMethod',
|
|
18191
18382
|
requestMode: 'RequestMode',
|
|
@@ -18197,6 +18388,7 @@ export class DescribeApiDocResponseBodyRequestConfig extends $tea.Model {
|
|
|
18197
18388
|
static types(): { [key: string]: any } {
|
|
18198
18389
|
return {
|
|
18199
18390
|
bodyFormat: 'string',
|
|
18391
|
+
escapePathParam: 'boolean',
|
|
18200
18392
|
postBodyDescription: 'string',
|
|
18201
18393
|
requestHttpMethod: 'string',
|
|
18202
18394
|
requestMode: 'string',
|
|
@@ -18847,6 +19039,7 @@ export class DescribeApiHistoryResponseBodyOpenIdConnectConfig extends $tea.Mode
|
|
|
18847
19039
|
export class DescribeApiHistoryResponseBodyRequestConfig extends $tea.Model {
|
|
18848
19040
|
bodyFormat?: string;
|
|
18849
19041
|
bodyModel?: string;
|
|
19042
|
+
escapePathParam?: boolean;
|
|
18850
19043
|
postBodyDescription?: string;
|
|
18851
19044
|
requestHttpMethod?: string;
|
|
18852
19045
|
requestMode?: string;
|
|
@@ -18856,6 +19049,7 @@ export class DescribeApiHistoryResponseBodyRequestConfig extends $tea.Model {
|
|
|
18856
19049
|
return {
|
|
18857
19050
|
bodyFormat: 'BodyFormat',
|
|
18858
19051
|
bodyModel: 'BodyModel',
|
|
19052
|
+
escapePathParam: 'EscapePathParam',
|
|
18859
19053
|
postBodyDescription: 'PostBodyDescription',
|
|
18860
19054
|
requestHttpMethod: 'RequestHttpMethod',
|
|
18861
19055
|
requestMode: 'RequestMode',
|
|
@@ -18868,6 +19062,7 @@ export class DescribeApiHistoryResponseBodyRequestConfig extends $tea.Model {
|
|
|
18868
19062
|
return {
|
|
18869
19063
|
bodyFormat: 'string',
|
|
18870
19064
|
bodyModel: 'string',
|
|
19065
|
+
escapePathParam: 'boolean',
|
|
18871
19066
|
postBodyDescription: 'string',
|
|
18872
19067
|
requestHttpMethod: 'string',
|
|
18873
19068
|
requestMode: 'string',
|
|
@@ -22734,6 +22929,194 @@ export class DescribeImportOASTaskResponseBodyModelResults extends $tea.Model {
|
|
|
22734
22929
|
}
|
|
22735
22930
|
}
|
|
22736
22931
|
|
|
22932
|
+
export class DescribeInstanceClusterInfoResponseBodyInstanceClusterAttribute extends $tea.Model {
|
|
22933
|
+
connectCidrBlocks?: string;
|
|
22934
|
+
connectVpcId?: string;
|
|
22935
|
+
egressIpv6Enable?: boolean;
|
|
22936
|
+
httpsPolicies?: string;
|
|
22937
|
+
IPV4AclId?: string;
|
|
22938
|
+
IPV4AclName?: string;
|
|
22939
|
+
IPV4AclStatus?: string;
|
|
22940
|
+
IPV4AclType?: string;
|
|
22941
|
+
IPV6AclId?: string;
|
|
22942
|
+
IPV6AclName?: string;
|
|
22943
|
+
IPV6AclStatus?: string;
|
|
22944
|
+
IPV6AclType?: string;
|
|
22945
|
+
internetEgressAddress?: string;
|
|
22946
|
+
intranetEgressAddress?: string;
|
|
22947
|
+
intranetSegments?: string;
|
|
22948
|
+
supportIpv6?: boolean;
|
|
22949
|
+
userVpcId?: string;
|
|
22950
|
+
userVswitchId?: string;
|
|
22951
|
+
vipTypeList?: string;
|
|
22952
|
+
vpcIntranetEnable?: boolean;
|
|
22953
|
+
vpcOwnerId?: number;
|
|
22954
|
+
vpcSlbIntranetEnable?: boolean;
|
|
22955
|
+
static names(): { [key: string]: string } {
|
|
22956
|
+
return {
|
|
22957
|
+
connectCidrBlocks: 'ConnectCidrBlocks',
|
|
22958
|
+
connectVpcId: 'ConnectVpcId',
|
|
22959
|
+
egressIpv6Enable: 'EgressIpv6Enable',
|
|
22960
|
+
httpsPolicies: 'HttpsPolicies',
|
|
22961
|
+
IPV4AclId: 'IPV4AclId',
|
|
22962
|
+
IPV4AclName: 'IPV4AclName',
|
|
22963
|
+
IPV4AclStatus: 'IPV4AclStatus',
|
|
22964
|
+
IPV4AclType: 'IPV4AclType',
|
|
22965
|
+
IPV6AclId: 'IPV6AclId',
|
|
22966
|
+
IPV6AclName: 'IPV6AclName',
|
|
22967
|
+
IPV6AclStatus: 'IPV6AclStatus',
|
|
22968
|
+
IPV6AclType: 'IPV6AclType',
|
|
22969
|
+
internetEgressAddress: 'InternetEgressAddress',
|
|
22970
|
+
intranetEgressAddress: 'IntranetEgressAddress',
|
|
22971
|
+
intranetSegments: 'IntranetSegments',
|
|
22972
|
+
supportIpv6: 'SupportIpv6',
|
|
22973
|
+
userVpcId: 'UserVpcId',
|
|
22974
|
+
userVswitchId: 'UserVswitchId',
|
|
22975
|
+
vipTypeList: 'VipTypeList',
|
|
22976
|
+
vpcIntranetEnable: 'VpcIntranetEnable',
|
|
22977
|
+
vpcOwnerId: 'VpcOwnerId',
|
|
22978
|
+
vpcSlbIntranetEnable: 'VpcSlbIntranetEnable',
|
|
22979
|
+
};
|
|
22980
|
+
}
|
|
22981
|
+
|
|
22982
|
+
static types(): { [key: string]: any } {
|
|
22983
|
+
return {
|
|
22984
|
+
connectCidrBlocks: 'string',
|
|
22985
|
+
connectVpcId: 'string',
|
|
22986
|
+
egressIpv6Enable: 'boolean',
|
|
22987
|
+
httpsPolicies: 'string',
|
|
22988
|
+
IPV4AclId: 'string',
|
|
22989
|
+
IPV4AclName: 'string',
|
|
22990
|
+
IPV4AclStatus: 'string',
|
|
22991
|
+
IPV4AclType: 'string',
|
|
22992
|
+
IPV6AclId: 'string',
|
|
22993
|
+
IPV6AclName: 'string',
|
|
22994
|
+
IPV6AclStatus: 'string',
|
|
22995
|
+
IPV6AclType: 'string',
|
|
22996
|
+
internetEgressAddress: 'string',
|
|
22997
|
+
intranetEgressAddress: 'string',
|
|
22998
|
+
intranetSegments: 'string',
|
|
22999
|
+
supportIpv6: 'boolean',
|
|
23000
|
+
userVpcId: 'string',
|
|
23001
|
+
userVswitchId: 'string',
|
|
23002
|
+
vipTypeList: 'string',
|
|
23003
|
+
vpcIntranetEnable: 'boolean',
|
|
23004
|
+
vpcOwnerId: 'number',
|
|
23005
|
+
vpcSlbIntranetEnable: 'boolean',
|
|
23006
|
+
};
|
|
23007
|
+
}
|
|
23008
|
+
|
|
23009
|
+
constructor(map?: { [key: string]: any }) {
|
|
23010
|
+
super(map);
|
|
23011
|
+
}
|
|
23012
|
+
}
|
|
23013
|
+
|
|
23014
|
+
export class DescribeInstanceClusterInfoResponseBodyInstanceListInstance extends $tea.Model {
|
|
23015
|
+
errorMessage?: string;
|
|
23016
|
+
instanceId?: string;
|
|
23017
|
+
instanceName?: string;
|
|
23018
|
+
status?: string;
|
|
23019
|
+
static names(): { [key: string]: string } {
|
|
23020
|
+
return {
|
|
23021
|
+
errorMessage: 'ErrorMessage',
|
|
23022
|
+
instanceId: 'InstanceId',
|
|
23023
|
+
instanceName: 'InstanceName',
|
|
23024
|
+
status: 'Status',
|
|
23025
|
+
};
|
|
23026
|
+
}
|
|
23027
|
+
|
|
23028
|
+
static types(): { [key: string]: any } {
|
|
23029
|
+
return {
|
|
23030
|
+
errorMessage: 'string',
|
|
23031
|
+
instanceId: 'string',
|
|
23032
|
+
instanceName: 'string',
|
|
23033
|
+
status: 'string',
|
|
23034
|
+
};
|
|
23035
|
+
}
|
|
23036
|
+
|
|
23037
|
+
constructor(map?: { [key: string]: any }) {
|
|
23038
|
+
super(map);
|
|
23039
|
+
}
|
|
23040
|
+
}
|
|
23041
|
+
|
|
23042
|
+
export class DescribeInstanceClusterInfoResponseBodyInstanceList extends $tea.Model {
|
|
23043
|
+
instance?: DescribeInstanceClusterInfoResponseBodyInstanceListInstance[];
|
|
23044
|
+
static names(): { [key: string]: string } {
|
|
23045
|
+
return {
|
|
23046
|
+
instance: 'Instance',
|
|
23047
|
+
};
|
|
23048
|
+
}
|
|
23049
|
+
|
|
23050
|
+
static types(): { [key: string]: any } {
|
|
23051
|
+
return {
|
|
23052
|
+
instance: { 'type': 'array', 'itemType': DescribeInstanceClusterInfoResponseBodyInstanceListInstance },
|
|
23053
|
+
};
|
|
23054
|
+
}
|
|
23055
|
+
|
|
23056
|
+
constructor(map?: { [key: string]: any }) {
|
|
23057
|
+
super(map);
|
|
23058
|
+
}
|
|
23059
|
+
}
|
|
23060
|
+
|
|
23061
|
+
export class DescribeInstanceClusterListResponseBodyInstanceClustersInstanceCluster extends $tea.Model {
|
|
23062
|
+
createdTime?: string;
|
|
23063
|
+
description?: string;
|
|
23064
|
+
instanceClusterId?: string;
|
|
23065
|
+
instanceClusterName?: string;
|
|
23066
|
+
instanceClusterStatus?: string;
|
|
23067
|
+
instanceClusterType?: string;
|
|
23068
|
+
modifiedTime?: string;
|
|
23069
|
+
regionId?: string;
|
|
23070
|
+
static names(): { [key: string]: string } {
|
|
23071
|
+
return {
|
|
23072
|
+
createdTime: 'CreatedTime',
|
|
23073
|
+
description: 'Description',
|
|
23074
|
+
instanceClusterId: 'InstanceClusterId',
|
|
23075
|
+
instanceClusterName: 'InstanceClusterName',
|
|
23076
|
+
instanceClusterStatus: 'InstanceClusterStatus',
|
|
23077
|
+
instanceClusterType: 'InstanceClusterType',
|
|
23078
|
+
modifiedTime: 'ModifiedTime',
|
|
23079
|
+
regionId: 'RegionId',
|
|
23080
|
+
};
|
|
23081
|
+
}
|
|
23082
|
+
|
|
23083
|
+
static types(): { [key: string]: any } {
|
|
23084
|
+
return {
|
|
23085
|
+
createdTime: 'string',
|
|
23086
|
+
description: 'string',
|
|
23087
|
+
instanceClusterId: 'string',
|
|
23088
|
+
instanceClusterName: 'string',
|
|
23089
|
+
instanceClusterStatus: 'string',
|
|
23090
|
+
instanceClusterType: 'string',
|
|
23091
|
+
modifiedTime: 'string',
|
|
23092
|
+
regionId: 'string',
|
|
23093
|
+
};
|
|
23094
|
+
}
|
|
23095
|
+
|
|
23096
|
+
constructor(map?: { [key: string]: any }) {
|
|
23097
|
+
super(map);
|
|
23098
|
+
}
|
|
23099
|
+
}
|
|
23100
|
+
|
|
23101
|
+
export class DescribeInstanceClusterListResponseBodyInstanceClusters extends $tea.Model {
|
|
23102
|
+
instanceCluster?: DescribeInstanceClusterListResponseBodyInstanceClustersInstanceCluster[];
|
|
23103
|
+
static names(): { [key: string]: string } {
|
|
23104
|
+
return {
|
|
23105
|
+
instanceCluster: 'InstanceCluster',
|
|
23106
|
+
};
|
|
23107
|
+
}
|
|
23108
|
+
|
|
23109
|
+
static types(): { [key: string]: any } {
|
|
23110
|
+
return {
|
|
23111
|
+
instanceCluster: { 'type': 'array', 'itemType': DescribeInstanceClusterListResponseBodyInstanceClustersInstanceCluster },
|
|
23112
|
+
};
|
|
23113
|
+
}
|
|
23114
|
+
|
|
23115
|
+
constructor(map?: { [key: string]: any }) {
|
|
23116
|
+
super(map);
|
|
23117
|
+
}
|
|
23118
|
+
}
|
|
23119
|
+
|
|
22737
23120
|
export class DescribeInstanceDropConnectionsResponseBodyInstanceDropConnectionsMonitorItem extends $tea.Model {
|
|
22738
23121
|
itemTime?: string;
|
|
22739
23122
|
itemValue?: string;
|
|
@@ -32200,6 +32583,110 @@ export default class Client extends OpenApi {
|
|
|
32200
32583
|
return await this.describeImportOASTaskWithOptions(request, runtime);
|
|
32201
32584
|
}
|
|
32202
32585
|
|
|
32586
|
+
/**
|
|
32587
|
+
* @summary 查询专享实例集群的详情
|
|
32588
|
+
*
|
|
32589
|
+
* @param request DescribeInstanceClusterInfoRequest
|
|
32590
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
32591
|
+
* @return DescribeInstanceClusterInfoResponse
|
|
32592
|
+
*/
|
|
32593
|
+
async describeInstanceClusterInfoWithOptions(request: DescribeInstanceClusterInfoRequest, runtime: $Util.RuntimeOptions): Promise<DescribeInstanceClusterInfoResponse> {
|
|
32594
|
+
Util.validateModel(request);
|
|
32595
|
+
let query = { };
|
|
32596
|
+
if (!Util.isUnset(request.instanceClusterName)) {
|
|
32597
|
+
query["InstanceClusterName"] = request.instanceClusterName;
|
|
32598
|
+
}
|
|
32599
|
+
|
|
32600
|
+
if (!Util.isUnset(request.securityToken)) {
|
|
32601
|
+
query["SecurityToken"] = request.securityToken;
|
|
32602
|
+
}
|
|
32603
|
+
|
|
32604
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
32605
|
+
query: OpenApiUtil.query(query),
|
|
32606
|
+
});
|
|
32607
|
+
let params = new $OpenApi.Params({
|
|
32608
|
+
action: "DescribeInstanceClusterInfo",
|
|
32609
|
+
version: "2016-07-14",
|
|
32610
|
+
protocol: "HTTPS",
|
|
32611
|
+
pathname: "/",
|
|
32612
|
+
method: "POST",
|
|
32613
|
+
authType: "AK",
|
|
32614
|
+
style: "RPC",
|
|
32615
|
+
reqBodyType: "formData",
|
|
32616
|
+
bodyType: "json",
|
|
32617
|
+
});
|
|
32618
|
+
return $tea.cast<DescribeInstanceClusterInfoResponse>(await this.callApi(params, req, runtime), new DescribeInstanceClusterInfoResponse({}));
|
|
32619
|
+
}
|
|
32620
|
+
|
|
32621
|
+
/**
|
|
32622
|
+
* @summary 查询专享实例集群的详情
|
|
32623
|
+
*
|
|
32624
|
+
* @param request DescribeInstanceClusterInfoRequest
|
|
32625
|
+
* @return DescribeInstanceClusterInfoResponse
|
|
32626
|
+
*/
|
|
32627
|
+
async describeInstanceClusterInfo(request: DescribeInstanceClusterInfoRequest): Promise<DescribeInstanceClusterInfoResponse> {
|
|
32628
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
32629
|
+
return await this.describeInstanceClusterInfoWithOptions(request, runtime);
|
|
32630
|
+
}
|
|
32631
|
+
|
|
32632
|
+
/**
|
|
32633
|
+
* @summary 查询专享实例集群列表
|
|
32634
|
+
*
|
|
32635
|
+
* @param request DescribeInstanceClusterListRequest
|
|
32636
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
32637
|
+
* @return DescribeInstanceClusterListResponse
|
|
32638
|
+
*/
|
|
32639
|
+
async describeInstanceClusterListWithOptions(request: DescribeInstanceClusterListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeInstanceClusterListResponse> {
|
|
32640
|
+
Util.validateModel(request);
|
|
32641
|
+
let query = { };
|
|
32642
|
+
if (!Util.isUnset(request.instanceClusterId)) {
|
|
32643
|
+
query["InstanceClusterId"] = request.instanceClusterId;
|
|
32644
|
+
}
|
|
32645
|
+
|
|
32646
|
+
if (!Util.isUnset(request.instanceClusterName)) {
|
|
32647
|
+
query["InstanceClusterName"] = request.instanceClusterName;
|
|
32648
|
+
}
|
|
32649
|
+
|
|
32650
|
+
if (!Util.isUnset(request.pageNumber)) {
|
|
32651
|
+
query["PageNumber"] = request.pageNumber;
|
|
32652
|
+
}
|
|
32653
|
+
|
|
32654
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
32655
|
+
query["PageSize"] = request.pageSize;
|
|
32656
|
+
}
|
|
32657
|
+
|
|
32658
|
+
if (!Util.isUnset(request.securityToken)) {
|
|
32659
|
+
query["SecurityToken"] = request.securityToken;
|
|
32660
|
+
}
|
|
32661
|
+
|
|
32662
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
32663
|
+
query: OpenApiUtil.query(query),
|
|
32664
|
+
});
|
|
32665
|
+
let params = new $OpenApi.Params({
|
|
32666
|
+
action: "DescribeInstanceClusterList",
|
|
32667
|
+
version: "2016-07-14",
|
|
32668
|
+
protocol: "HTTPS",
|
|
32669
|
+
pathname: "/",
|
|
32670
|
+
method: "POST",
|
|
32671
|
+
authType: "AK",
|
|
32672
|
+
style: "RPC",
|
|
32673
|
+
reqBodyType: "formData",
|
|
32674
|
+
bodyType: "json",
|
|
32675
|
+
});
|
|
32676
|
+
return $tea.cast<DescribeInstanceClusterListResponse>(await this.callApi(params, req, runtime), new DescribeInstanceClusterListResponse({}));
|
|
32677
|
+
}
|
|
32678
|
+
|
|
32679
|
+
/**
|
|
32680
|
+
* @summary 查询专享实例集群列表
|
|
32681
|
+
*
|
|
32682
|
+
* @param request DescribeInstanceClusterListRequest
|
|
32683
|
+
* @return DescribeInstanceClusterListResponse
|
|
32684
|
+
*/
|
|
32685
|
+
async describeInstanceClusterList(request: DescribeInstanceClusterListRequest): Promise<DescribeInstanceClusterListResponse> {
|
|
32686
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
32687
|
+
return await this.describeInstanceClusterListWithOptions(request, runtime);
|
|
32688
|
+
}
|
|
32689
|
+
|
|
32203
32690
|
/**
|
|
32204
32691
|
* @summary Queries the number of lost connections to a dedicated instance within a period of time.
|
|
32205
32692
|
*
|