@aws-sdk/client-schemas 3.169.0 → 3.170.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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/Schemas.d.ts +561 -159
- package/dist-types/ts3.4/SchemasClient.d.ts +315 -104
- package/dist-types/ts3.4/commands/CreateDiscovererCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateRegistryCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateSchemaCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteDiscovererCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteRegistryCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeleteSchemaCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteSchemaVersionCommand.d.ts +33 -17
- package/dist-types/ts3.4/commands/DescribeCodeBindingCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeDiscovererCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeRegistryCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeSchemaCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ExportSchemaCommand.d.ts +33 -16
- package/dist-types/ts3.4/commands/GetCodeBindingSourceCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetDiscoveredSchemaCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListDiscoverersCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListRegistriesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListSchemaVersionsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListSchemasCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PutCodeBindingCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/SearchSchemasCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/StartDiscovererCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/StopDiscovererCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateDiscovererCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateRegistryCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateSchemaCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +31 -31
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +7 -7
- package/dist-types/ts3.4/models/SchemasServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +838 -757
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListDiscoverersPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListRegistriesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListSchemaVersionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListSchemasPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/SearchSchemasPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +6 -6
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +377 -95
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/dist-types/ts3.4/waiters/index.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForCodeBindingExists.d.ts +13 -7
- package/package.json +35 -35
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { TagResourceRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
SchemasClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../SchemasClient";
|
|
14
|
+
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
15
|
+
export interface TagResourceCommandOutput extends __MetadataBearer {}
|
|
16
|
+
|
|
17
|
+
export declare class TagResourceCommand extends $Command<
|
|
18
|
+
TagResourceCommandInput,
|
|
19
|
+
TagResourceCommandOutput,
|
|
20
|
+
SchemasClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: TagResourceCommandInput;
|
|
23
|
+
constructor(input: TagResourceCommandInput);
|
|
24
|
+
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: SchemasClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { UntagResourceRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
SchemasClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../SchemasClient";
|
|
14
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
15
|
+
export interface UntagResourceCommandOutput extends __MetadataBearer {}
|
|
16
|
+
|
|
17
|
+
export declare class UntagResourceCommand extends $Command<
|
|
18
|
+
UntagResourceCommandInput,
|
|
19
|
+
UntagResourceCommandOutput,
|
|
20
|
+
SchemasClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: UntagResourceCommandInput;
|
|
23
|
+
constructor(input: UntagResourceCommandInput);
|
|
24
|
+
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: SchemasClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
UpdateDiscovererRequest,
|
|
10
|
+
UpdateDiscovererResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
SchemasClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../SchemasClient";
|
|
17
|
+
export interface UpdateDiscovererCommandInput extends UpdateDiscovererRequest {}
|
|
18
|
+
export interface UpdateDiscovererCommandOutput
|
|
19
|
+
extends UpdateDiscovererResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class UpdateDiscovererCommand extends $Command<
|
|
23
|
+
UpdateDiscovererCommandInput,
|
|
24
|
+
UpdateDiscovererCommandOutput,
|
|
25
|
+
SchemasClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UpdateDiscovererCommandInput;
|
|
28
|
+
constructor(input: UpdateDiscovererCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: SchemasClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<UpdateDiscovererCommandInput, UpdateDiscovererCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
UpdateRegistryRequest,
|
|
10
|
+
UpdateRegistryResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
SchemasClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../SchemasClient";
|
|
17
|
+
export interface UpdateRegistryCommandInput extends UpdateRegistryRequest {}
|
|
18
|
+
export interface UpdateRegistryCommandOutput
|
|
19
|
+
extends UpdateRegistryResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class UpdateRegistryCommand extends $Command<
|
|
23
|
+
UpdateRegistryCommandInput,
|
|
24
|
+
UpdateRegistryCommandOutput,
|
|
25
|
+
SchemasClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UpdateRegistryCommandInput;
|
|
28
|
+
constructor(input: UpdateRegistryCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: SchemasClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<UpdateRegistryCommandInput, UpdateRegistryCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { UpdateSchemaRequest, UpdateSchemaResponse } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
SchemasClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../SchemasClient";
|
|
14
|
+
export interface UpdateSchemaCommandInput extends UpdateSchemaRequest {}
|
|
15
|
+
export interface UpdateSchemaCommandOutput
|
|
16
|
+
extends UpdateSchemaResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class UpdateSchemaCommand extends $Command<
|
|
20
|
+
UpdateSchemaCommandInput,
|
|
21
|
+
UpdateSchemaCommandOutput,
|
|
22
|
+
SchemasClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: UpdateSchemaCommandInput;
|
|
25
|
+
constructor(input: UpdateSchemaCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: SchemasClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<UpdateSchemaCommandInput, UpdateSchemaCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
export * from "./CreateDiscovererCommand";
|
|
2
|
-
export * from "./CreateRegistryCommand";
|
|
3
|
-
export * from "./CreateSchemaCommand";
|
|
4
|
-
export * from "./DeleteDiscovererCommand";
|
|
5
|
-
export * from "./DeleteRegistryCommand";
|
|
6
|
-
export * from "./DeleteResourcePolicyCommand";
|
|
7
|
-
export * from "./DeleteSchemaCommand";
|
|
8
|
-
export * from "./DeleteSchemaVersionCommand";
|
|
9
|
-
export * from "./DescribeCodeBindingCommand";
|
|
10
|
-
export * from "./DescribeDiscovererCommand";
|
|
11
|
-
export * from "./DescribeRegistryCommand";
|
|
12
|
-
export * from "./DescribeSchemaCommand";
|
|
13
|
-
export * from "./ExportSchemaCommand";
|
|
14
|
-
export * from "./GetCodeBindingSourceCommand";
|
|
15
|
-
export * from "./GetDiscoveredSchemaCommand";
|
|
16
|
-
export * from "./GetResourcePolicyCommand";
|
|
17
|
-
export * from "./ListDiscoverersCommand";
|
|
18
|
-
export * from "./ListRegistriesCommand";
|
|
19
|
-
export * from "./ListSchemaVersionsCommand";
|
|
20
|
-
export * from "./ListSchemasCommand";
|
|
21
|
-
export * from "./ListTagsForResourceCommand";
|
|
22
|
-
export * from "./PutCodeBindingCommand";
|
|
23
|
-
export * from "./PutResourcePolicyCommand";
|
|
24
|
-
export * from "./SearchSchemasCommand";
|
|
25
|
-
export * from "./StartDiscovererCommand";
|
|
26
|
-
export * from "./StopDiscovererCommand";
|
|
27
|
-
export * from "./TagResourceCommand";
|
|
28
|
-
export * from "./UntagResourceCommand";
|
|
29
|
-
export * from "./UpdateDiscovererCommand";
|
|
30
|
-
export * from "./UpdateRegistryCommand";
|
|
31
|
-
export * from "./UpdateSchemaCommand";
|
|
1
|
+
export * from "./CreateDiscovererCommand";
|
|
2
|
+
export * from "./CreateRegistryCommand";
|
|
3
|
+
export * from "./CreateSchemaCommand";
|
|
4
|
+
export * from "./DeleteDiscovererCommand";
|
|
5
|
+
export * from "./DeleteRegistryCommand";
|
|
6
|
+
export * from "./DeleteResourcePolicyCommand";
|
|
7
|
+
export * from "./DeleteSchemaCommand";
|
|
8
|
+
export * from "./DeleteSchemaVersionCommand";
|
|
9
|
+
export * from "./DescribeCodeBindingCommand";
|
|
10
|
+
export * from "./DescribeDiscovererCommand";
|
|
11
|
+
export * from "./DescribeRegistryCommand";
|
|
12
|
+
export * from "./DescribeSchemaCommand";
|
|
13
|
+
export * from "./ExportSchemaCommand";
|
|
14
|
+
export * from "./GetCodeBindingSourceCommand";
|
|
15
|
+
export * from "./GetDiscoveredSchemaCommand";
|
|
16
|
+
export * from "./GetResourcePolicyCommand";
|
|
17
|
+
export * from "./ListDiscoverersCommand";
|
|
18
|
+
export * from "./ListRegistriesCommand";
|
|
19
|
+
export * from "./ListSchemaVersionsCommand";
|
|
20
|
+
export * from "./ListSchemasCommand";
|
|
21
|
+
export * from "./ListTagsForResourceCommand";
|
|
22
|
+
export * from "./PutCodeBindingCommand";
|
|
23
|
+
export * from "./PutResourcePolicyCommand";
|
|
24
|
+
export * from "./SearchSchemasCommand";
|
|
25
|
+
export * from "./StartDiscovererCommand";
|
|
26
|
+
export * from "./StopDiscovererCommand";
|
|
27
|
+
export * from "./TagResourceCommand";
|
|
28
|
+
export * from "./UntagResourceCommand";
|
|
29
|
+
export * from "./UpdateDiscovererCommand";
|
|
30
|
+
export * from "./UpdateRegistryCommand";
|
|
31
|
+
export * from "./UpdateSchemaCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export * from "./Schemas";
|
|
2
|
-
export * from "./SchemasClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export * from "./pagination";
|
|
6
|
-
export * from "./waiters";
|
|
7
|
-
export { SchemasServiceException } from "./models/SchemasServiceException";
|
|
1
|
+
export * from "./Schemas";
|
|
2
|
+
export * from "./SchemasClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export * from "./waiters";
|
|
7
|
+
export { SchemasServiceException } from "./models/SchemasServiceException";
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
|
|
6
|
+
export declare class SchemasServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|