@aws-sdk/client-entityresolution 3.554.0 → 3.556.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 (60) hide show
  1. package/README.md +79 -7
  2. package/dist-cjs/index.js +614 -56
  3. package/dist-es/EntityResolution.js +18 -0
  4. package/dist-es/commands/AddPolicyStatementCommand.js +24 -0
  5. package/dist-es/commands/CreateIdNamespaceCommand.js +24 -0
  6. package/dist-es/commands/DeleteIdNamespaceCommand.js +24 -0
  7. package/dist-es/commands/DeletePolicyStatementCommand.js +24 -0
  8. package/dist-es/commands/GetIdNamespaceCommand.js +24 -0
  9. package/dist-es/commands/GetPolicyCommand.js +24 -0
  10. package/dist-es/commands/ListIdNamespacesCommand.js +24 -0
  11. package/dist-es/commands/PutPolicyCommand.js +24 -0
  12. package/dist-es/commands/UpdateIdNamespaceCommand.js +24 -0
  13. package/dist-es/commands/index.js +9 -0
  14. package/dist-es/models/models_0.js +40 -32
  15. package/dist-es/pagination/ListIdNamespacesPaginator.js +4 -0
  16. package/dist-es/pagination/index.js +1 -0
  17. package/dist-es/protocols/Aws_restJson1.js +363 -7
  18. package/dist-types/EntityResolution.d.ts +64 -0
  19. package/dist-types/EntityResolutionClient.d.ts +11 -2
  20. package/dist-types/commands/AddPolicyStatementCommand.d.ts +101 -0
  21. package/dist-types/commands/CreateIdMappingWorkflowCommand.d.ts +6 -4
  22. package/dist-types/commands/CreateIdNamespaceCommand.d.ts +138 -0
  23. package/dist-types/commands/DeleteIdMappingWorkflowCommand.d.ts +6 -0
  24. package/dist-types/commands/DeleteIdNamespaceCommand.d.ts +79 -0
  25. package/dist-types/commands/DeleteMatchingWorkflowCommand.d.ts +6 -0
  26. package/dist-types/commands/DeletePolicyStatementCommand.d.ts +92 -0
  27. package/dist-types/commands/GetIdMappingJobCommand.d.ts +7 -0
  28. package/dist-types/commands/GetIdMappingWorkflowCommand.d.ts +3 -2
  29. package/dist-types/commands/GetIdNamespaceCommand.d.ts +107 -0
  30. package/dist-types/commands/GetMatchIdCommand.d.ts +2 -0
  31. package/dist-types/commands/GetMatchingJobCommand.d.ts +7 -0
  32. package/dist-types/commands/GetPolicyCommand.d.ts +85 -0
  33. package/dist-types/commands/GetProviderServiceCommand.d.ts +21 -0
  34. package/dist-types/commands/ListIdNamespacesCommand.d.ts +90 -0
  35. package/dist-types/commands/PutPolicyCommand.d.ts +93 -0
  36. package/dist-types/commands/StartIdMappingJobCommand.d.ts +14 -0
  37. package/dist-types/commands/UpdateIdMappingWorkflowCommand.d.ts +6 -4
  38. package/dist-types/commands/UpdateIdNamespaceCommand.d.ts +121 -0
  39. package/dist-types/commands/index.d.ts +9 -0
  40. package/dist-types/models/models_0.d.ts +876 -83
  41. package/dist-types/pagination/ListIdNamespacesPaginator.d.ts +7 -0
  42. package/dist-types/pagination/index.d.ts +1 -0
  43. package/dist-types/protocols/Aws_restJson1.d.ts +81 -0
  44. package/dist-types/ts3.4/EntityResolution.d.ts +154 -0
  45. package/dist-types/ts3.4/EntityResolutionClient.d.ts +54 -0
  46. package/dist-types/ts3.4/commands/AddPolicyStatementCommand.d.ts +39 -0
  47. package/dist-types/ts3.4/commands/CreateIdNamespaceCommand.d.ts +38 -0
  48. package/dist-types/ts3.4/commands/DeleteIdNamespaceCommand.d.ts +38 -0
  49. package/dist-types/ts3.4/commands/DeletePolicyStatementCommand.d.ts +39 -0
  50. package/dist-types/ts3.4/commands/GetIdNamespaceCommand.d.ts +35 -0
  51. package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +35 -0
  52. package/dist-types/ts3.4/commands/ListIdNamespacesCommand.d.ts +38 -0
  53. package/dist-types/ts3.4/commands/PutPolicyCommand.d.ts +35 -0
  54. package/dist-types/ts3.4/commands/UpdateIdNamespaceCommand.d.ts +38 -0
  55. package/dist-types/ts3.4/commands/index.d.ts +9 -0
  56. package/dist-types/ts3.4/models/models_0.d.ts +216 -41
  57. package/dist-types/ts3.4/pagination/ListIdNamespacesPaginator.d.ts +11 -0
  58. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  59. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +108 -0
  60. package/package.json +4 -4
@@ -0,0 +1,39 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ EntityResolutionClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../EntityResolutionClient";
8
+ import {
9
+ AddPolicyStatementInput,
10
+ AddPolicyStatementOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer, $Command };
13
+ export interface AddPolicyStatementCommandInput
14
+ extends AddPolicyStatementInput {}
15
+ export interface AddPolicyStatementCommandOutput
16
+ extends AddPolicyStatementOutput,
17
+ __MetadataBearer {}
18
+ declare const AddPolicyStatementCommand_base: {
19
+ new (
20
+ input: AddPolicyStatementCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ AddPolicyStatementCommandInput,
23
+ AddPolicyStatementCommandOutput,
24
+ EntityResolutionClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: AddPolicyStatementCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ AddPolicyStatementCommandInput,
32
+ AddPolicyStatementCommandOutput,
33
+ EntityResolutionClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class AddPolicyStatementCommand extends AddPolicyStatementCommand_base {}
@@ -0,0 +1,38 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ EntityResolutionClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../EntityResolutionClient";
8
+ import {
9
+ CreateIdNamespaceInput,
10
+ CreateIdNamespaceOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer, $Command };
13
+ export interface CreateIdNamespaceCommandInput extends CreateIdNamespaceInput {}
14
+ export interface CreateIdNamespaceCommandOutput
15
+ extends CreateIdNamespaceOutput,
16
+ __MetadataBearer {}
17
+ declare const CreateIdNamespaceCommand_base: {
18
+ new (
19
+ input: CreateIdNamespaceCommandInput
20
+ ): import("@smithy/smithy-client").CommandImpl<
21
+ CreateIdNamespaceCommandInput,
22
+ CreateIdNamespaceCommandOutput,
23
+ EntityResolutionClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
27
+ new (
28
+ __0_0: CreateIdNamespaceCommandInput
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ CreateIdNamespaceCommandInput,
31
+ CreateIdNamespaceCommandOutput,
32
+ EntityResolutionClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
36
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
37
+ };
38
+ export declare class CreateIdNamespaceCommand extends CreateIdNamespaceCommand_base {}
@@ -0,0 +1,38 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ EntityResolutionClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../EntityResolutionClient";
8
+ import {
9
+ DeleteIdNamespaceInput,
10
+ DeleteIdNamespaceOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer, $Command };
13
+ export interface DeleteIdNamespaceCommandInput extends DeleteIdNamespaceInput {}
14
+ export interface DeleteIdNamespaceCommandOutput
15
+ extends DeleteIdNamespaceOutput,
16
+ __MetadataBearer {}
17
+ declare const DeleteIdNamespaceCommand_base: {
18
+ new (
19
+ input: DeleteIdNamespaceCommandInput
20
+ ): import("@smithy/smithy-client").CommandImpl<
21
+ DeleteIdNamespaceCommandInput,
22
+ DeleteIdNamespaceCommandOutput,
23
+ EntityResolutionClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
27
+ new (
28
+ __0_0: DeleteIdNamespaceCommandInput
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ DeleteIdNamespaceCommandInput,
31
+ DeleteIdNamespaceCommandOutput,
32
+ EntityResolutionClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
36
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
37
+ };
38
+ export declare class DeleteIdNamespaceCommand extends DeleteIdNamespaceCommand_base {}
@@ -0,0 +1,39 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ EntityResolutionClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../EntityResolutionClient";
8
+ import {
9
+ DeletePolicyStatementInput,
10
+ DeletePolicyStatementOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer, $Command };
13
+ export interface DeletePolicyStatementCommandInput
14
+ extends DeletePolicyStatementInput {}
15
+ export interface DeletePolicyStatementCommandOutput
16
+ extends DeletePolicyStatementOutput,
17
+ __MetadataBearer {}
18
+ declare const DeletePolicyStatementCommand_base: {
19
+ new (
20
+ input: DeletePolicyStatementCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ DeletePolicyStatementCommandInput,
23
+ DeletePolicyStatementCommandOutput,
24
+ EntityResolutionClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: DeletePolicyStatementCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DeletePolicyStatementCommandInput,
32
+ DeletePolicyStatementCommandOutput,
33
+ EntityResolutionClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class DeletePolicyStatementCommand extends DeletePolicyStatementCommand_base {}
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ EntityResolutionClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../EntityResolutionClient";
8
+ import { GetIdNamespaceInput, GetIdNamespaceOutput } from "../models/models_0";
9
+ export { __MetadataBearer, $Command };
10
+ export interface GetIdNamespaceCommandInput extends GetIdNamespaceInput {}
11
+ export interface GetIdNamespaceCommandOutput
12
+ extends GetIdNamespaceOutput,
13
+ __MetadataBearer {}
14
+ declare const GetIdNamespaceCommand_base: {
15
+ new (
16
+ input: GetIdNamespaceCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ GetIdNamespaceCommandInput,
19
+ GetIdNamespaceCommandOutput,
20
+ EntityResolutionClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ new (
25
+ __0_0: GetIdNamespaceCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ GetIdNamespaceCommandInput,
28
+ GetIdNamespaceCommandOutput,
29
+ EntityResolutionClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
33
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
34
+ };
35
+ export declare class GetIdNamespaceCommand extends GetIdNamespaceCommand_base {}
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ EntityResolutionClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../EntityResolutionClient";
8
+ import { GetPolicyInput, GetPolicyOutput } from "../models/models_0";
9
+ export { __MetadataBearer, $Command };
10
+ export interface GetPolicyCommandInput extends GetPolicyInput {}
11
+ export interface GetPolicyCommandOutput
12
+ extends GetPolicyOutput,
13
+ __MetadataBearer {}
14
+ declare const GetPolicyCommand_base: {
15
+ new (
16
+ input: GetPolicyCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ GetPolicyCommandInput,
19
+ GetPolicyCommandOutput,
20
+ EntityResolutionClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ new (
25
+ __0_0: GetPolicyCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ GetPolicyCommandInput,
28
+ GetPolicyCommandOutput,
29
+ EntityResolutionClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
33
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
34
+ };
35
+ export declare class GetPolicyCommand extends GetPolicyCommand_base {}
@@ -0,0 +1,38 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ EntityResolutionClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../EntityResolutionClient";
8
+ import {
9
+ ListIdNamespacesInput,
10
+ ListIdNamespacesOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer, $Command };
13
+ export interface ListIdNamespacesCommandInput extends ListIdNamespacesInput {}
14
+ export interface ListIdNamespacesCommandOutput
15
+ extends ListIdNamespacesOutput,
16
+ __MetadataBearer {}
17
+ declare const ListIdNamespacesCommand_base: {
18
+ new (
19
+ input: ListIdNamespacesCommandInput
20
+ ): import("@smithy/smithy-client").CommandImpl<
21
+ ListIdNamespacesCommandInput,
22
+ ListIdNamespacesCommandOutput,
23
+ EntityResolutionClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
27
+ new (
28
+ ...[input]: [] | [ListIdNamespacesCommandInput]
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ ListIdNamespacesCommandInput,
31
+ ListIdNamespacesCommandOutput,
32
+ EntityResolutionClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
36
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
37
+ };
38
+ export declare class ListIdNamespacesCommand extends ListIdNamespacesCommand_base {}
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ EntityResolutionClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../EntityResolutionClient";
8
+ import { PutPolicyInput, PutPolicyOutput } from "../models/models_0";
9
+ export { __MetadataBearer, $Command };
10
+ export interface PutPolicyCommandInput extends PutPolicyInput {}
11
+ export interface PutPolicyCommandOutput
12
+ extends PutPolicyOutput,
13
+ __MetadataBearer {}
14
+ declare const PutPolicyCommand_base: {
15
+ new (
16
+ input: PutPolicyCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ PutPolicyCommandInput,
19
+ PutPolicyCommandOutput,
20
+ EntityResolutionClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ new (
25
+ __0_0: PutPolicyCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ PutPolicyCommandInput,
28
+ PutPolicyCommandOutput,
29
+ EntityResolutionClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
33
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
34
+ };
35
+ export declare class PutPolicyCommand extends PutPolicyCommand_base {}
@@ -0,0 +1,38 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ EntityResolutionClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../EntityResolutionClient";
8
+ import {
9
+ UpdateIdNamespaceInput,
10
+ UpdateIdNamespaceOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer, $Command };
13
+ export interface UpdateIdNamespaceCommandInput extends UpdateIdNamespaceInput {}
14
+ export interface UpdateIdNamespaceCommandOutput
15
+ extends UpdateIdNamespaceOutput,
16
+ __MetadataBearer {}
17
+ declare const UpdateIdNamespaceCommand_base: {
18
+ new (
19
+ input: UpdateIdNamespaceCommandInput
20
+ ): import("@smithy/smithy-client").CommandImpl<
21
+ UpdateIdNamespaceCommandInput,
22
+ UpdateIdNamespaceCommandOutput,
23
+ EntityResolutionClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
27
+ new (
28
+ __0_0: UpdateIdNamespaceCommandInput
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ UpdateIdNamespaceCommandInput,
31
+ UpdateIdNamespaceCommandOutput,
32
+ EntityResolutionClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
36
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
37
+ };
38
+ export declare class UpdateIdNamespaceCommand extends UpdateIdNamespaceCommand_base {}
@@ -1,27 +1,36 @@
1
+ export * from "./AddPolicyStatementCommand";
1
2
  export * from "./CreateIdMappingWorkflowCommand";
3
+ export * from "./CreateIdNamespaceCommand";
2
4
  export * from "./CreateMatchingWorkflowCommand";
3
5
  export * from "./CreateSchemaMappingCommand";
4
6
  export * from "./DeleteIdMappingWorkflowCommand";
7
+ export * from "./DeleteIdNamespaceCommand";
5
8
  export * from "./DeleteMatchingWorkflowCommand";
9
+ export * from "./DeletePolicyStatementCommand";
6
10
  export * from "./DeleteSchemaMappingCommand";
7
11
  export * from "./GetIdMappingJobCommand";
8
12
  export * from "./GetIdMappingWorkflowCommand";
13
+ export * from "./GetIdNamespaceCommand";
9
14
  export * from "./GetMatchIdCommand";
10
15
  export * from "./GetMatchingJobCommand";
11
16
  export * from "./GetMatchingWorkflowCommand";
17
+ export * from "./GetPolicyCommand";
12
18
  export * from "./GetProviderServiceCommand";
13
19
  export * from "./GetSchemaMappingCommand";
14
20
  export * from "./ListIdMappingJobsCommand";
15
21
  export * from "./ListIdMappingWorkflowsCommand";
22
+ export * from "./ListIdNamespacesCommand";
16
23
  export * from "./ListMatchingJobsCommand";
17
24
  export * from "./ListMatchingWorkflowsCommand";
18
25
  export * from "./ListProviderServicesCommand";
19
26
  export * from "./ListSchemaMappingsCommand";
20
27
  export * from "./ListTagsForResourceCommand";
28
+ export * from "./PutPolicyCommand";
21
29
  export * from "./StartIdMappingJobCommand";
22
30
  export * from "./StartMatchingJobCommand";
23
31
  export * from "./TagResourceCommand";
24
32
  export * from "./UntagResourceCommand";
25
33
  export * from "./UpdateIdMappingWorkflowCommand";
34
+ export * from "./UpdateIdNamespaceCommand";
26
35
  export * from "./UpdateMatchingWorkflowCommand";
27
36
  export * from "./UpdateSchemaMappingCommand";