@aws-sdk/client-application-discovery-service 3.934.0 → 3.936.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +102 -101
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +101 -0
- package/dist-es/models/errors.js +121 -0
- package/dist-es/models/models_0.js +1 -222
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +245 -0
- package/dist-types/models/errors.d.ts +131 -0
- package/dist-types/models/models_0.d.ts +1 -376
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +129 -0
- package/dist-types/ts3.4/models/errors.d.ts +72 -0
- package/dist-types/ts3.4/models/models_0.d.ts +20 -201
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { ApplicationDiscoveryServiceServiceException as __BaseException } from "./ApplicationDiscoveryServiceServiceException";
|
|
1
|
+
import { AgentStatus, BatchDeleteConfigurationTaskStatus, BatchDeleteImportDataErrorCode, ConfigurationItemType, ContinuousExportStatus, DataSource, DeleteAgentErrorCode, DeletionConfigurationItemType, ExportDataFormat, ExportStatus, FileClassification, ImportStatus, ImportTaskFilterName, OfferingClass, OrderString, PurchasingOption, Tenancy, TermLength } from "./enums";
|
|
3
2
|
/**
|
|
4
3
|
* <p>Information about agents that were instructed to start collecting data.
|
|
5
4
|
* Information includes the agent ID, a description of the operation, and whether the
|
|
@@ -42,22 +41,6 @@ export interface AgentNetworkInfo {
|
|
|
42
41
|
*/
|
|
43
42
|
macAddress?: string | undefined;
|
|
44
43
|
}
|
|
45
|
-
/**
|
|
46
|
-
* @public
|
|
47
|
-
* @enum
|
|
48
|
-
*/
|
|
49
|
-
export declare const AgentStatus: {
|
|
50
|
-
readonly BLACKLISTED: "BLACKLISTED";
|
|
51
|
-
readonly HEALTHY: "HEALTHY";
|
|
52
|
-
readonly RUNNING: "RUNNING";
|
|
53
|
-
readonly SHUTDOWN: "SHUTDOWN";
|
|
54
|
-
readonly UNHEALTHY: "UNHEALTHY";
|
|
55
|
-
readonly UNKNOWN: "UNKNOWN";
|
|
56
|
-
};
|
|
57
|
-
/**
|
|
58
|
-
* @public
|
|
59
|
-
*/
|
|
60
|
-
export type AgentStatus = (typeof AgentStatus)[keyof typeof AgentStatus];
|
|
61
44
|
/**
|
|
62
45
|
* <p>Information about agents associated with the user’s Amazon Web Services account.
|
|
63
46
|
* Information includes agent IDs, IP addresses, media access control (MAC)
|
|
@@ -138,68 +121,6 @@ export interface AssociateConfigurationItemsToApplicationRequest {
|
|
|
138
121
|
*/
|
|
139
122
|
export interface AssociateConfigurationItemsToApplicationResponse {
|
|
140
123
|
}
|
|
141
|
-
/**
|
|
142
|
-
* <p>The user does not have permission to perform the action. Check the IAM
|
|
143
|
-
* policy associated with this user.</p>
|
|
144
|
-
* @public
|
|
145
|
-
*/
|
|
146
|
-
export declare class AuthorizationErrorException extends __BaseException {
|
|
147
|
-
readonly name: "AuthorizationErrorException";
|
|
148
|
-
readonly $fault: "client";
|
|
149
|
-
/**
|
|
150
|
-
* @internal
|
|
151
|
-
*/
|
|
152
|
-
constructor(opts: __ExceptionOptionType<AuthorizationErrorException, __BaseException>);
|
|
153
|
-
}
|
|
154
|
-
/**
|
|
155
|
-
* <p>The home Region is not set. Set the home Region to continue.</p>
|
|
156
|
-
* @public
|
|
157
|
-
*/
|
|
158
|
-
export declare class HomeRegionNotSetException extends __BaseException {
|
|
159
|
-
readonly name: "HomeRegionNotSetException";
|
|
160
|
-
readonly $fault: "client";
|
|
161
|
-
/**
|
|
162
|
-
* @internal
|
|
163
|
-
*/
|
|
164
|
-
constructor(opts: __ExceptionOptionType<HomeRegionNotSetException, __BaseException>);
|
|
165
|
-
}
|
|
166
|
-
/**
|
|
167
|
-
* <p>One or more parameters are not valid. Verify the parameters and try again.</p>
|
|
168
|
-
* @public
|
|
169
|
-
*/
|
|
170
|
-
export declare class InvalidParameterException extends __BaseException {
|
|
171
|
-
readonly name: "InvalidParameterException";
|
|
172
|
-
readonly $fault: "client";
|
|
173
|
-
/**
|
|
174
|
-
* @internal
|
|
175
|
-
*/
|
|
176
|
-
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
177
|
-
}
|
|
178
|
-
/**
|
|
179
|
-
* <p>The value of one or more parameters are either invalid or out of range. Verify the
|
|
180
|
-
* parameter values and try again.</p>
|
|
181
|
-
* @public
|
|
182
|
-
*/
|
|
183
|
-
export declare class InvalidParameterValueException extends __BaseException {
|
|
184
|
-
readonly name: "InvalidParameterValueException";
|
|
185
|
-
readonly $fault: "client";
|
|
186
|
-
/**
|
|
187
|
-
* @internal
|
|
188
|
-
*/
|
|
189
|
-
constructor(opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>);
|
|
190
|
-
}
|
|
191
|
-
/**
|
|
192
|
-
* <p>The server experienced an internal error. Try again.</p>
|
|
193
|
-
* @public
|
|
194
|
-
*/
|
|
195
|
-
export declare class ServerInternalErrorException extends __BaseException {
|
|
196
|
-
readonly name: "ServerInternalErrorException";
|
|
197
|
-
readonly $fault: "server";
|
|
198
|
-
/**
|
|
199
|
-
* @internal
|
|
200
|
-
*/
|
|
201
|
-
constructor(opts: __ExceptionOptionType<ServerInternalErrorException, __BaseException>);
|
|
202
|
-
}
|
|
203
124
|
/**
|
|
204
125
|
* <p>
|
|
205
126
|
* An object representing the agent or data collector to be deleted along with
|
|
@@ -237,19 +158,6 @@ export interface BatchDeleteAgentsRequest {
|
|
|
237
158
|
*/
|
|
238
159
|
deleteAgents: DeleteAgent[] | undefined;
|
|
239
160
|
}
|
|
240
|
-
/**
|
|
241
|
-
* @public
|
|
242
|
-
* @enum
|
|
243
|
-
*/
|
|
244
|
-
export declare const DeleteAgentErrorCode: {
|
|
245
|
-
readonly AGENT_IN_USE: "AGENT_IN_USE";
|
|
246
|
-
readonly INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR";
|
|
247
|
-
readonly NOT_FOUND: "NOT_FOUND";
|
|
248
|
-
};
|
|
249
|
-
/**
|
|
250
|
-
* @public
|
|
251
|
-
*/
|
|
252
|
-
export type DeleteAgentErrorCode = (typeof DeleteAgentErrorCode)[keyof typeof DeleteAgentErrorCode];
|
|
253
161
|
/**
|
|
254
162
|
* <p>
|
|
255
163
|
* An object representing the agent or data collector that failed to delete, each containing agentId,
|
|
@@ -311,19 +219,6 @@ export interface BatchDeleteImportDataRequest {
|
|
|
311
219
|
*/
|
|
312
220
|
deleteHistory?: boolean | undefined;
|
|
313
221
|
}
|
|
314
|
-
/**
|
|
315
|
-
* @public
|
|
316
|
-
* @enum
|
|
317
|
-
*/
|
|
318
|
-
export declare const BatchDeleteImportDataErrorCode: {
|
|
319
|
-
readonly INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR";
|
|
320
|
-
readonly NOT_FOUND: "NOT_FOUND";
|
|
321
|
-
readonly OVER_LIMIT: "OVER_LIMIT";
|
|
322
|
-
};
|
|
323
|
-
/**
|
|
324
|
-
* @public
|
|
325
|
-
*/
|
|
326
|
-
export type BatchDeleteImportDataErrorCode = (typeof BatchDeleteImportDataErrorCode)[keyof typeof BatchDeleteImportDataErrorCode];
|
|
327
222
|
/**
|
|
328
223
|
* <p>Error messages returned for each import task that you deleted as a response for this
|
|
329
224
|
* command.</p>
|
|
@@ -431,19 +326,6 @@ export interface CreateTagsRequest {
|
|
|
431
326
|
*/
|
|
432
327
|
export interface CreateTagsResponse {
|
|
433
328
|
}
|
|
434
|
-
/**
|
|
435
|
-
* <p>The specified configuration ID was not located. Verify the configuration ID and try
|
|
436
|
-
* again.</p>
|
|
437
|
-
* @public
|
|
438
|
-
*/
|
|
439
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
440
|
-
readonly name: "ResourceNotFoundException";
|
|
441
|
-
readonly $fault: "client";
|
|
442
|
-
/**
|
|
443
|
-
* @internal
|
|
444
|
-
*/
|
|
445
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
446
|
-
}
|
|
447
329
|
/**
|
|
448
330
|
* @public
|
|
449
331
|
*/
|
|
@@ -582,17 +464,6 @@ export interface DescribeBatchDeleteConfigurationTaskRequest {
|
|
|
582
464
|
*/
|
|
583
465
|
taskId: string | undefined;
|
|
584
466
|
}
|
|
585
|
-
/**
|
|
586
|
-
* @public
|
|
587
|
-
* @enum
|
|
588
|
-
*/
|
|
589
|
-
export declare const DeletionConfigurationItemType: {
|
|
590
|
-
readonly SERVER: "SERVER";
|
|
591
|
-
};
|
|
592
|
-
/**
|
|
593
|
-
* @public
|
|
594
|
-
*/
|
|
595
|
-
export type DeletionConfigurationItemType = (typeof DeletionConfigurationItemType)[keyof typeof DeletionConfigurationItemType];
|
|
596
467
|
/**
|
|
597
468
|
* <p>
|
|
598
469
|
* A configuration ID paired with a warning message.
|
|
@@ -651,21 +522,6 @@ export interface FailedConfiguration {
|
|
|
651
522
|
*/
|
|
652
523
|
errorMessage?: string | undefined;
|
|
653
524
|
}
|
|
654
|
-
/**
|
|
655
|
-
* @public
|
|
656
|
-
* @enum
|
|
657
|
-
*/
|
|
658
|
-
export declare const BatchDeleteConfigurationTaskStatus: {
|
|
659
|
-
readonly COMPLETED: "COMPLETED";
|
|
660
|
-
readonly DELETING: "DELETING";
|
|
661
|
-
readonly FAILED: "FAILED";
|
|
662
|
-
readonly INITIALIZING: "INITIALIZING";
|
|
663
|
-
readonly VALIDATING: "VALIDATING";
|
|
664
|
-
};
|
|
665
|
-
/**
|
|
666
|
-
* @public
|
|
667
|
-
*/
|
|
668
|
-
export type BatchDeleteConfigurationTaskStatus = (typeof BatchDeleteConfigurationTaskStatus)[keyof typeof BatchDeleteConfigurationTaskStatus];
|
|
669
525
|
/**
|
|
670
526
|
* <p>
|
|
671
527
|
* A metadata object that represents the deletion task being executed.
|
|
@@ -793,34 +649,6 @@ export interface DescribeContinuousExportsRequest {
|
|
|
793
649
|
*/
|
|
794
650
|
nextToken?: string | undefined;
|
|
795
651
|
}
|
|
796
|
-
/**
|
|
797
|
-
* @public
|
|
798
|
-
* @enum
|
|
799
|
-
*/
|
|
800
|
-
export declare const DataSource: {
|
|
801
|
-
readonly AGENT: "AGENT";
|
|
802
|
-
};
|
|
803
|
-
/**
|
|
804
|
-
* @public
|
|
805
|
-
*/
|
|
806
|
-
export type DataSource = (typeof DataSource)[keyof typeof DataSource];
|
|
807
|
-
/**
|
|
808
|
-
* @public
|
|
809
|
-
* @enum
|
|
810
|
-
*/
|
|
811
|
-
export declare const ContinuousExportStatus: {
|
|
812
|
-
readonly ACTIVE: "ACTIVE";
|
|
813
|
-
readonly ERROR: "ERROR";
|
|
814
|
-
readonly INACTIVE: "INACTIVE";
|
|
815
|
-
readonly START_FAILED: "START_FAILED";
|
|
816
|
-
readonly START_IN_PROGRESS: "START_IN_PROGRESS";
|
|
817
|
-
readonly STOP_FAILED: "STOP_FAILED";
|
|
818
|
-
readonly STOP_IN_PROGRESS: "STOP_IN_PROGRESS";
|
|
819
|
-
};
|
|
820
|
-
/**
|
|
821
|
-
* @public
|
|
822
|
-
*/
|
|
823
|
-
export type ContinuousExportStatus = (typeof ContinuousExportStatus)[keyof typeof ContinuousExportStatus];
|
|
824
652
|
/**
|
|
825
653
|
* <p>A list of continuous export descriptions.</p>
|
|
826
654
|
* @public
|
|
@@ -992,18 +820,6 @@ export interface DescribeContinuousExportsResponse {
|
|
|
992
820
|
*/
|
|
993
821
|
nextToken?: string | undefined;
|
|
994
822
|
}
|
|
995
|
-
/**
|
|
996
|
-
* <p>This operation is not permitted.</p>
|
|
997
|
-
* @public
|
|
998
|
-
*/
|
|
999
|
-
export declare class OperationNotPermittedException extends __BaseException {
|
|
1000
|
-
readonly name: "OperationNotPermittedException";
|
|
1001
|
-
readonly $fault: "client";
|
|
1002
|
-
/**
|
|
1003
|
-
* @internal
|
|
1004
|
-
*/
|
|
1005
|
-
constructor(opts: __ExceptionOptionType<OperationNotPermittedException, __BaseException>);
|
|
1006
|
-
}
|
|
1007
823
|
/**
|
|
1008
824
|
* @public
|
|
1009
825
|
*/
|
|
@@ -1025,19 +841,6 @@ export interface DescribeExportConfigurationsRequest {
|
|
|
1025
841
|
*/
|
|
1026
842
|
nextToken?: string | undefined;
|
|
1027
843
|
}
|
|
1028
|
-
/**
|
|
1029
|
-
* @public
|
|
1030
|
-
* @enum
|
|
1031
|
-
*/
|
|
1032
|
-
export declare const ExportStatus: {
|
|
1033
|
-
readonly FAILED: "FAILED";
|
|
1034
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
1035
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
1036
|
-
};
|
|
1037
|
-
/**
|
|
1038
|
-
* @public
|
|
1039
|
-
*/
|
|
1040
|
-
export type ExportStatus = (typeof ExportStatus)[keyof typeof ExportStatus];
|
|
1041
844
|
/**
|
|
1042
845
|
* <p>Information regarding the export status of discovered data. The value is an array of
|
|
1043
846
|
* objects.</p>
|
|
@@ -1193,20 +996,6 @@ export interface DescribeExportTasksResponse {
|
|
|
1193
996
|
*/
|
|
1194
997
|
nextToken?: string | undefined;
|
|
1195
998
|
}
|
|
1196
|
-
/**
|
|
1197
|
-
* @public
|
|
1198
|
-
* @enum
|
|
1199
|
-
*/
|
|
1200
|
-
export declare const ImportTaskFilterName: {
|
|
1201
|
-
readonly FILE_CLASSIFICATION: "FILE_CLASSIFICATION";
|
|
1202
|
-
readonly IMPORT_TASK_ID: "IMPORT_TASK_ID";
|
|
1203
|
-
readonly NAME: "NAME";
|
|
1204
|
-
readonly STATUS: "STATUS";
|
|
1205
|
-
};
|
|
1206
|
-
/**
|
|
1207
|
-
* @public
|
|
1208
|
-
*/
|
|
1209
|
-
export type ImportTaskFilterName = (typeof ImportTaskFilterName)[keyof typeof ImportTaskFilterName];
|
|
1210
999
|
/**
|
|
1211
1000
|
* <p>A name-values pair of elements you can use to filter the results when querying your import
|
|
1212
1001
|
* tasks. Currently, wildcards are not supported for filters.</p>
|
|
@@ -1250,42 +1039,6 @@ export interface DescribeImportTasksRequest {
|
|
|
1250
1039
|
*/
|
|
1251
1040
|
nextToken?: string | undefined;
|
|
1252
1041
|
}
|
|
1253
|
-
/**
|
|
1254
|
-
* @public
|
|
1255
|
-
* @enum
|
|
1256
|
-
*/
|
|
1257
|
-
export declare const FileClassification: {
|
|
1258
|
-
readonly IMPORT_TEMPLATE: "IMPORT_TEMPLATE";
|
|
1259
|
-
readonly MODELIZEIT_EXPORT: "MODELIZEIT_EXPORT";
|
|
1260
|
-
readonly RVTOOLS_EXPORT: "RVTOOLS_EXPORT";
|
|
1261
|
-
readonly VMWARE_NSX_EXPORT: "VMWARE_NSX_EXPORT";
|
|
1262
|
-
};
|
|
1263
|
-
/**
|
|
1264
|
-
* @public
|
|
1265
|
-
*/
|
|
1266
|
-
export type FileClassification = (typeof FileClassification)[keyof typeof FileClassification];
|
|
1267
|
-
/**
|
|
1268
|
-
* @public
|
|
1269
|
-
* @enum
|
|
1270
|
-
*/
|
|
1271
|
-
export declare const ImportStatus: {
|
|
1272
|
-
readonly DELETE_COMPLETE: "DELETE_COMPLETE";
|
|
1273
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
1274
|
-
readonly DELETE_FAILED_LIMIT_EXCEEDED: "DELETE_FAILED_LIMIT_EXCEEDED";
|
|
1275
|
-
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
1276
|
-
readonly IMPORT_COMPLETE: "IMPORT_COMPLETE";
|
|
1277
|
-
readonly IMPORT_COMPLETE_WITH_ERRORS: "IMPORT_COMPLETE_WITH_ERRORS";
|
|
1278
|
-
readonly IMPORT_FAILED: "IMPORT_FAILED";
|
|
1279
|
-
readonly IMPORT_FAILED_RECORD_LIMIT_EXCEEDED: "IMPORT_FAILED_RECORD_LIMIT_EXCEEDED";
|
|
1280
|
-
readonly IMPORT_FAILED_SERVER_LIMIT_EXCEEDED: "IMPORT_FAILED_SERVER_LIMIT_EXCEEDED";
|
|
1281
|
-
readonly IMPORT_FAILED_UNSUPPORTED_FILE_TYPE: "IMPORT_FAILED_UNSUPPORTED_FILE_TYPE";
|
|
1282
|
-
readonly IMPORT_IN_PROGRESS: "IMPORT_IN_PROGRESS";
|
|
1283
|
-
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
1284
|
-
};
|
|
1285
|
-
/**
|
|
1286
|
-
* @public
|
|
1287
|
-
*/
|
|
1288
|
-
export type ImportStatus = (typeof ImportStatus)[keyof typeof ImportStatus];
|
|
1289
1042
|
/**
|
|
1290
1043
|
* <p>An array of information related to the import task request that includes status
|
|
1291
1044
|
* information, times, IDs, the Amazon S3 Object URL for the import file, and more.</p>
|
|
@@ -1442,20 +1195,6 @@ export interface DescribeTagsRequest {
|
|
|
1442
1195
|
*/
|
|
1443
1196
|
nextToken?: string | undefined;
|
|
1444
1197
|
}
|
|
1445
|
-
/**
|
|
1446
|
-
* @public
|
|
1447
|
-
* @enum
|
|
1448
|
-
*/
|
|
1449
|
-
export declare const ConfigurationItemType: {
|
|
1450
|
-
readonly APPLICATION: "APPLICATION";
|
|
1451
|
-
readonly CONNECTIONS: "CONNECTION";
|
|
1452
|
-
readonly PROCESS: "PROCESS";
|
|
1453
|
-
readonly SERVER: "SERVER";
|
|
1454
|
-
};
|
|
1455
|
-
/**
|
|
1456
|
-
* @public
|
|
1457
|
-
*/
|
|
1458
|
-
export type ConfigurationItemType = (typeof ConfigurationItemType)[keyof typeof ConfigurationItemType];
|
|
1459
1198
|
/**
|
|
1460
1199
|
* <p>Tags for a configuration item. Tags are metadata that help you categorize IT
|
|
1461
1200
|
* assets.</p>
|
|
@@ -1753,18 +1492,6 @@ export interface GetDiscoverySummaryResponse {
|
|
|
1753
1492
|
*/
|
|
1754
1493
|
agentlessCollectorSummary?: CustomerAgentlessCollectorInfo | undefined;
|
|
1755
1494
|
}
|
|
1756
|
-
/**
|
|
1757
|
-
* @public
|
|
1758
|
-
* @enum
|
|
1759
|
-
*/
|
|
1760
|
-
export declare const OrderString: {
|
|
1761
|
-
readonly ASC: "ASC";
|
|
1762
|
-
readonly DESC: "DESC";
|
|
1763
|
-
};
|
|
1764
|
-
/**
|
|
1765
|
-
* @public
|
|
1766
|
-
*/
|
|
1767
|
-
export type OrderString = (typeof OrderString)[keyof typeof OrderString];
|
|
1768
1495
|
/**
|
|
1769
1496
|
* <p>A field and direction for ordered output.</p>
|
|
1770
1497
|
* @public
|
|
@@ -1932,20 +1659,6 @@ export interface ListServerNeighborsResponse {
|
|
|
1932
1659
|
*/
|
|
1933
1660
|
knownDependencyCount?: number | undefined;
|
|
1934
1661
|
}
|
|
1935
|
-
/**
|
|
1936
|
-
* <p>
|
|
1937
|
-
* The limit of 200 configuration IDs per request has been exceeded.
|
|
1938
|
-
* </p>
|
|
1939
|
-
* @public
|
|
1940
|
-
*/
|
|
1941
|
-
export declare class LimitExceededException extends __BaseException {
|
|
1942
|
-
readonly name: "LimitExceededException";
|
|
1943
|
-
readonly $fault: "client";
|
|
1944
|
-
/**
|
|
1945
|
-
* @internal
|
|
1946
|
-
*/
|
|
1947
|
-
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
1948
|
-
}
|
|
1949
1662
|
/**
|
|
1950
1663
|
* @public
|
|
1951
1664
|
*/
|
|
@@ -1977,34 +1690,6 @@ export interface StartBatchDeleteConfigurationTaskResponse {
|
|
|
1977
1690
|
*/
|
|
1978
1691
|
taskId?: string | undefined;
|
|
1979
1692
|
}
|
|
1980
|
-
/**
|
|
1981
|
-
* <p>Conflict error.</p>
|
|
1982
|
-
* @public
|
|
1983
|
-
*/
|
|
1984
|
-
export declare class ConflictErrorException extends __BaseException {
|
|
1985
|
-
readonly name: "ConflictErrorException";
|
|
1986
|
-
readonly $fault: "client";
|
|
1987
|
-
/**
|
|
1988
|
-
* @internal
|
|
1989
|
-
*/
|
|
1990
|
-
constructor(opts: __ExceptionOptionType<ConflictErrorException, __BaseException>);
|
|
1991
|
-
}
|
|
1992
|
-
/**
|
|
1993
|
-
* <p>This issue occurs when the same <code>clientRequestToken</code> is used with the
|
|
1994
|
-
* <code>StartImportTask</code> action, but with different parameters. For example, you use the
|
|
1995
|
-
* same request token but have two different import URLs, you can encounter this issue. If the
|
|
1996
|
-
* import tasks are meant to be different, use a different <code>clientRequestToken</code>, and
|
|
1997
|
-
* try again.</p>
|
|
1998
|
-
* @public
|
|
1999
|
-
*/
|
|
2000
|
-
export declare class ResourceInUseException extends __BaseException {
|
|
2001
|
-
readonly name: "ResourceInUseException";
|
|
2002
|
-
readonly $fault: "client";
|
|
2003
|
-
/**
|
|
2004
|
-
* @internal
|
|
2005
|
-
*/
|
|
2006
|
-
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
2007
|
-
}
|
|
2008
1693
|
/**
|
|
2009
1694
|
* @public
|
|
2010
1695
|
*/
|
|
@@ -2076,17 +1761,6 @@ export interface StartDataCollectionByAgentIdsResponse {
|
|
|
2076
1761
|
*/
|
|
2077
1762
|
agentsConfigurationStatus?: AgentConfigurationStatus[] | undefined;
|
|
2078
1763
|
}
|
|
2079
|
-
/**
|
|
2080
|
-
* @public
|
|
2081
|
-
* @enum
|
|
2082
|
-
*/
|
|
2083
|
-
export declare const ExportDataFormat: {
|
|
2084
|
-
readonly CSV: "CSV";
|
|
2085
|
-
};
|
|
2086
|
-
/**
|
|
2087
|
-
* @public
|
|
2088
|
-
*/
|
|
2089
|
-
export type ExportDataFormat = (typeof ExportDataFormat)[keyof typeof ExportDataFormat];
|
|
2090
1764
|
/**
|
|
2091
1765
|
* <p>
|
|
2092
1766
|
* Specifies the performance metrics to use for the server that is used for recommendations.
|
|
@@ -2109,43 +1783,6 @@ export interface UsageMetricBasis {
|
|
|
2109
1783
|
*/
|
|
2110
1784
|
percentageAdjust?: number | undefined;
|
|
2111
1785
|
}
|
|
2112
|
-
/**
|
|
2113
|
-
* @public
|
|
2114
|
-
* @enum
|
|
2115
|
-
*/
|
|
2116
|
-
export declare const OfferingClass: {
|
|
2117
|
-
readonly CONVERTIBLE: "CONVERTIBLE";
|
|
2118
|
-
readonly STANDARD: "STANDARD";
|
|
2119
|
-
};
|
|
2120
|
-
/**
|
|
2121
|
-
* @public
|
|
2122
|
-
*/
|
|
2123
|
-
export type OfferingClass = (typeof OfferingClass)[keyof typeof OfferingClass];
|
|
2124
|
-
/**
|
|
2125
|
-
* @public
|
|
2126
|
-
* @enum
|
|
2127
|
-
*/
|
|
2128
|
-
export declare const PurchasingOption: {
|
|
2129
|
-
readonly ALL_UPFRONT: "ALL_UPFRONT";
|
|
2130
|
-
readonly NO_UPFRONT: "NO_UPFRONT";
|
|
2131
|
-
readonly PARTIAL_UPFRONT: "PARTIAL_UPFRONT";
|
|
2132
|
-
};
|
|
2133
|
-
/**
|
|
2134
|
-
* @public
|
|
2135
|
-
*/
|
|
2136
|
-
export type PurchasingOption = (typeof PurchasingOption)[keyof typeof PurchasingOption];
|
|
2137
|
-
/**
|
|
2138
|
-
* @public
|
|
2139
|
-
* @enum
|
|
2140
|
-
*/
|
|
2141
|
-
export declare const TermLength: {
|
|
2142
|
-
readonly ONE_YEAR: "ONE_YEAR";
|
|
2143
|
-
readonly THREE_YEAR: "THREE_YEAR";
|
|
2144
|
-
};
|
|
2145
|
-
/**
|
|
2146
|
-
* @public
|
|
2147
|
-
*/
|
|
2148
|
-
export type TermLength = (typeof TermLength)[keyof typeof TermLength];
|
|
2149
1786
|
/**
|
|
2150
1787
|
* <p>
|
|
2151
1788
|
* Used to provide Reserved Instance preferences for the recommendation.
|
|
@@ -2175,18 +1812,6 @@ export interface ReservedInstanceOptions {
|
|
|
2175
1812
|
*/
|
|
2176
1813
|
termLength: TermLength | undefined;
|
|
2177
1814
|
}
|
|
2178
|
-
/**
|
|
2179
|
-
* @public
|
|
2180
|
-
* @enum
|
|
2181
|
-
*/
|
|
2182
|
-
export declare const Tenancy: {
|
|
2183
|
-
readonly DEDICATED: "DEDICATED";
|
|
2184
|
-
readonly SHARED: "SHARED";
|
|
2185
|
-
};
|
|
2186
|
-
/**
|
|
2187
|
-
* @public
|
|
2188
|
-
*/
|
|
2189
|
-
export type Tenancy = (typeof Tenancy)[keyof typeof Tenancy];
|
|
2190
1815
|
/**
|
|
2191
1816
|
* <p>
|
|
2192
1817
|
* Indicates that the exported data must include EC2 instance type matches for on-premises servers
|
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { ApplicationDiscoveryServiceExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/enums";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
9
11
|
export { ApplicationDiscoveryServiceServiceException } from "./models/ApplicationDiscoveryServiceServiceException";
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
export declare const AgentStatus: {
|
|
2
|
+
readonly BLACKLISTED: "BLACKLISTED";
|
|
3
|
+
readonly HEALTHY: "HEALTHY";
|
|
4
|
+
readonly RUNNING: "RUNNING";
|
|
5
|
+
readonly SHUTDOWN: "SHUTDOWN";
|
|
6
|
+
readonly UNHEALTHY: "UNHEALTHY";
|
|
7
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
8
|
+
};
|
|
9
|
+
export type AgentStatus = (typeof AgentStatus)[keyof typeof AgentStatus];
|
|
10
|
+
export declare const DeleteAgentErrorCode: {
|
|
11
|
+
readonly AGENT_IN_USE: "AGENT_IN_USE";
|
|
12
|
+
readonly INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR";
|
|
13
|
+
readonly NOT_FOUND: "NOT_FOUND";
|
|
14
|
+
};
|
|
15
|
+
export type DeleteAgentErrorCode =
|
|
16
|
+
(typeof DeleteAgentErrorCode)[keyof typeof DeleteAgentErrorCode];
|
|
17
|
+
export declare const BatchDeleteImportDataErrorCode: {
|
|
18
|
+
readonly INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR";
|
|
19
|
+
readonly NOT_FOUND: "NOT_FOUND";
|
|
20
|
+
readonly OVER_LIMIT: "OVER_LIMIT";
|
|
21
|
+
};
|
|
22
|
+
export type BatchDeleteImportDataErrorCode =
|
|
23
|
+
(typeof BatchDeleteImportDataErrorCode)[keyof typeof BatchDeleteImportDataErrorCode];
|
|
24
|
+
export declare const DeletionConfigurationItemType: {
|
|
25
|
+
readonly SERVER: "SERVER";
|
|
26
|
+
};
|
|
27
|
+
export type DeletionConfigurationItemType =
|
|
28
|
+
(typeof DeletionConfigurationItemType)[keyof typeof DeletionConfigurationItemType];
|
|
29
|
+
export declare const BatchDeleteConfigurationTaskStatus: {
|
|
30
|
+
readonly COMPLETED: "COMPLETED";
|
|
31
|
+
readonly DELETING: "DELETING";
|
|
32
|
+
readonly FAILED: "FAILED";
|
|
33
|
+
readonly INITIALIZING: "INITIALIZING";
|
|
34
|
+
readonly VALIDATING: "VALIDATING";
|
|
35
|
+
};
|
|
36
|
+
export type BatchDeleteConfigurationTaskStatus =
|
|
37
|
+
(typeof BatchDeleteConfigurationTaskStatus)[keyof typeof BatchDeleteConfigurationTaskStatus];
|
|
38
|
+
export declare const DataSource: {
|
|
39
|
+
readonly AGENT: "AGENT";
|
|
40
|
+
};
|
|
41
|
+
export type DataSource = (typeof DataSource)[keyof typeof DataSource];
|
|
42
|
+
export declare const ContinuousExportStatus: {
|
|
43
|
+
readonly ACTIVE: "ACTIVE";
|
|
44
|
+
readonly ERROR: "ERROR";
|
|
45
|
+
readonly INACTIVE: "INACTIVE";
|
|
46
|
+
readonly START_FAILED: "START_FAILED";
|
|
47
|
+
readonly START_IN_PROGRESS: "START_IN_PROGRESS";
|
|
48
|
+
readonly STOP_FAILED: "STOP_FAILED";
|
|
49
|
+
readonly STOP_IN_PROGRESS: "STOP_IN_PROGRESS";
|
|
50
|
+
};
|
|
51
|
+
export type ContinuousExportStatus =
|
|
52
|
+
(typeof ContinuousExportStatus)[keyof typeof ContinuousExportStatus];
|
|
53
|
+
export declare const ExportStatus: {
|
|
54
|
+
readonly FAILED: "FAILED";
|
|
55
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
56
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
57
|
+
};
|
|
58
|
+
export type ExportStatus = (typeof ExportStatus)[keyof typeof ExportStatus];
|
|
59
|
+
export declare const ImportTaskFilterName: {
|
|
60
|
+
readonly FILE_CLASSIFICATION: "FILE_CLASSIFICATION";
|
|
61
|
+
readonly IMPORT_TASK_ID: "IMPORT_TASK_ID";
|
|
62
|
+
readonly NAME: "NAME";
|
|
63
|
+
readonly STATUS: "STATUS";
|
|
64
|
+
};
|
|
65
|
+
export type ImportTaskFilterName =
|
|
66
|
+
(typeof ImportTaskFilterName)[keyof typeof ImportTaskFilterName];
|
|
67
|
+
export declare const FileClassification: {
|
|
68
|
+
readonly IMPORT_TEMPLATE: "IMPORT_TEMPLATE";
|
|
69
|
+
readonly MODELIZEIT_EXPORT: "MODELIZEIT_EXPORT";
|
|
70
|
+
readonly RVTOOLS_EXPORT: "RVTOOLS_EXPORT";
|
|
71
|
+
readonly VMWARE_NSX_EXPORT: "VMWARE_NSX_EXPORT";
|
|
72
|
+
};
|
|
73
|
+
export type FileClassification =
|
|
74
|
+
(typeof FileClassification)[keyof typeof FileClassification];
|
|
75
|
+
export declare const ImportStatus: {
|
|
76
|
+
readonly DELETE_COMPLETE: "DELETE_COMPLETE";
|
|
77
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
78
|
+
readonly DELETE_FAILED_LIMIT_EXCEEDED: "DELETE_FAILED_LIMIT_EXCEEDED";
|
|
79
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
80
|
+
readonly IMPORT_COMPLETE: "IMPORT_COMPLETE";
|
|
81
|
+
readonly IMPORT_COMPLETE_WITH_ERRORS: "IMPORT_COMPLETE_WITH_ERRORS";
|
|
82
|
+
readonly IMPORT_FAILED: "IMPORT_FAILED";
|
|
83
|
+
readonly IMPORT_FAILED_RECORD_LIMIT_EXCEEDED: "IMPORT_FAILED_RECORD_LIMIT_EXCEEDED";
|
|
84
|
+
readonly IMPORT_FAILED_SERVER_LIMIT_EXCEEDED: "IMPORT_FAILED_SERVER_LIMIT_EXCEEDED";
|
|
85
|
+
readonly IMPORT_FAILED_UNSUPPORTED_FILE_TYPE: "IMPORT_FAILED_UNSUPPORTED_FILE_TYPE";
|
|
86
|
+
readonly IMPORT_IN_PROGRESS: "IMPORT_IN_PROGRESS";
|
|
87
|
+
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
88
|
+
};
|
|
89
|
+
export type ImportStatus = (typeof ImportStatus)[keyof typeof ImportStatus];
|
|
90
|
+
export declare const ConfigurationItemType: {
|
|
91
|
+
readonly APPLICATION: "APPLICATION";
|
|
92
|
+
readonly CONNECTIONS: "CONNECTION";
|
|
93
|
+
readonly PROCESS: "PROCESS";
|
|
94
|
+
readonly SERVER: "SERVER";
|
|
95
|
+
};
|
|
96
|
+
export type ConfigurationItemType =
|
|
97
|
+
(typeof ConfigurationItemType)[keyof typeof ConfigurationItemType];
|
|
98
|
+
export declare const OrderString: {
|
|
99
|
+
readonly ASC: "ASC";
|
|
100
|
+
readonly DESC: "DESC";
|
|
101
|
+
};
|
|
102
|
+
export type OrderString = (typeof OrderString)[keyof typeof OrderString];
|
|
103
|
+
export declare const ExportDataFormat: {
|
|
104
|
+
readonly CSV: "CSV";
|
|
105
|
+
};
|
|
106
|
+
export type ExportDataFormat =
|
|
107
|
+
(typeof ExportDataFormat)[keyof typeof ExportDataFormat];
|
|
108
|
+
export declare const OfferingClass: {
|
|
109
|
+
readonly CONVERTIBLE: "CONVERTIBLE";
|
|
110
|
+
readonly STANDARD: "STANDARD";
|
|
111
|
+
};
|
|
112
|
+
export type OfferingClass = (typeof OfferingClass)[keyof typeof OfferingClass];
|
|
113
|
+
export declare const PurchasingOption: {
|
|
114
|
+
readonly ALL_UPFRONT: "ALL_UPFRONT";
|
|
115
|
+
readonly NO_UPFRONT: "NO_UPFRONT";
|
|
116
|
+
readonly PARTIAL_UPFRONT: "PARTIAL_UPFRONT";
|
|
117
|
+
};
|
|
118
|
+
export type PurchasingOption =
|
|
119
|
+
(typeof PurchasingOption)[keyof typeof PurchasingOption];
|
|
120
|
+
export declare const TermLength: {
|
|
121
|
+
readonly ONE_YEAR: "ONE_YEAR";
|
|
122
|
+
readonly THREE_YEAR: "THREE_YEAR";
|
|
123
|
+
};
|
|
124
|
+
export type TermLength = (typeof TermLength)[keyof typeof TermLength];
|
|
125
|
+
export declare const Tenancy: {
|
|
126
|
+
readonly DEDICATED: "DEDICATED";
|
|
127
|
+
readonly SHARED: "SHARED";
|
|
128
|
+
};
|
|
129
|
+
export type Tenancy = (typeof Tenancy)[keyof typeof Tenancy];
|