@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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/Schemas.d.ts +531 -159
- package/dist-types/ts3.4/SchemasClient.d.ts +290 -104
- package/dist-types/ts3.4/commands/CreateDiscovererCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/CreateRegistryCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/CreateSchemaCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteDiscovererCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/DeleteRegistryCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteSchemaCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/DeleteSchemaVersionCommand.d.ts +31 -17
- package/dist-types/ts3.4/commands/DescribeCodeBindingCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeDiscovererCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeRegistryCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeSchemaCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ExportSchemaCommand.d.ts +32 -16
- package/dist-types/ts3.4/commands/GetCodeBindingSourceCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetDiscoveredSchemaCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListDiscoverersCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListRegistriesCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListSchemaVersionsCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListSchemasCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/PutCodeBindingCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/SearchSchemasCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/StartDiscovererCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/StopDiscovererCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/UpdateDiscovererCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateRegistryCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateSchemaCommand.d.ts +32 -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 +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +608 -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 +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/dist-types/ts3.4/waiters/index.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForCodeBindingExists.d.ts +11 -7
- package/package.json +35 -35
|
@@ -1,17 +1,30 @@
|
|
|
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 { DeleteRegistryRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
SchemasClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../SchemasClient";
|
|
14
|
+
export interface DeleteRegistryCommandInput extends DeleteRegistryRequest {}
|
|
15
|
+
export interface DeleteRegistryCommandOutput extends __MetadataBearer {}
|
|
16
|
+
export declare class DeleteRegistryCommand extends $Command<
|
|
17
|
+
DeleteRegistryCommandInput,
|
|
18
|
+
DeleteRegistryCommandOutput,
|
|
19
|
+
SchemasClientResolvedConfig
|
|
20
|
+
> {
|
|
21
|
+
readonly input: DeleteRegistryCommandInput;
|
|
22
|
+
constructor(input: DeleteRegistryCommandInput);
|
|
23
|
+
resolveMiddleware(
|
|
24
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
25
|
+
configuration: SchemasClientResolvedConfig,
|
|
26
|
+
options?: __HttpHandlerOptions
|
|
27
|
+
): Handler<DeleteRegistryCommandInput, DeleteRegistryCommandOutput>;
|
|
28
|
+
private serialize;
|
|
29
|
+
private deserialize;
|
|
30
|
+
}
|
|
@@ -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 { DeleteResourcePolicyRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
SchemasClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../SchemasClient";
|
|
14
|
+
export interface DeleteResourcePolicyCommandInput
|
|
15
|
+
extends DeleteResourcePolicyRequest {}
|
|
16
|
+
export interface DeleteResourcePolicyCommandOutput extends __MetadataBearer {}
|
|
17
|
+
export declare class DeleteResourcePolicyCommand extends $Command<
|
|
18
|
+
DeleteResourcePolicyCommandInput,
|
|
19
|
+
DeleteResourcePolicyCommandOutput,
|
|
20
|
+
SchemasClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: DeleteResourcePolicyCommandInput;
|
|
23
|
+
constructor(input: DeleteResourcePolicyCommandInput);
|
|
24
|
+
resolveMiddleware(
|
|
25
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
26
|
+
configuration: SchemasClientResolvedConfig,
|
|
27
|
+
options?: __HttpHandlerOptions
|
|
28
|
+
): Handler<
|
|
29
|
+
DeleteResourcePolicyCommandInput,
|
|
30
|
+
DeleteResourcePolicyCommandOutput
|
|
31
|
+
>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,30 @@
|
|
|
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 { DeleteSchemaRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
SchemasClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../SchemasClient";
|
|
14
|
+
export interface DeleteSchemaCommandInput extends DeleteSchemaRequest {}
|
|
15
|
+
export interface DeleteSchemaCommandOutput extends __MetadataBearer {}
|
|
16
|
+
export declare class DeleteSchemaCommand extends $Command<
|
|
17
|
+
DeleteSchemaCommandInput,
|
|
18
|
+
DeleteSchemaCommandOutput,
|
|
19
|
+
SchemasClientResolvedConfig
|
|
20
|
+
> {
|
|
21
|
+
readonly input: DeleteSchemaCommandInput;
|
|
22
|
+
constructor(input: DeleteSchemaCommandInput);
|
|
23
|
+
resolveMiddleware(
|
|
24
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
25
|
+
configuration: SchemasClientResolvedConfig,
|
|
26
|
+
options?: __HttpHandlerOptions
|
|
27
|
+
): Handler<DeleteSchemaCommandInput, DeleteSchemaCommandOutput>;
|
|
28
|
+
private serialize;
|
|
29
|
+
private deserialize;
|
|
30
|
+
}
|
|
@@ -1,17 +1,31 @@
|
|
|
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 { DeleteSchemaVersionRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
SchemasClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../SchemasClient";
|
|
14
|
+
export interface DeleteSchemaVersionCommandInput
|
|
15
|
+
extends DeleteSchemaVersionRequest {}
|
|
16
|
+
export interface DeleteSchemaVersionCommandOutput extends __MetadataBearer {}
|
|
17
|
+
export declare class DeleteSchemaVersionCommand extends $Command<
|
|
18
|
+
DeleteSchemaVersionCommandInput,
|
|
19
|
+
DeleteSchemaVersionCommandOutput,
|
|
20
|
+
SchemasClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: DeleteSchemaVersionCommandInput;
|
|
23
|
+
constructor(input: DeleteSchemaVersionCommandInput);
|
|
24
|
+
resolveMiddleware(
|
|
25
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
26
|
+
configuration: SchemasClientResolvedConfig,
|
|
27
|
+
options?: __HttpHandlerOptions
|
|
28
|
+
): Handler<DeleteSchemaVersionCommandInput, DeleteSchemaVersionCommandOutput>;
|
|
29
|
+
private serialize;
|
|
30
|
+
private deserialize;
|
|
31
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
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
|
+
DescribeCodeBindingRequest,
|
|
10
|
+
DescribeCodeBindingResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
SchemasClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../SchemasClient";
|
|
17
|
+
export interface DescribeCodeBindingCommandInput
|
|
18
|
+
extends DescribeCodeBindingRequest {}
|
|
19
|
+
export interface DescribeCodeBindingCommandOutput
|
|
20
|
+
extends DescribeCodeBindingResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeCodeBindingCommand extends $Command<
|
|
23
|
+
DescribeCodeBindingCommandInput,
|
|
24
|
+
DescribeCodeBindingCommandOutput,
|
|
25
|
+
SchemasClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeCodeBindingCommandInput;
|
|
28
|
+
constructor(input: DescribeCodeBindingCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: SchemasClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<DescribeCodeBindingCommandInput, DescribeCodeBindingCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
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
|
+
DescribeDiscovererRequest,
|
|
10
|
+
DescribeDiscovererResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
SchemasClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../SchemasClient";
|
|
17
|
+
export interface DescribeDiscovererCommandInput
|
|
18
|
+
extends DescribeDiscovererRequest {}
|
|
19
|
+
export interface DescribeDiscovererCommandOutput
|
|
20
|
+
extends DescribeDiscovererResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeDiscovererCommand extends $Command<
|
|
23
|
+
DescribeDiscovererCommandInput,
|
|
24
|
+
DescribeDiscovererCommandOutput,
|
|
25
|
+
SchemasClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeDiscovererCommandInput;
|
|
28
|
+
constructor(input: DescribeDiscovererCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: SchemasClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<DescribeDiscovererCommandInput, DescribeDiscovererCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
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
|
+
DescribeRegistryRequest,
|
|
10
|
+
DescribeRegistryResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
SchemasClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../SchemasClient";
|
|
17
|
+
export interface DescribeRegistryCommandInput extends DescribeRegistryRequest {}
|
|
18
|
+
export interface DescribeRegistryCommandOutput
|
|
19
|
+
extends DescribeRegistryResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class DescribeRegistryCommand extends $Command<
|
|
22
|
+
DescribeRegistryCommandInput,
|
|
23
|
+
DescribeRegistryCommandOutput,
|
|
24
|
+
SchemasClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: DescribeRegistryCommandInput;
|
|
27
|
+
constructor(input: DescribeRegistryCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: SchemasClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<DescribeRegistryCommandInput, DescribeRegistryCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
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
|
+
DescribeSchemaRequest,
|
|
10
|
+
DescribeSchemaResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
SchemasClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../SchemasClient";
|
|
17
|
+
export interface DescribeSchemaCommandInput extends DescribeSchemaRequest {}
|
|
18
|
+
export interface DescribeSchemaCommandOutput
|
|
19
|
+
extends DescribeSchemaResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class DescribeSchemaCommand extends $Command<
|
|
22
|
+
DescribeSchemaCommandInput,
|
|
23
|
+
DescribeSchemaCommandOutput,
|
|
24
|
+
SchemasClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: DescribeSchemaCommandInput;
|
|
27
|
+
constructor(input: DescribeSchemaCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: SchemasClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<DescribeSchemaCommandInput, DescribeSchemaCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,16 +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
|
-
|
|
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 { ExportSchemaRequest, ExportSchemaResponse } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
SchemasClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../SchemasClient";
|
|
14
|
+
export interface ExportSchemaCommandInput extends ExportSchemaRequest {}
|
|
15
|
+
export interface ExportSchemaCommandOutput
|
|
16
|
+
extends ExportSchemaResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class ExportSchemaCommand extends $Command<
|
|
19
|
+
ExportSchemaCommandInput,
|
|
20
|
+
ExportSchemaCommandOutput,
|
|
21
|
+
SchemasClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: ExportSchemaCommandInput;
|
|
24
|
+
constructor(input: ExportSchemaCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: SchemasClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<ExportSchemaCommandInput, ExportSchemaCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
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
|
+
GetCodeBindingSourceRequest,
|
|
10
|
+
GetCodeBindingSourceResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
SchemasClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../SchemasClient";
|
|
17
|
+
export interface GetCodeBindingSourceCommandInput
|
|
18
|
+
extends GetCodeBindingSourceRequest {}
|
|
19
|
+
export interface GetCodeBindingSourceCommandOutput
|
|
20
|
+
extends GetCodeBindingSourceResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class GetCodeBindingSourceCommand extends $Command<
|
|
23
|
+
GetCodeBindingSourceCommandInput,
|
|
24
|
+
GetCodeBindingSourceCommandOutput,
|
|
25
|
+
SchemasClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetCodeBindingSourceCommandInput;
|
|
28
|
+
constructor(input: GetCodeBindingSourceCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: SchemasClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
GetCodeBindingSourceCommandInput,
|
|
35
|
+
GetCodeBindingSourceCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
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
|
+
GetDiscoveredSchemaRequest,
|
|
10
|
+
GetDiscoveredSchemaResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
SchemasClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../SchemasClient";
|
|
17
|
+
export interface GetDiscoveredSchemaCommandInput
|
|
18
|
+
extends GetDiscoveredSchemaRequest {}
|
|
19
|
+
export interface GetDiscoveredSchemaCommandOutput
|
|
20
|
+
extends GetDiscoveredSchemaResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class GetDiscoveredSchemaCommand extends $Command<
|
|
23
|
+
GetDiscoveredSchemaCommandInput,
|
|
24
|
+
GetDiscoveredSchemaCommandOutput,
|
|
25
|
+
SchemasClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetDiscoveredSchemaCommandInput;
|
|
28
|
+
constructor(input: GetDiscoveredSchemaCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: SchemasClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<GetDiscoveredSchemaCommandInput, GetDiscoveredSchemaCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
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
|
+
GetResourcePolicyRequest,
|
|
10
|
+
GetResourcePolicyResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
SchemasClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../SchemasClient";
|
|
17
|
+
export interface GetResourcePolicyCommandInput
|
|
18
|
+
extends GetResourcePolicyRequest {}
|
|
19
|
+
export interface GetResourcePolicyCommandOutput
|
|
20
|
+
extends GetResourcePolicyResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class GetResourcePolicyCommand extends $Command<
|
|
23
|
+
GetResourcePolicyCommandInput,
|
|
24
|
+
GetResourcePolicyCommandOutput,
|
|
25
|
+
SchemasClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetResourcePolicyCommandInput;
|
|
28
|
+
constructor(input: GetResourcePolicyCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: SchemasClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|