@aws-sdk/client-schemas 3.533.0 → 3.535.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/dist-types/Schemas.d.ts +5 -1
- package/dist-types/SchemasClient.d.ts +1 -1
- package/dist-types/commands/CreateDiscovererCommand.d.ts +2 -1
- package/dist-types/commands/CreateRegistryCommand.d.ts +2 -1
- package/dist-types/commands/CreateSchemaCommand.d.ts +2 -1
- package/dist-types/commands/DeleteDiscovererCommand.d.ts +2 -1
- package/dist-types/commands/DeleteRegistryCommand.d.ts +2 -1
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +2 -1
- package/dist-types/commands/DeleteSchemaCommand.d.ts +2 -1
- package/dist-types/commands/DeleteSchemaVersionCommand.d.ts +2 -1
- package/dist-types/commands/DescribeCodeBindingCommand.d.ts +2 -1
- package/dist-types/commands/DescribeDiscovererCommand.d.ts +2 -1
- package/dist-types/commands/DescribeRegistryCommand.d.ts +2 -1
- package/dist-types/commands/DescribeSchemaCommand.d.ts +2 -1
- package/dist-types/commands/ExportSchemaCommand.d.ts +1 -0
- package/dist-types/commands/GetCodeBindingSourceCommand.d.ts +2 -1
- package/dist-types/commands/GetDiscoveredSchemaCommand.d.ts +2 -1
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +2 -1
- package/dist-types/commands/ListDiscoverersCommand.d.ts +2 -1
- package/dist-types/commands/ListRegistriesCommand.d.ts +2 -1
- package/dist-types/commands/ListSchemaVersionsCommand.d.ts +2 -1
- package/dist-types/commands/ListSchemasCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/PutCodeBindingCommand.d.ts +2 -1
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +2 -1
- package/dist-types/commands/SearchSchemasCommand.d.ts +2 -1
- package/dist-types/commands/StartDiscovererCommand.d.ts +2 -1
- package/dist-types/commands/StopDiscovererCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateDiscovererCommand.d.ts +2 -1
- package/dist-types/commands/UpdateRegistryCommand.d.ts +2 -1
- package/dist-types/commands/UpdateSchemaCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +215 -215
- package/dist-types/ts3.4/Schemas.d.ts +4 -0
- package/dist-types/ts3.4/commands/CreateDiscovererCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateRegistryCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateSchemaCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteDiscovererCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteRegistryCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteSchemaCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteSchemaVersionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeCodeBindingCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeDiscovererCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeRegistryCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeSchemaCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ExportSchemaCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetCodeBindingSourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetDiscoveredSchemaCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListDiscoverersCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListRegistriesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListSchemaVersionsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListSchemasCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/PutCodeBindingCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/SearchSchemasCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StartDiscovererCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StopDiscovererCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateDiscovererCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateRegistryCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateSchemaCommand.d.ts +9 -0
- package/package.json +42 -42
|
@@ -190,6 +190,7 @@ export interface Schemas {
|
|
|
190
190
|
options: __HttpHandlerOptions,
|
|
191
191
|
cb: (err: any, data?: DeleteRegistryCommandOutput) => void
|
|
192
192
|
): void;
|
|
193
|
+
deleteResourcePolicy(): Promise<DeleteResourcePolicyCommandOutput>;
|
|
193
194
|
deleteResourcePolicy(
|
|
194
195
|
args: DeleteResourcePolicyCommandInput,
|
|
195
196
|
options?: __HttpHandlerOptions
|
|
@@ -320,6 +321,7 @@ export interface Schemas {
|
|
|
320
321
|
options: __HttpHandlerOptions,
|
|
321
322
|
cb: (err: any, data?: GetDiscoveredSchemaCommandOutput) => void
|
|
322
323
|
): void;
|
|
324
|
+
getResourcePolicy(): Promise<GetResourcePolicyCommandOutput>;
|
|
323
325
|
getResourcePolicy(
|
|
324
326
|
args: GetResourcePolicyCommandInput,
|
|
325
327
|
options?: __HttpHandlerOptions
|
|
@@ -333,6 +335,7 @@ export interface Schemas {
|
|
|
333
335
|
options: __HttpHandlerOptions,
|
|
334
336
|
cb: (err: any, data?: GetResourcePolicyCommandOutput) => void
|
|
335
337
|
): void;
|
|
338
|
+
listDiscoverers(): Promise<ListDiscoverersCommandOutput>;
|
|
336
339
|
listDiscoverers(
|
|
337
340
|
args: ListDiscoverersCommandInput,
|
|
338
341
|
options?: __HttpHandlerOptions
|
|
@@ -346,6 +349,7 @@ export interface Schemas {
|
|
|
346
349
|
options: __HttpHandlerOptions,
|
|
347
350
|
cb: (err: any, data?: ListDiscoverersCommandOutput) => void
|
|
348
351
|
): void;
|
|
352
|
+
listRegistries(): Promise<ListRegistriesCommandOutput>;
|
|
349
353
|
listRegistries(
|
|
350
354
|
args: ListRegistriesCommandInput,
|
|
351
355
|
options?: __HttpHandlerOptions
|
|
@@ -24,6 +24,15 @@ declare const CreateDiscovererCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: CreateDiscovererCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
CreateDiscovererCommandInput,
|
|
31
|
+
CreateDiscovererCommandOutput,
|
|
32
|
+
SchemasClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class CreateDiscovererCommand extends CreateDiscovererCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const CreateRegistryCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: CreateRegistryCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
CreateRegistryCommandInput,
|
|
31
|
+
CreateRegistryCommandOutput,
|
|
32
|
+
SchemasClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class CreateRegistryCommand extends CreateRegistryCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const CreateSchemaCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: CreateSchemaCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
CreateSchemaCommandInput,
|
|
28
|
+
CreateSchemaCommandOutput,
|
|
29
|
+
SchemasClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class CreateSchemaCommand extends CreateSchemaCommand_base {}
|
|
@@ -19,6 +19,15 @@ declare const DeleteDiscovererCommand_base: {
|
|
|
19
19
|
ServiceInputTypes,
|
|
20
20
|
ServiceOutputTypes
|
|
21
21
|
>;
|
|
22
|
+
new (
|
|
23
|
+
__0_0: DeleteDiscovererCommandInput
|
|
24
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
25
|
+
DeleteDiscovererCommandInput,
|
|
26
|
+
DeleteDiscovererCommandOutput,
|
|
27
|
+
SchemasClientResolvedConfig,
|
|
28
|
+
ServiceInputTypes,
|
|
29
|
+
ServiceOutputTypes
|
|
30
|
+
>;
|
|
22
31
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
23
32
|
};
|
|
24
33
|
export declare class DeleteDiscovererCommand extends DeleteDiscovererCommand_base {}
|
|
@@ -19,6 +19,15 @@ declare const DeleteRegistryCommand_base: {
|
|
|
19
19
|
ServiceInputTypes,
|
|
20
20
|
ServiceOutputTypes
|
|
21
21
|
>;
|
|
22
|
+
new (
|
|
23
|
+
__0_0: DeleteRegistryCommandInput
|
|
24
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
25
|
+
DeleteRegistryCommandInput,
|
|
26
|
+
DeleteRegistryCommandOutput,
|
|
27
|
+
SchemasClientResolvedConfig,
|
|
28
|
+
ServiceInputTypes,
|
|
29
|
+
ServiceOutputTypes
|
|
30
|
+
>;
|
|
22
31
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
23
32
|
};
|
|
24
33
|
export declare class DeleteRegistryCommand extends DeleteRegistryCommand_base {}
|
|
@@ -20,6 +20,15 @@ declare const DeleteResourcePolicyCommand_base: {
|
|
|
20
20
|
ServiceInputTypes,
|
|
21
21
|
ServiceOutputTypes
|
|
22
22
|
>;
|
|
23
|
+
new (
|
|
24
|
+
...[input]: [] | [DeleteResourcePolicyCommandInput]
|
|
25
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
26
|
+
DeleteResourcePolicyCommandInput,
|
|
27
|
+
DeleteResourcePolicyCommandOutput,
|
|
28
|
+
SchemasClientResolvedConfig,
|
|
29
|
+
ServiceInputTypes,
|
|
30
|
+
ServiceOutputTypes
|
|
31
|
+
>;
|
|
23
32
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
24
33
|
};
|
|
25
34
|
export declare class DeleteResourcePolicyCommand extends DeleteResourcePolicyCommand_base {}
|
|
@@ -19,6 +19,15 @@ declare const DeleteSchemaCommand_base: {
|
|
|
19
19
|
ServiceInputTypes,
|
|
20
20
|
ServiceOutputTypes
|
|
21
21
|
>;
|
|
22
|
+
new (
|
|
23
|
+
__0_0: DeleteSchemaCommandInput
|
|
24
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
25
|
+
DeleteSchemaCommandInput,
|
|
26
|
+
DeleteSchemaCommandOutput,
|
|
27
|
+
SchemasClientResolvedConfig,
|
|
28
|
+
ServiceInputTypes,
|
|
29
|
+
ServiceOutputTypes
|
|
30
|
+
>;
|
|
22
31
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
23
32
|
};
|
|
24
33
|
export declare class DeleteSchemaCommand extends DeleteSchemaCommand_base {}
|
|
@@ -20,6 +20,15 @@ declare const DeleteSchemaVersionCommand_base: {
|
|
|
20
20
|
ServiceInputTypes,
|
|
21
21
|
ServiceOutputTypes
|
|
22
22
|
>;
|
|
23
|
+
new (
|
|
24
|
+
__0_0: DeleteSchemaVersionCommandInput
|
|
25
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
26
|
+
DeleteSchemaVersionCommandInput,
|
|
27
|
+
DeleteSchemaVersionCommandOutput,
|
|
28
|
+
SchemasClientResolvedConfig,
|
|
29
|
+
ServiceInputTypes,
|
|
30
|
+
ServiceOutputTypes
|
|
31
|
+
>;
|
|
23
32
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
24
33
|
};
|
|
25
34
|
export declare class DeleteSchemaVersionCommand extends DeleteSchemaVersionCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const DescribeCodeBindingCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: DescribeCodeBindingCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DescribeCodeBindingCommandInput,
|
|
32
|
+
DescribeCodeBindingCommandOutput,
|
|
33
|
+
SchemasClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class DescribeCodeBindingCommand extends DescribeCodeBindingCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const DescribeDiscovererCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: DescribeDiscovererCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DescribeDiscovererCommandInput,
|
|
32
|
+
DescribeDiscovererCommandOutput,
|
|
33
|
+
SchemasClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class DescribeDiscovererCommand extends DescribeDiscovererCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const DescribeRegistryCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: DescribeRegistryCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
DescribeRegistryCommandInput,
|
|
31
|
+
DescribeRegistryCommandOutput,
|
|
32
|
+
SchemasClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class DescribeRegistryCommand extends DescribeRegistryCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const DescribeSchemaCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: DescribeSchemaCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
DescribeSchemaCommandInput,
|
|
31
|
+
DescribeSchemaCommandOutput,
|
|
32
|
+
SchemasClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class DescribeSchemaCommand extends DescribeSchemaCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const ExportSchemaCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: ExportSchemaCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
ExportSchemaCommandInput,
|
|
28
|
+
ExportSchemaCommandOutput,
|
|
29
|
+
SchemasClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class ExportSchemaCommand extends ExportSchemaCommand_base {}
|
|
@@ -32,6 +32,15 @@ declare const GetCodeBindingSourceCommand_base: {
|
|
|
32
32
|
ServiceInputTypes,
|
|
33
33
|
ServiceOutputTypes
|
|
34
34
|
>;
|
|
35
|
+
new (
|
|
36
|
+
__0_0: GetCodeBindingSourceCommandInput
|
|
37
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
38
|
+
GetCodeBindingSourceCommandInput,
|
|
39
|
+
GetCodeBindingSourceCommandOutput,
|
|
40
|
+
SchemasClientResolvedConfig,
|
|
41
|
+
ServiceInputTypes,
|
|
42
|
+
ServiceOutputTypes
|
|
43
|
+
>;
|
|
35
44
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
36
45
|
};
|
|
37
46
|
export declare class GetCodeBindingSourceCommand extends GetCodeBindingSourceCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const GetDiscoveredSchemaCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: GetDiscoveredSchemaCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetDiscoveredSchemaCommandInput,
|
|
32
|
+
GetDiscoveredSchemaCommandOutput,
|
|
33
|
+
SchemasClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class GetDiscoveredSchemaCommand extends GetDiscoveredSchemaCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const GetResourcePolicyCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [GetResourcePolicyCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetResourcePolicyCommandInput,
|
|
32
|
+
GetResourcePolicyCommandOutput,
|
|
33
|
+
SchemasClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class GetResourcePolicyCommand extends GetResourcePolicyCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const ListDiscoverersCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
...[input]: [] | [ListDiscoverersCommandInput]
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
ListDiscoverersCommandInput,
|
|
31
|
+
ListDiscoverersCommandOutput,
|
|
32
|
+
SchemasClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class ListDiscoverersCommand extends ListDiscoverersCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const ListRegistriesCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
...[input]: [] | [ListRegistriesCommandInput]
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
ListRegistriesCommandInput,
|
|
31
|
+
ListRegistriesCommandOutput,
|
|
32
|
+
SchemasClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class ListRegistriesCommand extends ListRegistriesCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const ListSchemaVersionsCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: ListSchemaVersionsCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListSchemaVersionsCommandInput,
|
|
32
|
+
ListSchemaVersionsCommandOutput,
|
|
33
|
+
SchemasClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class ListSchemaVersionsCommand extends ListSchemaVersionsCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const ListSchemasCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: ListSchemasCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
ListSchemasCommandInput,
|
|
28
|
+
ListSchemasCommandOutput,
|
|
29
|
+
SchemasClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class ListSchemasCommand extends ListSchemasCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: ListTagsForResourceCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListTagsForResourceCommandInput,
|
|
32
|
+
ListTagsForResourceCommandOutput,
|
|
33
|
+
SchemasClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const PutCodeBindingCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: PutCodeBindingCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
PutCodeBindingCommandInput,
|
|
31
|
+
PutCodeBindingCommandOutput,
|
|
32
|
+
SchemasClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class PutCodeBindingCommand extends PutCodeBindingCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const PutResourcePolicyCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: PutResourcePolicyCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
PutResourcePolicyCommandInput,
|
|
32
|
+
PutResourcePolicyCommandOutput,
|
|
33
|
+
SchemasClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class PutResourcePolicyCommand extends PutResourcePolicyCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const SearchSchemasCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: SearchSchemasCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
SearchSchemasCommandInput,
|
|
31
|
+
SearchSchemasCommandOutput,
|
|
32
|
+
SchemasClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class SearchSchemasCommand extends SearchSchemasCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const StartDiscovererCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: StartDiscovererCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
StartDiscovererCommandInput,
|
|
31
|
+
StartDiscovererCommandOutput,
|
|
32
|
+
SchemasClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class StartDiscovererCommand extends StartDiscovererCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const StopDiscovererCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: StopDiscovererCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
StopDiscovererCommandInput,
|
|
31
|
+
StopDiscovererCommandOutput,
|
|
32
|
+
SchemasClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class StopDiscovererCommand extends StopDiscovererCommand_base {}
|
|
@@ -19,6 +19,15 @@ declare const TagResourceCommand_base: {
|
|
|
19
19
|
ServiceInputTypes,
|
|
20
20
|
ServiceOutputTypes
|
|
21
21
|
>;
|
|
22
|
+
new (
|
|
23
|
+
__0_0: TagResourceCommandInput
|
|
24
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
25
|
+
TagResourceCommandInput,
|
|
26
|
+
TagResourceCommandOutput,
|
|
27
|
+
SchemasClientResolvedConfig,
|
|
28
|
+
ServiceInputTypes,
|
|
29
|
+
ServiceOutputTypes
|
|
30
|
+
>;
|
|
22
31
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
23
32
|
};
|
|
24
33
|
export declare class TagResourceCommand extends TagResourceCommand_base {}
|
|
@@ -19,6 +19,15 @@ declare const UntagResourceCommand_base: {
|
|
|
19
19
|
ServiceInputTypes,
|
|
20
20
|
ServiceOutputTypes
|
|
21
21
|
>;
|
|
22
|
+
new (
|
|
23
|
+
__0_0: UntagResourceCommandInput
|
|
24
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
25
|
+
UntagResourceCommandInput,
|
|
26
|
+
UntagResourceCommandOutput,
|
|
27
|
+
SchemasClientResolvedConfig,
|
|
28
|
+
ServiceInputTypes,
|
|
29
|
+
ServiceOutputTypes
|
|
30
|
+
>;
|
|
22
31
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
23
32
|
};
|
|
24
33
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const UpdateDiscovererCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: UpdateDiscovererCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
UpdateDiscovererCommandInput,
|
|
31
|
+
UpdateDiscovererCommandOutput,
|
|
32
|
+
SchemasClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class UpdateDiscovererCommand extends UpdateDiscovererCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const UpdateRegistryCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: UpdateRegistryCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
UpdateRegistryCommandInput,
|
|
31
|
+
UpdateRegistryCommandOutput,
|
|
32
|
+
SchemasClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class UpdateRegistryCommand extends UpdateRegistryCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const UpdateSchemaCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: UpdateSchemaCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
UpdateSchemaCommandInput,
|
|
28
|
+
UpdateSchemaCommandOutput,
|
|
29
|
+
SchemasClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class UpdateSchemaCommand extends UpdateSchemaCommand_base {}
|