@aws-sdk/client-security-ir 3.952.0 → 3.954.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 (44) hide show
  1. package/dist-cjs/index.js +344 -242
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/BatchGetMemberAccountDetailsCommand.js +2 -2
  4. package/dist-es/commands/CancelMembershipCommand.js +2 -2
  5. package/dist-es/commands/CloseCaseCommand.js +2 -2
  6. package/dist-es/commands/CreateCaseCommand.js +2 -2
  7. package/dist-es/commands/CreateCaseCommentCommand.js +2 -2
  8. package/dist-es/commands/CreateMembershipCommand.js +2 -2
  9. package/dist-es/commands/GetCaseAttachmentDownloadUrlCommand.js +2 -2
  10. package/dist-es/commands/GetCaseAttachmentUploadUrlCommand.js +2 -2
  11. package/dist-es/commands/GetCaseCommand.js +2 -2
  12. package/dist-es/commands/GetMembershipCommand.js +2 -2
  13. package/dist-es/commands/ListCaseEditsCommand.js +2 -2
  14. package/dist-es/commands/ListCasesCommand.js +2 -2
  15. package/dist-es/commands/ListCommentsCommand.js +2 -2
  16. package/dist-es/commands/ListInvestigationsCommand.js +2 -2
  17. package/dist-es/commands/ListMembershipsCommand.js +2 -2
  18. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  19. package/dist-es/commands/SendFeedbackCommand.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/UpdateCaseCommand.js +2 -2
  23. package/dist-es/commands/UpdateCaseCommentCommand.js +2 -2
  24. package/dist-es/commands/UpdateCaseStatusCommand.js +2 -2
  25. package/dist-es/commands/UpdateMembershipCommand.js +2 -2
  26. package/dist-es/commands/UpdateResolverTypeCommand.js +2 -2
  27. package/dist-es/index.js +1 -0
  28. package/dist-es/runtimeConfig.shared.js +6 -1
  29. package/dist-es/schemas/schemas_0.js +210 -208
  30. package/dist-types/SecurityIRClient.d.ts +1 -10
  31. package/dist-types/index.d.ts +1 -0
  32. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  33. package/dist-types/runtimeConfig.d.ts +6 -2
  34. package/dist-types/runtimeConfig.native.d.ts +6 -2
  35. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  36. package/dist-types/schemas/schemas_0.d.ts +101 -134
  37. package/dist-types/ts3.4/SecurityIRClient.d.ts +0 -4
  38. package/dist-types/ts3.4/index.d.ts +1 -0
  39. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  40. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  41. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  42. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  43. package/dist-types/ts3.4/schemas/schemas_0.d.ts +100 -135
  44. 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.securityir" }),
29
+ protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
30
+ protocolSettings: config?.protocolSettings ?? {
31
+ defaultNamespace: "com.amazonaws.securityir",
32
+ version: "2018-05-10",
33
+ serviceTarget: "SecurityIncidentResponse",
34
+ },
30
35
  serviceId: config?.serviceId ?? "Security IR",
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 { BatchGetMemberAccountDetails } from "../schemas/schemas_0";
4
+ import { BatchGetMemberAccountDetails$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class BatchGetMemberAccountDetailsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class BatchGetMemberAccountDetailsCommand extends $Command
11
11
  })
12
12
  .s("SecurityIncidentResponse", "BatchGetMemberAccountDetails", {})
13
13
  .n("SecurityIRClient", "BatchGetMemberAccountDetailsCommand")
14
- .sc(BatchGetMemberAccountDetails)
14
+ .sc(BatchGetMemberAccountDetails$)
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 { CancelMembership } from "../schemas/schemas_0";
4
+ import { CancelMembership$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CancelMembershipCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CancelMembershipCommand extends $Command
11
11
  })
12
12
  .s("SecurityIncidentResponse", "CancelMembership", {})
13
13
  .n("SecurityIRClient", "CancelMembershipCommand")
14
- .sc(CancelMembership)
14
+ .sc(CancelMembership$)
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 { CloseCase } from "../schemas/schemas_0";
4
+ import { CloseCase$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CloseCaseCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CloseCaseCommand extends $Command
11
11
  })
12
12
  .s("SecurityIncidentResponse", "CloseCase", {})
13
13
  .n("SecurityIRClient", "CloseCaseCommand")
14
- .sc(CloseCase)
14
+ .sc(CloseCase$)
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 { CreateCase } from "../schemas/schemas_0";
4
+ import { CreateCase$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateCaseCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateCaseCommand extends $Command
11
11
  })
12
12
  .s("SecurityIncidentResponse", "CreateCase", {})
13
13
  .n("SecurityIRClient", "CreateCaseCommand")
14
- .sc(CreateCase)
14
+ .sc(CreateCase$)
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 { CreateCaseComment } from "../schemas/schemas_0";
4
+ import { CreateCaseComment$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateCaseCommentCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateCaseCommentCommand extends $Command
11
11
  })
12
12
  .s("SecurityIncidentResponse", "CreateCaseComment", {})
13
13
  .n("SecurityIRClient", "CreateCaseCommentCommand")
14
- .sc(CreateCaseComment)
14
+ .sc(CreateCaseComment$)
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 { CreateMembership } from "../schemas/schemas_0";
4
+ import { CreateMembership$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateMembershipCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateMembershipCommand extends $Command
11
11
  })
12
12
  .s("SecurityIncidentResponse", "CreateMembership", {})
13
13
  .n("SecurityIRClient", "CreateMembershipCommand")
14
- .sc(CreateMembership)
14
+ .sc(CreateMembership$)
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 { GetCaseAttachmentDownloadUrl } from "../schemas/schemas_0";
4
+ import { GetCaseAttachmentDownloadUrl$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetCaseAttachmentDownloadUrlCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetCaseAttachmentDownloadUrlCommand extends $Command
11
11
  })
12
12
  .s("SecurityIncidentResponse", "GetCaseAttachmentDownloadUrl", {})
13
13
  .n("SecurityIRClient", "GetCaseAttachmentDownloadUrlCommand")
14
- .sc(GetCaseAttachmentDownloadUrl)
14
+ .sc(GetCaseAttachmentDownloadUrl$)
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 { GetCaseAttachmentUploadUrl } from "../schemas/schemas_0";
4
+ import { GetCaseAttachmentUploadUrl$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetCaseAttachmentUploadUrlCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetCaseAttachmentUploadUrlCommand extends $Command
11
11
  })
12
12
  .s("SecurityIncidentResponse", "GetCaseAttachmentUploadUrl", {})
13
13
  .n("SecurityIRClient", "GetCaseAttachmentUploadUrlCommand")
14
- .sc(GetCaseAttachmentUploadUrl)
14
+ .sc(GetCaseAttachmentUploadUrl$)
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 { GetCase } from "../schemas/schemas_0";
4
+ import { GetCase$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetCaseCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetCaseCommand extends $Command
11
11
  })
12
12
  .s("SecurityIncidentResponse", "GetCase", {})
13
13
  .n("SecurityIRClient", "GetCaseCommand")
14
- .sc(GetCase)
14
+ .sc(GetCase$)
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 { GetMembership } from "../schemas/schemas_0";
4
+ import { GetMembership$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetMembershipCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetMembershipCommand extends $Command
11
11
  })
12
12
  .s("SecurityIncidentResponse", "GetMembership", {})
13
13
  .n("SecurityIRClient", "GetMembershipCommand")
14
- .sc(GetMembership)
14
+ .sc(GetMembership$)
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 { ListCaseEdits } from "../schemas/schemas_0";
4
+ import { ListCaseEdits$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListCaseEditsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListCaseEditsCommand extends $Command
11
11
  })
12
12
  .s("SecurityIncidentResponse", "ListCaseEdits", {})
13
13
  .n("SecurityIRClient", "ListCaseEditsCommand")
14
- .sc(ListCaseEdits)
14
+ .sc(ListCaseEdits$)
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 { ListCases } from "../schemas/schemas_0";
4
+ import { ListCases$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListCasesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListCasesCommand extends $Command
11
11
  })
12
12
  .s("SecurityIncidentResponse", "ListCases", {})
13
13
  .n("SecurityIRClient", "ListCasesCommand")
14
- .sc(ListCases)
14
+ .sc(ListCases$)
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 { ListComments } from "../schemas/schemas_0";
4
+ import { ListComments$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListCommentsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListCommentsCommand extends $Command
11
11
  })
12
12
  .s("SecurityIncidentResponse", "ListComments", {})
13
13
  .n("SecurityIRClient", "ListCommentsCommand")
14
- .sc(ListComments)
14
+ .sc(ListComments$)
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 { ListInvestigations } from "../schemas/schemas_0";
4
+ import { ListInvestigations$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListInvestigationsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListInvestigationsCommand extends $Command
11
11
  })
12
12
  .s("SecurityIncidentResponse", "ListInvestigations", {})
13
13
  .n("SecurityIRClient", "ListInvestigationsCommand")
14
- .sc(ListInvestigations)
14
+ .sc(ListInvestigations$)
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 { ListMemberships } from "../schemas/schemas_0";
4
+ import { ListMemberships$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListMembershipsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListMembershipsCommand extends $Command
11
11
  })
12
12
  .s("SecurityIncidentResponse", "ListMemberships", {})
13
13
  .n("SecurityIRClient", "ListMembershipsCommand")
14
- .sc(ListMemberships)
14
+ .sc(ListMemberships$)
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("SecurityIncidentResponse", "ListTagsForResource", {})
13
13
  .n("SecurityIRClient", "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 { SendFeedback } from "../schemas/schemas_0";
4
+ import { SendFeedback$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class SendFeedbackCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class SendFeedbackCommand extends $Command
11
11
  })
12
12
  .s("SecurityIncidentResponse", "SendFeedback", {})
13
13
  .n("SecurityIRClient", "SendFeedbackCommand")
14
- .sc(SendFeedback)
14
+ .sc(SendFeedback$)
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("SecurityIncidentResponse", "TagResource", {})
13
13
  .n("SecurityIRClient", "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("SecurityIncidentResponse", "UntagResource", {})
13
13
  .n("SecurityIRClient", "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 { UpdateCase } from "../schemas/schemas_0";
4
+ import { UpdateCase$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateCaseCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateCaseCommand extends $Command
11
11
  })
12
12
  .s("SecurityIncidentResponse", "UpdateCase", {})
13
13
  .n("SecurityIRClient", "UpdateCaseCommand")
14
- .sc(UpdateCase)
14
+ .sc(UpdateCase$)
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 { UpdateCaseComment } from "../schemas/schemas_0";
4
+ import { UpdateCaseComment$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateCaseCommentCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateCaseCommentCommand extends $Command
11
11
  })
12
12
  .s("SecurityIncidentResponse", "UpdateCaseComment", {})
13
13
  .n("SecurityIRClient", "UpdateCaseCommentCommand")
14
- .sc(UpdateCaseComment)
14
+ .sc(UpdateCaseComment$)
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 { UpdateCaseStatus } from "../schemas/schemas_0";
4
+ import { UpdateCaseStatus$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateCaseStatusCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateCaseStatusCommand extends $Command
11
11
  })
12
12
  .s("SecurityIncidentResponse", "UpdateCaseStatus", {})
13
13
  .n("SecurityIRClient", "UpdateCaseStatusCommand")
14
- .sc(UpdateCaseStatus)
14
+ .sc(UpdateCaseStatus$)
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 { UpdateMembership } from "../schemas/schemas_0";
4
+ import { UpdateMembership$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateMembershipCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateMembershipCommand extends $Command
11
11
  })
12
12
  .s("SecurityIncidentResponse", "UpdateMembership", {})
13
13
  .n("SecurityIRClient", "UpdateMembershipCommand")
14
- .sc(UpdateMembership)
14
+ .sc(UpdateMembership$)
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 { UpdateResolverType } from "../schemas/schemas_0";
4
+ import { UpdateResolverType$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateResolverTypeCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateResolverTypeCommand extends $Command
11
11
  })
12
12
  .s("SecurityIncidentResponse", "UpdateResolverType", {})
13
13
  .n("SecurityIRClient", "UpdateResolverTypeCommand")
14
- .sc(UpdateResolverType)
14
+ .sc(UpdateResolverType$)
15
15
  .build() {
16
16
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./SecurityIRClient";
2
2
  export * from "./SecurityIR";
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.securityir" }),
26
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
27
+ protocolSettings: config?.protocolSettings ?? {
28
+ defaultNamespace: "com.amazonaws.securityir",
29
+ version: "2018-05-10",
30
+ serviceTarget: "SecurityIncidentResponse",
31
+ },
27
32
  serviceId: config?.serviceId ?? "Security IR",
28
33
  urlParser: config?.urlParser ?? parseUrl,
29
34
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,