@aws-sdk/client-appintegrations 3.948.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 (43) hide show
  1. package/dist-cjs/index.js +348 -236
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/CreateApplicationCommand.js +2 -2
  4. package/dist-es/commands/CreateDataIntegrationAssociationCommand.js +2 -2
  5. package/dist-es/commands/CreateDataIntegrationCommand.js +2 -2
  6. package/dist-es/commands/CreateEventIntegrationCommand.js +2 -2
  7. package/dist-es/commands/DeleteApplicationCommand.js +2 -2
  8. package/dist-es/commands/DeleteDataIntegrationCommand.js +2 -2
  9. package/dist-es/commands/DeleteEventIntegrationCommand.js +2 -2
  10. package/dist-es/commands/GetApplicationCommand.js +2 -2
  11. package/dist-es/commands/GetDataIntegrationCommand.js +2 -2
  12. package/dist-es/commands/GetEventIntegrationCommand.js +2 -2
  13. package/dist-es/commands/ListApplicationAssociationsCommand.js +2 -2
  14. package/dist-es/commands/ListApplicationsCommand.js +2 -2
  15. package/dist-es/commands/ListDataIntegrationAssociationsCommand.js +2 -2
  16. package/dist-es/commands/ListDataIntegrationsCommand.js +2 -2
  17. package/dist-es/commands/ListEventIntegrationAssociationsCommand.js +2 -2
  18. package/dist-es/commands/ListEventIntegrationsCommand.js +2 -2
  19. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  20. package/dist-es/commands/TagResourceCommand.js +2 -2
  21. package/dist-es/commands/UntagResourceCommand.js +2 -2
  22. package/dist-es/commands/UpdateApplicationCommand.js +2 -2
  23. package/dist-es/commands/UpdateDataIntegrationAssociationCommand.js +2 -2
  24. package/dist-es/commands/UpdateDataIntegrationCommand.js +2 -2
  25. package/dist-es/commands/UpdateEventIntegrationCommand.js +2 -2
  26. package/dist-es/index.js +1 -0
  27. package/dist-es/runtimeConfig.shared.js +6 -1
  28. package/dist-es/schemas/schemas_0.js +217 -202
  29. package/dist-types/AppIntegrationsClient.d.ts +1 -10
  30. package/dist-types/index.d.ts +1 -0
  31. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  32. package/dist-types/runtimeConfig.d.ts +6 -2
  33. package/dist-types/runtimeConfig.native.d.ts +6 -2
  34. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  35. package/dist-types/schemas/schemas_0.d.ts +98 -116
  36. package/dist-types/ts3.4/AppIntegrationsClient.d.ts +0 -4
  37. package/dist-types/ts3.4/index.d.ts +1 -0
  38. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  39. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  40. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  41. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  42. package/dist-types/ts3.4/schemas/schemas_0.d.ts +97 -117
  43. package/package.json +34 -34
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
26
26
  },
27
27
  ],
28
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
- protocol: config?.protocol ?? new protocols_1.AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.appintegrations" }),
29
+ protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
30
+ protocolSettings: config?.protocolSettings ?? {
31
+ defaultNamespace: "com.amazonaws.appintegrations",
32
+ version: "2020-07-29",
33
+ serviceTarget: "AmazonAppIntegrationService",
34
+ },
30
35
  serviceId: config?.serviceId ?? "AppIntegrations",
31
36
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
32
37
  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 { 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("AmazonAppIntegrationService", "CreateApplication", {})
13
13
  .n("AppIntegrationsClient", "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 { CreateDataIntegrationAssociation } from "../schemas/schemas_0";
4
+ import { CreateDataIntegrationAssociation$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateDataIntegrationAssociationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateDataIntegrationAssociationCommand extends $Command
11
11
  })
12
12
  .s("AmazonAppIntegrationService", "CreateDataIntegrationAssociation", {})
13
13
  .n("AppIntegrationsClient", "CreateDataIntegrationAssociationCommand")
14
- .sc(CreateDataIntegrationAssociation)
14
+ .sc(CreateDataIntegrationAssociation$)
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 { CreateDataIntegration } from "../schemas/schemas_0";
4
+ import { CreateDataIntegration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateDataIntegrationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateDataIntegrationCommand extends $Command
11
11
  })
12
12
  .s("AmazonAppIntegrationService", "CreateDataIntegration", {})
13
13
  .n("AppIntegrationsClient", "CreateDataIntegrationCommand")
14
- .sc(CreateDataIntegration)
14
+ .sc(CreateDataIntegration$)
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 { CreateEventIntegration } from "../schemas/schemas_0";
4
+ import { CreateEventIntegration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateEventIntegrationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateEventIntegrationCommand extends $Command
11
11
  })
12
12
  .s("AmazonAppIntegrationService", "CreateEventIntegration", {})
13
13
  .n("AppIntegrationsClient", "CreateEventIntegrationCommand")
14
- .sc(CreateEventIntegration)
14
+ .sc(CreateEventIntegration$)
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 { DeleteApplication } from "../schemas/schemas_0";
4
+ import { DeleteApplication$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteApplicationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteApplicationCommand extends $Command
11
11
  })
12
12
  .s("AmazonAppIntegrationService", "DeleteApplication", {})
13
13
  .n("AppIntegrationsClient", "DeleteApplicationCommand")
14
- .sc(DeleteApplication)
14
+ .sc(DeleteApplication$)
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 { DeleteDataIntegration } from "../schemas/schemas_0";
4
+ import { DeleteDataIntegration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteDataIntegrationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteDataIntegrationCommand extends $Command
11
11
  })
12
12
  .s("AmazonAppIntegrationService", "DeleteDataIntegration", {})
13
13
  .n("AppIntegrationsClient", "DeleteDataIntegrationCommand")
14
- .sc(DeleteDataIntegration)
14
+ .sc(DeleteDataIntegration$)
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 { DeleteEventIntegration } from "../schemas/schemas_0";
4
+ import { DeleteEventIntegration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteEventIntegrationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteEventIntegrationCommand extends $Command
11
11
  })
12
12
  .s("AmazonAppIntegrationService", "DeleteEventIntegration", {})
13
13
  .n("AppIntegrationsClient", "DeleteEventIntegrationCommand")
14
- .sc(DeleteEventIntegration)
14
+ .sc(DeleteEventIntegration$)
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 { GetApplication } from "../schemas/schemas_0";
4
+ import { GetApplication$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetApplicationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetApplicationCommand extends $Command
11
11
  })
12
12
  .s("AmazonAppIntegrationService", "GetApplication", {})
13
13
  .n("AppIntegrationsClient", "GetApplicationCommand")
14
- .sc(GetApplication)
14
+ .sc(GetApplication$)
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 { GetDataIntegration } from "../schemas/schemas_0";
4
+ import { GetDataIntegration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetDataIntegrationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetDataIntegrationCommand extends $Command
11
11
  })
12
12
  .s("AmazonAppIntegrationService", "GetDataIntegration", {})
13
13
  .n("AppIntegrationsClient", "GetDataIntegrationCommand")
14
- .sc(GetDataIntegration)
14
+ .sc(GetDataIntegration$)
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 { GetEventIntegration } from "../schemas/schemas_0";
4
+ import { GetEventIntegration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetEventIntegrationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetEventIntegrationCommand extends $Command
11
11
  })
12
12
  .s("AmazonAppIntegrationService", "GetEventIntegration", {})
13
13
  .n("AppIntegrationsClient", "GetEventIntegrationCommand")
14
- .sc(GetEventIntegration)
14
+ .sc(GetEventIntegration$)
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 { ListApplicationAssociations } from "../schemas/schemas_0";
4
+ import { ListApplicationAssociations$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListApplicationAssociationsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListApplicationAssociationsCommand extends $Command
11
11
  })
12
12
  .s("AmazonAppIntegrationService", "ListApplicationAssociations", {})
13
13
  .n("AppIntegrationsClient", "ListApplicationAssociationsCommand")
14
- .sc(ListApplicationAssociations)
14
+ .sc(ListApplicationAssociations$)
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 { ListApplications } from "../schemas/schemas_0";
4
+ import { ListApplications$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListApplicationsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListApplicationsCommand extends $Command
11
11
  })
12
12
  .s("AmazonAppIntegrationService", "ListApplications", {})
13
13
  .n("AppIntegrationsClient", "ListApplicationsCommand")
14
- .sc(ListApplications)
14
+ .sc(ListApplications$)
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 { ListDataIntegrationAssociations } from "../schemas/schemas_0";
4
+ import { ListDataIntegrationAssociations$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListDataIntegrationAssociationsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListDataIntegrationAssociationsCommand extends $Command
11
11
  })
12
12
  .s("AmazonAppIntegrationService", "ListDataIntegrationAssociations", {})
13
13
  .n("AppIntegrationsClient", "ListDataIntegrationAssociationsCommand")
14
- .sc(ListDataIntegrationAssociations)
14
+ .sc(ListDataIntegrationAssociations$)
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 { ListDataIntegrations } from "../schemas/schemas_0";
4
+ import { ListDataIntegrations$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListDataIntegrationsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListDataIntegrationsCommand extends $Command
11
11
  })
12
12
  .s("AmazonAppIntegrationService", "ListDataIntegrations", {})
13
13
  .n("AppIntegrationsClient", "ListDataIntegrationsCommand")
14
- .sc(ListDataIntegrations)
14
+ .sc(ListDataIntegrations$)
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 { ListEventIntegrationAssociations } from "../schemas/schemas_0";
4
+ import { ListEventIntegrationAssociations$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListEventIntegrationAssociationsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListEventIntegrationAssociationsCommand extends $Command
11
11
  })
12
12
  .s("AmazonAppIntegrationService", "ListEventIntegrationAssociations", {})
13
13
  .n("AppIntegrationsClient", "ListEventIntegrationAssociationsCommand")
14
- .sc(ListEventIntegrationAssociations)
14
+ .sc(ListEventIntegrationAssociations$)
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 { ListEventIntegrations } from "../schemas/schemas_0";
4
+ import { ListEventIntegrations$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListEventIntegrationsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListEventIntegrationsCommand extends $Command
11
11
  })
12
12
  .s("AmazonAppIntegrationService", "ListEventIntegrations", {})
13
13
  .n("AppIntegrationsClient", "ListEventIntegrationsCommand")
14
- .sc(ListEventIntegrations)
14
+ .sc(ListEventIntegrations$)
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 { ListTagsForResource } from "../schemas/schemas_0";
4
+ import { ListTagsForResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListTagsForResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
11
11
  })
12
12
  .s("AmazonAppIntegrationService", "ListTagsForResource", {})
13
13
  .n("AppIntegrationsClient", "ListTagsForResourceCommand")
14
- .sc(ListTagsForResource)
14
+ .sc(ListTagsForResource$)
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 { TagResource } from "../schemas/schemas_0";
4
+ import { TagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class TagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
11
11
  })
12
12
  .s("AmazonAppIntegrationService", "TagResource", {})
13
13
  .n("AppIntegrationsClient", "TagResourceCommand")
14
- .sc(TagResource)
14
+ .sc(TagResource$)
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 { UntagResource } from "../schemas/schemas_0";
4
+ import { UntagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UntagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
11
11
  })
12
12
  .s("AmazonAppIntegrationService", "UntagResource", {})
13
13
  .n("AppIntegrationsClient", "UntagResourceCommand")
14
- .sc(UntagResource)
14
+ .sc(UntagResource$)
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("AmazonAppIntegrationService", "UpdateApplication", {})
13
13
  .n("AppIntegrationsClient", "UpdateApplicationCommand")
14
- .sc(UpdateApplication)
14
+ .sc(UpdateApplication$)
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 { UpdateDataIntegrationAssociation } from "../schemas/schemas_0";
4
+ import { UpdateDataIntegrationAssociation$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateDataIntegrationAssociationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateDataIntegrationAssociationCommand extends $Command
11
11
  })
12
12
  .s("AmazonAppIntegrationService", "UpdateDataIntegrationAssociation", {})
13
13
  .n("AppIntegrationsClient", "UpdateDataIntegrationAssociationCommand")
14
- .sc(UpdateDataIntegrationAssociation)
14
+ .sc(UpdateDataIntegrationAssociation$)
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 { UpdateDataIntegration } from "../schemas/schemas_0";
4
+ import { UpdateDataIntegration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateDataIntegrationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateDataIntegrationCommand extends $Command
11
11
  })
12
12
  .s("AmazonAppIntegrationService", "UpdateDataIntegration", {})
13
13
  .n("AppIntegrationsClient", "UpdateDataIntegrationCommand")
14
- .sc(UpdateDataIntegration)
14
+ .sc(UpdateDataIntegration$)
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 { UpdateEventIntegration } from "../schemas/schemas_0";
4
+ import { UpdateEventIntegration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateEventIntegrationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateEventIntegrationCommand extends $Command
11
11
  })
12
12
  .s("AmazonAppIntegrationService", "UpdateEventIntegration", {})
13
13
  .n("AppIntegrationsClient", "UpdateEventIntegrationCommand")
14
- .sc(UpdateEventIntegration)
14
+ .sc(UpdateEventIntegration$)
15
15
  .build() {
16
16
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./AppIntegrationsClient";
2
2
  export * from "./AppIntegrations";
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,7 +23,12 @@ export const getRuntimeConfig = (config) => {
23
23
  },
24
24
  ],
25
25
  logger: config?.logger ?? new NoOpLogger(),
26
- protocol: config?.protocol ?? new AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.appintegrations" }),
26
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
27
+ protocolSettings: config?.protocolSettings ?? {
28
+ defaultNamespace: "com.amazonaws.appintegrations",
29
+ version: "2020-07-29",
30
+ serviceTarget: "AmazonAppIntegrationService",
31
+ },
27
32
  serviceId: config?.serviceId ?? "AppIntegrations",
28
33
  urlParser: config?.urlParser ?? parseUrl,
29
34
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,