@aws-sdk/client-application-discovery-service 3.934.0 → 3.935.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 +12 -12
- 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
|
@@ -296,7 +296,7 @@ const _xN = "xmlName";
|
|
|
296
296
|
const n0 = "com.amazonaws.applicationdiscoveryservice";
|
|
297
297
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
298
298
|
import { ApplicationDiscoveryServiceServiceException as __ApplicationDiscoveryServiceServiceException } from "../models/ApplicationDiscoveryServiceServiceException";
|
|
299
|
-
import { AuthorizationErrorException as __AuthorizationErrorException, ConflictErrorException as __ConflictErrorException, HomeRegionNotSetException as __HomeRegionNotSetException, InvalidParameterException as __InvalidParameterException, InvalidParameterValueException as __InvalidParameterValueException, LimitExceededException as __LimitExceededException, OperationNotPermittedException as __OperationNotPermittedException, ResourceInUseException as __ResourceInUseException, ResourceNotFoundException as __ResourceNotFoundException, ServerInternalErrorException as __ServerInternalErrorException, } from "../models/
|
|
299
|
+
import { AuthorizationErrorException as __AuthorizationErrorException, ConflictErrorException as __ConflictErrorException, HomeRegionNotSetException as __HomeRegionNotSetException, InvalidParameterException as __InvalidParameterException, InvalidParameterValueException as __InvalidParameterValueException, LimitExceededException as __LimitExceededException, OperationNotPermittedException as __OperationNotPermittedException, ResourceInUseException as __ResourceInUseException, ResourceNotFoundException as __ResourceNotFoundException, ServerInternalErrorException as __ServerInternalErrorException, } from "../models/errors";
|
|
300
300
|
export var AgentConfigurationStatus = [3, n0, _ACS, 0, [_aI, _oS, _d], [0, 2, 0]];
|
|
301
301
|
export var AgentInfo = [
|
|
302
302
|
3,
|
package/dist-types/index.d.ts
CHANGED
|
@@ -115,5 +115,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
|
|
|
115
115
|
export type { ApplicationDiscoveryServiceExtensionConfiguration } from "./extensionConfiguration";
|
|
116
116
|
export * from "./commands";
|
|
117
117
|
export * from "./pagination";
|
|
118
|
-
export * from "./models";
|
|
118
|
+
export * from "./models/enums";
|
|
119
|
+
export * from "./models/errors";
|
|
120
|
+
export type * from "./models/models_0";
|
|
119
121
|
export { ApplicationDiscoveryServiceServiceException } from "./models/ApplicationDiscoveryServiceServiceException";
|
|
@@ -0,0 +1,245 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const AgentStatus: {
|
|
6
|
+
readonly BLACKLISTED: "BLACKLISTED";
|
|
7
|
+
readonly HEALTHY: "HEALTHY";
|
|
8
|
+
readonly RUNNING: "RUNNING";
|
|
9
|
+
readonly SHUTDOWN: "SHUTDOWN";
|
|
10
|
+
readonly UNHEALTHY: "UNHEALTHY";
|
|
11
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
12
|
+
};
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
export type AgentStatus = (typeof AgentStatus)[keyof typeof AgentStatus];
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
* @enum
|
|
20
|
+
*/
|
|
21
|
+
export declare const DeleteAgentErrorCode: {
|
|
22
|
+
readonly AGENT_IN_USE: "AGENT_IN_USE";
|
|
23
|
+
readonly INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR";
|
|
24
|
+
readonly NOT_FOUND: "NOT_FOUND";
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* @public
|
|
28
|
+
*/
|
|
29
|
+
export type DeleteAgentErrorCode = (typeof DeleteAgentErrorCode)[keyof typeof DeleteAgentErrorCode];
|
|
30
|
+
/**
|
|
31
|
+
* @public
|
|
32
|
+
* @enum
|
|
33
|
+
*/
|
|
34
|
+
export declare const BatchDeleteImportDataErrorCode: {
|
|
35
|
+
readonly INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR";
|
|
36
|
+
readonly NOT_FOUND: "NOT_FOUND";
|
|
37
|
+
readonly OVER_LIMIT: "OVER_LIMIT";
|
|
38
|
+
};
|
|
39
|
+
/**
|
|
40
|
+
* @public
|
|
41
|
+
*/
|
|
42
|
+
export type BatchDeleteImportDataErrorCode = (typeof BatchDeleteImportDataErrorCode)[keyof typeof BatchDeleteImportDataErrorCode];
|
|
43
|
+
/**
|
|
44
|
+
* @public
|
|
45
|
+
* @enum
|
|
46
|
+
*/
|
|
47
|
+
export declare const DeletionConfigurationItemType: {
|
|
48
|
+
readonly SERVER: "SERVER";
|
|
49
|
+
};
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
53
|
+
export type DeletionConfigurationItemType = (typeof DeletionConfigurationItemType)[keyof typeof DeletionConfigurationItemType];
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
* @enum
|
|
57
|
+
*/
|
|
58
|
+
export declare const BatchDeleteConfigurationTaskStatus: {
|
|
59
|
+
readonly COMPLETED: "COMPLETED";
|
|
60
|
+
readonly DELETING: "DELETING";
|
|
61
|
+
readonly FAILED: "FAILED";
|
|
62
|
+
readonly INITIALIZING: "INITIALIZING";
|
|
63
|
+
readonly VALIDATING: "VALIDATING";
|
|
64
|
+
};
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
68
|
+
export type BatchDeleteConfigurationTaskStatus = (typeof BatchDeleteConfigurationTaskStatus)[keyof typeof BatchDeleteConfigurationTaskStatus];
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
* @enum
|
|
72
|
+
*/
|
|
73
|
+
export declare const DataSource: {
|
|
74
|
+
readonly AGENT: "AGENT";
|
|
75
|
+
};
|
|
76
|
+
/**
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
export type DataSource = (typeof DataSource)[keyof typeof DataSource];
|
|
80
|
+
/**
|
|
81
|
+
* @public
|
|
82
|
+
* @enum
|
|
83
|
+
*/
|
|
84
|
+
export declare const ContinuousExportStatus: {
|
|
85
|
+
readonly ACTIVE: "ACTIVE";
|
|
86
|
+
readonly ERROR: "ERROR";
|
|
87
|
+
readonly INACTIVE: "INACTIVE";
|
|
88
|
+
readonly START_FAILED: "START_FAILED";
|
|
89
|
+
readonly START_IN_PROGRESS: "START_IN_PROGRESS";
|
|
90
|
+
readonly STOP_FAILED: "STOP_FAILED";
|
|
91
|
+
readonly STOP_IN_PROGRESS: "STOP_IN_PROGRESS";
|
|
92
|
+
};
|
|
93
|
+
/**
|
|
94
|
+
* @public
|
|
95
|
+
*/
|
|
96
|
+
export type ContinuousExportStatus = (typeof ContinuousExportStatus)[keyof typeof ContinuousExportStatus];
|
|
97
|
+
/**
|
|
98
|
+
* @public
|
|
99
|
+
* @enum
|
|
100
|
+
*/
|
|
101
|
+
export declare const ExportStatus: {
|
|
102
|
+
readonly FAILED: "FAILED";
|
|
103
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
104
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
105
|
+
};
|
|
106
|
+
/**
|
|
107
|
+
* @public
|
|
108
|
+
*/
|
|
109
|
+
export type ExportStatus = (typeof ExportStatus)[keyof typeof ExportStatus];
|
|
110
|
+
/**
|
|
111
|
+
* @public
|
|
112
|
+
* @enum
|
|
113
|
+
*/
|
|
114
|
+
export declare const ImportTaskFilterName: {
|
|
115
|
+
readonly FILE_CLASSIFICATION: "FILE_CLASSIFICATION";
|
|
116
|
+
readonly IMPORT_TASK_ID: "IMPORT_TASK_ID";
|
|
117
|
+
readonly NAME: "NAME";
|
|
118
|
+
readonly STATUS: "STATUS";
|
|
119
|
+
};
|
|
120
|
+
/**
|
|
121
|
+
* @public
|
|
122
|
+
*/
|
|
123
|
+
export type ImportTaskFilterName = (typeof ImportTaskFilterName)[keyof typeof ImportTaskFilterName];
|
|
124
|
+
/**
|
|
125
|
+
* @public
|
|
126
|
+
* @enum
|
|
127
|
+
*/
|
|
128
|
+
export declare const FileClassification: {
|
|
129
|
+
readonly IMPORT_TEMPLATE: "IMPORT_TEMPLATE";
|
|
130
|
+
readonly MODELIZEIT_EXPORT: "MODELIZEIT_EXPORT";
|
|
131
|
+
readonly RVTOOLS_EXPORT: "RVTOOLS_EXPORT";
|
|
132
|
+
readonly VMWARE_NSX_EXPORT: "VMWARE_NSX_EXPORT";
|
|
133
|
+
};
|
|
134
|
+
/**
|
|
135
|
+
* @public
|
|
136
|
+
*/
|
|
137
|
+
export type FileClassification = (typeof FileClassification)[keyof typeof FileClassification];
|
|
138
|
+
/**
|
|
139
|
+
* @public
|
|
140
|
+
* @enum
|
|
141
|
+
*/
|
|
142
|
+
export declare const ImportStatus: {
|
|
143
|
+
readonly DELETE_COMPLETE: "DELETE_COMPLETE";
|
|
144
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
145
|
+
readonly DELETE_FAILED_LIMIT_EXCEEDED: "DELETE_FAILED_LIMIT_EXCEEDED";
|
|
146
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
147
|
+
readonly IMPORT_COMPLETE: "IMPORT_COMPLETE";
|
|
148
|
+
readonly IMPORT_COMPLETE_WITH_ERRORS: "IMPORT_COMPLETE_WITH_ERRORS";
|
|
149
|
+
readonly IMPORT_FAILED: "IMPORT_FAILED";
|
|
150
|
+
readonly IMPORT_FAILED_RECORD_LIMIT_EXCEEDED: "IMPORT_FAILED_RECORD_LIMIT_EXCEEDED";
|
|
151
|
+
readonly IMPORT_FAILED_SERVER_LIMIT_EXCEEDED: "IMPORT_FAILED_SERVER_LIMIT_EXCEEDED";
|
|
152
|
+
readonly IMPORT_FAILED_UNSUPPORTED_FILE_TYPE: "IMPORT_FAILED_UNSUPPORTED_FILE_TYPE";
|
|
153
|
+
readonly IMPORT_IN_PROGRESS: "IMPORT_IN_PROGRESS";
|
|
154
|
+
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
155
|
+
};
|
|
156
|
+
/**
|
|
157
|
+
* @public
|
|
158
|
+
*/
|
|
159
|
+
export type ImportStatus = (typeof ImportStatus)[keyof typeof ImportStatus];
|
|
160
|
+
/**
|
|
161
|
+
* @public
|
|
162
|
+
* @enum
|
|
163
|
+
*/
|
|
164
|
+
export declare const ConfigurationItemType: {
|
|
165
|
+
readonly APPLICATION: "APPLICATION";
|
|
166
|
+
readonly CONNECTIONS: "CONNECTION";
|
|
167
|
+
readonly PROCESS: "PROCESS";
|
|
168
|
+
readonly SERVER: "SERVER";
|
|
169
|
+
};
|
|
170
|
+
/**
|
|
171
|
+
* @public
|
|
172
|
+
*/
|
|
173
|
+
export type ConfigurationItemType = (typeof ConfigurationItemType)[keyof typeof ConfigurationItemType];
|
|
174
|
+
/**
|
|
175
|
+
* @public
|
|
176
|
+
* @enum
|
|
177
|
+
*/
|
|
178
|
+
export declare const OrderString: {
|
|
179
|
+
readonly ASC: "ASC";
|
|
180
|
+
readonly DESC: "DESC";
|
|
181
|
+
};
|
|
182
|
+
/**
|
|
183
|
+
* @public
|
|
184
|
+
*/
|
|
185
|
+
export type OrderString = (typeof OrderString)[keyof typeof OrderString];
|
|
186
|
+
/**
|
|
187
|
+
* @public
|
|
188
|
+
* @enum
|
|
189
|
+
*/
|
|
190
|
+
export declare const ExportDataFormat: {
|
|
191
|
+
readonly CSV: "CSV";
|
|
192
|
+
};
|
|
193
|
+
/**
|
|
194
|
+
* @public
|
|
195
|
+
*/
|
|
196
|
+
export type ExportDataFormat = (typeof ExportDataFormat)[keyof typeof ExportDataFormat];
|
|
197
|
+
/**
|
|
198
|
+
* @public
|
|
199
|
+
* @enum
|
|
200
|
+
*/
|
|
201
|
+
export declare const OfferingClass: {
|
|
202
|
+
readonly CONVERTIBLE: "CONVERTIBLE";
|
|
203
|
+
readonly STANDARD: "STANDARD";
|
|
204
|
+
};
|
|
205
|
+
/**
|
|
206
|
+
* @public
|
|
207
|
+
*/
|
|
208
|
+
export type OfferingClass = (typeof OfferingClass)[keyof typeof OfferingClass];
|
|
209
|
+
/**
|
|
210
|
+
* @public
|
|
211
|
+
* @enum
|
|
212
|
+
*/
|
|
213
|
+
export declare const PurchasingOption: {
|
|
214
|
+
readonly ALL_UPFRONT: "ALL_UPFRONT";
|
|
215
|
+
readonly NO_UPFRONT: "NO_UPFRONT";
|
|
216
|
+
readonly PARTIAL_UPFRONT: "PARTIAL_UPFRONT";
|
|
217
|
+
};
|
|
218
|
+
/**
|
|
219
|
+
* @public
|
|
220
|
+
*/
|
|
221
|
+
export type PurchasingOption = (typeof PurchasingOption)[keyof typeof PurchasingOption];
|
|
222
|
+
/**
|
|
223
|
+
* @public
|
|
224
|
+
* @enum
|
|
225
|
+
*/
|
|
226
|
+
export declare const TermLength: {
|
|
227
|
+
readonly ONE_YEAR: "ONE_YEAR";
|
|
228
|
+
readonly THREE_YEAR: "THREE_YEAR";
|
|
229
|
+
};
|
|
230
|
+
/**
|
|
231
|
+
* @public
|
|
232
|
+
*/
|
|
233
|
+
export type TermLength = (typeof TermLength)[keyof typeof TermLength];
|
|
234
|
+
/**
|
|
235
|
+
* @public
|
|
236
|
+
* @enum
|
|
237
|
+
*/
|
|
238
|
+
export declare const Tenancy: {
|
|
239
|
+
readonly DEDICATED: "DEDICATED";
|
|
240
|
+
readonly SHARED: "SHARED";
|
|
241
|
+
};
|
|
242
|
+
/**
|
|
243
|
+
* @public
|
|
244
|
+
*/
|
|
245
|
+
export type Tenancy = (typeof Tenancy)[keyof typeof Tenancy];
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { ApplicationDiscoveryServiceServiceException as __BaseException } from "./ApplicationDiscoveryServiceServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>The user does not have permission to perform the action. Check the IAM
|
|
5
|
+
* policy associated with this user.</p>
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export declare class AuthorizationErrorException extends __BaseException {
|
|
9
|
+
readonly name: "AuthorizationErrorException";
|
|
10
|
+
readonly $fault: "client";
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
constructor(opts: __ExceptionOptionType<AuthorizationErrorException, __BaseException>);
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* <p>The home Region is not set. Set the home Region to continue.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
export declare class HomeRegionNotSetException extends __BaseException {
|
|
21
|
+
readonly name: "HomeRegionNotSetException";
|
|
22
|
+
readonly $fault: "client";
|
|
23
|
+
/**
|
|
24
|
+
* @internal
|
|
25
|
+
*/
|
|
26
|
+
constructor(opts: __ExceptionOptionType<HomeRegionNotSetException, __BaseException>);
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* <p>One or more parameters are not valid. Verify the parameters and try again.</p>
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
export declare class InvalidParameterException extends __BaseException {
|
|
33
|
+
readonly name: "InvalidParameterException";
|
|
34
|
+
readonly $fault: "client";
|
|
35
|
+
/**
|
|
36
|
+
* @internal
|
|
37
|
+
*/
|
|
38
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* <p>The value of one or more parameters are either invalid or out of range. Verify the
|
|
42
|
+
* parameter values and try again.</p>
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
45
|
+
export declare class InvalidParameterValueException extends __BaseException {
|
|
46
|
+
readonly name: "InvalidParameterValueException";
|
|
47
|
+
readonly $fault: "client";
|
|
48
|
+
/**
|
|
49
|
+
* @internal
|
|
50
|
+
*/
|
|
51
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>);
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* <p>The server experienced an internal error. Try again.</p>
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
57
|
+
export declare class ServerInternalErrorException extends __BaseException {
|
|
58
|
+
readonly name: "ServerInternalErrorException";
|
|
59
|
+
readonly $fault: "server";
|
|
60
|
+
/**
|
|
61
|
+
* @internal
|
|
62
|
+
*/
|
|
63
|
+
constructor(opts: __ExceptionOptionType<ServerInternalErrorException, __BaseException>);
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* <p>The specified configuration ID was not located. Verify the configuration ID and try
|
|
67
|
+
* again.</p>
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
70
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
71
|
+
readonly name: "ResourceNotFoundException";
|
|
72
|
+
readonly $fault: "client";
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
76
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
77
|
+
}
|
|
78
|
+
/**
|
|
79
|
+
* <p>This operation is not permitted.</p>
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
82
|
+
export declare class OperationNotPermittedException extends __BaseException {
|
|
83
|
+
readonly name: "OperationNotPermittedException";
|
|
84
|
+
readonly $fault: "client";
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
88
|
+
constructor(opts: __ExceptionOptionType<OperationNotPermittedException, __BaseException>);
|
|
89
|
+
}
|
|
90
|
+
/**
|
|
91
|
+
* <p>
|
|
92
|
+
* The limit of 200 configuration IDs per request has been exceeded.
|
|
93
|
+
* </p>
|
|
94
|
+
* @public
|
|
95
|
+
*/
|
|
96
|
+
export declare class LimitExceededException extends __BaseException {
|
|
97
|
+
readonly name: "LimitExceededException";
|
|
98
|
+
readonly $fault: "client";
|
|
99
|
+
/**
|
|
100
|
+
* @internal
|
|
101
|
+
*/
|
|
102
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
103
|
+
}
|
|
104
|
+
/**
|
|
105
|
+
* <p>Conflict error.</p>
|
|
106
|
+
* @public
|
|
107
|
+
*/
|
|
108
|
+
export declare class ConflictErrorException extends __BaseException {
|
|
109
|
+
readonly name: "ConflictErrorException";
|
|
110
|
+
readonly $fault: "client";
|
|
111
|
+
/**
|
|
112
|
+
* @internal
|
|
113
|
+
*/
|
|
114
|
+
constructor(opts: __ExceptionOptionType<ConflictErrorException, __BaseException>);
|
|
115
|
+
}
|
|
116
|
+
/**
|
|
117
|
+
* <p>This issue occurs when the same <code>clientRequestToken</code> is used with the
|
|
118
|
+
* <code>StartImportTask</code> action, but with different parameters. For example, you use the
|
|
119
|
+
* same request token but have two different import URLs, you can encounter this issue. If the
|
|
120
|
+
* import tasks are meant to be different, use a different <code>clientRequestToken</code>, and
|
|
121
|
+
* try again.</p>
|
|
122
|
+
* @public
|
|
123
|
+
*/
|
|
124
|
+
export declare class ResourceInUseException extends __BaseException {
|
|
125
|
+
readonly name: "ResourceInUseException";
|
|
126
|
+
readonly $fault: "client";
|
|
127
|
+
/**
|
|
128
|
+
* @internal
|
|
129
|
+
*/
|
|
130
|
+
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
131
|
+
}
|