@alicloud/pai-dsw20220101 1.2.0 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +325 -1
- package/dist/client.js +354 -4
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +373 -2
package/dist/client.d.ts
CHANGED
|
@@ -1014,6 +1014,33 @@ export declare class ListInstancesRequest extends $tea.Model {
|
|
|
1014
1014
|
accessibility?: string;
|
|
1015
1015
|
instanceId?: string;
|
|
1016
1016
|
instanceName?: string;
|
|
1017
|
+
labels?: {
|
|
1018
|
+
[key: string]: any;
|
|
1019
|
+
};
|
|
1020
|
+
order?: string;
|
|
1021
|
+
pageNumber?: number;
|
|
1022
|
+
pageSize?: number;
|
|
1023
|
+
paymentType?: string;
|
|
1024
|
+
resourceId?: string;
|
|
1025
|
+
sortBy?: string;
|
|
1026
|
+
status?: string;
|
|
1027
|
+
workspaceId?: string;
|
|
1028
|
+
static names(): {
|
|
1029
|
+
[key: string]: string;
|
|
1030
|
+
};
|
|
1031
|
+
static types(): {
|
|
1032
|
+
[key: string]: any;
|
|
1033
|
+
};
|
|
1034
|
+
constructor(map?: {
|
|
1035
|
+
[key: string]: any;
|
|
1036
|
+
});
|
|
1037
|
+
}
|
|
1038
|
+
export declare class ListInstancesShrinkRequest extends $tea.Model {
|
|
1039
|
+
acceleratorType?: string;
|
|
1040
|
+
accessibility?: string;
|
|
1041
|
+
instanceId?: string;
|
|
1042
|
+
instanceName?: string;
|
|
1043
|
+
labelsShrink?: string;
|
|
1017
1044
|
order?: string;
|
|
1018
1045
|
pageNumber?: number;
|
|
1019
1046
|
pageSize?: number;
|
|
@@ -1675,6 +1702,9 @@ export declare class ListInstancesResponseBodyInstancesCloudDisks extends $tea.M
|
|
|
1675
1702
|
export declare class ListInstancesResponseBodyInstancesDatasets extends $tea.Model {
|
|
1676
1703
|
datasetId?: string;
|
|
1677
1704
|
mountPath?: string;
|
|
1705
|
+
optionType?: string;
|
|
1706
|
+
options?: string;
|
|
1707
|
+
uri?: string;
|
|
1678
1708
|
static names(): {
|
|
1679
1709
|
[key: string]: string;
|
|
1680
1710
|
};
|
|
@@ -1918,104 +1948,398 @@ export default class Client extends OpenApi {
|
|
|
1918
1948
|
getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
|
|
1919
1949
|
[key: string]: string;
|
|
1920
1950
|
}, endpoint: string): string;
|
|
1951
|
+
/**
|
|
1952
|
+
* @param request CreateIdleInstanceCullerRequest
|
|
1953
|
+
* @param headers map
|
|
1954
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
1955
|
+
* @return CreateIdleInstanceCullerResponse
|
|
1956
|
+
*/
|
|
1921
1957
|
createIdleInstanceCullerWithOptions(InstanceId: string, request: CreateIdleInstanceCullerRequest, headers: {
|
|
1922
1958
|
[key: string]: string;
|
|
1923
1959
|
}, runtime: $Util.RuntimeOptions): Promise<CreateIdleInstanceCullerResponse>;
|
|
1960
|
+
/**
|
|
1961
|
+
* @param request CreateIdleInstanceCullerRequest
|
|
1962
|
+
* @return CreateIdleInstanceCullerResponse
|
|
1963
|
+
*/
|
|
1924
1964
|
createIdleInstanceCuller(InstanceId: string, request: CreateIdleInstanceCullerRequest): Promise<CreateIdleInstanceCullerResponse>;
|
|
1965
|
+
/**
|
|
1966
|
+
* @summary 创建实例
|
|
1967
|
+
*
|
|
1968
|
+
* @param request CreateInstanceRequest
|
|
1969
|
+
* @param headers map
|
|
1970
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
1971
|
+
* @return CreateInstanceResponse
|
|
1972
|
+
*/
|
|
1925
1973
|
createInstanceWithOptions(request: CreateInstanceRequest, headers: {
|
|
1926
1974
|
[key: string]: string;
|
|
1927
1975
|
}, runtime: $Util.RuntimeOptions): Promise<CreateInstanceResponse>;
|
|
1976
|
+
/**
|
|
1977
|
+
* @summary 创建实例
|
|
1978
|
+
*
|
|
1979
|
+
* @param request CreateInstanceRequest
|
|
1980
|
+
* @return CreateInstanceResponse
|
|
1981
|
+
*/
|
|
1928
1982
|
createInstance(request: CreateInstanceRequest): Promise<CreateInstanceResponse>;
|
|
1983
|
+
/**
|
|
1984
|
+
* @summary 创建定时关机任务
|
|
1985
|
+
*
|
|
1986
|
+
* @param request CreateInstanceShutdownTimerRequest
|
|
1987
|
+
* @param headers map
|
|
1988
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
1989
|
+
* @return CreateInstanceShutdownTimerResponse
|
|
1990
|
+
*/
|
|
1929
1991
|
createInstanceShutdownTimerWithOptions(InstanceId: string, request: CreateInstanceShutdownTimerRequest, headers: {
|
|
1930
1992
|
[key: string]: string;
|
|
1931
1993
|
}, runtime: $Util.RuntimeOptions): Promise<CreateInstanceShutdownTimerResponse>;
|
|
1994
|
+
/**
|
|
1995
|
+
* @summary 创建定时关机任务
|
|
1996
|
+
*
|
|
1997
|
+
* @param request CreateInstanceShutdownTimerRequest
|
|
1998
|
+
* @return CreateInstanceShutdownTimerResponse
|
|
1999
|
+
*/
|
|
1932
2000
|
createInstanceShutdownTimer(InstanceId: string, request: CreateInstanceShutdownTimerRequest): Promise<CreateInstanceShutdownTimerResponse>;
|
|
2001
|
+
/**
|
|
2002
|
+
* @summary 创建实例快照
|
|
2003
|
+
*
|
|
2004
|
+
* @param request CreateInstanceSnapshotRequest
|
|
2005
|
+
* @param headers map
|
|
2006
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2007
|
+
* @return CreateInstanceSnapshotResponse
|
|
2008
|
+
*/
|
|
1933
2009
|
createInstanceSnapshotWithOptions(InstanceId: string, request: CreateInstanceSnapshotRequest, headers: {
|
|
1934
2010
|
[key: string]: string;
|
|
1935
2011
|
}, runtime: $Util.RuntimeOptions): Promise<CreateInstanceSnapshotResponse>;
|
|
2012
|
+
/**
|
|
2013
|
+
* @summary 创建实例快照
|
|
2014
|
+
*
|
|
2015
|
+
* @param request CreateInstanceSnapshotRequest
|
|
2016
|
+
* @return CreateInstanceSnapshotResponse
|
|
2017
|
+
*/
|
|
1936
2018
|
createInstanceSnapshot(InstanceId: string, request: CreateInstanceSnapshotRequest): Promise<CreateInstanceSnapshotResponse>;
|
|
2019
|
+
/**
|
|
2020
|
+
* @param headers map
|
|
2021
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2022
|
+
* @return DeleteIdleInstanceCullerResponse
|
|
2023
|
+
*/
|
|
1937
2024
|
deleteIdleInstanceCullerWithOptions(InstanceId: string, headers: {
|
|
1938
2025
|
[key: string]: string;
|
|
1939
2026
|
}, runtime: $Util.RuntimeOptions): Promise<DeleteIdleInstanceCullerResponse>;
|
|
2027
|
+
/**
|
|
2028
|
+
* @return DeleteIdleInstanceCullerResponse
|
|
2029
|
+
*/
|
|
1940
2030
|
deleteIdleInstanceCuller(InstanceId: string): Promise<DeleteIdleInstanceCullerResponse>;
|
|
2031
|
+
/**
|
|
2032
|
+
* @summary 删除实例
|
|
2033
|
+
*
|
|
2034
|
+
* @param headers map
|
|
2035
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2036
|
+
* @return DeleteInstanceResponse
|
|
2037
|
+
*/
|
|
1941
2038
|
deleteInstanceWithOptions(InstanceId: string, headers: {
|
|
1942
2039
|
[key: string]: string;
|
|
1943
2040
|
}, runtime: $Util.RuntimeOptions): Promise<DeleteInstanceResponse>;
|
|
2041
|
+
/**
|
|
2042
|
+
* @summary 删除实例
|
|
2043
|
+
*
|
|
2044
|
+
* @return DeleteInstanceResponse
|
|
2045
|
+
*/
|
|
1944
2046
|
deleteInstance(InstanceId: string): Promise<DeleteInstanceResponse>;
|
|
2047
|
+
/**
|
|
2048
|
+
* @summary 删除定时关机任务
|
|
2049
|
+
*
|
|
2050
|
+
* @param headers map
|
|
2051
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2052
|
+
* @return DeleteInstanceShutdownTimerResponse
|
|
2053
|
+
*/
|
|
1945
2054
|
deleteInstanceShutdownTimerWithOptions(InstanceId: string, headers: {
|
|
1946
2055
|
[key: string]: string;
|
|
1947
2056
|
}, runtime: $Util.RuntimeOptions): Promise<DeleteInstanceShutdownTimerResponse>;
|
|
2057
|
+
/**
|
|
2058
|
+
* @summary 删除定时关机任务
|
|
2059
|
+
*
|
|
2060
|
+
* @return DeleteInstanceShutdownTimerResponse
|
|
2061
|
+
*/
|
|
1948
2062
|
deleteInstanceShutdownTimer(InstanceId: string): Promise<DeleteInstanceShutdownTimerResponse>;
|
|
2063
|
+
/**
|
|
2064
|
+
* @summary 获取实例快照详情
|
|
2065
|
+
*
|
|
2066
|
+
* @param headers map
|
|
2067
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2068
|
+
* @return DeleteInstanceSnapshotResponse
|
|
2069
|
+
*/
|
|
1949
2070
|
deleteInstanceSnapshotWithOptions(InstanceId: string, SnapshotId: string, headers: {
|
|
1950
2071
|
[key: string]: string;
|
|
1951
2072
|
}, runtime: $Util.RuntimeOptions): Promise<DeleteInstanceSnapshotResponse>;
|
|
2073
|
+
/**
|
|
2074
|
+
* @summary 获取实例快照详情
|
|
2075
|
+
*
|
|
2076
|
+
* @return DeleteInstanceSnapshotResponse
|
|
2077
|
+
*/
|
|
1952
2078
|
deleteInstanceSnapshot(InstanceId: string, SnapshotId: string): Promise<DeleteInstanceSnapshotResponse>;
|
|
2079
|
+
/**
|
|
2080
|
+
* @param headers map
|
|
2081
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2082
|
+
* @return GetIdleInstanceCullerResponse
|
|
2083
|
+
*/
|
|
1953
2084
|
getIdleInstanceCullerWithOptions(InstanceId: string, headers: {
|
|
1954
2085
|
[key: string]: string;
|
|
1955
2086
|
}, runtime: $Util.RuntimeOptions): Promise<GetIdleInstanceCullerResponse>;
|
|
2087
|
+
/**
|
|
2088
|
+
* @return GetIdleInstanceCullerResponse
|
|
2089
|
+
*/
|
|
1956
2090
|
getIdleInstanceCuller(InstanceId: string): Promise<GetIdleInstanceCullerResponse>;
|
|
2091
|
+
/**
|
|
2092
|
+
* @summary 获取实例详情
|
|
2093
|
+
*
|
|
2094
|
+
* @param headers map
|
|
2095
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2096
|
+
* @return GetInstanceResponse
|
|
2097
|
+
*/
|
|
1957
2098
|
getInstanceWithOptions(InstanceId: string, headers: {
|
|
1958
2099
|
[key: string]: string;
|
|
1959
2100
|
}, runtime: $Util.RuntimeOptions): Promise<GetInstanceResponse>;
|
|
2101
|
+
/**
|
|
2102
|
+
* @summary 获取实例详情
|
|
2103
|
+
*
|
|
2104
|
+
* @return GetInstanceResponse
|
|
2105
|
+
*/
|
|
1960
2106
|
getInstance(InstanceId: string): Promise<GetInstanceResponse>;
|
|
2107
|
+
/**
|
|
2108
|
+
* @param request GetInstanceEventsRequest
|
|
2109
|
+
* @param headers map
|
|
2110
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2111
|
+
* @return GetInstanceEventsResponse
|
|
2112
|
+
*/
|
|
1961
2113
|
getInstanceEventsWithOptions(InstanceId: string, request: GetInstanceEventsRequest, headers: {
|
|
1962
2114
|
[key: string]: string;
|
|
1963
2115
|
}, runtime: $Util.RuntimeOptions): Promise<GetInstanceEventsResponse>;
|
|
2116
|
+
/**
|
|
2117
|
+
* @param request GetInstanceEventsRequest
|
|
2118
|
+
* @return GetInstanceEventsResponse
|
|
2119
|
+
*/
|
|
1964
2120
|
getInstanceEvents(InstanceId: string, request: GetInstanceEventsRequest): Promise<GetInstanceEventsResponse>;
|
|
2121
|
+
/**
|
|
2122
|
+
* @param request GetInstanceMetricsRequest
|
|
2123
|
+
* @param headers map
|
|
2124
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2125
|
+
* @return GetInstanceMetricsResponse
|
|
2126
|
+
*/
|
|
1965
2127
|
getInstanceMetricsWithOptions(InstanceId: string, request: GetInstanceMetricsRequest, headers: {
|
|
1966
2128
|
[key: string]: string;
|
|
1967
2129
|
}, runtime: $Util.RuntimeOptions): Promise<GetInstanceMetricsResponse>;
|
|
2130
|
+
/**
|
|
2131
|
+
* @param request GetInstanceMetricsRequest
|
|
2132
|
+
* @return GetInstanceMetricsResponse
|
|
2133
|
+
*/
|
|
1968
2134
|
getInstanceMetrics(InstanceId: string, request: GetInstanceMetricsRequest): Promise<GetInstanceMetricsResponse>;
|
|
2135
|
+
/**
|
|
2136
|
+
* @summary 获取定时关机任务
|
|
2137
|
+
*
|
|
2138
|
+
* @param headers map
|
|
2139
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2140
|
+
* @return GetInstanceShutdownTimerResponse
|
|
2141
|
+
*/
|
|
1969
2142
|
getInstanceShutdownTimerWithOptions(InstanceId: string, headers: {
|
|
1970
2143
|
[key: string]: string;
|
|
1971
2144
|
}, runtime: $Util.RuntimeOptions): Promise<GetInstanceShutdownTimerResponse>;
|
|
2145
|
+
/**
|
|
2146
|
+
* @summary 获取定时关机任务
|
|
2147
|
+
*
|
|
2148
|
+
* @return GetInstanceShutdownTimerResponse
|
|
2149
|
+
*/
|
|
1972
2150
|
getInstanceShutdownTimer(InstanceId: string): Promise<GetInstanceShutdownTimerResponse>;
|
|
2151
|
+
/**
|
|
2152
|
+
* @summary 获取实例快照详情
|
|
2153
|
+
*
|
|
2154
|
+
* @param headers map
|
|
2155
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2156
|
+
* @return GetInstanceSnapshotResponse
|
|
2157
|
+
*/
|
|
1973
2158
|
getInstanceSnapshotWithOptions(InstanceId: string, SnapshotId: string, headers: {
|
|
1974
2159
|
[key: string]: string;
|
|
1975
2160
|
}, runtime: $Util.RuntimeOptions): Promise<GetInstanceSnapshotResponse>;
|
|
2161
|
+
/**
|
|
2162
|
+
* @summary 获取实例快照详情
|
|
2163
|
+
*
|
|
2164
|
+
* @return GetInstanceSnapshotResponse
|
|
2165
|
+
*/
|
|
1976
2166
|
getInstanceSnapshot(InstanceId: string, SnapshotId: string): Promise<GetInstanceSnapshotResponse>;
|
|
2167
|
+
/**
|
|
2168
|
+
* @param request GetLifecycleRequest
|
|
2169
|
+
* @param headers map
|
|
2170
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2171
|
+
* @return GetLifecycleResponse
|
|
2172
|
+
*/
|
|
1977
2173
|
getLifecycleWithOptions(InstanceId: string, request: GetLifecycleRequest, headers: {
|
|
1978
2174
|
[key: string]: string;
|
|
1979
2175
|
}, runtime: $Util.RuntimeOptions): Promise<GetLifecycleResponse>;
|
|
2176
|
+
/**
|
|
2177
|
+
* @param request GetLifecycleRequest
|
|
2178
|
+
* @return GetLifecycleResponse
|
|
2179
|
+
*/
|
|
1980
2180
|
getLifecycle(InstanceId: string, request: GetLifecycleRequest): Promise<GetLifecycleResponse>;
|
|
2181
|
+
/**
|
|
2182
|
+
* @param request GetResourceGroupStatisticsRequest
|
|
2183
|
+
* @param headers map
|
|
2184
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2185
|
+
* @return GetResourceGroupStatisticsResponse
|
|
2186
|
+
*/
|
|
1981
2187
|
getResourceGroupStatisticsWithOptions(request: GetResourceGroupStatisticsRequest, headers: {
|
|
1982
2188
|
[key: string]: string;
|
|
1983
2189
|
}, runtime: $Util.RuntimeOptions): Promise<GetResourceGroupStatisticsResponse>;
|
|
2190
|
+
/**
|
|
2191
|
+
* @param request GetResourceGroupStatisticsRequest
|
|
2192
|
+
* @return GetResourceGroupStatisticsResponse
|
|
2193
|
+
*/
|
|
1984
2194
|
getResourceGroupStatistics(request: GetResourceGroupStatisticsRequest): Promise<GetResourceGroupStatisticsResponse>;
|
|
2195
|
+
/**
|
|
2196
|
+
* @param request GetTokenRequest
|
|
2197
|
+
* @param headers map
|
|
2198
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2199
|
+
* @return GetTokenResponse
|
|
2200
|
+
*/
|
|
1985
2201
|
getTokenWithOptions(request: GetTokenRequest, headers: {
|
|
1986
2202
|
[key: string]: string;
|
|
1987
2203
|
}, runtime: $Util.RuntimeOptions): Promise<GetTokenResponse>;
|
|
2204
|
+
/**
|
|
2205
|
+
* @param request GetTokenRequest
|
|
2206
|
+
* @return GetTokenResponse
|
|
2207
|
+
*/
|
|
1988
2208
|
getToken(request: GetTokenRequest): Promise<GetTokenResponse>;
|
|
2209
|
+
/**
|
|
2210
|
+
* @summary 获取用户配置
|
|
2211
|
+
*
|
|
2212
|
+
* @param headers map
|
|
2213
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2214
|
+
* @return GetUserConfigResponse
|
|
2215
|
+
*/
|
|
1989
2216
|
getUserConfigWithOptions(headers: {
|
|
1990
2217
|
[key: string]: string;
|
|
1991
2218
|
}, runtime: $Util.RuntimeOptions): Promise<GetUserConfigResponse>;
|
|
2219
|
+
/**
|
|
2220
|
+
* @summary 获取用户配置
|
|
2221
|
+
*
|
|
2222
|
+
* @return GetUserConfigResponse
|
|
2223
|
+
*/
|
|
1992
2224
|
getUserConfig(): Promise<GetUserConfigResponse>;
|
|
2225
|
+
/**
|
|
2226
|
+
* @summary 获取ECS规格列表
|
|
2227
|
+
*
|
|
2228
|
+
* @param request ListEcsSpecsRequest
|
|
2229
|
+
* @param headers map
|
|
2230
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2231
|
+
* @return ListEcsSpecsResponse
|
|
2232
|
+
*/
|
|
1993
2233
|
listEcsSpecsWithOptions(request: ListEcsSpecsRequest, headers: {
|
|
1994
2234
|
[key: string]: string;
|
|
1995
2235
|
}, runtime: $Util.RuntimeOptions): Promise<ListEcsSpecsResponse>;
|
|
2236
|
+
/**
|
|
2237
|
+
* @summary 获取ECS规格列表
|
|
2238
|
+
*
|
|
2239
|
+
* @param request ListEcsSpecsRequest
|
|
2240
|
+
* @return ListEcsSpecsResponse
|
|
2241
|
+
*/
|
|
1996
2242
|
listEcsSpecs(request: ListEcsSpecsRequest): Promise<ListEcsSpecsResponse>;
|
|
2243
|
+
/**
|
|
2244
|
+
* @summary 查询实例快照列表
|
|
2245
|
+
*
|
|
2246
|
+
* @param request ListInstanceSnapshotRequest
|
|
2247
|
+
* @param headers map
|
|
2248
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2249
|
+
* @return ListInstanceSnapshotResponse
|
|
2250
|
+
*/
|
|
1997
2251
|
listInstanceSnapshotWithOptions(InstanceId: string, request: ListInstanceSnapshotRequest, headers: {
|
|
1998
2252
|
[key: string]: string;
|
|
1999
2253
|
}, runtime: $Util.RuntimeOptions): Promise<ListInstanceSnapshotResponse>;
|
|
2254
|
+
/**
|
|
2255
|
+
* @summary 查询实例快照列表
|
|
2256
|
+
*
|
|
2257
|
+
* @param request ListInstanceSnapshotRequest
|
|
2258
|
+
* @return ListInstanceSnapshotResponse
|
|
2259
|
+
*/
|
|
2000
2260
|
listInstanceSnapshot(InstanceId: string, request: ListInstanceSnapshotRequest): Promise<ListInstanceSnapshotResponse>;
|
|
2261
|
+
/**
|
|
2262
|
+
* @summary 获取实例统计信息
|
|
2263
|
+
*
|
|
2264
|
+
* @param request ListInstanceStatisticsRequest
|
|
2265
|
+
* @param headers map
|
|
2266
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2267
|
+
* @return ListInstanceStatisticsResponse
|
|
2268
|
+
*/
|
|
2001
2269
|
listInstanceStatisticsWithOptions(request: ListInstanceStatisticsRequest, headers: {
|
|
2002
2270
|
[key: string]: string;
|
|
2003
2271
|
}, runtime: $Util.RuntimeOptions): Promise<ListInstanceStatisticsResponse>;
|
|
2272
|
+
/**
|
|
2273
|
+
* @summary 获取实例统计信息
|
|
2274
|
+
*
|
|
2275
|
+
* @param request ListInstanceStatisticsRequest
|
|
2276
|
+
* @return ListInstanceStatisticsResponse
|
|
2277
|
+
*/
|
|
2004
2278
|
listInstanceStatistics(request: ListInstanceStatisticsRequest): Promise<ListInstanceStatisticsResponse>;
|
|
2005
|
-
|
|
2279
|
+
/**
|
|
2280
|
+
* @param tmpReq ListInstancesRequest
|
|
2281
|
+
* @param headers map
|
|
2282
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2283
|
+
* @return ListInstancesResponse
|
|
2284
|
+
*/
|
|
2285
|
+
listInstancesWithOptions(tmpReq: ListInstancesRequest, headers: {
|
|
2006
2286
|
[key: string]: string;
|
|
2007
2287
|
}, runtime: $Util.RuntimeOptions): Promise<ListInstancesResponse>;
|
|
2288
|
+
/**
|
|
2289
|
+
* @param request ListInstancesRequest
|
|
2290
|
+
* @return ListInstancesResponse
|
|
2291
|
+
*/
|
|
2008
2292
|
listInstances(request: ListInstancesRequest): Promise<ListInstancesResponse>;
|
|
2293
|
+
/**
|
|
2294
|
+
* @summary 启动实例
|
|
2295
|
+
*
|
|
2296
|
+
* @param headers map
|
|
2297
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2298
|
+
* @return StartInstanceResponse
|
|
2299
|
+
*/
|
|
2009
2300
|
startInstanceWithOptions(InstanceId: string, headers: {
|
|
2010
2301
|
[key: string]: string;
|
|
2011
2302
|
}, runtime: $Util.RuntimeOptions): Promise<StartInstanceResponse>;
|
|
2303
|
+
/**
|
|
2304
|
+
* @summary 启动实例
|
|
2305
|
+
*
|
|
2306
|
+
* @return StartInstanceResponse
|
|
2307
|
+
*/
|
|
2012
2308
|
startInstance(InstanceId: string): Promise<StartInstanceResponse>;
|
|
2309
|
+
/**
|
|
2310
|
+
* @summary 停止实例
|
|
2311
|
+
*
|
|
2312
|
+
* @param request StopInstanceRequest
|
|
2313
|
+
* @param headers map
|
|
2314
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2315
|
+
* @return StopInstanceResponse
|
|
2316
|
+
*/
|
|
2013
2317
|
stopInstanceWithOptions(InstanceId: string, request: StopInstanceRequest, headers: {
|
|
2014
2318
|
[key: string]: string;
|
|
2015
2319
|
}, runtime: $Util.RuntimeOptions): Promise<StopInstanceResponse>;
|
|
2320
|
+
/**
|
|
2321
|
+
* @summary 停止实例
|
|
2322
|
+
*
|
|
2323
|
+
* @param request StopInstanceRequest
|
|
2324
|
+
* @return StopInstanceResponse
|
|
2325
|
+
*/
|
|
2016
2326
|
stopInstance(InstanceId: string, request: StopInstanceRequest): Promise<StopInstanceResponse>;
|
|
2327
|
+
/**
|
|
2328
|
+
* @summary 更新实例
|
|
2329
|
+
*
|
|
2330
|
+
* @param request UpdateInstanceRequest
|
|
2331
|
+
* @param headers map
|
|
2332
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2333
|
+
* @return UpdateInstanceResponse
|
|
2334
|
+
*/
|
|
2017
2335
|
updateInstanceWithOptions(InstanceId: string, request: UpdateInstanceRequest, headers: {
|
|
2018
2336
|
[key: string]: string;
|
|
2019
2337
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateInstanceResponse>;
|
|
2338
|
+
/**
|
|
2339
|
+
* @summary 更新实例
|
|
2340
|
+
*
|
|
2341
|
+
* @param request UpdateInstanceRequest
|
|
2342
|
+
* @return UpdateInstanceResponse
|
|
2343
|
+
*/
|
|
2020
2344
|
updateInstance(InstanceId: string, request: UpdateInstanceRequest): Promise<UpdateInstanceResponse>;
|
|
2021
2345
|
}
|