@alicloud/ebs20210730 1.3.13 → 1.3.14
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 +687 -0
- package/dist/client.js +849 -12
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +944 -16
package/dist/client.d.ts
CHANGED
|
@@ -104,13 +104,60 @@ export declare class CancelLensServiceResponse extends $tea.Model {
|
|
|
104
104
|
[key: string]: any;
|
|
105
105
|
});
|
|
106
106
|
}
|
|
107
|
+
export declare class ChangeResourceGroupRequest extends $tea.Model {
|
|
108
|
+
clientToken?: string;
|
|
109
|
+
newResourceGroupId?: string;
|
|
110
|
+
regionId?: string;
|
|
111
|
+
resourceId?: string;
|
|
112
|
+
resourceType?: string;
|
|
113
|
+
static names(): {
|
|
114
|
+
[key: string]: string;
|
|
115
|
+
};
|
|
116
|
+
static types(): {
|
|
117
|
+
[key: string]: any;
|
|
118
|
+
};
|
|
119
|
+
constructor(map?: {
|
|
120
|
+
[key: string]: any;
|
|
121
|
+
});
|
|
122
|
+
}
|
|
123
|
+
export declare class ChangeResourceGroupResponseBody extends $tea.Model {
|
|
124
|
+
requestId?: string;
|
|
125
|
+
static names(): {
|
|
126
|
+
[key: string]: string;
|
|
127
|
+
};
|
|
128
|
+
static types(): {
|
|
129
|
+
[key: string]: any;
|
|
130
|
+
};
|
|
131
|
+
constructor(map?: {
|
|
132
|
+
[key: string]: any;
|
|
133
|
+
});
|
|
134
|
+
}
|
|
135
|
+
export declare class ChangeResourceGroupResponse extends $tea.Model {
|
|
136
|
+
headers: {
|
|
137
|
+
[key: string]: string;
|
|
138
|
+
};
|
|
139
|
+
statusCode: number;
|
|
140
|
+
body: ChangeResourceGroupResponseBody;
|
|
141
|
+
static names(): {
|
|
142
|
+
[key: string]: string;
|
|
143
|
+
};
|
|
144
|
+
static types(): {
|
|
145
|
+
[key: string]: any;
|
|
146
|
+
};
|
|
147
|
+
constructor(map?: {
|
|
148
|
+
[key: string]: any;
|
|
149
|
+
});
|
|
150
|
+
}
|
|
107
151
|
export declare class CreateDedicatedBlockStorageClusterRequest extends $tea.Model {
|
|
108
152
|
azone?: string;
|
|
109
153
|
capacity?: number;
|
|
110
154
|
dbscId?: string;
|
|
111
155
|
dbscName?: string;
|
|
156
|
+
period?: number;
|
|
157
|
+
periodUnit?: string;
|
|
112
158
|
regionId?: string;
|
|
113
159
|
resourceGroupId?: string;
|
|
160
|
+
tag?: CreateDedicatedBlockStorageClusterRequestTag[];
|
|
114
161
|
type?: string;
|
|
115
162
|
static names(): {
|
|
116
163
|
[key: string]: string;
|
|
@@ -161,7 +208,9 @@ export declare class CreateDiskReplicaGroupRequest extends $tea.Model {
|
|
|
161
208
|
groupName?: string;
|
|
162
209
|
RPO?: number;
|
|
163
210
|
regionId?: string;
|
|
211
|
+
resourceGroupId?: string;
|
|
164
212
|
sourceZoneId?: string;
|
|
213
|
+
tag?: CreateDiskReplicaGroupRequestTag[];
|
|
165
214
|
static names(): {
|
|
166
215
|
[key: string]: string;
|
|
167
216
|
};
|
|
@@ -215,7 +264,9 @@ export declare class CreateDiskReplicaPairRequest extends $tea.Model {
|
|
|
215
264
|
periodUnit?: string;
|
|
216
265
|
RPO?: number;
|
|
217
266
|
regionId?: string;
|
|
267
|
+
resourceGroupId?: string;
|
|
218
268
|
sourceZoneId?: string;
|
|
269
|
+
tag?: CreateDiskReplicaPairRequestTag[];
|
|
219
270
|
static names(): {
|
|
220
271
|
[key: string]: string;
|
|
221
272
|
};
|
|
@@ -594,7 +645,9 @@ export declare class DescribeDiskReplicaGroupsRequest extends $tea.Model {
|
|
|
594
645
|
pageNumber?: number;
|
|
595
646
|
pageSize?: number;
|
|
596
647
|
regionId?: string;
|
|
648
|
+
resourceGroupId?: string;
|
|
597
649
|
site?: string;
|
|
650
|
+
tag?: DescribeDiskReplicaGroupsRequestTag[];
|
|
598
651
|
static names(): {
|
|
599
652
|
[key: string]: string;
|
|
600
653
|
};
|
|
@@ -689,7 +742,9 @@ export declare class DescribeDiskReplicaPairsRequest extends $tea.Model {
|
|
|
689
742
|
pairIds?: string;
|
|
690
743
|
regionId?: string;
|
|
691
744
|
replicaGroupId?: string;
|
|
745
|
+
resourceGroupId?: string;
|
|
692
746
|
site?: string;
|
|
747
|
+
tag?: DescribeDiskReplicaPairsRequestTag[];
|
|
693
748
|
static names(): {
|
|
694
749
|
[key: string]: string;
|
|
695
750
|
};
|
|
@@ -1566,6 +1621,45 @@ export declare class UntagResourcesResponse extends $tea.Model {
|
|
|
1566
1621
|
[key: string]: any;
|
|
1567
1622
|
});
|
|
1568
1623
|
}
|
|
1624
|
+
export declare class CreateDedicatedBlockStorageClusterRequestTag extends $tea.Model {
|
|
1625
|
+
key?: string;
|
|
1626
|
+
value?: string;
|
|
1627
|
+
static names(): {
|
|
1628
|
+
[key: string]: string;
|
|
1629
|
+
};
|
|
1630
|
+
static types(): {
|
|
1631
|
+
[key: string]: any;
|
|
1632
|
+
};
|
|
1633
|
+
constructor(map?: {
|
|
1634
|
+
[key: string]: any;
|
|
1635
|
+
});
|
|
1636
|
+
}
|
|
1637
|
+
export declare class CreateDiskReplicaGroupRequestTag extends $tea.Model {
|
|
1638
|
+
key?: string;
|
|
1639
|
+
value?: string;
|
|
1640
|
+
static names(): {
|
|
1641
|
+
[key: string]: string;
|
|
1642
|
+
};
|
|
1643
|
+
static types(): {
|
|
1644
|
+
[key: string]: any;
|
|
1645
|
+
};
|
|
1646
|
+
constructor(map?: {
|
|
1647
|
+
[key: string]: any;
|
|
1648
|
+
});
|
|
1649
|
+
}
|
|
1650
|
+
export declare class CreateDiskReplicaPairRequestTag extends $tea.Model {
|
|
1651
|
+
key?: string;
|
|
1652
|
+
value?: string;
|
|
1653
|
+
static names(): {
|
|
1654
|
+
[key: string]: string;
|
|
1655
|
+
};
|
|
1656
|
+
static types(): {
|
|
1657
|
+
[key: string]: any;
|
|
1658
|
+
};
|
|
1659
|
+
constructor(map?: {
|
|
1660
|
+
[key: string]: any;
|
|
1661
|
+
});
|
|
1662
|
+
}
|
|
1569
1663
|
export declare class DescribeDedicatedBlockStorageClusterDisksResponseBodyDisksDiskTags extends $tea.Model {
|
|
1570
1664
|
tagKey?: string;
|
|
1571
1665
|
tagValue?: string;
|
|
@@ -1582,6 +1676,7 @@ export declare class DescribeDedicatedBlockStorageClusterDisksResponseBodyDisksD
|
|
|
1582
1676
|
export declare class DescribeDedicatedBlockStorageClusterDisksResponseBodyDisksDisk extends $tea.Model {
|
|
1583
1677
|
attachedTime?: string;
|
|
1584
1678
|
bdfId?: string;
|
|
1679
|
+
burstingEnabled?: boolean;
|
|
1585
1680
|
category?: string;
|
|
1586
1681
|
deleteAutoSnapshot?: boolean;
|
|
1587
1682
|
deleteWithInstance?: boolean;
|
|
@@ -1601,6 +1696,7 @@ export declare class DescribeDedicatedBlockStorageClusterDisksResponseBodyDisksD
|
|
|
1601
1696
|
multiAttach?: string;
|
|
1602
1697
|
performanceLevel?: string;
|
|
1603
1698
|
portable?: boolean;
|
|
1699
|
+
provisionedIops?: number;
|
|
1604
1700
|
regionId?: string;
|
|
1605
1701
|
size?: number;
|
|
1606
1702
|
sourceSnapshotId?: string;
|
|
@@ -1609,6 +1705,7 @@ export declare class DescribeDedicatedBlockStorageClusterDisksResponseBodyDisksD
|
|
|
1609
1705
|
storageSetId?: string;
|
|
1610
1706
|
storageSetPartitionNumber?: number;
|
|
1611
1707
|
tags?: DescribeDedicatedBlockStorageClusterDisksResponseBodyDisksDiskTags[];
|
|
1708
|
+
throughput?: number;
|
|
1612
1709
|
type?: string;
|
|
1613
1710
|
zoneId?: string;
|
|
1614
1711
|
static names(): {
|
|
@@ -1648,9 +1745,17 @@ export declare class DescribeDedicatedBlockStorageClustersRequestTag extends $te
|
|
|
1648
1745
|
}
|
|
1649
1746
|
export declare class DescribeDedicatedBlockStorageClustersResponseBodyDedicatedBlockStorageClustersDedicatedBlockStorageClusterCapacity extends $tea.Model {
|
|
1650
1747
|
availableCapacity?: number;
|
|
1748
|
+
availableDeviceCapacity?: number;
|
|
1749
|
+
availableSpaceCapacity?: number;
|
|
1750
|
+
clusterAvailableCapacity?: number;
|
|
1751
|
+
clusterDeliveryCapacity?: number;
|
|
1651
1752
|
deliveryCapacity?: number;
|
|
1652
1753
|
totalCapacity?: number;
|
|
1754
|
+
totalDeviceCapacity?: number;
|
|
1755
|
+
totalSpaceCapacity?: number;
|
|
1653
1756
|
usedCapacity?: number;
|
|
1757
|
+
usedDeviceCapacity?: number;
|
|
1758
|
+
usedSpaceCapacity?: number;
|
|
1654
1759
|
static names(): {
|
|
1655
1760
|
[key: string]: string;
|
|
1656
1761
|
};
|
|
@@ -1675,17 +1780,21 @@ export declare class DescribeDedicatedBlockStorageClustersResponseBodyDedicatedB
|
|
|
1675
1780
|
});
|
|
1676
1781
|
}
|
|
1677
1782
|
export declare class DescribeDedicatedBlockStorageClustersResponseBodyDedicatedBlockStorageClusters extends $tea.Model {
|
|
1783
|
+
aliUid?: string;
|
|
1678
1784
|
category?: string;
|
|
1679
1785
|
createTime?: string;
|
|
1680
1786
|
dedicatedBlockStorageClusterCapacity?: DescribeDedicatedBlockStorageClustersResponseBodyDedicatedBlockStorageClustersDedicatedBlockStorageClusterCapacity;
|
|
1681
1787
|
dedicatedBlockStorageClusterId?: string;
|
|
1682
1788
|
dedicatedBlockStorageClusterName?: string;
|
|
1683
1789
|
description?: string;
|
|
1790
|
+
enableThinProvision?: boolean;
|
|
1684
1791
|
expiredTime?: string;
|
|
1685
1792
|
performanceLevel?: string;
|
|
1686
1793
|
regionId?: string;
|
|
1687
1794
|
resourceGroupId?: string;
|
|
1795
|
+
sizeOverSoldRatio?: number;
|
|
1688
1796
|
status?: string;
|
|
1797
|
+
storageDomain?: string;
|
|
1689
1798
|
supportedCategory?: string;
|
|
1690
1799
|
tags?: DescribeDedicatedBlockStorageClustersResponseBodyDedicatedBlockStorageClustersTags[];
|
|
1691
1800
|
type?: string;
|
|
@@ -1752,6 +1861,32 @@ export declare class DescribeDiskMonitorDataListResponseBodyMonitorData extends
|
|
|
1752
1861
|
[key: string]: any;
|
|
1753
1862
|
});
|
|
1754
1863
|
}
|
|
1864
|
+
export declare class DescribeDiskReplicaGroupsRequestTag extends $tea.Model {
|
|
1865
|
+
key?: string;
|
|
1866
|
+
value?: string;
|
|
1867
|
+
static names(): {
|
|
1868
|
+
[key: string]: string;
|
|
1869
|
+
};
|
|
1870
|
+
static types(): {
|
|
1871
|
+
[key: string]: any;
|
|
1872
|
+
};
|
|
1873
|
+
constructor(map?: {
|
|
1874
|
+
[key: string]: any;
|
|
1875
|
+
});
|
|
1876
|
+
}
|
|
1877
|
+
export declare class DescribeDiskReplicaGroupsResponseBodyReplicaGroupsTags extends $tea.Model {
|
|
1878
|
+
tagKey?: string;
|
|
1879
|
+
tagValue?: string;
|
|
1880
|
+
static names(): {
|
|
1881
|
+
[key: string]: string;
|
|
1882
|
+
};
|
|
1883
|
+
static types(): {
|
|
1884
|
+
[key: string]: any;
|
|
1885
|
+
};
|
|
1886
|
+
constructor(map?: {
|
|
1887
|
+
[key: string]: any;
|
|
1888
|
+
});
|
|
1889
|
+
}
|
|
1755
1890
|
export declare class DescribeDiskReplicaGroupsResponseBodyReplicaGroups extends $tea.Model {
|
|
1756
1891
|
bandwidth?: number;
|
|
1757
1892
|
description?: string;
|
|
@@ -1765,12 +1900,40 @@ export declare class DescribeDiskReplicaGroupsResponseBodyReplicaGroups extends
|
|
|
1765
1900
|
primaryZone?: string;
|
|
1766
1901
|
RPO?: number;
|
|
1767
1902
|
replicaGroupId?: string;
|
|
1903
|
+
resourceGroupId?: string;
|
|
1768
1904
|
site?: string;
|
|
1769
1905
|
sourceRegionId?: string;
|
|
1770
1906
|
sourceZoneId?: string;
|
|
1771
1907
|
standbyRegion?: string;
|
|
1772
1908
|
standbyZone?: string;
|
|
1773
1909
|
status?: string;
|
|
1910
|
+
tags?: DescribeDiskReplicaGroupsResponseBodyReplicaGroupsTags[];
|
|
1911
|
+
static names(): {
|
|
1912
|
+
[key: string]: string;
|
|
1913
|
+
};
|
|
1914
|
+
static types(): {
|
|
1915
|
+
[key: string]: any;
|
|
1916
|
+
};
|
|
1917
|
+
constructor(map?: {
|
|
1918
|
+
[key: string]: any;
|
|
1919
|
+
});
|
|
1920
|
+
}
|
|
1921
|
+
export declare class DescribeDiskReplicaPairsRequestTag extends $tea.Model {
|
|
1922
|
+
key?: string;
|
|
1923
|
+
value?: string;
|
|
1924
|
+
static names(): {
|
|
1925
|
+
[key: string]: string;
|
|
1926
|
+
};
|
|
1927
|
+
static types(): {
|
|
1928
|
+
[key: string]: any;
|
|
1929
|
+
};
|
|
1930
|
+
constructor(map?: {
|
|
1931
|
+
[key: string]: any;
|
|
1932
|
+
});
|
|
1933
|
+
}
|
|
1934
|
+
export declare class DescribeDiskReplicaPairsResponseBodyReplicaPairsTags extends $tea.Model {
|
|
1935
|
+
tagKey?: string;
|
|
1936
|
+
tagValue?: string;
|
|
1774
1937
|
static names(): {
|
|
1775
1938
|
[key: string]: string;
|
|
1776
1939
|
};
|
|
@@ -1798,6 +1961,7 @@ export declare class DescribeDiskReplicaPairsResponseBodyReplicaPairs extends $t
|
|
|
1798
1961
|
replicaGroupId?: string;
|
|
1799
1962
|
replicaGroupName?: string;
|
|
1800
1963
|
replicaPairId?: string;
|
|
1964
|
+
resourceGroupId?: string;
|
|
1801
1965
|
site?: string;
|
|
1802
1966
|
sourceDiskId?: string;
|
|
1803
1967
|
sourceRegion?: string;
|
|
@@ -1806,6 +1970,7 @@ export declare class DescribeDiskReplicaPairsResponseBodyReplicaPairs extends $t
|
|
|
1806
1970
|
standbyZone?: string;
|
|
1807
1971
|
status?: string;
|
|
1808
1972
|
statusMessage?: string;
|
|
1973
|
+
tags?: DescribeDiskReplicaPairsResponseBodyReplicaPairsTags[];
|
|
1809
1974
|
static names(): {
|
|
1810
1975
|
[key: string]: string;
|
|
1811
1976
|
};
|
|
@@ -1891,74 +2056,596 @@ export default class Client extends OpenApi {
|
|
|
1891
2056
|
getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
|
|
1892
2057
|
[key: string]: string;
|
|
1893
2058
|
}, endpoint: string): string;
|
|
2059
|
+
/**
|
|
2060
|
+
* The region ID of the replication pair-consistent group.
|
|
2061
|
+
*
|
|
2062
|
+
* @param request AddDiskReplicaPairRequest
|
|
2063
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2064
|
+
* @return AddDiskReplicaPairResponse
|
|
2065
|
+
*/
|
|
1894
2066
|
addDiskReplicaPairWithOptions(request: AddDiskReplicaPairRequest, runtime: $Util.RuntimeOptions): Promise<AddDiskReplicaPairResponse>;
|
|
2067
|
+
/**
|
|
2068
|
+
* The region ID of the replication pair-consistent group.
|
|
2069
|
+
*
|
|
2070
|
+
* @param request AddDiskReplicaPairRequest
|
|
2071
|
+
* @return AddDiskReplicaPairResponse
|
|
2072
|
+
*/
|
|
1895
2073
|
addDiskReplicaPair(request: AddDiskReplicaPairRequest): Promise<AddDiskReplicaPairResponse>;
|
|
2074
|
+
/**
|
|
2075
|
+
* ## Usage notes
|
|
2076
|
+
* CloudLens for EBS is in invitational preview in the China (Hangzhou), China (Shanghai), China (Zhangjiakou), China (Shenzhen), and China (Hong Kong) regions. To use the feature, [submit a ticket](https://workorder-intl.console.aliyun.com/#/ticket/createIndex).
|
|
2077
|
+
*
|
|
2078
|
+
* @param request ApplyLensServiceRequest
|
|
2079
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2080
|
+
* @return ApplyLensServiceResponse
|
|
2081
|
+
*/
|
|
1896
2082
|
applyLensServiceWithOptions(runtime: $Util.RuntimeOptions): Promise<ApplyLensServiceResponse>;
|
|
2083
|
+
/**
|
|
2084
|
+
* ## Usage notes
|
|
2085
|
+
* CloudLens for EBS is in invitational preview in the China (Hangzhou), China (Shanghai), China (Zhangjiakou), China (Shenzhen), and China (Hong Kong) regions. To use the feature, [submit a ticket](https://workorder-intl.console.aliyun.com/#/ticket/createIndex).
|
|
2086
|
+
*
|
|
2087
|
+
* @return ApplyLensServiceResponse
|
|
2088
|
+
*/
|
|
1897
2089
|
applyLensService(): Promise<ApplyLensServiceResponse>;
|
|
2090
|
+
/**
|
|
2091
|
+
* ## Usage notes
|
|
2092
|
+
* CloudLens for EBS is in invitational preview in the China (Hangzhou), China (Shanghai), China (Zhangjiakou), China (Shenzhen), and China (Hong Kong) regions. To use the feature, [submit a ticket](https://workorder-intl.console.aliyun.com/#/ticket/createIndex).
|
|
2093
|
+
*
|
|
2094
|
+
* @param request CancelLensServiceRequest
|
|
2095
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2096
|
+
* @return CancelLensServiceResponse
|
|
2097
|
+
*/
|
|
1898
2098
|
cancelLensServiceWithOptions(runtime: $Util.RuntimeOptions): Promise<CancelLensServiceResponse>;
|
|
2099
|
+
/**
|
|
2100
|
+
* ## Usage notes
|
|
2101
|
+
* CloudLens for EBS is in invitational preview in the China (Hangzhou), China (Shanghai), China (Zhangjiakou), China (Shenzhen), and China (Hong Kong) regions. To use the feature, [submit a ticket](https://workorder-intl.console.aliyun.com/#/ticket/createIndex).
|
|
2102
|
+
*
|
|
2103
|
+
* @return CancelLensServiceResponse
|
|
2104
|
+
*/
|
|
1899
2105
|
cancelLensService(): Promise<CancelLensServiceResponse>;
|
|
2106
|
+
changeResourceGroupWithOptions(request: ChangeResourceGroupRequest, runtime: $Util.RuntimeOptions): Promise<ChangeResourceGroupResponse>;
|
|
2107
|
+
changeResourceGroup(request: ChangeResourceGroupRequest): Promise<ChangeResourceGroupResponse>;
|
|
2108
|
+
/**
|
|
2109
|
+
* Dedicated block storage clusters are physically isolated from public block storage clusters. The owner of each dedicated block storage cluster has exclusive access to all resources in the cluster. For more information, see [Overview](~~208883~~).
|
|
2110
|
+
* Disks created in a dedicated block storage cluster can be attached only to Elastic Compute Service (ECS) instances that reside in the same zone as the cluster. Before you create a dedicated block storage cluster, decide the regions and zones in which to deploy your cloud resources.
|
|
2111
|
+
* Dedicated block storage clusters are classified into basic and performance types. When you create a dedicated block storage cluster, select a cluster type based on your business requirements.
|
|
2112
|
+
* You are charged for creating dedicated block storage clusters. For more information, see [~~208884~~](~~208884~~).
|
|
2113
|
+
*
|
|
2114
|
+
* @param request CreateDedicatedBlockStorageClusterRequest
|
|
2115
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2116
|
+
* @return CreateDedicatedBlockStorageClusterResponse
|
|
2117
|
+
*/
|
|
1900
2118
|
createDedicatedBlockStorageClusterWithOptions(request: CreateDedicatedBlockStorageClusterRequest, runtime: $Util.RuntimeOptions): Promise<CreateDedicatedBlockStorageClusterResponse>;
|
|
2119
|
+
/**
|
|
2120
|
+
* Dedicated block storage clusters are physically isolated from public block storage clusters. The owner of each dedicated block storage cluster has exclusive access to all resources in the cluster. For more information, see [Overview](~~208883~~).
|
|
2121
|
+
* Disks created in a dedicated block storage cluster can be attached only to Elastic Compute Service (ECS) instances that reside in the same zone as the cluster. Before you create a dedicated block storage cluster, decide the regions and zones in which to deploy your cloud resources.
|
|
2122
|
+
* Dedicated block storage clusters are classified into basic and performance types. When you create a dedicated block storage cluster, select a cluster type based on your business requirements.
|
|
2123
|
+
* You are charged for creating dedicated block storage clusters. For more information, see [~~208884~~](~~208884~~).
|
|
2124
|
+
*
|
|
2125
|
+
* @param request CreateDedicatedBlockStorageClusterRequest
|
|
2126
|
+
* @return CreateDedicatedBlockStorageClusterResponse
|
|
2127
|
+
*/
|
|
1901
2128
|
createDedicatedBlockStorageCluster(request: CreateDedicatedBlockStorageClusterRequest): Promise<CreateDedicatedBlockStorageClusterResponse>;
|
|
2129
|
+
/**
|
|
2130
|
+
* The replication pair-consistent group feature allows you to batch manage multiple disks in disaster recovery scenarios. You can restore the data of all disks in the same replication pair-consistent group to the same point in time to allow for disaster recovery of one or more instances.
|
|
2131
|
+
* When you create a replication pair-consistent group, take note of the following items:
|
|
2132
|
+
* * The replication pair-consistent group feature is supported in the China (Hangzhou), China (Shanghai), China (Beijing), China (Shenzhen), China (Heyuan), China (Chengdu), China (Hong Kong), Singapore, US (Silicon Valley), and US (Virginia) regions.
|
|
2133
|
+
* * Replication pair-consistent groups support disaster recovery across zones within the same region and disaster recovery across regions.
|
|
2134
|
+
* * A replication pair and a replication pair-consistent group replicate in the same direction if they have the same primary region (production region), primary zone (production zone), secondary region (disaster recovery region), and secondary zone (disaster recovery zone). Replication pairs can be added only to a replication pair-consistent group that replicates in the same direction as them.
|
|
2135
|
+
* * After replication pairs are added to a replication pair-consistent group, the recovery point objective (RPO) of the group takes effect on the pairs in place of their original RPOs.
|
|
2136
|
+
*
|
|
2137
|
+
* @param request CreateDiskReplicaGroupRequest
|
|
2138
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2139
|
+
* @return CreateDiskReplicaGroupResponse
|
|
2140
|
+
*/
|
|
1902
2141
|
createDiskReplicaGroupWithOptions(request: CreateDiskReplicaGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateDiskReplicaGroupResponse>;
|
|
2142
|
+
/**
|
|
2143
|
+
* The replication pair-consistent group feature allows you to batch manage multiple disks in disaster recovery scenarios. You can restore the data of all disks in the same replication pair-consistent group to the same point in time to allow for disaster recovery of one or more instances.
|
|
2144
|
+
* When you create a replication pair-consistent group, take note of the following items:
|
|
2145
|
+
* * The replication pair-consistent group feature is supported in the China (Hangzhou), China (Shanghai), China (Beijing), China (Shenzhen), China (Heyuan), China (Chengdu), China (Hong Kong), Singapore, US (Silicon Valley), and US (Virginia) regions.
|
|
2146
|
+
* * Replication pair-consistent groups support disaster recovery across zones within the same region and disaster recovery across regions.
|
|
2147
|
+
* * A replication pair and a replication pair-consistent group replicate in the same direction if they have the same primary region (production region), primary zone (production zone), secondary region (disaster recovery region), and secondary zone (disaster recovery zone). Replication pairs can be added only to a replication pair-consistent group that replicates in the same direction as them.
|
|
2148
|
+
* * After replication pairs are added to a replication pair-consistent group, the recovery point objective (RPO) of the group takes effect on the pairs in place of their original RPOs.
|
|
2149
|
+
*
|
|
2150
|
+
* @param request CreateDiskReplicaGroupRequest
|
|
2151
|
+
* @return CreateDiskReplicaGroupResponse
|
|
2152
|
+
*/
|
|
1903
2153
|
createDiskReplicaGroup(request: CreateDiskReplicaGroupRequest): Promise<CreateDiskReplicaGroupResponse>;
|
|
2154
|
+
/**
|
|
2155
|
+
* Async replication is a feature that protects data across regions by using the data replication capability of Elastic Block Storage (EBS). This feature can be used to asynchronously replicate data from a disk in one region to a disk in another region for disaster recovery purposes. You can use this feature to implement disaster recovery for critical business to protect data in your databases and improve business continuity.
|
|
2156
|
+
* Currently, the async replication feature can asynchronously replicate data only between enhanced SSDs (ESSDs). The functionality of disks in replication pairs is limited. You are charged on a subscription basis for the bandwidth that is used by the async replication feature.
|
|
2157
|
+
* Before you call this operation, take note of the following items:
|
|
2158
|
+
* * Make sure that the source disk (primary disk) from which to replicate data and the destination disk (secondary disk) to which to replicate data are created. You can call the [CreateDisk](~~25513~~) operation to create disks.
|
|
2159
|
+
* * The secondary disk cannot reside the same region as the primary disk. The async replication feature is supported in the China (Hangzhou), China (Shanghai), China (Beijing), China (Shenzhen), China (Heyuan), China (Chengdu), China (Hong Kong), Singapore, US (Silicon Valley), and US (Virginia) regions.
|
|
2160
|
+
* * After you call this operation to create a replication pair, you must call the [StartDiskReplicaPair](~~354205~~) operation to enable async replication to periodically replicate data from the primary disk to the secondary disk across regions.
|
|
2161
|
+
*
|
|
2162
|
+
* @param request CreateDiskReplicaPairRequest
|
|
2163
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2164
|
+
* @return CreateDiskReplicaPairResponse
|
|
2165
|
+
*/
|
|
1904
2166
|
createDiskReplicaPairWithOptions(request: CreateDiskReplicaPairRequest, runtime: $Util.RuntimeOptions): Promise<CreateDiskReplicaPairResponse>;
|
|
2167
|
+
/**
|
|
2168
|
+
* Async replication is a feature that protects data across regions by using the data replication capability of Elastic Block Storage (EBS). This feature can be used to asynchronously replicate data from a disk in one region to a disk in another region for disaster recovery purposes. You can use this feature to implement disaster recovery for critical business to protect data in your databases and improve business continuity.
|
|
2169
|
+
* Currently, the async replication feature can asynchronously replicate data only between enhanced SSDs (ESSDs). The functionality of disks in replication pairs is limited. You are charged on a subscription basis for the bandwidth that is used by the async replication feature.
|
|
2170
|
+
* Before you call this operation, take note of the following items:
|
|
2171
|
+
* * Make sure that the source disk (primary disk) from which to replicate data and the destination disk (secondary disk) to which to replicate data are created. You can call the [CreateDisk](~~25513~~) operation to create disks.
|
|
2172
|
+
* * The secondary disk cannot reside the same region as the primary disk. The async replication feature is supported in the China (Hangzhou), China (Shanghai), China (Beijing), China (Shenzhen), China (Heyuan), China (Chengdu), China (Hong Kong), Singapore, US (Silicon Valley), and US (Virginia) regions.
|
|
2173
|
+
* * After you call this operation to create a replication pair, you must call the [StartDiskReplicaPair](~~354205~~) operation to enable async replication to periodically replicate data from the primary disk to the secondary disk across regions.
|
|
2174
|
+
*
|
|
2175
|
+
* @param request CreateDiskReplicaPairRequest
|
|
2176
|
+
* @return CreateDiskReplicaPairResponse
|
|
2177
|
+
*/
|
|
1905
2178
|
createDiskReplicaPair(request: CreateDiskReplicaPairRequest): Promise<CreateDiskReplicaPairResponse>;
|
|
2179
|
+
/**
|
|
2180
|
+
* * The replication pair-consistent group feature is supported in the China (Hangzhou), China (Shanghai), China (Beijing), China (Shenzhen), China (Heyuan), China (Chengdu), China (Hong Kong), Singapore (Singapore), US (Silicon Valley), and US (Virginia) regions.
|
|
2181
|
+
* * Before you can delete a replication pair-consistent group, make sure that no replication pairs are present in the group.
|
|
2182
|
+
* * The replication pair-consistent group that you want to delete must be in the **Created** (`created`), **Creation Failed** (`create_failed`), **Stopped** (`stopped`), **Failover Failed** (`failovered`), **Deleting** (`deleting`), **Deletion Failed** (`delete_failed`), or **Invalid** (`invalid`) state.
|
|
2183
|
+
*
|
|
2184
|
+
* @param request DeleteDiskReplicaGroupRequest
|
|
2185
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2186
|
+
* @return DeleteDiskReplicaGroupResponse
|
|
2187
|
+
*/
|
|
1906
2188
|
deleteDiskReplicaGroupWithOptions(request: DeleteDiskReplicaGroupRequest, runtime: $Util.RuntimeOptions): Promise<DeleteDiskReplicaGroupResponse>;
|
|
2189
|
+
/**
|
|
2190
|
+
* * The replication pair-consistent group feature is supported in the China (Hangzhou), China (Shanghai), China (Beijing), China (Shenzhen), China (Heyuan), China (Chengdu), China (Hong Kong), Singapore (Singapore), US (Silicon Valley), and US (Virginia) regions.
|
|
2191
|
+
* * Before you can delete a replication pair-consistent group, make sure that no replication pairs are present in the group.
|
|
2192
|
+
* * The replication pair-consistent group that you want to delete must be in the **Created** (`created`), **Creation Failed** (`create_failed`), **Stopped** (`stopped`), **Failover Failed** (`failovered`), **Deleting** (`deleting`), **Deletion Failed** (`delete_failed`), or **Invalid** (`invalid`) state.
|
|
2193
|
+
*
|
|
2194
|
+
* @param request DeleteDiskReplicaGroupRequest
|
|
2195
|
+
* @return DeleteDiskReplicaGroupResponse
|
|
2196
|
+
*/
|
|
1907
2197
|
deleteDiskReplicaGroup(request: DeleteDiskReplicaGroupRequest): Promise<DeleteDiskReplicaGroupResponse>;
|
|
2198
|
+
/**
|
|
2199
|
+
* * The async replication feature is supported in the China (Hangzhou), China (Shanghai), China (Beijing), China (Shenzhen), China (Heyuan), China (Chengdu), China (Hong Kong), Singapore (Singapore), US (Silicon Valley), and US (Virginia) regions.
|
|
2200
|
+
* * Only replication pairs that are in the **Stopped** (`stopped`), **Invalid** (`invalid`), or **Failed Over** (`failovered`) state can be deleted. This operation deletes only replication pairs. The primary and secondary disks in the deleted replication pairs are retained.
|
|
2201
|
+
* * To delete a replication pair, you must call this operation in the region where the primary disk is located. After the replication pair is deleted, the functionality limits are lifted from the primary and secondary disks. For example, you can attach the secondary disk, resize the disk, or read data from or write data to the disk.
|
|
2202
|
+
*
|
|
2203
|
+
* @param request DeleteDiskReplicaPairRequest
|
|
2204
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2205
|
+
* @return DeleteDiskReplicaPairResponse
|
|
2206
|
+
*/
|
|
1908
2207
|
deleteDiskReplicaPairWithOptions(request: DeleteDiskReplicaPairRequest, runtime: $Util.RuntimeOptions): Promise<DeleteDiskReplicaPairResponse>;
|
|
2208
|
+
/**
|
|
2209
|
+
* * The async replication feature is supported in the China (Hangzhou), China (Shanghai), China (Beijing), China (Shenzhen), China (Heyuan), China (Chengdu), China (Hong Kong), Singapore (Singapore), US (Silicon Valley), and US (Virginia) regions.
|
|
2210
|
+
* * Only replication pairs that are in the **Stopped** (`stopped`), **Invalid** (`invalid`), or **Failed Over** (`failovered`) state can be deleted. This operation deletes only replication pairs. The primary and secondary disks in the deleted replication pairs are retained.
|
|
2211
|
+
* * To delete a replication pair, you must call this operation in the region where the primary disk is located. After the replication pair is deleted, the functionality limits are lifted from the primary and secondary disks. For example, you can attach the secondary disk, resize the disk, or read data from or write data to the disk.
|
|
2212
|
+
*
|
|
2213
|
+
* @param request DeleteDiskReplicaPairRequest
|
|
2214
|
+
* @return DeleteDiskReplicaPairResponse
|
|
2215
|
+
*/
|
|
1909
2216
|
deleteDiskReplicaPair(request: DeleteDiskReplicaPairRequest): Promise<DeleteDiskReplicaPairResponse>;
|
|
2217
|
+
/**
|
|
2218
|
+
* * You can use one of the following methods to check the responses:
|
|
2219
|
+
* * Method 1: Use `NextToken` to configure the query token. Set the value to the `NextToken` value that is returned in the last call to the DescribeDisks operation. Then, use `MaxResults` to specify the maximum number of entries to return on each page.
|
|
2220
|
+
* * Method 2: Use `PageSize` to specify the number of entries to return on each page and then use `PageNumber` to specify the number of the page to return.
|
|
2221
|
+
* You can use only one of the preceding methods. If a large number of entries are to be returned, we recommend that you use method 1. When `NextToken` is specified, `PageSize` and `PageNumber` do not take effect and `TotalCount` in the response is invalid.
|
|
2222
|
+
* * A disk that has the multi-attach feature enabled can be attached to multiple instances. You can query the attachment information of the disk based on the `Attachment` values in the response.
|
|
2223
|
+
* When you call an API operation by using Alibaba Cloud CLI, you must specify request parameter values of different data types in the required formats. For more information, see [Parameter format overview](~~110340~~).
|
|
2224
|
+
*
|
|
2225
|
+
* @param request DescribeDedicatedBlockStorageClusterDisksRequest
|
|
2226
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2227
|
+
* @return DescribeDedicatedBlockStorageClusterDisksResponse
|
|
2228
|
+
*/
|
|
1910
2229
|
describeDedicatedBlockStorageClusterDisksWithOptions(request: DescribeDedicatedBlockStorageClusterDisksRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDedicatedBlockStorageClusterDisksResponse>;
|
|
2230
|
+
/**
|
|
2231
|
+
* * You can use one of the following methods to check the responses:
|
|
2232
|
+
* * Method 1: Use `NextToken` to configure the query token. Set the value to the `NextToken` value that is returned in the last call to the DescribeDisks operation. Then, use `MaxResults` to specify the maximum number of entries to return on each page.
|
|
2233
|
+
* * Method 2: Use `PageSize` to specify the number of entries to return on each page and then use `PageNumber` to specify the number of the page to return.
|
|
2234
|
+
* You can use only one of the preceding methods. If a large number of entries are to be returned, we recommend that you use method 1. When `NextToken` is specified, `PageSize` and `PageNumber` do not take effect and `TotalCount` in the response is invalid.
|
|
2235
|
+
* * A disk that has the multi-attach feature enabled can be attached to multiple instances. You can query the attachment information of the disk based on the `Attachment` values in the response.
|
|
2236
|
+
* When you call an API operation by using Alibaba Cloud CLI, you must specify request parameter values of different data types in the required formats. For more information, see [Parameter format overview](~~110340~~).
|
|
2237
|
+
*
|
|
2238
|
+
* @param request DescribeDedicatedBlockStorageClusterDisksRequest
|
|
2239
|
+
* @return DescribeDedicatedBlockStorageClusterDisksResponse
|
|
2240
|
+
*/
|
|
1911
2241
|
describeDedicatedBlockStorageClusterDisks(request: DescribeDedicatedBlockStorageClusterDisksRequest): Promise<DescribeDedicatedBlockStorageClusterDisksResponse>;
|
|
2242
|
+
/**
|
|
2243
|
+
* > Dedicated Block Storage Cluster is supported in the China (Heyuan), Indonesia (Jakarta), and China (Shenzhen) regions.
|
|
2244
|
+
* * You can specify multiple request parameters to be queried. Specified parameters have logical AND relations. Only the specified parameters are included in the filter conditions.
|
|
2245
|
+
* * We recommend that you use the NextToken and MaxResults parameters to perform a paged query. During a paged query, when you call the DescribeDedicatedBlockStorageClusters operation to retrieve the first page of results, set MaxResults to specify the maximum number of entries to return in the call. The return value of NextToken is a pagination token, which can be used in the next call to retrieve a new page of results. When you call the DescribeDedicatedBlockStorageClusters operation to retrieve a new page of results, set NextToken to the NextToken value returned in the previous call and set MaxResults to specify the maximum number of entries to return in this call.
|
|
2246
|
+
*
|
|
2247
|
+
* @param request DescribeDedicatedBlockStorageClustersRequest
|
|
2248
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2249
|
+
* @return DescribeDedicatedBlockStorageClustersResponse
|
|
2250
|
+
*/
|
|
1912
2251
|
describeDedicatedBlockStorageClustersWithOptions(request: DescribeDedicatedBlockStorageClustersRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDedicatedBlockStorageClustersResponse>;
|
|
2252
|
+
/**
|
|
2253
|
+
* > Dedicated Block Storage Cluster is supported in the China (Heyuan), Indonesia (Jakarta), and China (Shenzhen) regions.
|
|
2254
|
+
* * You can specify multiple request parameters to be queried. Specified parameters have logical AND relations. Only the specified parameters are included in the filter conditions.
|
|
2255
|
+
* * We recommend that you use the NextToken and MaxResults parameters to perform a paged query. During a paged query, when you call the DescribeDedicatedBlockStorageClusters operation to retrieve the first page of results, set MaxResults to specify the maximum number of entries to return in the call. The return value of NextToken is a pagination token, which can be used in the next call to retrieve a new page of results. When you call the DescribeDedicatedBlockStorageClusters operation to retrieve a new page of results, set NextToken to the NextToken value returned in the previous call and set MaxResults to specify the maximum number of entries to return in this call.
|
|
2256
|
+
*
|
|
2257
|
+
* @param request DescribeDedicatedBlockStorageClustersRequest
|
|
2258
|
+
* @return DescribeDedicatedBlockStorageClustersResponse
|
|
2259
|
+
*/
|
|
1913
2260
|
describeDedicatedBlockStorageClusters(request: DescribeDedicatedBlockStorageClustersRequest): Promise<DescribeDedicatedBlockStorageClustersResponse>;
|
|
2261
|
+
/**
|
|
2262
|
+
* ## Usage notes
|
|
2263
|
+
* CloudLens for EBS is in invitational preview in the China (Hangzhou), China (Shanghai), China (Zhangjiakou), China (Shenzhen), and China (Hong Kong) regions. To use the feature, [submit a ticket](https://workorder-intl.console.aliyun.com/#/ticket/createIndex).
|
|
2264
|
+
*
|
|
2265
|
+
* @param request DescribeDiskEventsRequest
|
|
2266
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2267
|
+
* @return DescribeDiskEventsResponse
|
|
2268
|
+
*/
|
|
1914
2269
|
describeDiskEventsWithOptions(request: DescribeDiskEventsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDiskEventsResponse>;
|
|
2270
|
+
/**
|
|
2271
|
+
* ## Usage notes
|
|
2272
|
+
* CloudLens for EBS is in invitational preview in the China (Hangzhou), China (Shanghai), China (Zhangjiakou), China (Shenzhen), and China (Hong Kong) regions. To use the feature, [submit a ticket](https://workorder-intl.console.aliyun.com/#/ticket/createIndex).
|
|
2273
|
+
*
|
|
2274
|
+
* @param request DescribeDiskEventsRequest
|
|
2275
|
+
* @return DescribeDiskEventsResponse
|
|
2276
|
+
*/
|
|
1915
2277
|
describeDiskEvents(request: DescribeDiskEventsRequest): Promise<DescribeDiskEventsResponse>;
|
|
2278
|
+
/**
|
|
2279
|
+
* ## Usage notes
|
|
2280
|
+
* * CloudLens for EBS is in invitational preview in the China (Hangzhou), China (Shanghai), China (Zhangjiakou), China (Shenzhen), and China (Hong Kong) regions. To use the feature, [submit a ticket](https://workorder-intl.console.aliyun.com/#/ticket/createIndex).
|
|
2281
|
+
* * Up to 400 monitoring data entries can be returned at a time. An error is returned if the value calculated based on the following formula is greater than 400: `(EndTime - StartTime)/Period`.
|
|
2282
|
+
* * You can query the monitoring data collected in the last three days. An error is returned if the time specified by `StartTime` is more than three days prior to the current time.
|
|
2283
|
+
*
|
|
2284
|
+
* @param request DescribeDiskMonitorDataRequest
|
|
2285
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2286
|
+
* @return DescribeDiskMonitorDataResponse
|
|
2287
|
+
*/
|
|
1916
2288
|
describeDiskMonitorDataWithOptions(request: DescribeDiskMonitorDataRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDiskMonitorDataResponse>;
|
|
2289
|
+
/**
|
|
2290
|
+
* ## Usage notes
|
|
2291
|
+
* * CloudLens for EBS is in invitational preview in the China (Hangzhou), China (Shanghai), China (Zhangjiakou), China (Shenzhen), and China (Hong Kong) regions. To use the feature, [submit a ticket](https://workorder-intl.console.aliyun.com/#/ticket/createIndex).
|
|
2292
|
+
* * Up to 400 monitoring data entries can be returned at a time. An error is returned if the value calculated based on the following formula is greater than 400: `(EndTime - StartTime)/Period`.
|
|
2293
|
+
* * You can query the monitoring data collected in the last three days. An error is returned if the time specified by `StartTime` is more than three days prior to the current time.
|
|
2294
|
+
*
|
|
2295
|
+
* @param request DescribeDiskMonitorDataRequest
|
|
2296
|
+
* @return DescribeDiskMonitorDataResponse
|
|
2297
|
+
*/
|
|
1917
2298
|
describeDiskMonitorData(request: DescribeDiskMonitorDataRequest): Promise<DescribeDiskMonitorDataResponse>;
|
|
2299
|
+
/**
|
|
2300
|
+
* ## Usage notes
|
|
2301
|
+
* CloudLens for EBS is in invitational preview in the China (Hangzhou), China (Shanghai), China (Zhangjiakou), China (Shenzhen), and China (Hong Kong) regions. To use the feature, [submit a ticket](https://workorder-intl.console.aliyun.com/#/ticket/createIndex).
|
|
2302
|
+
*
|
|
2303
|
+
* @param request DescribeDiskMonitorDataListRequest
|
|
2304
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2305
|
+
* @return DescribeDiskMonitorDataListResponse
|
|
2306
|
+
*/
|
|
1918
2307
|
describeDiskMonitorDataListWithOptions(request: DescribeDiskMonitorDataListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDiskMonitorDataListResponse>;
|
|
2308
|
+
/**
|
|
2309
|
+
* ## Usage notes
|
|
2310
|
+
* CloudLens for EBS is in invitational preview in the China (Hangzhou), China (Shanghai), China (Zhangjiakou), China (Shenzhen), and China (Hong Kong) regions. To use the feature, [submit a ticket](https://workorder-intl.console.aliyun.com/#/ticket/createIndex).
|
|
2311
|
+
*
|
|
2312
|
+
* @param request DescribeDiskMonitorDataListRequest
|
|
2313
|
+
* @return DescribeDiskMonitorDataListResponse
|
|
2314
|
+
*/
|
|
1919
2315
|
describeDiskMonitorDataList(request: DescribeDiskMonitorDataListRequest): Promise<DescribeDiskMonitorDataListResponse>;
|
|
2316
|
+
/**
|
|
2317
|
+
* To perform a paged query, set the MaxResults and NextToken parameters.
|
|
2318
|
+
* During a paged query, when you call the DescribeDiskReplicaGroups operation to retrieve the first page of results, set `MaxResults` to specify the maximum number of entries to return in the call. The return value of `NextToken` is a pagination token, which can be used in the next call to retrieve a new page of results. When you call the DescribeDiskReplicaGroups operation to retrieve a new page of results, set `NextToken` to the `NextToken` value returned in the previous call and set MaxResults to specify the maximum number of entries to return in this call.
|
|
2319
|
+
*
|
|
2320
|
+
* @param request DescribeDiskReplicaGroupsRequest
|
|
2321
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2322
|
+
* @return DescribeDiskReplicaGroupsResponse
|
|
2323
|
+
*/
|
|
1920
2324
|
describeDiskReplicaGroupsWithOptions(request: DescribeDiskReplicaGroupsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDiskReplicaGroupsResponse>;
|
|
2325
|
+
/**
|
|
2326
|
+
* To perform a paged query, set the MaxResults and NextToken parameters.
|
|
2327
|
+
* During a paged query, when you call the DescribeDiskReplicaGroups operation to retrieve the first page of results, set `MaxResults` to specify the maximum number of entries to return in the call. The return value of `NextToken` is a pagination token, which can be used in the next call to retrieve a new page of results. When you call the DescribeDiskReplicaGroups operation to retrieve a new page of results, set `NextToken` to the `NextToken` value returned in the previous call and set MaxResults to specify the maximum number of entries to return in this call.
|
|
2328
|
+
*
|
|
2329
|
+
* @param request DescribeDiskReplicaGroupsRequest
|
|
2330
|
+
* @return DescribeDiskReplicaGroupsResponse
|
|
2331
|
+
*/
|
|
1921
2332
|
describeDiskReplicaGroups(request: DescribeDiskReplicaGroupsRequest): Promise<DescribeDiskReplicaGroupsResponse>;
|
|
1922
2333
|
describeDiskReplicaPairProgressWithOptions(request: DescribeDiskReplicaPairProgressRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDiskReplicaPairProgressResponse>;
|
|
1923
2334
|
describeDiskReplicaPairProgress(request: DescribeDiskReplicaPairProgressRequest): Promise<DescribeDiskReplicaPairProgressResponse>;
|
|
2335
|
+
/**
|
|
2336
|
+
* * The async replication feature is supported in the China (Hangzhou), China (Shanghai), China (Beijing), China (Shenzhen), China (Heyuan), China (Chengdu), China (Hong Kong), Singapore, US (Silicon Valley), and US (Virginia) regions.
|
|
2337
|
+
* * When you call this operation for a specific region, if the primary disk (source disk) or secondary disk (destination disk) of a replication pair resides within the region, the information of the replication pair is displayed in the response.
|
|
2338
|
+
* * If you want to perform a paged query, configure the `NextToken` and `MaxResults` parameters. During a paged query, when you call the DescribeDiskReplicaPairs operation to retrieve the first page of results, set `MaxResults` to limit the maximum number of entries to return in the call. The return value of NextToken is a pagination token, which can be used in the next call to retrieve a new page of results. When you call the DescribeDiskReplicaPairs operation to retrieve a new page of results, set NextToken to the NextToken value returned in the previous call and set MaxResults to specify the maximum number of entries to return in this call.
|
|
2339
|
+
*
|
|
2340
|
+
* @param request DescribeDiskReplicaPairsRequest
|
|
2341
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2342
|
+
* @return DescribeDiskReplicaPairsResponse
|
|
2343
|
+
*/
|
|
1924
2344
|
describeDiskReplicaPairsWithOptions(request: DescribeDiskReplicaPairsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDiskReplicaPairsResponse>;
|
|
2345
|
+
/**
|
|
2346
|
+
* * The async replication feature is supported in the China (Hangzhou), China (Shanghai), China (Beijing), China (Shenzhen), China (Heyuan), China (Chengdu), China (Hong Kong), Singapore, US (Silicon Valley), and US (Virginia) regions.
|
|
2347
|
+
* * When you call this operation for a specific region, if the primary disk (source disk) or secondary disk (destination disk) of a replication pair resides within the region, the information of the replication pair is displayed in the response.
|
|
2348
|
+
* * If you want to perform a paged query, configure the `NextToken` and `MaxResults` parameters. During a paged query, when you call the DescribeDiskReplicaPairs operation to retrieve the first page of results, set `MaxResults` to limit the maximum number of entries to return in the call. The return value of NextToken is a pagination token, which can be used in the next call to retrieve a new page of results. When you call the DescribeDiskReplicaPairs operation to retrieve a new page of results, set NextToken to the NextToken value returned in the previous call and set MaxResults to specify the maximum number of entries to return in this call.
|
|
2349
|
+
*
|
|
2350
|
+
* @param request DescribeDiskReplicaPairsRequest
|
|
2351
|
+
* @return DescribeDiskReplicaPairsResponse
|
|
2352
|
+
*/
|
|
1925
2353
|
describeDiskReplicaPairs(request: DescribeDiskReplicaPairsRequest): Promise<DescribeDiskReplicaPairsResponse>;
|
|
2354
|
+
/**
|
|
2355
|
+
* ## Usage notes
|
|
2356
|
+
* CloudLens for EBS is in invitational preview in the China (Hangzhou), China (Shanghai), China (Zhangjiakou), China (Shenzhen), and China (Hong Kong) regions. To use the feature, [submit a ticket](https://workorder-intl.console.aliyun.com/#/ticket/createIndex).
|
|
2357
|
+
*
|
|
2358
|
+
* @param request DescribeLensServiceStatusRequest
|
|
2359
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2360
|
+
* @return DescribeLensServiceStatusResponse
|
|
2361
|
+
*/
|
|
1926
2362
|
describeLensServiceStatusWithOptions(runtime: $Util.RuntimeOptions): Promise<DescribeLensServiceStatusResponse>;
|
|
2363
|
+
/**
|
|
2364
|
+
* ## Usage notes
|
|
2365
|
+
* CloudLens for EBS is in invitational preview in the China (Hangzhou), China (Shanghai), China (Zhangjiakou), China (Shenzhen), and China (Hong Kong) regions. To use the feature, [submit a ticket](https://workorder-intl.console.aliyun.com/#/ticket/createIndex).
|
|
2366
|
+
*
|
|
2367
|
+
* @return DescribeLensServiceStatusResponse
|
|
2368
|
+
*/
|
|
1927
2369
|
describeLensServiceStatus(): Promise<DescribeLensServiceStatusResponse>;
|
|
1928
2370
|
describeRegionsWithOptions(request: DescribeRegionsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRegionsResponse>;
|
|
1929
2371
|
describeRegions(request: DescribeRegionsRequest): Promise<DescribeRegionsResponse>;
|
|
2372
|
+
/**
|
|
2373
|
+
* The operation that you want to perform. Set the value to **FailoverDiskReplicaGroup**.
|
|
2374
|
+
*
|
|
2375
|
+
* @param request FailoverDiskReplicaGroupRequest
|
|
2376
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2377
|
+
* @return FailoverDiskReplicaGroupResponse
|
|
2378
|
+
*/
|
|
1930
2379
|
failoverDiskReplicaGroupWithOptions(request: FailoverDiskReplicaGroupRequest, runtime: $Util.RuntimeOptions): Promise<FailoverDiskReplicaGroupResponse>;
|
|
2380
|
+
/**
|
|
2381
|
+
* The operation that you want to perform. Set the value to **FailoverDiskReplicaGroup**.
|
|
2382
|
+
*
|
|
2383
|
+
* @param request FailoverDiskReplicaGroupRequest
|
|
2384
|
+
* @return FailoverDiskReplicaGroupResponse
|
|
2385
|
+
*/
|
|
1931
2386
|
failoverDiskReplicaGroup(request: FailoverDiskReplicaGroupRequest): Promise<FailoverDiskReplicaGroupResponse>;
|
|
2387
|
+
/**
|
|
2388
|
+
* The client token that is used to ensure the idempotence of the request. You can use the client to generate the value, but you must make sure that the value is unique among different requests. The ClientToken value can contain only ASCII characters and cannot exceed 64 characters in length. For more information, see [How to ensure idempotence](~~25693~~).
|
|
2389
|
+
*
|
|
2390
|
+
* @param request FailoverDiskReplicaPairRequest
|
|
2391
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2392
|
+
* @return FailoverDiskReplicaPairResponse
|
|
2393
|
+
*/
|
|
1932
2394
|
failoverDiskReplicaPairWithOptions(request: FailoverDiskReplicaPairRequest, runtime: $Util.RuntimeOptions): Promise<FailoverDiskReplicaPairResponse>;
|
|
2395
|
+
/**
|
|
2396
|
+
* The client token that is used to ensure the idempotence of the request. You can use the client to generate the value, but you must make sure that the value is unique among different requests. The ClientToken value can contain only ASCII characters and cannot exceed 64 characters in length. For more information, see [How to ensure idempotence](~~25693~~).
|
|
2397
|
+
*
|
|
2398
|
+
* @param request FailoverDiskReplicaPairRequest
|
|
2399
|
+
* @return FailoverDiskReplicaPairResponse
|
|
2400
|
+
*/
|
|
1933
2401
|
failoverDiskReplicaPair(request: FailoverDiskReplicaPairRequest): Promise<FailoverDiskReplicaPairResponse>;
|
|
2402
|
+
/**
|
|
2403
|
+
* Specify at least one of the following parameters or parameter pairs in a request to determine a query object:
|
|
2404
|
+
* * `ResourceId.N`
|
|
2405
|
+
* * `Tag.N` parameter pair (`Tag.N.Key` and `Tag.N.Value`)
|
|
2406
|
+
* If you set `Tag.N` and `ResourceId.N` at the same time, the EBS resources that match both the parameters are returned.
|
|
2407
|
+
*
|
|
2408
|
+
* @param request ListTagResourcesRequest
|
|
2409
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2410
|
+
* @return ListTagResourcesResponse
|
|
2411
|
+
*/
|
|
1934
2412
|
listTagResourcesWithOptions(request: ListTagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<ListTagResourcesResponse>;
|
|
2413
|
+
/**
|
|
2414
|
+
* Specify at least one of the following parameters or parameter pairs in a request to determine a query object:
|
|
2415
|
+
* * `ResourceId.N`
|
|
2416
|
+
* * `Tag.N` parameter pair (`Tag.N.Key` and `Tag.N.Value`)
|
|
2417
|
+
* If you set `Tag.N` and `ResourceId.N` at the same time, the EBS resources that match both the parameters are returned.
|
|
2418
|
+
*
|
|
2419
|
+
* @param request ListTagResourcesRequest
|
|
2420
|
+
* @return ListTagResourcesResponse
|
|
2421
|
+
*/
|
|
1935
2422
|
listTagResources(request: ListTagResourcesRequest): Promise<ListTagResourcesResponse>;
|
|
2423
|
+
/**
|
|
2424
|
+
* You can call this operation to modify the information of a dedicated block storage cluster. The information includes the name and description of the cluster.
|
|
2425
|
+
*
|
|
2426
|
+
* @param request ModifyDedicatedBlockStorageClusterAttributeRequest
|
|
2427
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2428
|
+
* @return ModifyDedicatedBlockStorageClusterAttributeResponse
|
|
2429
|
+
*/
|
|
1936
2430
|
modifyDedicatedBlockStorageClusterAttributeWithOptions(request: ModifyDedicatedBlockStorageClusterAttributeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDedicatedBlockStorageClusterAttributeResponse>;
|
|
2431
|
+
/**
|
|
2432
|
+
* You can call this operation to modify the information of a dedicated block storage cluster. The information includes the name and description of the cluster.
|
|
2433
|
+
*
|
|
2434
|
+
* @param request ModifyDedicatedBlockStorageClusterAttributeRequest
|
|
2435
|
+
* @return ModifyDedicatedBlockStorageClusterAttributeResponse
|
|
2436
|
+
*/
|
|
1937
2437
|
modifyDedicatedBlockStorageClusterAttribute(request: ModifyDedicatedBlockStorageClusterAttributeRequest): Promise<ModifyDedicatedBlockStorageClusterAttributeResponse>;
|
|
2438
|
+
/**
|
|
2439
|
+
* * The replication pair-consistent group feature is supported in the China (Hangzhou), China (Shanghai), China (Beijing), China (Shenzhen), China (Heyuan), China (Chengdu), China (Hong Kong), Singapore (Singapore), US (Silicon Valley), and US (Virginia) regions.
|
|
2440
|
+
* * The replication pair-consistent group must be in the **Created** (`created`) or **Stopped** (`stopped`) state.
|
|
2441
|
+
*
|
|
2442
|
+
* @param request ModifyDiskReplicaGroupRequest
|
|
2443
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2444
|
+
* @return ModifyDiskReplicaGroupResponse
|
|
2445
|
+
*/
|
|
1938
2446
|
modifyDiskReplicaGroupWithOptions(request: ModifyDiskReplicaGroupRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDiskReplicaGroupResponse>;
|
|
2447
|
+
/**
|
|
2448
|
+
* * The replication pair-consistent group feature is supported in the China (Hangzhou), China (Shanghai), China (Beijing), China (Shenzhen), China (Heyuan), China (Chengdu), China (Hong Kong), Singapore (Singapore), US (Silicon Valley), and US (Virginia) regions.
|
|
2449
|
+
* * The replication pair-consistent group must be in the **Created** (`created`) or **Stopped** (`stopped`) state.
|
|
2450
|
+
*
|
|
2451
|
+
* @param request ModifyDiskReplicaGroupRequest
|
|
2452
|
+
* @return ModifyDiskReplicaGroupResponse
|
|
2453
|
+
*/
|
|
1939
2454
|
modifyDiskReplicaGroup(request: ModifyDiskReplicaGroupRequest): Promise<ModifyDiskReplicaGroupResponse>;
|
|
2455
|
+
/**
|
|
2456
|
+
* The name of the replication pair.
|
|
2457
|
+
*
|
|
2458
|
+
* @param request ModifyDiskReplicaPairRequest
|
|
2459
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2460
|
+
* @return ModifyDiskReplicaPairResponse
|
|
2461
|
+
*/
|
|
1940
2462
|
modifyDiskReplicaPairWithOptions(request: ModifyDiskReplicaPairRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDiskReplicaPairResponse>;
|
|
2463
|
+
/**
|
|
2464
|
+
* The name of the replication pair.
|
|
2465
|
+
*
|
|
2466
|
+
* @param request ModifyDiskReplicaPairRequest
|
|
2467
|
+
* @return ModifyDiskReplicaPairResponse
|
|
2468
|
+
*/
|
|
1941
2469
|
modifyDiskReplicaPair(request: ModifyDiskReplicaPairRequest): Promise<ModifyDiskReplicaPairResponse>;
|
|
2470
|
+
/**
|
|
2471
|
+
* * The replication pair-consistent group feature is supported in the China (Hangzhou), China (Shanghai), China (Beijing), China (Shenzhen), China (Heyuan), China (Chengdu), China (Hong Kong), Singapore (Singapore), US (Silicon Valley), and US (Virginia) regions.
|
|
2472
|
+
* * The replication pair-consistent group from which you want to remove a replication pair must be in the **Created** (`created`), **Stopped** (`stopped`), or **Invalid** (`invalid`) state.
|
|
2473
|
+
*
|
|
2474
|
+
* @param request RemoveDiskReplicaPairRequest
|
|
2475
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2476
|
+
* @return RemoveDiskReplicaPairResponse
|
|
2477
|
+
*/
|
|
1942
2478
|
removeDiskReplicaPairWithOptions(request: RemoveDiskReplicaPairRequest, runtime: $Util.RuntimeOptions): Promise<RemoveDiskReplicaPairResponse>;
|
|
2479
|
+
/**
|
|
2480
|
+
* * The replication pair-consistent group feature is supported in the China (Hangzhou), China (Shanghai), China (Beijing), China (Shenzhen), China (Heyuan), China (Chengdu), China (Hong Kong), Singapore (Singapore), US (Silicon Valley), and US (Virginia) regions.
|
|
2481
|
+
* * The replication pair-consistent group from which you want to remove a replication pair must be in the **Created** (`created`), **Stopped** (`stopped`), or **Invalid** (`invalid`) state.
|
|
2482
|
+
*
|
|
2483
|
+
* @param request RemoveDiskReplicaPairRequest
|
|
2484
|
+
* @return RemoveDiskReplicaPairResponse
|
|
2485
|
+
*/
|
|
1943
2486
|
removeDiskReplicaPair(request: RemoveDiskReplicaPairRequest): Promise<RemoveDiskReplicaPairResponse>;
|
|
2487
|
+
/**
|
|
2488
|
+
* The operation that you want to perform. Set the value to **ReprotectDiskReplicaGroup**.
|
|
2489
|
+
*
|
|
2490
|
+
* @param request ReprotectDiskReplicaGroupRequest
|
|
2491
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2492
|
+
* @return ReprotectDiskReplicaGroupResponse
|
|
2493
|
+
*/
|
|
1944
2494
|
reprotectDiskReplicaGroupWithOptions(request: ReprotectDiskReplicaGroupRequest, runtime: $Util.RuntimeOptions): Promise<ReprotectDiskReplicaGroupResponse>;
|
|
2495
|
+
/**
|
|
2496
|
+
* The operation that you want to perform. Set the value to **ReprotectDiskReplicaGroup**.
|
|
2497
|
+
*
|
|
2498
|
+
* @param request ReprotectDiskReplicaGroupRequest
|
|
2499
|
+
* @return ReprotectDiskReplicaGroupResponse
|
|
2500
|
+
*/
|
|
1945
2501
|
reprotectDiskReplicaGroup(request: ReprotectDiskReplicaGroupRequest): Promise<ReprotectDiskReplicaGroupResponse>;
|
|
2502
|
+
/**
|
|
2503
|
+
* The client token that is used to ensure the idempotence of the request. You can use the client to generate the value, but you must make sure that the value is unique among different requests. The ClientToken value can contain only ASCII characters and cannot exceed 64 characters in length. For more information, see [How to ensure idempotence](~~25693~~).
|
|
2504
|
+
*
|
|
2505
|
+
* @param request ReprotectDiskReplicaPairRequest
|
|
2506
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2507
|
+
* @return ReprotectDiskReplicaPairResponse
|
|
2508
|
+
*/
|
|
1946
2509
|
reprotectDiskReplicaPairWithOptions(request: ReprotectDiskReplicaPairRequest, runtime: $Util.RuntimeOptions): Promise<ReprotectDiskReplicaPairResponse>;
|
|
2510
|
+
/**
|
|
2511
|
+
* The client token that is used to ensure the idempotence of the request. You can use the client to generate the value, but you must make sure that the value is unique among different requests. The ClientToken value can contain only ASCII characters and cannot exceed 64 characters in length. For more information, see [How to ensure idempotence](~~25693~~).
|
|
2512
|
+
*
|
|
2513
|
+
* @param request ReprotectDiskReplicaPairRequest
|
|
2514
|
+
* @return ReprotectDiskReplicaPairResponse
|
|
2515
|
+
*/
|
|
1947
2516
|
reprotectDiskReplicaPair(request: ReprotectDiskReplicaPairRequest): Promise<ReprotectDiskReplicaPairResponse>;
|
|
2517
|
+
/**
|
|
2518
|
+
* ## Usage notes
|
|
2519
|
+
* * CloudLens for EBS is in invitational preview in the China (Hangzhou), China (Shanghai), China (Zhangjiakou), China (Shenzhen), and China (Hong Kong) regions. To use the feature, [submit a ticket](https://workorder-intl.console.aliyun.com/#/ticket/createIndex).
|
|
2520
|
+
* * CloudLens for EBS can be used to monitor the performance of enhanced SSDs (ESSDs), standard SSDs, and ultra disks. After you enable CloudLens for EBS, you can enable the data collection feature to obtain the near real-time monitoring data. For more information, see [Enable near real-time monitoring for disks](~~354196~~).
|
|
2521
|
+
*
|
|
2522
|
+
* @param tmpReq StartDiskMonitorRequest
|
|
2523
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2524
|
+
* @return StartDiskMonitorResponse
|
|
2525
|
+
*/
|
|
1948
2526
|
startDiskMonitorWithOptions(tmpReq: StartDiskMonitorRequest, runtime: $Util.RuntimeOptions): Promise<StartDiskMonitorResponse>;
|
|
2527
|
+
/**
|
|
2528
|
+
* ## Usage notes
|
|
2529
|
+
* * CloudLens for EBS is in invitational preview in the China (Hangzhou), China (Shanghai), China (Zhangjiakou), China (Shenzhen), and China (Hong Kong) regions. To use the feature, [submit a ticket](https://workorder-intl.console.aliyun.com/#/ticket/createIndex).
|
|
2530
|
+
* * CloudLens for EBS can be used to monitor the performance of enhanced SSDs (ESSDs), standard SSDs, and ultra disks. After you enable CloudLens for EBS, you can enable the data collection feature to obtain the near real-time monitoring data. For more information, see [Enable near real-time monitoring for disks](~~354196~~).
|
|
2531
|
+
*
|
|
2532
|
+
* @param request StartDiskMonitorRequest
|
|
2533
|
+
* @return StartDiskMonitorResponse
|
|
2534
|
+
*/
|
|
1949
2535
|
startDiskMonitor(request: StartDiskMonitorRequest): Promise<StartDiskMonitorResponse>;
|
|
2536
|
+
/**
|
|
2537
|
+
* The operation that you want to perform. Set the value to **StartDiskReplicaGroup**.
|
|
2538
|
+
*
|
|
2539
|
+
* @param request StartDiskReplicaGroupRequest
|
|
2540
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2541
|
+
* @return StartDiskReplicaGroupResponse
|
|
2542
|
+
*/
|
|
1950
2543
|
startDiskReplicaGroupWithOptions(request: StartDiskReplicaGroupRequest, runtime: $Util.RuntimeOptions): Promise<StartDiskReplicaGroupResponse>;
|
|
2544
|
+
/**
|
|
2545
|
+
* The operation that you want to perform. Set the value to **StartDiskReplicaGroup**.
|
|
2546
|
+
*
|
|
2547
|
+
* @param request StartDiskReplicaGroupRequest
|
|
2548
|
+
* @return StartDiskReplicaGroupResponse
|
|
2549
|
+
*/
|
|
1951
2550
|
startDiskReplicaGroup(request: StartDiskReplicaGroupRequest): Promise<StartDiskReplicaGroupResponse>;
|
|
2551
|
+
/**
|
|
2552
|
+
* The client token that is used to ensure the idempotence of the request. You can use the client to generate the value, but you must make sure that the value is unique among different requests. The ClientToken value can contain only ASCII characters and cannot exceed 64 characters in length. For more information, see [How to ensure idempotence](~~25693~~).
|
|
2553
|
+
*
|
|
2554
|
+
* @param request StartDiskReplicaPairRequest
|
|
2555
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2556
|
+
* @return StartDiskReplicaPairResponse
|
|
2557
|
+
*/
|
|
1952
2558
|
startDiskReplicaPairWithOptions(request: StartDiskReplicaPairRequest, runtime: $Util.RuntimeOptions): Promise<StartDiskReplicaPairResponse>;
|
|
2559
|
+
/**
|
|
2560
|
+
* The client token that is used to ensure the idempotence of the request. You can use the client to generate the value, but you must make sure that the value is unique among different requests. The ClientToken value can contain only ASCII characters and cannot exceed 64 characters in length. For more information, see [How to ensure idempotence](~~25693~~).
|
|
2561
|
+
*
|
|
2562
|
+
* @param request StartDiskReplicaPairRequest
|
|
2563
|
+
* @return StartDiskReplicaPairResponse
|
|
2564
|
+
*/
|
|
1953
2565
|
startDiskReplicaPair(request: StartDiskReplicaPairRequest): Promise<StartDiskReplicaPairResponse>;
|
|
2566
|
+
/**
|
|
2567
|
+
* ## Usage notes
|
|
2568
|
+
* CloudLens for EBS is in invitational preview in the China (Hangzhou), China (Shanghai), China (Zhangjiakou), China (Shenzhen), and China (Hong Kong) regions. To use the feature, [submit a ticket](https://workorder-intl.console.aliyun.com/#/ticket/createIndex).
|
|
2569
|
+
*
|
|
2570
|
+
* @param tmpReq StopDiskMonitorRequest
|
|
2571
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2572
|
+
* @return StopDiskMonitorResponse
|
|
2573
|
+
*/
|
|
1954
2574
|
stopDiskMonitorWithOptions(tmpReq: StopDiskMonitorRequest, runtime: $Util.RuntimeOptions): Promise<StopDiskMonitorResponse>;
|
|
2575
|
+
/**
|
|
2576
|
+
* ## Usage notes
|
|
2577
|
+
* CloudLens for EBS is in invitational preview in the China (Hangzhou), China (Shanghai), China (Zhangjiakou), China (Shenzhen), and China (Hong Kong) regions. To use the feature, [submit a ticket](https://workorder-intl.console.aliyun.com/#/ticket/createIndex).
|
|
2578
|
+
*
|
|
2579
|
+
* @param request StopDiskMonitorRequest
|
|
2580
|
+
* @return StopDiskMonitorResponse
|
|
2581
|
+
*/
|
|
1955
2582
|
stopDiskMonitor(request: StopDiskMonitorRequest): Promise<StopDiskMonitorResponse>;
|
|
2583
|
+
/**
|
|
2584
|
+
* * The replication pair-consistent group feature is supported in the China (Hangzhou), China (Shanghai), China (Beijing), China (Shenzhen), China (Heyuan), China (Chengdu), China (Hong Kong), Singapore (Singapore), US (Silicon Valley), and US (Virginia) regions.
|
|
2585
|
+
* * The replication pair-consistent group that you want to stop must be in the **One-time Syncing** (`manual_syncing`), **Syncing** (`syncing`), **Normal** (`normal`), **Stopping** (`stopping`), **Stop Failed** (`stop_failed`), or **Stopped** (`stopped`) state.
|
|
2586
|
+
* * When a replication pair-consistent group is stopped, it enters the **Stopped** (`stopped`) state. If a replication pair-consistent group cannot be stopped, the state of the group remains unchanged or changes to **Stop Failed** (`stop_failed`). In this case, try again later.
|
|
2587
|
+
*
|
|
2588
|
+
* @param request StopDiskReplicaGroupRequest
|
|
2589
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2590
|
+
* @return StopDiskReplicaGroupResponse
|
|
2591
|
+
*/
|
|
1956
2592
|
stopDiskReplicaGroupWithOptions(request: StopDiskReplicaGroupRequest, runtime: $Util.RuntimeOptions): Promise<StopDiskReplicaGroupResponse>;
|
|
2593
|
+
/**
|
|
2594
|
+
* * The replication pair-consistent group feature is supported in the China (Hangzhou), China (Shanghai), China (Beijing), China (Shenzhen), China (Heyuan), China (Chengdu), China (Hong Kong), Singapore (Singapore), US (Silicon Valley), and US (Virginia) regions.
|
|
2595
|
+
* * The replication pair-consistent group that you want to stop must be in the **One-time Syncing** (`manual_syncing`), **Syncing** (`syncing`), **Normal** (`normal`), **Stopping** (`stopping`), **Stop Failed** (`stop_failed`), or **Stopped** (`stopped`) state.
|
|
2596
|
+
* * When a replication pair-consistent group is stopped, it enters the **Stopped** (`stopped`) state. If a replication pair-consistent group cannot be stopped, the state of the group remains unchanged or changes to **Stop Failed** (`stop_failed`). In this case, try again later.
|
|
2597
|
+
*
|
|
2598
|
+
* @param request StopDiskReplicaGroupRequest
|
|
2599
|
+
* @return StopDiskReplicaGroupResponse
|
|
2600
|
+
*/
|
|
1957
2601
|
stopDiskReplicaGroup(request: StopDiskReplicaGroupRequest): Promise<StopDiskReplicaGroupResponse>;
|
|
2602
|
+
/**
|
|
2603
|
+
* * The async replication feature is supported in the China (Hangzhou), China (Shanghai), China (Beijing), China (Shenzhen), China (Heyuan), China (Chengdu), China (Hong Kong), Singapore (Singapore), US (Silicon Valley), and US (Virginia) regions.
|
|
2604
|
+
* * Only replication pairs that are in the **Initial Syncing** (`initial_syncing`), **Syncing** (`syncing`), **One-time Syncing** (`manual_syncing`), or **Normal** (`normal`) state can be stopped. When a replication pair is stopped, it enters the Stopped (`stopped`) state. The secondary disk rolls back to the point in time when the last asynchronous replication was complete and drops all the data that is being replicated from the primary disk.
|
|
2605
|
+
*
|
|
2606
|
+
* @param request StopDiskReplicaPairRequest
|
|
2607
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2608
|
+
* @return StopDiskReplicaPairResponse
|
|
2609
|
+
*/
|
|
1958
2610
|
stopDiskReplicaPairWithOptions(request: StopDiskReplicaPairRequest, runtime: $Util.RuntimeOptions): Promise<StopDiskReplicaPairResponse>;
|
|
2611
|
+
/**
|
|
2612
|
+
* * The async replication feature is supported in the China (Hangzhou), China (Shanghai), China (Beijing), China (Shenzhen), China (Heyuan), China (Chengdu), China (Hong Kong), Singapore (Singapore), US (Silicon Valley), and US (Virginia) regions.
|
|
2613
|
+
* * Only replication pairs that are in the **Initial Syncing** (`initial_syncing`), **Syncing** (`syncing`), **One-time Syncing** (`manual_syncing`), or **Normal** (`normal`) state can be stopped. When a replication pair is stopped, it enters the Stopped (`stopped`) state. The secondary disk rolls back to the point in time when the last asynchronous replication was complete and drops all the data that is being replicated from the primary disk.
|
|
2614
|
+
*
|
|
2615
|
+
* @param request StopDiskReplicaPairRequest
|
|
2616
|
+
* @return StopDiskReplicaPairResponse
|
|
2617
|
+
*/
|
|
1959
2618
|
stopDiskReplicaPair(request: StopDiskReplicaPairRequest): Promise<StopDiskReplicaPairResponse>;
|
|
2619
|
+
/**
|
|
2620
|
+
* Before you add tags to a resource, Alibaba Cloud checks the number of existing tags of the resource. If the maximum number of tags is reached, an error message is returned. For more information, see the "Tag limits" section in [Limits](~~25412~~).
|
|
2621
|
+
*
|
|
2622
|
+
* @param request TagResourcesRequest
|
|
2623
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2624
|
+
* @return TagResourcesResponse
|
|
2625
|
+
*/
|
|
1960
2626
|
tagResourcesWithOptions(request: TagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<TagResourcesResponse>;
|
|
2627
|
+
/**
|
|
2628
|
+
* Before you add tags to a resource, Alibaba Cloud checks the number of existing tags of the resource. If the maximum number of tags is reached, an error message is returned. For more information, see the "Tag limits" section in [Limits](~~25412~~).
|
|
2629
|
+
*
|
|
2630
|
+
* @param request TagResourcesRequest
|
|
2631
|
+
* @return TagResourcesResponse
|
|
2632
|
+
*/
|
|
1961
2633
|
tagResources(request: TagResourcesRequest): Promise<TagResourcesResponse>;
|
|
2634
|
+
/**
|
|
2635
|
+
* * You can remove up to 20 tags at a time.
|
|
2636
|
+
* * After a tag is removed from an EBS resource, the tag is automatically deleted if the tag is not added to any instance.
|
|
2637
|
+
*
|
|
2638
|
+
* @param request UntagResourcesRequest
|
|
2639
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2640
|
+
* @return UntagResourcesResponse
|
|
2641
|
+
*/
|
|
1962
2642
|
untagResourcesWithOptions(request: UntagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<UntagResourcesResponse>;
|
|
2643
|
+
/**
|
|
2644
|
+
* * You can remove up to 20 tags at a time.
|
|
2645
|
+
* * After a tag is removed from an EBS resource, the tag is automatically deleted if the tag is not added to any instance.
|
|
2646
|
+
*
|
|
2647
|
+
* @param request UntagResourcesRequest
|
|
2648
|
+
* @return UntagResourcesResponse
|
|
2649
|
+
*/
|
|
1963
2650
|
untagResources(request: UntagResourcesRequest): Promise<UntagResourcesResponse>;
|
|
1964
2651
|
}
|