@aws-sdk/client-application-discovery-service 3.952.0 → 3.953.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.
Files changed (48) hide show
  1. package/dist-cjs/index.js +402 -273
  2. package/dist-cjs/runtimeConfig.shared.js +7 -6
  3. package/dist-es/commands/AssociateConfigurationItemsToApplicationCommand.js +2 -2
  4. package/dist-es/commands/BatchDeleteAgentsCommand.js +2 -2
  5. package/dist-es/commands/BatchDeleteImportDataCommand.js +2 -2
  6. package/dist-es/commands/CreateApplicationCommand.js +2 -2
  7. package/dist-es/commands/CreateTagsCommand.js +2 -2
  8. package/dist-es/commands/DeleteApplicationsCommand.js +2 -2
  9. package/dist-es/commands/DeleteTagsCommand.js +2 -2
  10. package/dist-es/commands/DescribeAgentsCommand.js +2 -2
  11. package/dist-es/commands/DescribeBatchDeleteConfigurationTaskCommand.js +2 -2
  12. package/dist-es/commands/DescribeConfigurationsCommand.js +2 -2
  13. package/dist-es/commands/DescribeContinuousExportsCommand.js +2 -2
  14. package/dist-es/commands/DescribeExportConfigurationsCommand.js +2 -2
  15. package/dist-es/commands/DescribeExportTasksCommand.js +2 -2
  16. package/dist-es/commands/DescribeImportTasksCommand.js +2 -2
  17. package/dist-es/commands/DescribeTagsCommand.js +2 -2
  18. package/dist-es/commands/DisassociateConfigurationItemsFromApplicationCommand.js +2 -2
  19. package/dist-es/commands/ExportConfigurationsCommand.js +2 -2
  20. package/dist-es/commands/GetDiscoverySummaryCommand.js +2 -2
  21. package/dist-es/commands/ListConfigurationsCommand.js +2 -2
  22. package/dist-es/commands/ListServerNeighborsCommand.js +2 -2
  23. package/dist-es/commands/StartBatchDeleteConfigurationTaskCommand.js +2 -2
  24. package/dist-es/commands/StartContinuousExportCommand.js +2 -2
  25. package/dist-es/commands/StartDataCollectionByAgentIdsCommand.js +2 -2
  26. package/dist-es/commands/StartExportTaskCommand.js +2 -2
  27. package/dist-es/commands/StartImportTaskCommand.js +2 -2
  28. package/dist-es/commands/StopContinuousExportCommand.js +2 -2
  29. package/dist-es/commands/StopDataCollectionByAgentIdsCommand.js +2 -2
  30. package/dist-es/commands/UpdateApplicationCommand.js +2 -2
  31. package/dist-es/index.js +1 -0
  32. package/dist-es/runtimeConfig.shared.js +7 -6
  33. package/dist-es/schemas/schemas_0.js +236 -229
  34. package/dist-types/ApplicationDiscoveryServiceClient.d.ts +1 -10
  35. package/dist-types/index.d.ts +1 -0
  36. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  37. package/dist-types/runtimeConfig.d.ts +6 -2
  38. package/dist-types/runtimeConfig.native.d.ts +6 -2
  39. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  40. package/dist-types/schemas/schemas_0.d.ts +123 -158
  41. package/dist-types/ts3.4/ApplicationDiscoveryServiceClient.d.ts +0 -4
  42. package/dist-types/ts3.4/index.d.ts +1 -0
  43. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  44. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  45. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  46. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  47. package/dist-types/ts3.4/schemas/schemas_0.d.ts +122 -158
  48. package/package.json +34 -34
@@ -26,12 +26,13 @@ const getRuntimeConfig = (config) => {
26
26
  },
27
27
  ],
28
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
- protocol: config?.protocol ??
30
- new protocols_1.AwsJson1_1Protocol({
31
- defaultNamespace: "com.amazonaws.applicationdiscoveryservice",
32
- serviceTarget: "AWSPoseidonService_V2015_11_01",
33
- awsQueryCompatible: false,
34
- }),
29
+ protocol: config?.protocol ?? protocols_1.AwsJson1_1Protocol,
30
+ protocolSettings: config?.protocolSettings ?? {
31
+ defaultNamespace: "com.amazonaws.applicationdiscoveryservice",
32
+ xmlNamespace: "http://ec2.amazon.com/awsposiedon/V2015_11_01/",
33
+ version: "2015-11-01",
34
+ serviceTarget: "AWSPoseidonService_V2015_11_01",
35
+ },
35
36
  serviceId: config?.serviceId ?? "Application Discovery Service",
36
37
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
37
38
  utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { AssociateConfigurationItemsToApplication } from "../schemas/schemas_0";
4
+ import { AssociateConfigurationItemsToApplication$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class AssociateConfigurationItemsToApplicationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class AssociateConfigurationItemsToApplicationCommand extends $Command
11
11
  })
12
12
  .s("AWSPoseidonService_V2015_11_01", "AssociateConfigurationItemsToApplication", {})
13
13
  .n("ApplicationDiscoveryServiceClient", "AssociateConfigurationItemsToApplicationCommand")
14
- .sc(AssociateConfigurationItemsToApplication)
14
+ .sc(AssociateConfigurationItemsToApplication$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { BatchDeleteAgents } from "../schemas/schemas_0";
4
+ import { BatchDeleteAgents$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class BatchDeleteAgentsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class BatchDeleteAgentsCommand extends $Command
11
11
  })
12
12
  .s("AWSPoseidonService_V2015_11_01", "BatchDeleteAgents", {})
13
13
  .n("ApplicationDiscoveryServiceClient", "BatchDeleteAgentsCommand")
14
- .sc(BatchDeleteAgents)
14
+ .sc(BatchDeleteAgents$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { BatchDeleteImportData } from "../schemas/schemas_0";
4
+ import { BatchDeleteImportData$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class BatchDeleteImportDataCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class BatchDeleteImportDataCommand extends $Command
11
11
  })
12
12
  .s("AWSPoseidonService_V2015_11_01", "BatchDeleteImportData", {})
13
13
  .n("ApplicationDiscoveryServiceClient", "BatchDeleteImportDataCommand")
14
- .sc(BatchDeleteImportData)
14
+ .sc(BatchDeleteImportData$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateApplication } from "../schemas/schemas_0";
4
+ import { CreateApplication$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateApplicationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateApplicationCommand extends $Command
11
11
  })
12
12
  .s("AWSPoseidonService_V2015_11_01", "CreateApplication", {})
13
13
  .n("ApplicationDiscoveryServiceClient", "CreateApplicationCommand")
14
- .sc(CreateApplication)
14
+ .sc(CreateApplication$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateTags } from "../schemas/schemas_0";
4
+ import { CreateTags$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateTagsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateTagsCommand extends $Command
11
11
  })
12
12
  .s("AWSPoseidonService_V2015_11_01", "CreateTags", {})
13
13
  .n("ApplicationDiscoveryServiceClient", "CreateTagsCommand")
14
- .sc(CreateTags)
14
+ .sc(CreateTags$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteApplications } from "../schemas/schemas_0";
4
+ import { DeleteApplications$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteApplicationsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteApplicationsCommand extends $Command
11
11
  })
12
12
  .s("AWSPoseidonService_V2015_11_01", "DeleteApplications", {})
13
13
  .n("ApplicationDiscoveryServiceClient", "DeleteApplicationsCommand")
14
- .sc(DeleteApplications)
14
+ .sc(DeleteApplications$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteTags } from "../schemas/schemas_0";
4
+ import { DeleteTags$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteTagsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteTagsCommand extends $Command
11
11
  })
12
12
  .s("AWSPoseidonService_V2015_11_01", "DeleteTags", {})
13
13
  .n("ApplicationDiscoveryServiceClient", "DeleteTagsCommand")
14
- .sc(DeleteTags)
14
+ .sc(DeleteTags$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeAgents } from "../schemas/schemas_0";
4
+ import { DescribeAgents$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeAgentsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeAgentsCommand extends $Command
11
11
  })
12
12
  .s("AWSPoseidonService_V2015_11_01", "DescribeAgents", {})
13
13
  .n("ApplicationDiscoveryServiceClient", "DescribeAgentsCommand")
14
- .sc(DescribeAgents)
14
+ .sc(DescribeAgents$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeBatchDeleteConfigurationTask } from "../schemas/schemas_0";
4
+ import { DescribeBatchDeleteConfigurationTask$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeBatchDeleteConfigurationTaskCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeBatchDeleteConfigurationTaskCommand extends $Command
11
11
  })
12
12
  .s("AWSPoseidonService_V2015_11_01", "DescribeBatchDeleteConfigurationTask", {})
13
13
  .n("ApplicationDiscoveryServiceClient", "DescribeBatchDeleteConfigurationTaskCommand")
14
- .sc(DescribeBatchDeleteConfigurationTask)
14
+ .sc(DescribeBatchDeleteConfigurationTask$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeConfigurations } from "../schemas/schemas_0";
4
+ import { DescribeConfigurations$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeConfigurationsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeConfigurationsCommand extends $Command
11
11
  })
12
12
  .s("AWSPoseidonService_V2015_11_01", "DescribeConfigurations", {})
13
13
  .n("ApplicationDiscoveryServiceClient", "DescribeConfigurationsCommand")
14
- .sc(DescribeConfigurations)
14
+ .sc(DescribeConfigurations$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeContinuousExports } from "../schemas/schemas_0";
4
+ import { DescribeContinuousExports$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeContinuousExportsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeContinuousExportsCommand extends $Command
11
11
  })
12
12
  .s("AWSPoseidonService_V2015_11_01", "DescribeContinuousExports", {})
13
13
  .n("ApplicationDiscoveryServiceClient", "DescribeContinuousExportsCommand")
14
- .sc(DescribeContinuousExports)
14
+ .sc(DescribeContinuousExports$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeExportConfigurations } from "../schemas/schemas_0";
4
+ import { DescribeExportConfigurations$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeExportConfigurationsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeExportConfigurationsCommand extends $Command
11
11
  })
12
12
  .s("AWSPoseidonService_V2015_11_01", "DescribeExportConfigurations", {})
13
13
  .n("ApplicationDiscoveryServiceClient", "DescribeExportConfigurationsCommand")
14
- .sc(DescribeExportConfigurations)
14
+ .sc(DescribeExportConfigurations$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeExportTasks } from "../schemas/schemas_0";
4
+ import { DescribeExportTasks$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeExportTasksCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeExportTasksCommand extends $Command
11
11
  })
12
12
  .s("AWSPoseidonService_V2015_11_01", "DescribeExportTasks", {})
13
13
  .n("ApplicationDiscoveryServiceClient", "DescribeExportTasksCommand")
14
- .sc(DescribeExportTasks)
14
+ .sc(DescribeExportTasks$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeImportTasks } from "../schemas/schemas_0";
4
+ import { DescribeImportTasks$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeImportTasksCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeImportTasksCommand extends $Command
11
11
  })
12
12
  .s("AWSPoseidonService_V2015_11_01", "DescribeImportTasks", {})
13
13
  .n("ApplicationDiscoveryServiceClient", "DescribeImportTasksCommand")
14
- .sc(DescribeImportTasks)
14
+ .sc(DescribeImportTasks$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeTags } from "../schemas/schemas_0";
4
+ import { DescribeTags$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeTagsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeTagsCommand extends $Command
11
11
  })
12
12
  .s("AWSPoseidonService_V2015_11_01", "DescribeTags", {})
13
13
  .n("ApplicationDiscoveryServiceClient", "DescribeTagsCommand")
14
- .sc(DescribeTags)
14
+ .sc(DescribeTags$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DisassociateConfigurationItemsFromApplication } from "../schemas/schemas_0";
4
+ import { DisassociateConfigurationItemsFromApplication$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DisassociateConfigurationItemsFromApplicationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DisassociateConfigurationItemsFromApplicationCommand extends $Comma
11
11
  })
12
12
  .s("AWSPoseidonService_V2015_11_01", "DisassociateConfigurationItemsFromApplication", {})
13
13
  .n("ApplicationDiscoveryServiceClient", "DisassociateConfigurationItemsFromApplicationCommand")
14
- .sc(DisassociateConfigurationItemsFromApplication)
14
+ .sc(DisassociateConfigurationItemsFromApplication$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ExportConfigurations } from "../schemas/schemas_0";
4
+ import { ExportConfigurations$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ExportConfigurationsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ExportConfigurationsCommand extends $Command
11
11
  })
12
12
  .s("AWSPoseidonService_V2015_11_01", "ExportConfigurations", {})
13
13
  .n("ApplicationDiscoveryServiceClient", "ExportConfigurationsCommand")
14
- .sc(ExportConfigurations)
14
+ .sc(ExportConfigurations$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetDiscoverySummary } from "../schemas/schemas_0";
4
+ import { GetDiscoverySummary$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetDiscoverySummaryCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetDiscoverySummaryCommand extends $Command
11
11
  })
12
12
  .s("AWSPoseidonService_V2015_11_01", "GetDiscoverySummary", {})
13
13
  .n("ApplicationDiscoveryServiceClient", "GetDiscoverySummaryCommand")
14
- .sc(GetDiscoverySummary)
14
+ .sc(GetDiscoverySummary$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListConfigurations } from "../schemas/schemas_0";
4
+ import { ListConfigurations$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListConfigurationsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListConfigurationsCommand extends $Command
11
11
  })
12
12
  .s("AWSPoseidonService_V2015_11_01", "ListConfigurations", {})
13
13
  .n("ApplicationDiscoveryServiceClient", "ListConfigurationsCommand")
14
- .sc(ListConfigurations)
14
+ .sc(ListConfigurations$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListServerNeighbors } from "../schemas/schemas_0";
4
+ import { ListServerNeighbors$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListServerNeighborsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListServerNeighborsCommand extends $Command
11
11
  })
12
12
  .s("AWSPoseidonService_V2015_11_01", "ListServerNeighbors", {})
13
13
  .n("ApplicationDiscoveryServiceClient", "ListServerNeighborsCommand")
14
- .sc(ListServerNeighbors)
14
+ .sc(ListServerNeighbors$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { StartBatchDeleteConfigurationTask } from "../schemas/schemas_0";
4
+ import { StartBatchDeleteConfigurationTask$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StartBatchDeleteConfigurationTaskCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StartBatchDeleteConfigurationTaskCommand extends $Command
11
11
  })
12
12
  .s("AWSPoseidonService_V2015_11_01", "StartBatchDeleteConfigurationTask", {})
13
13
  .n("ApplicationDiscoveryServiceClient", "StartBatchDeleteConfigurationTaskCommand")
14
- .sc(StartBatchDeleteConfigurationTask)
14
+ .sc(StartBatchDeleteConfigurationTask$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { StartContinuousExport } from "../schemas/schemas_0";
4
+ import { StartContinuousExport$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StartContinuousExportCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StartContinuousExportCommand extends $Command
11
11
  })
12
12
  .s("AWSPoseidonService_V2015_11_01", "StartContinuousExport", {})
13
13
  .n("ApplicationDiscoveryServiceClient", "StartContinuousExportCommand")
14
- .sc(StartContinuousExport)
14
+ .sc(StartContinuousExport$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { StartDataCollectionByAgentIds } from "../schemas/schemas_0";
4
+ import { StartDataCollectionByAgentIds$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StartDataCollectionByAgentIdsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StartDataCollectionByAgentIdsCommand extends $Command
11
11
  })
12
12
  .s("AWSPoseidonService_V2015_11_01", "StartDataCollectionByAgentIds", {})
13
13
  .n("ApplicationDiscoveryServiceClient", "StartDataCollectionByAgentIdsCommand")
14
- .sc(StartDataCollectionByAgentIds)
14
+ .sc(StartDataCollectionByAgentIds$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { StartExportTask } from "../schemas/schemas_0";
4
+ import { StartExportTask$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StartExportTaskCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StartExportTaskCommand extends $Command
11
11
  })
12
12
  .s("AWSPoseidonService_V2015_11_01", "StartExportTask", {})
13
13
  .n("ApplicationDiscoveryServiceClient", "StartExportTaskCommand")
14
- .sc(StartExportTask)
14
+ .sc(StartExportTask$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { StartImportTask } from "../schemas/schemas_0";
4
+ import { StartImportTask$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StartImportTaskCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StartImportTaskCommand extends $Command
11
11
  })
12
12
  .s("AWSPoseidonService_V2015_11_01", "StartImportTask", {})
13
13
  .n("ApplicationDiscoveryServiceClient", "StartImportTaskCommand")
14
- .sc(StartImportTask)
14
+ .sc(StartImportTask$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { StopContinuousExport } from "../schemas/schemas_0";
4
+ import { StopContinuousExport$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StopContinuousExportCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StopContinuousExportCommand extends $Command
11
11
  })
12
12
  .s("AWSPoseidonService_V2015_11_01", "StopContinuousExport", {})
13
13
  .n("ApplicationDiscoveryServiceClient", "StopContinuousExportCommand")
14
- .sc(StopContinuousExport)
14
+ .sc(StopContinuousExport$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { StopDataCollectionByAgentIds } from "../schemas/schemas_0";
4
+ import { StopDataCollectionByAgentIds$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StopDataCollectionByAgentIdsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StopDataCollectionByAgentIdsCommand extends $Command
11
11
  })
12
12
  .s("AWSPoseidonService_V2015_11_01", "StopDataCollectionByAgentIds", {})
13
13
  .n("ApplicationDiscoveryServiceClient", "StopDataCollectionByAgentIdsCommand")
14
- .sc(StopDataCollectionByAgentIds)
14
+ .sc(StopDataCollectionByAgentIds$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UpdateApplication } from "../schemas/schemas_0";
4
+ import { UpdateApplication$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateApplicationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateApplicationCommand extends $Command
11
11
  })
12
12
  .s("AWSPoseidonService_V2015_11_01", "UpdateApplication", {})
13
13
  .n("ApplicationDiscoveryServiceClient", "UpdateApplicationCommand")
14
- .sc(UpdateApplication)
14
+ .sc(UpdateApplication$)
15
15
  .build() {
16
16
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./ApplicationDiscoveryServiceClient";
2
2
  export * from "./ApplicationDiscoveryService";
3
3
  export * from "./commands";
4
+ export * from "./schemas/schemas_0";
4
5
  export * from "./pagination";
5
6
  export * from "./models/enums";
6
7
  export * from "./models/errors";
@@ -23,12 +23,13 @@ export const getRuntimeConfig = (config) => {
23
23
  },
24
24
  ],
25
25
  logger: config?.logger ?? new NoOpLogger(),
26
- protocol: config?.protocol ??
27
- new AwsJson1_1Protocol({
28
- defaultNamespace: "com.amazonaws.applicationdiscoveryservice",
29
- serviceTarget: "AWSPoseidonService_V2015_11_01",
30
- awsQueryCompatible: false,
31
- }),
26
+ protocol: config?.protocol ?? AwsJson1_1Protocol,
27
+ protocolSettings: config?.protocolSettings ?? {
28
+ defaultNamespace: "com.amazonaws.applicationdiscoveryservice",
29
+ xmlNamespace: "http://ec2.amazon.com/awsposiedon/V2015_11_01/",
30
+ version: "2015-11-01",
31
+ serviceTarget: "AWSPoseidonService_V2015_11_01",
32
+ },
32
33
  serviceId: config?.serviceId ?? "Application Discovery Service",
33
34
  urlParser: config?.urlParser ?? parseUrl,
34
35
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,