@aws-sdk/client-application-discovery-service 3.52.0 → 3.54.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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/ApplicationDiscoveryServiceServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +120 -2
- package/dist-cjs/protocols/Aws_json1_1.js +292 -1152
- package/dist-es/index.js +1 -0
- package/dist-es/models/ApplicationDiscoveryServiceServiceException.js +12 -0
- package/dist-es/models/models_0.js +110 -1
- package/dist-es/protocols/Aws_json1_1.js +634 -1235
- package/dist-types/ApplicationDiscoveryServiceClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/ApplicationDiscoveryServiceServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +65 -37
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/ApplicationDiscoveryServiceClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/ApplicationDiscoveryServiceServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +47 -37
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +27 -27
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [3.54.1](https://github.com/aws/aws-sdk-js-v3/compare/v3.54.0...v3.54.1) (2022-03-15)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-application-discovery-service
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.54.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.53.1...v3.54.0) (2022-03-11)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-application-discovery-service
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [3.53.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.52.0...v3.53.0) (2022-02-24)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* **clients:** generate service exceptions as classes ([#3267](https://github.com/aws/aws-sdk-js-v3/issues/3267)) ([ca64fee](https://github.com/aws/aws-sdk-js-v3/commit/ca64feed3351c394c07dc26b782a5760a396a074))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
# [3.52.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.51.0...v3.52.0) (2022-02-18)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @aws-sdk/client-application-discovery-service
|
package/dist-cjs/index.js
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ApplicationDiscoveryServiceServiceException = void 0;
|
|
3
4
|
const tslib_1 = require("tslib");
|
|
4
5
|
tslib_1.__exportStar(require("./ApplicationDiscoveryService"), exports);
|
|
5
6
|
tslib_1.__exportStar(require("./ApplicationDiscoveryServiceClient"), exports);
|
|
6
7
|
tslib_1.__exportStar(require("./commands"), exports);
|
|
7
8
|
tslib_1.__exportStar(require("./models"), exports);
|
|
8
9
|
tslib_1.__exportStar(require("./pagination"), exports);
|
|
10
|
+
var ApplicationDiscoveryServiceServiceException_1 = require("./models/ApplicationDiscoveryServiceServiceException");
|
|
11
|
+
Object.defineProperty(exports, "ApplicationDiscoveryServiceServiceException", { enumerable: true, get: function () { return ApplicationDiscoveryServiceServiceException_1.ApplicationDiscoveryServiceServiceException; } });
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ApplicationDiscoveryServiceServiceException = void 0;
|
|
4
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
5
|
+
class ApplicationDiscoveryServiceServiceException extends smithy_client_1.ServiceException {
|
|
6
|
+
constructor(options) {
|
|
7
|
+
super(options);
|
|
8
|
+
Object.setPrototypeOf(this, ApplicationDiscoveryServiceServiceException.prototype);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.ApplicationDiscoveryServiceServiceException = ApplicationDiscoveryServiceServiceException;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.UpdateApplicationResponse = exports.UpdateApplicationRequest = exports.StopDataCollectionByAgentIdsResponse = exports.StopDataCollectionByAgentIdsRequest = exports.StopContinuousExportResponse = exports.StopContinuousExportRequest = exports.StartImportTaskResponse = exports.StartImportTaskRequest = exports.StartExportTaskResponse = exports.StartExportTaskRequest = exports.ExportDataFormat = exports.StartDataCollectionByAgentIdsResponse = exports.StartDataCollectionByAgentIdsRequest = exports.StartContinuousExportResponse = exports.StartContinuousExportRequest = exports.ListServerNeighborsResponse = exports.NeighborConnectionDetail = exports.ListServerNeighborsRequest = exports.ListConfigurationsResponse = exports.ListConfigurationsRequest = exports.OrderByElement = exports.OrderString = exports.GetDiscoverySummaryResponse = exports.CustomerConnectorInfo = exports.CustomerAgentInfo = exports.GetDiscoverySummaryRequest = void 0;
|
|
3
|
+
exports.TagFilter = exports.DescribeImportTasksResponse = exports.ImportTask = exports.ImportStatus = exports.DescribeImportTasksRequest = exports.ImportTaskFilter = exports.ImportTaskFilterName = exports.DescribeExportTasksResponse = exports.DescribeExportTasksRequest = exports.ExportFilter = exports.DescribeExportConfigurationsResponse = exports.ExportInfo = exports.ExportStatus = exports.DescribeExportConfigurationsRequest = exports.OperationNotPermittedException = exports.DescribeContinuousExportsResponse = exports.ContinuousExportDescription = exports.ContinuousExportStatus = exports.DataSource = exports.DescribeContinuousExportsRequest = exports.DescribeConfigurationsResponse = exports.DescribeConfigurationsRequest = exports.DescribeAgentsResponse = exports.DescribeAgentsRequest = exports.Filter = exports.DeleteTagsResponse = exports.DeleteTagsRequest = exports.DeleteApplicationsResponse = exports.DeleteApplicationsRequest = exports.ResourceNotFoundException = exports.CreateTagsResponse = exports.CreateTagsRequest = exports.Tag = exports.CreateApplicationResponse = exports.CreateApplicationRequest = exports.BatchDeleteImportDataResponse = exports.BatchDeleteImportDataError = exports.BatchDeleteImportDataErrorCode = exports.BatchDeleteImportDataRequest = exports.ServerInternalErrorException = exports.InvalidParameterValueException = exports.InvalidParameterException = exports.HomeRegionNotSetException = exports.AuthorizationErrorException = exports.AssociateConfigurationItemsToApplicationResponse = exports.AssociateConfigurationItemsToApplicationRequest = exports.AgentInfo = exports.AgentStatus = exports.AgentNetworkInfo = exports.AgentConfigurationStatus = void 0;
|
|
4
|
+
exports.UpdateApplicationResponse = exports.UpdateApplicationRequest = exports.StopDataCollectionByAgentIdsResponse = exports.StopDataCollectionByAgentIdsRequest = exports.StopContinuousExportResponse = exports.StopContinuousExportRequest = exports.StartImportTaskResponse = exports.StartImportTaskRequest = exports.StartExportTaskResponse = exports.StartExportTaskRequest = exports.ExportDataFormat = exports.StartDataCollectionByAgentIdsResponse = exports.StartDataCollectionByAgentIdsRequest = exports.StartContinuousExportResponse = exports.StartContinuousExportRequest = exports.ResourceInUseException = exports.ConflictErrorException = exports.ListServerNeighborsResponse = exports.NeighborConnectionDetail = exports.ListServerNeighborsRequest = exports.ListConfigurationsResponse = exports.ListConfigurationsRequest = exports.OrderByElement = exports.OrderString = exports.GetDiscoverySummaryResponse = exports.CustomerConnectorInfo = exports.CustomerAgentInfo = exports.GetDiscoverySummaryRequest = exports.ExportConfigurationsResponse = exports.DisassociateConfigurationItemsFromApplicationResponse = exports.DisassociateConfigurationItemsFromApplicationRequest = exports.DescribeTagsResponse = exports.ConfigurationTag = exports.ConfigurationItemType = exports.DescribeTagsRequest = void 0;
|
|
5
|
+
const ApplicationDiscoveryServiceServiceException_1 = require("./ApplicationDiscoveryServiceServiceException");
|
|
5
6
|
var AgentConfigurationStatus;
|
|
6
7
|
(function (AgentConfigurationStatus) {
|
|
7
8
|
AgentConfigurationStatus.filterSensitiveLog = (obj) => ({
|
|
@@ -41,6 +42,71 @@ var AssociateConfigurationItemsToApplicationResponse;
|
|
|
41
42
|
...obj,
|
|
42
43
|
});
|
|
43
44
|
})(AssociateConfigurationItemsToApplicationResponse = exports.AssociateConfigurationItemsToApplicationResponse || (exports.AssociateConfigurationItemsToApplicationResponse = {}));
|
|
45
|
+
class AuthorizationErrorException extends ApplicationDiscoveryServiceServiceException_1.ApplicationDiscoveryServiceServiceException {
|
|
46
|
+
constructor(opts) {
|
|
47
|
+
super({
|
|
48
|
+
name: "AuthorizationErrorException",
|
|
49
|
+
$fault: "client",
|
|
50
|
+
...opts,
|
|
51
|
+
});
|
|
52
|
+
this.name = "AuthorizationErrorException";
|
|
53
|
+
this.$fault = "client";
|
|
54
|
+
Object.setPrototypeOf(this, AuthorizationErrorException.prototype);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
exports.AuthorizationErrorException = AuthorizationErrorException;
|
|
58
|
+
class HomeRegionNotSetException extends ApplicationDiscoveryServiceServiceException_1.ApplicationDiscoveryServiceServiceException {
|
|
59
|
+
constructor(opts) {
|
|
60
|
+
super({
|
|
61
|
+
name: "HomeRegionNotSetException",
|
|
62
|
+
$fault: "client",
|
|
63
|
+
...opts,
|
|
64
|
+
});
|
|
65
|
+
this.name = "HomeRegionNotSetException";
|
|
66
|
+
this.$fault = "client";
|
|
67
|
+
Object.setPrototypeOf(this, HomeRegionNotSetException.prototype);
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
exports.HomeRegionNotSetException = HomeRegionNotSetException;
|
|
71
|
+
class InvalidParameterException extends ApplicationDiscoveryServiceServiceException_1.ApplicationDiscoveryServiceServiceException {
|
|
72
|
+
constructor(opts) {
|
|
73
|
+
super({
|
|
74
|
+
name: "InvalidParameterException",
|
|
75
|
+
$fault: "client",
|
|
76
|
+
...opts,
|
|
77
|
+
});
|
|
78
|
+
this.name = "InvalidParameterException";
|
|
79
|
+
this.$fault = "client";
|
|
80
|
+
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
exports.InvalidParameterException = InvalidParameterException;
|
|
84
|
+
class InvalidParameterValueException extends ApplicationDiscoveryServiceServiceException_1.ApplicationDiscoveryServiceServiceException {
|
|
85
|
+
constructor(opts) {
|
|
86
|
+
super({
|
|
87
|
+
name: "InvalidParameterValueException",
|
|
88
|
+
$fault: "client",
|
|
89
|
+
...opts,
|
|
90
|
+
});
|
|
91
|
+
this.name = "InvalidParameterValueException";
|
|
92
|
+
this.$fault = "client";
|
|
93
|
+
Object.setPrototypeOf(this, InvalidParameterValueException.prototype);
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
exports.InvalidParameterValueException = InvalidParameterValueException;
|
|
97
|
+
class ServerInternalErrorException extends ApplicationDiscoveryServiceServiceException_1.ApplicationDiscoveryServiceServiceException {
|
|
98
|
+
constructor(opts) {
|
|
99
|
+
super({
|
|
100
|
+
name: "ServerInternalErrorException",
|
|
101
|
+
$fault: "server",
|
|
102
|
+
...opts,
|
|
103
|
+
});
|
|
104
|
+
this.name = "ServerInternalErrorException";
|
|
105
|
+
this.$fault = "server";
|
|
106
|
+
Object.setPrototypeOf(this, ServerInternalErrorException.prototype);
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
exports.ServerInternalErrorException = ServerInternalErrorException;
|
|
44
110
|
var BatchDeleteImportDataRequest;
|
|
45
111
|
(function (BatchDeleteImportDataRequest) {
|
|
46
112
|
BatchDeleteImportDataRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -95,6 +161,19 @@ var CreateTagsResponse;
|
|
|
95
161
|
...obj,
|
|
96
162
|
});
|
|
97
163
|
})(CreateTagsResponse = exports.CreateTagsResponse || (exports.CreateTagsResponse = {}));
|
|
164
|
+
class ResourceNotFoundException extends ApplicationDiscoveryServiceServiceException_1.ApplicationDiscoveryServiceServiceException {
|
|
165
|
+
constructor(opts) {
|
|
166
|
+
super({
|
|
167
|
+
name: "ResourceNotFoundException",
|
|
168
|
+
$fault: "client",
|
|
169
|
+
...opts,
|
|
170
|
+
});
|
|
171
|
+
this.name = "ResourceNotFoundException";
|
|
172
|
+
this.$fault = "client";
|
|
173
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
98
177
|
var DeleteApplicationsRequest;
|
|
99
178
|
(function (DeleteApplicationsRequest) {
|
|
100
179
|
DeleteApplicationsRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -181,6 +260,19 @@ var DescribeContinuousExportsResponse;
|
|
|
181
260
|
...obj,
|
|
182
261
|
});
|
|
183
262
|
})(DescribeContinuousExportsResponse = exports.DescribeContinuousExportsResponse || (exports.DescribeContinuousExportsResponse = {}));
|
|
263
|
+
class OperationNotPermittedException extends ApplicationDiscoveryServiceServiceException_1.ApplicationDiscoveryServiceServiceException {
|
|
264
|
+
constructor(opts) {
|
|
265
|
+
super({
|
|
266
|
+
name: "OperationNotPermittedException",
|
|
267
|
+
$fault: "client",
|
|
268
|
+
...opts,
|
|
269
|
+
});
|
|
270
|
+
this.name = "OperationNotPermittedException";
|
|
271
|
+
this.$fault = "client";
|
|
272
|
+
Object.setPrototypeOf(this, OperationNotPermittedException.prototype);
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
exports.OperationNotPermittedException = OperationNotPermittedException;
|
|
184
276
|
var DescribeExportConfigurationsRequest;
|
|
185
277
|
(function (DescribeExportConfigurationsRequest) {
|
|
186
278
|
DescribeExportConfigurationsRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -381,6 +473,32 @@ var ListServerNeighborsResponse;
|
|
|
381
473
|
...obj,
|
|
382
474
|
});
|
|
383
475
|
})(ListServerNeighborsResponse = exports.ListServerNeighborsResponse || (exports.ListServerNeighborsResponse = {}));
|
|
476
|
+
class ConflictErrorException extends ApplicationDiscoveryServiceServiceException_1.ApplicationDiscoveryServiceServiceException {
|
|
477
|
+
constructor(opts) {
|
|
478
|
+
super({
|
|
479
|
+
name: "ConflictErrorException",
|
|
480
|
+
$fault: "client",
|
|
481
|
+
...opts,
|
|
482
|
+
});
|
|
483
|
+
this.name = "ConflictErrorException";
|
|
484
|
+
this.$fault = "client";
|
|
485
|
+
Object.setPrototypeOf(this, ConflictErrorException.prototype);
|
|
486
|
+
}
|
|
487
|
+
}
|
|
488
|
+
exports.ConflictErrorException = ConflictErrorException;
|
|
489
|
+
class ResourceInUseException extends ApplicationDiscoveryServiceServiceException_1.ApplicationDiscoveryServiceServiceException {
|
|
490
|
+
constructor(opts) {
|
|
491
|
+
super({
|
|
492
|
+
name: "ResourceInUseException",
|
|
493
|
+
$fault: "client",
|
|
494
|
+
...opts,
|
|
495
|
+
});
|
|
496
|
+
this.name = "ResourceInUseException";
|
|
497
|
+
this.$fault = "client";
|
|
498
|
+
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
499
|
+
}
|
|
500
|
+
}
|
|
501
|
+
exports.ResourceInUseException = ResourceInUseException;
|
|
384
502
|
var StartContinuousExportRequest;
|
|
385
503
|
(function (StartContinuousExportRequest) {
|
|
386
504
|
StartContinuousExportRequest.filterSensitiveLog = (obj) => ({
|