@aws-sdk/client-taxsettings 3.590.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/LICENSE +201 -0
- package/README.md +272 -0
- package/dist-cjs/TaxSettings.js +25 -0
- package/dist-cjs/TaxSettingsClient.js +56 -0
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/commands/BatchDeleteTaxRegistrationCommand.js +29 -0
- package/dist-cjs/commands/BatchPutTaxRegistrationCommand.js +29 -0
- package/dist-cjs/commands/DeleteTaxRegistrationCommand.js +28 -0
- package/dist-cjs/commands/GetTaxRegistrationCommand.js +29 -0
- package/dist-cjs/commands/GetTaxRegistrationDocumentCommand.js +28 -0
- package/dist-cjs/commands/ListTaxRegistrationsCommand.js +29 -0
- package/dist-cjs/commands/PutTaxRegistrationCommand.js +29 -0
- package/dist-cjs/commands/index.js +10 -0
- package/dist-cjs/endpoint/EndpointParameters.js +18 -0
- package/dist-cjs/endpoint/endpointResolver.js +14 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/TaxSettingsServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +198 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListTaxRegistrationsPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +5 -0
- package/dist-cjs/protocols/Aws_restJson1.js +311 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +49 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +34 -0
- package/dist-cjs/runtimeExtensions.js +25 -0
- package/dist-es/TaxSettings.js +21 -0
- package/dist-es/TaxSettingsClient.js +52 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/BatchDeleteTaxRegistrationCommand.js +25 -0
- package/dist-es/commands/BatchPutTaxRegistrationCommand.js +25 -0
- package/dist-es/commands/DeleteTaxRegistrationCommand.js +24 -0
- package/dist-es/commands/GetTaxRegistrationCommand.js +25 -0
- package/dist-es/commands/GetTaxRegistrationDocumentCommand.js +24 -0
- package/dist-es/commands/ListTaxRegistrationsCommand.js +25 -0
- package/dist-es/commands/PutTaxRegistrationCommand.js +25 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/endpoint/EndpointParameters.js +14 -0
- package/dist-es/endpoint/endpointResolver.js +10 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/TaxSettingsServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +178 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListTaxRegistrationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +294 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +44 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +30 -0
- package/dist-es/runtimeExtensions.js +21 -0
- package/dist-types/TaxSettings.d.ts +73 -0
- package/dist-types/TaxSettingsClient.d.ts +189 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/dist-types/commands/BatchDeleteTaxRegistrationCommand.d.ts +81 -0
- package/dist-types/commands/BatchPutTaxRegistrationCommand.d.ts +346 -0
- package/dist-types/commands/DeleteTaxRegistrationCommand.d.ts +73 -0
- package/dist-types/commands/GetTaxRegistrationCommand.d.ts +158 -0
- package/dist-types/commands/GetTaxRegistrationDocumentCommand.d.ts +74 -0
- package/dist-types/commands/ListTaxRegistrationsCommand.d.ts +186 -0
- package/dist-types/commands/PutTaxRegistrationCommand.d.ts +336 -0
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +25 -0
- package/dist-types/models/TaxSettingsServiceException.d.ts +13 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1476 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListTaxRegistrationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +65 -0
- package/dist-types/runtimeConfig.browser.d.ts +45 -0
- package/dist-types/runtimeConfig.d.ts +45 -0
- package/dist-types/runtimeConfig.native.d.ts +44 -0
- package/dist-types/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/TaxSettings.d.ts +129 -0
- package/dist-types/ts3.4/TaxSettingsClient.d.ts +162 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
- package/dist-types/ts3.4/commands/BatchDeleteTaxRegistrationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/BatchPutTaxRegistrationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteTaxRegistrationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetTaxRegistrationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetTaxRegistrationDocumentCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListTaxRegistrationsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/PutTaxRegistrationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +9 -0
- package/dist-types/ts3.4/models/TaxSettingsServiceException.d.ts +8 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +408 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListTaxRegistrationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +89 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +85 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +89 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +79 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/package.json +101 -0
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BatchDeleteTaxRegistrationRequest,
|
|
5
|
+
BatchDeleteTaxRegistrationResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
TaxSettingsClientResolvedConfig,
|
|
11
|
+
} from "../TaxSettingsClient";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface BatchDeleteTaxRegistrationCommandInput
|
|
14
|
+
extends BatchDeleteTaxRegistrationRequest {}
|
|
15
|
+
export interface BatchDeleteTaxRegistrationCommandOutput
|
|
16
|
+
extends BatchDeleteTaxRegistrationResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const BatchDeleteTaxRegistrationCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: BatchDeleteTaxRegistrationCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
BatchDeleteTaxRegistrationCommandInput,
|
|
23
|
+
BatchDeleteTaxRegistrationCommandOutput,
|
|
24
|
+
TaxSettingsClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: BatchDeleteTaxRegistrationCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
BatchDeleteTaxRegistrationCommandInput,
|
|
32
|
+
BatchDeleteTaxRegistrationCommandOutput,
|
|
33
|
+
TaxSettingsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class BatchDeleteTaxRegistrationCommand extends BatchDeleteTaxRegistrationCommand_base {}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BatchPutTaxRegistrationRequest,
|
|
5
|
+
BatchPutTaxRegistrationResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
TaxSettingsClientResolvedConfig,
|
|
11
|
+
} from "../TaxSettingsClient";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface BatchPutTaxRegistrationCommandInput
|
|
14
|
+
extends BatchPutTaxRegistrationRequest {}
|
|
15
|
+
export interface BatchPutTaxRegistrationCommandOutput
|
|
16
|
+
extends BatchPutTaxRegistrationResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const BatchPutTaxRegistrationCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: BatchPutTaxRegistrationCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
BatchPutTaxRegistrationCommandInput,
|
|
23
|
+
BatchPutTaxRegistrationCommandOutput,
|
|
24
|
+
TaxSettingsClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: BatchPutTaxRegistrationCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
BatchPutTaxRegistrationCommandInput,
|
|
32
|
+
BatchPutTaxRegistrationCommandOutput,
|
|
33
|
+
TaxSettingsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class BatchPutTaxRegistrationCommand extends BatchPutTaxRegistrationCommand_base {}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DeleteTaxRegistrationRequest,
|
|
5
|
+
DeleteTaxRegistrationResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
TaxSettingsClientResolvedConfig,
|
|
11
|
+
} from "../TaxSettingsClient";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface DeleteTaxRegistrationCommandInput
|
|
14
|
+
extends DeleteTaxRegistrationRequest {}
|
|
15
|
+
export interface DeleteTaxRegistrationCommandOutput
|
|
16
|
+
extends DeleteTaxRegistrationResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const DeleteTaxRegistrationCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: DeleteTaxRegistrationCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
DeleteTaxRegistrationCommandInput,
|
|
23
|
+
DeleteTaxRegistrationCommandOutput,
|
|
24
|
+
TaxSettingsClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [DeleteTaxRegistrationCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DeleteTaxRegistrationCommandInput,
|
|
32
|
+
DeleteTaxRegistrationCommandOutput,
|
|
33
|
+
TaxSettingsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class DeleteTaxRegistrationCommand extends DeleteTaxRegistrationCommand_base {}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetTaxRegistrationRequest,
|
|
5
|
+
GetTaxRegistrationResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
TaxSettingsClientResolvedConfig,
|
|
11
|
+
} from "../TaxSettingsClient";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface GetTaxRegistrationCommandInput
|
|
14
|
+
extends GetTaxRegistrationRequest {}
|
|
15
|
+
export interface GetTaxRegistrationCommandOutput
|
|
16
|
+
extends GetTaxRegistrationResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const GetTaxRegistrationCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: GetTaxRegistrationCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
GetTaxRegistrationCommandInput,
|
|
23
|
+
GetTaxRegistrationCommandOutput,
|
|
24
|
+
TaxSettingsClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [GetTaxRegistrationCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetTaxRegistrationCommandInput,
|
|
32
|
+
GetTaxRegistrationCommandOutput,
|
|
33
|
+
TaxSettingsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class GetTaxRegistrationCommand extends GetTaxRegistrationCommand_base {}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetTaxRegistrationDocumentRequest,
|
|
5
|
+
GetTaxRegistrationDocumentResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
TaxSettingsClientResolvedConfig,
|
|
11
|
+
} from "../TaxSettingsClient";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface GetTaxRegistrationDocumentCommandInput
|
|
14
|
+
extends GetTaxRegistrationDocumentRequest {}
|
|
15
|
+
export interface GetTaxRegistrationDocumentCommandOutput
|
|
16
|
+
extends GetTaxRegistrationDocumentResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const GetTaxRegistrationDocumentCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: GetTaxRegistrationDocumentCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
GetTaxRegistrationDocumentCommandInput,
|
|
23
|
+
GetTaxRegistrationDocumentCommandOutput,
|
|
24
|
+
TaxSettingsClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: GetTaxRegistrationDocumentCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetTaxRegistrationDocumentCommandInput,
|
|
32
|
+
GetTaxRegistrationDocumentCommandOutput,
|
|
33
|
+
TaxSettingsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class GetTaxRegistrationDocumentCommand extends GetTaxRegistrationDocumentCommand_base {}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListTaxRegistrationsRequest,
|
|
5
|
+
ListTaxRegistrationsResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
TaxSettingsClientResolvedConfig,
|
|
11
|
+
} from "../TaxSettingsClient";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface ListTaxRegistrationsCommandInput
|
|
14
|
+
extends ListTaxRegistrationsRequest {}
|
|
15
|
+
export interface ListTaxRegistrationsCommandOutput
|
|
16
|
+
extends ListTaxRegistrationsResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const ListTaxRegistrationsCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ListTaxRegistrationsCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
ListTaxRegistrationsCommandInput,
|
|
23
|
+
ListTaxRegistrationsCommandOutput,
|
|
24
|
+
TaxSettingsClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [ListTaxRegistrationsCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListTaxRegistrationsCommandInput,
|
|
32
|
+
ListTaxRegistrationsCommandOutput,
|
|
33
|
+
TaxSettingsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class ListTaxRegistrationsCommand extends ListTaxRegistrationsCommand_base {}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
PutTaxRegistrationRequest,
|
|
5
|
+
PutTaxRegistrationResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
TaxSettingsClientResolvedConfig,
|
|
11
|
+
} from "../TaxSettingsClient";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface PutTaxRegistrationCommandInput
|
|
14
|
+
extends PutTaxRegistrationRequest {}
|
|
15
|
+
export interface PutTaxRegistrationCommandOutput
|
|
16
|
+
extends PutTaxRegistrationResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const PutTaxRegistrationCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: PutTaxRegistrationCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
PutTaxRegistrationCommandInput,
|
|
23
|
+
PutTaxRegistrationCommandOutput,
|
|
24
|
+
TaxSettingsClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: PutTaxRegistrationCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
PutTaxRegistrationCommandInput,
|
|
32
|
+
PutTaxRegistrationCommandOutput,
|
|
33
|
+
TaxSettingsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class PutTaxRegistrationCommand extends PutTaxRegistrationCommand_base {}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export * from "./BatchDeleteTaxRegistrationCommand";
|
|
2
|
+
export * from "./BatchPutTaxRegistrationCommand";
|
|
3
|
+
export * from "./DeleteTaxRegistrationCommand";
|
|
4
|
+
export * from "./GetTaxRegistrationCommand";
|
|
5
|
+
export * from "./GetTaxRegistrationDocumentCommand";
|
|
6
|
+
export * from "./ListTaxRegistrationsCommand";
|
|
7
|
+
export * from "./PutTaxRegistrationCommand";
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import {
|
|
2
|
+
Endpoint,
|
|
3
|
+
EndpointParameters as __EndpointParameters,
|
|
4
|
+
EndpointV2,
|
|
5
|
+
Provider,
|
|
6
|
+
} from "@smithy/types";
|
|
7
|
+
export interface ClientInputEndpointParameters {
|
|
8
|
+
region?: string | Provider<string>;
|
|
9
|
+
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
10
|
+
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
11
|
+
endpoint?:
|
|
12
|
+
| string
|
|
13
|
+
| Provider<string>
|
|
14
|
+
| Endpoint
|
|
15
|
+
| Provider<Endpoint>
|
|
16
|
+
| EndpointV2
|
|
17
|
+
| Provider<EndpointV2>;
|
|
18
|
+
}
|
|
19
|
+
export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
20
|
+
defaultSigningName: string;
|
|
21
|
+
};
|
|
22
|
+
export declare const resolveClientEndpointParameters: <T>(
|
|
23
|
+
options: T & ClientInputEndpointParameters
|
|
24
|
+
) => T &
|
|
25
|
+
ClientInputEndpointParameters & {
|
|
26
|
+
defaultSigningName: string;
|
|
27
|
+
};
|
|
28
|
+
export declare const commonParams: {
|
|
29
|
+
readonly UseFIPS: {
|
|
30
|
+
readonly type: "builtInParams";
|
|
31
|
+
readonly name: "useFipsEndpoint";
|
|
32
|
+
};
|
|
33
|
+
readonly Endpoint: {
|
|
34
|
+
readonly type: "builtInParams";
|
|
35
|
+
readonly name: "endpoint";
|
|
36
|
+
};
|
|
37
|
+
readonly Region: {
|
|
38
|
+
readonly type: "builtInParams";
|
|
39
|
+
readonly name: "region";
|
|
40
|
+
};
|
|
41
|
+
readonly UseDualStack: {
|
|
42
|
+
readonly type: "builtInParams";
|
|
43
|
+
readonly name: "useDualstackEndpoint";
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
47
|
+
Region?: string;
|
|
48
|
+
UseDualStack?: boolean;
|
|
49
|
+
UseFIPS?: boolean;
|
|
50
|
+
Endpoint?: string;
|
|
51
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
|
|
3
|
+
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
|
+
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
|
+
export interface TaxSettingsExtensionConfiguration
|
|
6
|
+
extends HttpHandlerExtensionConfiguration,
|
|
7
|
+
DefaultExtensionConfiguration,
|
|
8
|
+
AwsRegionExtensionConfiguration,
|
|
9
|
+
HttpAuthExtensionConfiguration {}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export * from "./TaxSettingsClient";
|
|
2
|
+
export * from "./TaxSettings";
|
|
3
|
+
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
4
|
+
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
|
+
export { TaxSettingsExtensionConfiguration } from "./extensionConfiguration";
|
|
6
|
+
export * from "./commands";
|
|
7
|
+
export * from "./pagination";
|
|
8
|
+
export * from "./models";
|
|
9
|
+
export { TaxSettingsServiceException } from "./models/TaxSettingsServiceException";
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@smithy/smithy-client";
|
|
5
|
+
export { __ServiceException, __ServiceExceptionOptions };
|
|
6
|
+
export declare class TaxSettingsServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|