@aws-sdk/client-schemas 3.169.0 → 3.171.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 (55) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/Schemas.d.ts +531 -159
  3. package/dist-types/ts3.4/SchemasClient.d.ts +290 -104
  4. package/dist-types/ts3.4/commands/CreateDiscovererCommand.d.ts +35 -17
  5. package/dist-types/ts3.4/commands/CreateRegistryCommand.d.ts +35 -17
  6. package/dist-types/ts3.4/commands/CreateSchemaCommand.d.ts +32 -17
  7. package/dist-types/ts3.4/commands/DeleteDiscovererCommand.d.ts +30 -17
  8. package/dist-types/ts3.4/commands/DeleteRegistryCommand.d.ts +30 -17
  9. package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +34 -17
  10. package/dist-types/ts3.4/commands/DeleteSchemaCommand.d.ts +30 -17
  11. package/dist-types/ts3.4/commands/DeleteSchemaVersionCommand.d.ts +31 -17
  12. package/dist-types/ts3.4/commands/DescribeCodeBindingCommand.d.ts +36 -17
  13. package/dist-types/ts3.4/commands/DescribeDiscovererCommand.d.ts +36 -17
  14. package/dist-types/ts3.4/commands/DescribeRegistryCommand.d.ts +35 -17
  15. package/dist-types/ts3.4/commands/DescribeSchemaCommand.d.ts +35 -17
  16. package/dist-types/ts3.4/commands/ExportSchemaCommand.d.ts +32 -16
  17. package/dist-types/ts3.4/commands/GetCodeBindingSourceCommand.d.ts +39 -17
  18. package/dist-types/ts3.4/commands/GetDiscoveredSchemaCommand.d.ts +36 -17
  19. package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +36 -17
  20. package/dist-types/ts3.4/commands/ListDiscoverersCommand.d.ts +35 -17
  21. package/dist-types/ts3.4/commands/ListRegistriesCommand.d.ts +35 -17
  22. package/dist-types/ts3.4/commands/ListSchemaVersionsCommand.d.ts +36 -17
  23. package/dist-types/ts3.4/commands/ListSchemasCommand.d.ts +32 -17
  24. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  25. package/dist-types/ts3.4/commands/PutCodeBindingCommand.d.ts +35 -17
  26. package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +36 -17
  27. package/dist-types/ts3.4/commands/SearchSchemasCommand.d.ts +35 -17
  28. package/dist-types/ts3.4/commands/StartDiscovererCommand.d.ts +35 -17
  29. package/dist-types/ts3.4/commands/StopDiscovererCommand.d.ts +35 -17
  30. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +30 -17
  31. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +30 -17
  32. package/dist-types/ts3.4/commands/UpdateDiscovererCommand.d.ts +35 -17
  33. package/dist-types/ts3.4/commands/UpdateRegistryCommand.d.ts +35 -17
  34. package/dist-types/ts3.4/commands/UpdateSchemaCommand.d.ts +32 -17
  35. package/dist-types/ts3.4/commands/index.d.ts +31 -31
  36. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  37. package/dist-types/ts3.4/index.d.ts +7 -7
  38. package/dist-types/ts3.4/models/SchemasServiceException.d.ts +7 -6
  39. package/dist-types/ts3.4/models/index.d.ts +1 -1
  40. package/dist-types/ts3.4/models/models_0.d.ts +608 -757
  41. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  42. package/dist-types/ts3.4/pagination/ListDiscoverersPaginator.d.ts +11 -4
  43. package/dist-types/ts3.4/pagination/ListRegistriesPaginator.d.ts +11 -4
  44. package/dist-types/ts3.4/pagination/ListSchemaVersionsPaginator.d.ts +11 -4
  45. package/dist-types/ts3.4/pagination/ListSchemasPaginator.d.ts +11 -4
  46. package/dist-types/ts3.4/pagination/SearchSchemasPaginator.d.ts +11 -4
  47. package/dist-types/ts3.4/pagination/index.d.ts +6 -6
  48. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +377 -95
  49. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  50. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  51. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  52. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  53. package/dist-types/ts3.4/waiters/index.d.ts +1 -1
  54. package/dist-types/ts3.4/waiters/waitForCodeBindingExists.d.ts +11 -7
  55. package/package.json +35 -35
@@ -1,6 +1,7 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { Schemas } from "../Schemas";
3
- import { SchemasClient } from "../SchemasClient";
4
- export interface SchemasPaginationConfiguration extends PaginationConfiguration {
5
- client: Schemas | SchemasClient;
6
- }
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { Schemas } from "../Schemas";
3
+ import { SchemasClient } from "../SchemasClient";
4
+ export interface SchemasPaginationConfiguration
5
+ extends PaginationConfiguration {
6
+ client: Schemas | SchemasClient;
7
+ }
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListDiscoverersCommandInput, ListDiscoverersCommandOutput } from "../commands/ListDiscoverersCommand";
3
- import { SchemasPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListDiscoverers(config: SchemasPaginationConfiguration, input: ListDiscoverersCommandInput, ...additionalArguments: any): Paginator<ListDiscoverersCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListDiscoverersCommandInput,
4
+ ListDiscoverersCommandOutput,
5
+ } from "../commands/ListDiscoverersCommand";
6
+ import { SchemasPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListDiscoverers(
8
+ config: SchemasPaginationConfiguration,
9
+ input: ListDiscoverersCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListDiscoverersCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListRegistriesCommandInput, ListRegistriesCommandOutput } from "../commands/ListRegistriesCommand";
3
- import { SchemasPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListRegistries(config: SchemasPaginationConfiguration, input: ListRegistriesCommandInput, ...additionalArguments: any): Paginator<ListRegistriesCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListRegistriesCommandInput,
4
+ ListRegistriesCommandOutput,
5
+ } from "../commands/ListRegistriesCommand";
6
+ import { SchemasPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListRegistries(
8
+ config: SchemasPaginationConfiguration,
9
+ input: ListRegistriesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListRegistriesCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListSchemaVersionsCommandInput, ListSchemaVersionsCommandOutput } from "../commands/ListSchemaVersionsCommand";
3
- import { SchemasPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListSchemaVersions(config: SchemasPaginationConfiguration, input: ListSchemaVersionsCommandInput, ...additionalArguments: any): Paginator<ListSchemaVersionsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListSchemaVersionsCommandInput,
4
+ ListSchemaVersionsCommandOutput,
5
+ } from "../commands/ListSchemaVersionsCommand";
6
+ import { SchemasPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListSchemaVersions(
8
+ config: SchemasPaginationConfiguration,
9
+ input: ListSchemaVersionsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListSchemaVersionsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListSchemasCommandInput, ListSchemasCommandOutput } from "../commands/ListSchemasCommand";
3
- import { SchemasPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListSchemas(config: SchemasPaginationConfiguration, input: ListSchemasCommandInput, ...additionalArguments: any): Paginator<ListSchemasCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListSchemasCommandInput,
4
+ ListSchemasCommandOutput,
5
+ } from "../commands/ListSchemasCommand";
6
+ import { SchemasPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListSchemas(
8
+ config: SchemasPaginationConfiguration,
9
+ input: ListSchemasCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListSchemasCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { SearchSchemasCommandInput, SearchSchemasCommandOutput } from "../commands/SearchSchemasCommand";
3
- import { SchemasPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateSearchSchemas(config: SchemasPaginationConfiguration, input: SearchSchemasCommandInput, ...additionalArguments: any): Paginator<SearchSchemasCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ SearchSchemasCommandInput,
4
+ SearchSchemasCommandOutput,
5
+ } from "../commands/SearchSchemasCommand";
6
+ import { SchemasPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateSearchSchemas(
8
+ config: SchemasPaginationConfiguration,
9
+ input: SearchSchemasCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<SearchSchemasCommandOutput>;
@@ -1,6 +1,6 @@
1
- export * from "./Interfaces";
2
- export * from "./ListDiscoverersPaginator";
3
- export * from "./ListRegistriesPaginator";
4
- export * from "./ListSchemaVersionsPaginator";
5
- export * from "./ListSchemasPaginator";
6
- export * from "./SearchSchemasPaginator";
1
+ export * from "./Interfaces";
2
+ export * from "./ListDiscoverersPaginator";
3
+ export * from "./ListRegistriesPaginator";
4
+ export * from "./ListSchemaVersionsPaginator";
5
+ export * from "./ListSchemasPaginator";
6
+ export * from "./SearchSchemasPaginator";
@@ -1,95 +1,377 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { CreateDiscovererCommandInput, CreateDiscovererCommandOutput } from "../commands/CreateDiscovererCommand";
4
- import { CreateRegistryCommandInput, CreateRegistryCommandOutput } from "../commands/CreateRegistryCommand";
5
- import { CreateSchemaCommandInput, CreateSchemaCommandOutput } from "../commands/CreateSchemaCommand";
6
- import { DeleteDiscovererCommandInput, DeleteDiscovererCommandOutput } from "../commands/DeleteDiscovererCommand";
7
- import { DeleteRegistryCommandInput, DeleteRegistryCommandOutput } from "../commands/DeleteRegistryCommand";
8
- import { DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput } from "../commands/DeleteResourcePolicyCommand";
9
- import { DeleteSchemaCommandInput, DeleteSchemaCommandOutput } from "../commands/DeleteSchemaCommand";
10
- import { DeleteSchemaVersionCommandInput, DeleteSchemaVersionCommandOutput } from "../commands/DeleteSchemaVersionCommand";
11
- import { DescribeCodeBindingCommandInput, DescribeCodeBindingCommandOutput } from "../commands/DescribeCodeBindingCommand";
12
- import { DescribeDiscovererCommandInput, DescribeDiscovererCommandOutput } from "../commands/DescribeDiscovererCommand";
13
- import { DescribeRegistryCommandInput, DescribeRegistryCommandOutput } from "../commands/DescribeRegistryCommand";
14
- import { DescribeSchemaCommandInput, DescribeSchemaCommandOutput } from "../commands/DescribeSchemaCommand";
15
- import { ExportSchemaCommandInput, ExportSchemaCommandOutput } from "../commands/ExportSchemaCommand";
16
- import { GetCodeBindingSourceCommandInput, GetCodeBindingSourceCommandOutput } from "../commands/GetCodeBindingSourceCommand";
17
- import { GetDiscoveredSchemaCommandInput, GetDiscoveredSchemaCommandOutput } from "../commands/GetDiscoveredSchemaCommand";
18
- import { GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput } from "../commands/GetResourcePolicyCommand";
19
- import { ListDiscoverersCommandInput, ListDiscoverersCommandOutput } from "../commands/ListDiscoverersCommand";
20
- import { ListRegistriesCommandInput, ListRegistriesCommandOutput } from "../commands/ListRegistriesCommand";
21
- import { ListSchemasCommandInput, ListSchemasCommandOutput } from "../commands/ListSchemasCommand";
22
- import { ListSchemaVersionsCommandInput, ListSchemaVersionsCommandOutput } from "../commands/ListSchemaVersionsCommand";
23
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
24
- import { PutCodeBindingCommandInput, PutCodeBindingCommandOutput } from "../commands/PutCodeBindingCommand";
25
- import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "../commands/PutResourcePolicyCommand";
26
- import { SearchSchemasCommandInput, SearchSchemasCommandOutput } from "../commands/SearchSchemasCommand";
27
- import { StartDiscovererCommandInput, StartDiscovererCommandOutput } from "../commands/StartDiscovererCommand";
28
- import { StopDiscovererCommandInput, StopDiscovererCommandOutput } from "../commands/StopDiscovererCommand";
29
- import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
30
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
31
- import { UpdateDiscovererCommandInput, UpdateDiscovererCommandOutput } from "../commands/UpdateDiscovererCommand";
32
- import { UpdateRegistryCommandInput, UpdateRegistryCommandOutput } from "../commands/UpdateRegistryCommand";
33
- import { UpdateSchemaCommandInput, UpdateSchemaCommandOutput } from "../commands/UpdateSchemaCommand";
34
- export declare const serializeAws_restJson1CreateDiscovererCommand: (input: CreateDiscovererCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
- export declare const serializeAws_restJson1CreateRegistryCommand: (input: CreateRegistryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
- export declare const serializeAws_restJson1CreateSchemaCommand: (input: CreateSchemaCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
- export declare const serializeAws_restJson1DeleteDiscovererCommand: (input: DeleteDiscovererCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
- export declare const serializeAws_restJson1DeleteRegistryCommand: (input: DeleteRegistryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
- export declare const serializeAws_restJson1DeleteResourcePolicyCommand: (input: DeleteResourcePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
- export declare const serializeAws_restJson1DeleteSchemaCommand: (input: DeleteSchemaCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
- export declare const serializeAws_restJson1DeleteSchemaVersionCommand: (input: DeleteSchemaVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
- export declare const serializeAws_restJson1DescribeCodeBindingCommand: (input: DescribeCodeBindingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
- export declare const serializeAws_restJson1DescribeDiscovererCommand: (input: DescribeDiscovererCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
44
- export declare const serializeAws_restJson1DescribeRegistryCommand: (input: DescribeRegistryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
- export declare const serializeAws_restJson1DescribeSchemaCommand: (input: DescribeSchemaCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
- export declare const serializeAws_restJson1ExportSchemaCommand: (input: ExportSchemaCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
- export declare const serializeAws_restJson1GetCodeBindingSourceCommand: (input: GetCodeBindingSourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
- export declare const serializeAws_restJson1GetDiscoveredSchemaCommand: (input: GetDiscoveredSchemaCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
- export declare const serializeAws_restJson1GetResourcePolicyCommand: (input: GetResourcePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
- export declare const serializeAws_restJson1ListDiscoverersCommand: (input: ListDiscoverersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
- export declare const serializeAws_restJson1ListRegistriesCommand: (input: ListRegistriesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
52
- export declare const serializeAws_restJson1ListSchemasCommand: (input: ListSchemasCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
53
- export declare const serializeAws_restJson1ListSchemaVersionsCommand: (input: ListSchemaVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
54
- export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
55
- export declare const serializeAws_restJson1PutCodeBindingCommand: (input: PutCodeBindingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
56
- export declare const serializeAws_restJson1PutResourcePolicyCommand: (input: PutResourcePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
57
- export declare const serializeAws_restJson1SearchSchemasCommand: (input: SearchSchemasCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
58
- export declare const serializeAws_restJson1StartDiscovererCommand: (input: StartDiscovererCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
59
- export declare const serializeAws_restJson1StopDiscovererCommand: (input: StopDiscovererCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
60
- export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
61
- export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
62
- export declare const serializeAws_restJson1UpdateDiscovererCommand: (input: UpdateDiscovererCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
63
- export declare const serializeAws_restJson1UpdateRegistryCommand: (input: UpdateRegistryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
64
- export declare const serializeAws_restJson1UpdateSchemaCommand: (input: UpdateSchemaCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
65
- export declare const deserializeAws_restJson1CreateDiscovererCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDiscovererCommandOutput>;
66
- export declare const deserializeAws_restJson1CreateRegistryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateRegistryCommandOutput>;
67
- export declare const deserializeAws_restJson1CreateSchemaCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateSchemaCommandOutput>;
68
- export declare const deserializeAws_restJson1DeleteDiscovererCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDiscovererCommandOutput>;
69
- export declare const deserializeAws_restJson1DeleteRegistryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteRegistryCommandOutput>;
70
- export declare const deserializeAws_restJson1DeleteResourcePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteResourcePolicyCommandOutput>;
71
- export declare const deserializeAws_restJson1DeleteSchemaCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSchemaCommandOutput>;
72
- export declare const deserializeAws_restJson1DeleteSchemaVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSchemaVersionCommandOutput>;
73
- export declare const deserializeAws_restJson1DescribeCodeBindingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeCodeBindingCommandOutput>;
74
- export declare const deserializeAws_restJson1DescribeDiscovererCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeDiscovererCommandOutput>;
75
- export declare const deserializeAws_restJson1DescribeRegistryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeRegistryCommandOutput>;
76
- export declare const deserializeAws_restJson1DescribeSchemaCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeSchemaCommandOutput>;
77
- export declare const deserializeAws_restJson1ExportSchemaCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ExportSchemaCommandOutput>;
78
- export declare const deserializeAws_restJson1GetCodeBindingSourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCodeBindingSourceCommandOutput>;
79
- export declare const deserializeAws_restJson1GetDiscoveredSchemaCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDiscoveredSchemaCommandOutput>;
80
- export declare const deserializeAws_restJson1GetResourcePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetResourcePolicyCommandOutput>;
81
- export declare const deserializeAws_restJson1ListDiscoverersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDiscoverersCommandOutput>;
82
- export declare const deserializeAws_restJson1ListRegistriesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListRegistriesCommandOutput>;
83
- export declare const deserializeAws_restJson1ListSchemasCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSchemasCommandOutput>;
84
- export declare const deserializeAws_restJson1ListSchemaVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSchemaVersionsCommandOutput>;
85
- export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
86
- export declare const deserializeAws_restJson1PutCodeBindingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutCodeBindingCommandOutput>;
87
- export declare const deserializeAws_restJson1PutResourcePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutResourcePolicyCommandOutput>;
88
- export declare const deserializeAws_restJson1SearchSchemasCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchSchemasCommandOutput>;
89
- export declare const deserializeAws_restJson1StartDiscovererCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartDiscovererCommandOutput>;
90
- export declare const deserializeAws_restJson1StopDiscovererCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopDiscovererCommandOutput>;
91
- export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
92
- export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
93
- export declare const deserializeAws_restJson1UpdateDiscovererCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDiscovererCommandOutput>;
94
- export declare const deserializeAws_restJson1UpdateRegistryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateRegistryCommandOutput>;
95
- export declare const deserializeAws_restJson1UpdateSchemaCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateSchemaCommandOutput>;
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@aws-sdk/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
6
+ import {
7
+ CreateDiscovererCommandInput,
8
+ CreateDiscovererCommandOutput,
9
+ } from "../commands/CreateDiscovererCommand";
10
+ import {
11
+ CreateRegistryCommandInput,
12
+ CreateRegistryCommandOutput,
13
+ } from "../commands/CreateRegistryCommand";
14
+ import {
15
+ CreateSchemaCommandInput,
16
+ CreateSchemaCommandOutput,
17
+ } from "../commands/CreateSchemaCommand";
18
+ import {
19
+ DeleteDiscovererCommandInput,
20
+ DeleteDiscovererCommandOutput,
21
+ } from "../commands/DeleteDiscovererCommand";
22
+ import {
23
+ DeleteRegistryCommandInput,
24
+ DeleteRegistryCommandOutput,
25
+ } from "../commands/DeleteRegistryCommand";
26
+ import {
27
+ DeleteResourcePolicyCommandInput,
28
+ DeleteResourcePolicyCommandOutput,
29
+ } from "../commands/DeleteResourcePolicyCommand";
30
+ import {
31
+ DeleteSchemaCommandInput,
32
+ DeleteSchemaCommandOutput,
33
+ } from "../commands/DeleteSchemaCommand";
34
+ import {
35
+ DeleteSchemaVersionCommandInput,
36
+ DeleteSchemaVersionCommandOutput,
37
+ } from "../commands/DeleteSchemaVersionCommand";
38
+ import {
39
+ DescribeCodeBindingCommandInput,
40
+ DescribeCodeBindingCommandOutput,
41
+ } from "../commands/DescribeCodeBindingCommand";
42
+ import {
43
+ DescribeDiscovererCommandInput,
44
+ DescribeDiscovererCommandOutput,
45
+ } from "../commands/DescribeDiscovererCommand";
46
+ import {
47
+ DescribeRegistryCommandInput,
48
+ DescribeRegistryCommandOutput,
49
+ } from "../commands/DescribeRegistryCommand";
50
+ import {
51
+ DescribeSchemaCommandInput,
52
+ DescribeSchemaCommandOutput,
53
+ } from "../commands/DescribeSchemaCommand";
54
+ import {
55
+ ExportSchemaCommandInput,
56
+ ExportSchemaCommandOutput,
57
+ } from "../commands/ExportSchemaCommand";
58
+ import {
59
+ GetCodeBindingSourceCommandInput,
60
+ GetCodeBindingSourceCommandOutput,
61
+ } from "../commands/GetCodeBindingSourceCommand";
62
+ import {
63
+ GetDiscoveredSchemaCommandInput,
64
+ GetDiscoveredSchemaCommandOutput,
65
+ } from "../commands/GetDiscoveredSchemaCommand";
66
+ import {
67
+ GetResourcePolicyCommandInput,
68
+ GetResourcePolicyCommandOutput,
69
+ } from "../commands/GetResourcePolicyCommand";
70
+ import {
71
+ ListDiscoverersCommandInput,
72
+ ListDiscoverersCommandOutput,
73
+ } from "../commands/ListDiscoverersCommand";
74
+ import {
75
+ ListRegistriesCommandInput,
76
+ ListRegistriesCommandOutput,
77
+ } from "../commands/ListRegistriesCommand";
78
+ import {
79
+ ListSchemasCommandInput,
80
+ ListSchemasCommandOutput,
81
+ } from "../commands/ListSchemasCommand";
82
+ import {
83
+ ListSchemaVersionsCommandInput,
84
+ ListSchemaVersionsCommandOutput,
85
+ } from "../commands/ListSchemaVersionsCommand";
86
+ import {
87
+ ListTagsForResourceCommandInput,
88
+ ListTagsForResourceCommandOutput,
89
+ } from "../commands/ListTagsForResourceCommand";
90
+ import {
91
+ PutCodeBindingCommandInput,
92
+ PutCodeBindingCommandOutput,
93
+ } from "../commands/PutCodeBindingCommand";
94
+ import {
95
+ PutResourcePolicyCommandInput,
96
+ PutResourcePolicyCommandOutput,
97
+ } from "../commands/PutResourcePolicyCommand";
98
+ import {
99
+ SearchSchemasCommandInput,
100
+ SearchSchemasCommandOutput,
101
+ } from "../commands/SearchSchemasCommand";
102
+ import {
103
+ StartDiscovererCommandInput,
104
+ StartDiscovererCommandOutput,
105
+ } from "../commands/StartDiscovererCommand";
106
+ import {
107
+ StopDiscovererCommandInput,
108
+ StopDiscovererCommandOutput,
109
+ } from "../commands/StopDiscovererCommand";
110
+ import {
111
+ TagResourceCommandInput,
112
+ TagResourceCommandOutput,
113
+ } from "../commands/TagResourceCommand";
114
+ import {
115
+ UntagResourceCommandInput,
116
+ UntagResourceCommandOutput,
117
+ } from "../commands/UntagResourceCommand";
118
+ import {
119
+ UpdateDiscovererCommandInput,
120
+ UpdateDiscovererCommandOutput,
121
+ } from "../commands/UpdateDiscovererCommand";
122
+ import {
123
+ UpdateRegistryCommandInput,
124
+ UpdateRegistryCommandOutput,
125
+ } from "../commands/UpdateRegistryCommand";
126
+ import {
127
+ UpdateSchemaCommandInput,
128
+ UpdateSchemaCommandOutput,
129
+ } from "../commands/UpdateSchemaCommand";
130
+ export declare const serializeAws_restJson1CreateDiscovererCommand: (
131
+ input: CreateDiscovererCommandInput,
132
+ context: __SerdeContext
133
+ ) => Promise<__HttpRequest>;
134
+ export declare const serializeAws_restJson1CreateRegistryCommand: (
135
+ input: CreateRegistryCommandInput,
136
+ context: __SerdeContext
137
+ ) => Promise<__HttpRequest>;
138
+ export declare const serializeAws_restJson1CreateSchemaCommand: (
139
+ input: CreateSchemaCommandInput,
140
+ context: __SerdeContext
141
+ ) => Promise<__HttpRequest>;
142
+ export declare const serializeAws_restJson1DeleteDiscovererCommand: (
143
+ input: DeleteDiscovererCommandInput,
144
+ context: __SerdeContext
145
+ ) => Promise<__HttpRequest>;
146
+ export declare const serializeAws_restJson1DeleteRegistryCommand: (
147
+ input: DeleteRegistryCommandInput,
148
+ context: __SerdeContext
149
+ ) => Promise<__HttpRequest>;
150
+ export declare const serializeAws_restJson1DeleteResourcePolicyCommand: (
151
+ input: DeleteResourcePolicyCommandInput,
152
+ context: __SerdeContext
153
+ ) => Promise<__HttpRequest>;
154
+ export declare const serializeAws_restJson1DeleteSchemaCommand: (
155
+ input: DeleteSchemaCommandInput,
156
+ context: __SerdeContext
157
+ ) => Promise<__HttpRequest>;
158
+ export declare const serializeAws_restJson1DeleteSchemaVersionCommand: (
159
+ input: DeleteSchemaVersionCommandInput,
160
+ context: __SerdeContext
161
+ ) => Promise<__HttpRequest>;
162
+ export declare const serializeAws_restJson1DescribeCodeBindingCommand: (
163
+ input: DescribeCodeBindingCommandInput,
164
+ context: __SerdeContext
165
+ ) => Promise<__HttpRequest>;
166
+ export declare const serializeAws_restJson1DescribeDiscovererCommand: (
167
+ input: DescribeDiscovererCommandInput,
168
+ context: __SerdeContext
169
+ ) => Promise<__HttpRequest>;
170
+ export declare const serializeAws_restJson1DescribeRegistryCommand: (
171
+ input: DescribeRegistryCommandInput,
172
+ context: __SerdeContext
173
+ ) => Promise<__HttpRequest>;
174
+ export declare const serializeAws_restJson1DescribeSchemaCommand: (
175
+ input: DescribeSchemaCommandInput,
176
+ context: __SerdeContext
177
+ ) => Promise<__HttpRequest>;
178
+ export declare const serializeAws_restJson1ExportSchemaCommand: (
179
+ input: ExportSchemaCommandInput,
180
+ context: __SerdeContext
181
+ ) => Promise<__HttpRequest>;
182
+ export declare const serializeAws_restJson1GetCodeBindingSourceCommand: (
183
+ input: GetCodeBindingSourceCommandInput,
184
+ context: __SerdeContext
185
+ ) => Promise<__HttpRequest>;
186
+ export declare const serializeAws_restJson1GetDiscoveredSchemaCommand: (
187
+ input: GetDiscoveredSchemaCommandInput,
188
+ context: __SerdeContext
189
+ ) => Promise<__HttpRequest>;
190
+ export declare const serializeAws_restJson1GetResourcePolicyCommand: (
191
+ input: GetResourcePolicyCommandInput,
192
+ context: __SerdeContext
193
+ ) => Promise<__HttpRequest>;
194
+ export declare const serializeAws_restJson1ListDiscoverersCommand: (
195
+ input: ListDiscoverersCommandInput,
196
+ context: __SerdeContext
197
+ ) => Promise<__HttpRequest>;
198
+ export declare const serializeAws_restJson1ListRegistriesCommand: (
199
+ input: ListRegistriesCommandInput,
200
+ context: __SerdeContext
201
+ ) => Promise<__HttpRequest>;
202
+ export declare const serializeAws_restJson1ListSchemasCommand: (
203
+ input: ListSchemasCommandInput,
204
+ context: __SerdeContext
205
+ ) => Promise<__HttpRequest>;
206
+ export declare const serializeAws_restJson1ListSchemaVersionsCommand: (
207
+ input: ListSchemaVersionsCommandInput,
208
+ context: __SerdeContext
209
+ ) => Promise<__HttpRequest>;
210
+ export declare const serializeAws_restJson1ListTagsForResourceCommand: (
211
+ input: ListTagsForResourceCommandInput,
212
+ context: __SerdeContext
213
+ ) => Promise<__HttpRequest>;
214
+ export declare const serializeAws_restJson1PutCodeBindingCommand: (
215
+ input: PutCodeBindingCommandInput,
216
+ context: __SerdeContext
217
+ ) => Promise<__HttpRequest>;
218
+ export declare const serializeAws_restJson1PutResourcePolicyCommand: (
219
+ input: PutResourcePolicyCommandInput,
220
+ context: __SerdeContext
221
+ ) => Promise<__HttpRequest>;
222
+ export declare const serializeAws_restJson1SearchSchemasCommand: (
223
+ input: SearchSchemasCommandInput,
224
+ context: __SerdeContext
225
+ ) => Promise<__HttpRequest>;
226
+ export declare const serializeAws_restJson1StartDiscovererCommand: (
227
+ input: StartDiscovererCommandInput,
228
+ context: __SerdeContext
229
+ ) => Promise<__HttpRequest>;
230
+ export declare const serializeAws_restJson1StopDiscovererCommand: (
231
+ input: StopDiscovererCommandInput,
232
+ context: __SerdeContext
233
+ ) => Promise<__HttpRequest>;
234
+ export declare const serializeAws_restJson1TagResourceCommand: (
235
+ input: TagResourceCommandInput,
236
+ context: __SerdeContext
237
+ ) => Promise<__HttpRequest>;
238
+ export declare const serializeAws_restJson1UntagResourceCommand: (
239
+ input: UntagResourceCommandInput,
240
+ context: __SerdeContext
241
+ ) => Promise<__HttpRequest>;
242
+ export declare const serializeAws_restJson1UpdateDiscovererCommand: (
243
+ input: UpdateDiscovererCommandInput,
244
+ context: __SerdeContext
245
+ ) => Promise<__HttpRequest>;
246
+ export declare const serializeAws_restJson1UpdateRegistryCommand: (
247
+ input: UpdateRegistryCommandInput,
248
+ context: __SerdeContext
249
+ ) => Promise<__HttpRequest>;
250
+ export declare const serializeAws_restJson1UpdateSchemaCommand: (
251
+ input: UpdateSchemaCommandInput,
252
+ context: __SerdeContext
253
+ ) => Promise<__HttpRequest>;
254
+ export declare const deserializeAws_restJson1CreateDiscovererCommand: (
255
+ output: __HttpResponse,
256
+ context: __SerdeContext
257
+ ) => Promise<CreateDiscovererCommandOutput>;
258
+ export declare const deserializeAws_restJson1CreateRegistryCommand: (
259
+ output: __HttpResponse,
260
+ context: __SerdeContext
261
+ ) => Promise<CreateRegistryCommandOutput>;
262
+ export declare const deserializeAws_restJson1CreateSchemaCommand: (
263
+ output: __HttpResponse,
264
+ context: __SerdeContext
265
+ ) => Promise<CreateSchemaCommandOutput>;
266
+ export declare const deserializeAws_restJson1DeleteDiscovererCommand: (
267
+ output: __HttpResponse,
268
+ context: __SerdeContext
269
+ ) => Promise<DeleteDiscovererCommandOutput>;
270
+ export declare const deserializeAws_restJson1DeleteRegistryCommand: (
271
+ output: __HttpResponse,
272
+ context: __SerdeContext
273
+ ) => Promise<DeleteRegistryCommandOutput>;
274
+ export declare const deserializeAws_restJson1DeleteResourcePolicyCommand: (
275
+ output: __HttpResponse,
276
+ context: __SerdeContext
277
+ ) => Promise<DeleteResourcePolicyCommandOutput>;
278
+ export declare const deserializeAws_restJson1DeleteSchemaCommand: (
279
+ output: __HttpResponse,
280
+ context: __SerdeContext
281
+ ) => Promise<DeleteSchemaCommandOutput>;
282
+ export declare const deserializeAws_restJson1DeleteSchemaVersionCommand: (
283
+ output: __HttpResponse,
284
+ context: __SerdeContext
285
+ ) => Promise<DeleteSchemaVersionCommandOutput>;
286
+ export declare const deserializeAws_restJson1DescribeCodeBindingCommand: (
287
+ output: __HttpResponse,
288
+ context: __SerdeContext
289
+ ) => Promise<DescribeCodeBindingCommandOutput>;
290
+ export declare const deserializeAws_restJson1DescribeDiscovererCommand: (
291
+ output: __HttpResponse,
292
+ context: __SerdeContext
293
+ ) => Promise<DescribeDiscovererCommandOutput>;
294
+ export declare const deserializeAws_restJson1DescribeRegistryCommand: (
295
+ output: __HttpResponse,
296
+ context: __SerdeContext
297
+ ) => Promise<DescribeRegistryCommandOutput>;
298
+ export declare const deserializeAws_restJson1DescribeSchemaCommand: (
299
+ output: __HttpResponse,
300
+ context: __SerdeContext
301
+ ) => Promise<DescribeSchemaCommandOutput>;
302
+ export declare const deserializeAws_restJson1ExportSchemaCommand: (
303
+ output: __HttpResponse,
304
+ context: __SerdeContext
305
+ ) => Promise<ExportSchemaCommandOutput>;
306
+ export declare const deserializeAws_restJson1GetCodeBindingSourceCommand: (
307
+ output: __HttpResponse,
308
+ context: __SerdeContext
309
+ ) => Promise<GetCodeBindingSourceCommandOutput>;
310
+ export declare const deserializeAws_restJson1GetDiscoveredSchemaCommand: (
311
+ output: __HttpResponse,
312
+ context: __SerdeContext
313
+ ) => Promise<GetDiscoveredSchemaCommandOutput>;
314
+ export declare const deserializeAws_restJson1GetResourcePolicyCommand: (
315
+ output: __HttpResponse,
316
+ context: __SerdeContext
317
+ ) => Promise<GetResourcePolicyCommandOutput>;
318
+ export declare const deserializeAws_restJson1ListDiscoverersCommand: (
319
+ output: __HttpResponse,
320
+ context: __SerdeContext
321
+ ) => Promise<ListDiscoverersCommandOutput>;
322
+ export declare const deserializeAws_restJson1ListRegistriesCommand: (
323
+ output: __HttpResponse,
324
+ context: __SerdeContext
325
+ ) => Promise<ListRegistriesCommandOutput>;
326
+ export declare const deserializeAws_restJson1ListSchemasCommand: (
327
+ output: __HttpResponse,
328
+ context: __SerdeContext
329
+ ) => Promise<ListSchemasCommandOutput>;
330
+ export declare const deserializeAws_restJson1ListSchemaVersionsCommand: (
331
+ output: __HttpResponse,
332
+ context: __SerdeContext
333
+ ) => Promise<ListSchemaVersionsCommandOutput>;
334
+ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
335
+ output: __HttpResponse,
336
+ context: __SerdeContext
337
+ ) => Promise<ListTagsForResourceCommandOutput>;
338
+ export declare const deserializeAws_restJson1PutCodeBindingCommand: (
339
+ output: __HttpResponse,
340
+ context: __SerdeContext
341
+ ) => Promise<PutCodeBindingCommandOutput>;
342
+ export declare const deserializeAws_restJson1PutResourcePolicyCommand: (
343
+ output: __HttpResponse,
344
+ context: __SerdeContext
345
+ ) => Promise<PutResourcePolicyCommandOutput>;
346
+ export declare const deserializeAws_restJson1SearchSchemasCommand: (
347
+ output: __HttpResponse,
348
+ context: __SerdeContext
349
+ ) => Promise<SearchSchemasCommandOutput>;
350
+ export declare const deserializeAws_restJson1StartDiscovererCommand: (
351
+ output: __HttpResponse,
352
+ context: __SerdeContext
353
+ ) => Promise<StartDiscovererCommandOutput>;
354
+ export declare const deserializeAws_restJson1StopDiscovererCommand: (
355
+ output: __HttpResponse,
356
+ context: __SerdeContext
357
+ ) => Promise<StopDiscovererCommandOutput>;
358
+ export declare const deserializeAws_restJson1TagResourceCommand: (
359
+ output: __HttpResponse,
360
+ context: __SerdeContext
361
+ ) => Promise<TagResourceCommandOutput>;
362
+ export declare const deserializeAws_restJson1UntagResourceCommand: (
363
+ output: __HttpResponse,
364
+ context: __SerdeContext
365
+ ) => Promise<UntagResourceCommandOutput>;
366
+ export declare const deserializeAws_restJson1UpdateDiscovererCommand: (
367
+ output: __HttpResponse,
368
+ context: __SerdeContext
369
+ ) => Promise<UpdateDiscovererCommandOutput>;
370
+ export declare const deserializeAws_restJson1UpdateRegistryCommand: (
371
+ output: __HttpResponse,
372
+ context: __SerdeContext
373
+ ) => Promise<UpdateRegistryCommandOutput>;
374
+ export declare const deserializeAws_restJson1UpdateSchemaCommand: (
375
+ output: __HttpResponse,
376
+ context: __SerdeContext
377
+ ) => Promise<UpdateSchemaCommandOutput>;