@aws-sdk/client-partnercentral-channel 3.935.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (137) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +341 -0
  3. package/dist-cjs/auth/httpAuthSchemeProvider.js +127 -0
  4. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  5. package/dist-cjs/endpoint/ruleset.js +7 -0
  6. package/dist-cjs/index.js +1379 -0
  7. package/dist-cjs/runtimeConfig.browser.js +39 -0
  8. package/dist-cjs/runtimeConfig.js +57 -0
  9. package/dist-cjs/runtimeConfig.native.js +15 -0
  10. package/dist-cjs/runtimeConfig.shared.js +48 -0
  11. package/dist-es/PartnerCentralChannel.js +41 -0
  12. package/dist-es/PartnerCentralChannelClient.js +51 -0
  13. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  14. package/dist-es/auth/httpAuthSchemeProvider.js +123 -0
  15. package/dist-es/commands/AcceptChannelHandshakeCommand.js +16 -0
  16. package/dist-es/commands/CancelChannelHandshakeCommand.js +16 -0
  17. package/dist-es/commands/CreateChannelHandshakeCommand.js +16 -0
  18. package/dist-es/commands/CreateProgramManagementAccountCommand.js +16 -0
  19. package/dist-es/commands/CreateRelationshipCommand.js +16 -0
  20. package/dist-es/commands/DeleteProgramManagementAccountCommand.js +16 -0
  21. package/dist-es/commands/DeleteRelationshipCommand.js +16 -0
  22. package/dist-es/commands/GetRelationshipCommand.js +16 -0
  23. package/dist-es/commands/ListChannelHandshakesCommand.js +16 -0
  24. package/dist-es/commands/ListProgramManagementAccountsCommand.js +16 -0
  25. package/dist-es/commands/ListRelationshipsCommand.js +16 -0
  26. package/dist-es/commands/ListTagsForResourceCommand.js +16 -0
  27. package/dist-es/commands/RejectChannelHandshakeCommand.js +16 -0
  28. package/dist-es/commands/TagResourceCommand.js +16 -0
  29. package/dist-es/commands/UntagResourceCommand.js +16 -0
  30. package/dist-es/commands/UpdateProgramManagementAccountCommand.js +16 -0
  31. package/dist-es/commands/UpdateRelationshipCommand.js +16 -0
  32. package/dist-es/commands/index.js +17 -0
  33. package/dist-es/endpoint/EndpointParameters.js +11 -0
  34. package/dist-es/endpoint/endpointResolver.js +14 -0
  35. package/dist-es/endpoint/ruleset.js +4 -0
  36. package/dist-es/extensionConfiguration.js +1 -0
  37. package/dist-es/index.js +7 -0
  38. package/dist-es/models/PartnerCentralChannelServiceException.js +8 -0
  39. package/dist-es/models/enums.js +76 -0
  40. package/dist-es/models/errors.js +114 -0
  41. package/dist-es/models/models_0.js +1 -0
  42. package/dist-es/pagination/Interfaces.js +1 -0
  43. package/dist-es/pagination/ListChannelHandshakesPaginator.js +4 -0
  44. package/dist-es/pagination/ListProgramManagementAccountsPaginator.js +4 -0
  45. package/dist-es/pagination/ListRelationshipsPaginator.js +4 -0
  46. package/dist-es/pagination/index.js +4 -0
  47. package/dist-es/runtimeConfig.browser.js +34 -0
  48. package/dist-es/runtimeConfig.js +52 -0
  49. package/dist-es/runtimeConfig.native.js +11 -0
  50. package/dist-es/runtimeConfig.shared.js +44 -0
  51. package/dist-es/runtimeExtensions.js +9 -0
  52. package/dist-es/schemas/schemas_0.js +795 -0
  53. package/dist-types/PartnerCentralChannel.d.ts +129 -0
  54. package/dist-types/PartnerCentralChannelClient.d.ts +213 -0
  55. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  56. package/dist-types/auth/httpAuthSchemeProvider.d.ts +83 -0
  57. package/dist-types/commands/AcceptChannelHandshakeCommand.d.ts +114 -0
  58. package/dist-types/commands/CancelChannelHandshakeCommand.d.ts +114 -0
  59. package/dist-types/commands/CreateChannelHandshakeCommand.d.ts +226 -0
  60. package/dist-types/commands/CreateProgramManagementAccountCommand.d.ts +130 -0
  61. package/dist-types/commands/CreateRelationshipCommand.d.ts +151 -0
  62. package/dist-types/commands/DeleteProgramManagementAccountCommand.d.ts +107 -0
  63. package/dist-types/commands/DeleteRelationshipCommand.d.ts +109 -0
  64. package/dist-types/commands/GetRelationshipCommand.d.ts +134 -0
  65. package/dist-types/commands/ListChannelHandshakesCommand.d.ts +360 -0
  66. package/dist-types/commands/ListProgramManagementAccountsCommand.d.ts +168 -0
  67. package/dist-types/commands/ListRelationshipsCommand.d.ts +169 -0
  68. package/dist-types/commands/ListTagsForResourceCommand.d.ts +114 -0
  69. package/dist-types/commands/RejectChannelHandshakeCommand.d.ts +114 -0
  70. package/dist-types/commands/TagResourceCommand.d.ts +115 -0
  71. package/dist-types/commands/UntagResourceCommand.d.ts +109 -0
  72. package/dist-types/commands/UpdateProgramManagementAccountCommand.d.ts +123 -0
  73. package/dist-types/commands/UpdateRelationshipCommand.d.ts +140 -0
  74. package/dist-types/commands/index.d.ts +17 -0
  75. package/dist-types/endpoint/EndpointParameters.d.ts +32 -0
  76. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  77. package/dist-types/endpoint/ruleset.d.ts +2 -0
  78. package/dist-types/extensionConfiguration.d.ts +9 -0
  79. package/dist-types/index.d.ts +16 -0
  80. package/dist-types/models/PartnerCentralChannelServiceException.d.ts +14 -0
  81. package/dist-types/models/enums.d.ts +220 -0
  82. package/dist-types/models/errors.d.ts +153 -0
  83. package/dist-types/models/models_0.d.ts +1677 -0
  84. package/dist-types/pagination/Interfaces.d.ts +8 -0
  85. package/dist-types/pagination/ListChannelHandshakesPaginator.d.ts +7 -0
  86. package/dist-types/pagination/ListProgramManagementAccountsPaginator.d.ts +7 -0
  87. package/dist-types/pagination/ListRelationshipsPaginator.d.ts +7 -0
  88. package/dist-types/pagination/index.d.ts +4 -0
  89. package/dist-types/runtimeConfig.browser.d.ts +52 -0
  90. package/dist-types/runtimeConfig.d.ts +52 -0
  91. package/dist-types/runtimeConfig.native.d.ts +51 -0
  92. package/dist-types/runtimeConfig.shared.d.ts +24 -0
  93. package/dist-types/runtimeExtensions.d.ts +17 -0
  94. package/dist-types/schemas/schemas_0.d.ts +112 -0
  95. package/dist-types/ts3.4/PartnerCentralChannel.d.ts +296 -0
  96. package/dist-types/ts3.4/PartnerCentralChannelClient.d.ts +228 -0
  97. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  98. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +59 -0
  99. package/dist-types/ts3.4/commands/AcceptChannelHandshakeCommand.d.ts +51 -0
  100. package/dist-types/ts3.4/commands/CancelChannelHandshakeCommand.d.ts +51 -0
  101. package/dist-types/ts3.4/commands/CreateChannelHandshakeCommand.d.ts +51 -0
  102. package/dist-types/ts3.4/commands/CreateProgramManagementAccountCommand.d.ts +51 -0
  103. package/dist-types/ts3.4/commands/CreateRelationshipCommand.d.ts +51 -0
  104. package/dist-types/ts3.4/commands/DeleteProgramManagementAccountCommand.d.ts +51 -0
  105. package/dist-types/ts3.4/commands/DeleteRelationshipCommand.d.ts +51 -0
  106. package/dist-types/ts3.4/commands/GetRelationshipCommand.d.ts +50 -0
  107. package/dist-types/ts3.4/commands/ListChannelHandshakesCommand.d.ts +51 -0
  108. package/dist-types/ts3.4/commands/ListProgramManagementAccountsCommand.d.ts +51 -0
  109. package/dist-types/ts3.4/commands/ListRelationshipsCommand.d.ts +51 -0
  110. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  111. package/dist-types/ts3.4/commands/RejectChannelHandshakeCommand.d.ts +51 -0
  112. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  113. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
  114. package/dist-types/ts3.4/commands/UpdateProgramManagementAccountCommand.d.ts +51 -0
  115. package/dist-types/ts3.4/commands/UpdateRelationshipCommand.d.ts +51 -0
  116. package/dist-types/ts3.4/commands/index.d.ts +17 -0
  117. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
  118. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  119. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  120. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  121. package/dist-types/ts3.4/index.d.ts +11 -0
  122. package/dist-types/ts3.4/models/PartnerCentralChannelServiceException.d.ts +9 -0
  123. package/dist-types/ts3.4/models/enums.d.ts +106 -0
  124. package/dist-types/ts3.4/models/errors.d.ts +68 -0
  125. package/dist-types/ts3.4/models/models_0.d.ts +542 -0
  126. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  127. package/dist-types/ts3.4/pagination/ListChannelHandshakesPaginator.d.ts +11 -0
  128. package/dist-types/ts3.4/pagination/ListProgramManagementAccountsPaginator.d.ts +11 -0
  129. package/dist-types/ts3.4/pagination/ListRelationshipsPaginator.d.ts +11 -0
  130. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  131. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +103 -0
  132. package/dist-types/ts3.4/runtimeConfig.d.ts +98 -0
  133. package/dist-types/ts3.4/runtimeConfig.native.d.ts +107 -0
  134. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +34 -0
  135. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  136. package/dist-types/ts3.4/schemas/schemas_0.d.ts +117 -0
  137. package/package.json +100 -0
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ GetRelationshipRequest,
5
+ GetRelationshipResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ PartnerCentralChannelClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../PartnerCentralChannelClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetRelationshipCommandInput extends GetRelationshipRequest {}
15
+ export interface GetRelationshipCommandOutput
16
+ extends GetRelationshipResponse,
17
+ __MetadataBearer {}
18
+ declare const GetRelationshipCommand_base: {
19
+ new (
20
+ input: GetRelationshipCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ GetRelationshipCommandInput,
23
+ GetRelationshipCommandOutput,
24
+ PartnerCentralChannelClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: GetRelationshipCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ GetRelationshipCommandInput,
32
+ GetRelationshipCommandOutput,
33
+ PartnerCentralChannelClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class GetRelationshipCommand extends GetRelationshipCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: GetRelationshipRequest;
43
+ output: GetRelationshipResponse;
44
+ };
45
+ sdk: {
46
+ input: GetRelationshipCommandInput;
47
+ output: GetRelationshipCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListChannelHandshakesRequest,
5
+ ListChannelHandshakesResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ PartnerCentralChannelClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../PartnerCentralChannelClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListChannelHandshakesCommandInput
15
+ extends ListChannelHandshakesRequest {}
16
+ export interface ListChannelHandshakesCommandOutput
17
+ extends ListChannelHandshakesResponse,
18
+ __MetadataBearer {}
19
+ declare const ListChannelHandshakesCommand_base: {
20
+ new (
21
+ input: ListChannelHandshakesCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListChannelHandshakesCommandInput,
24
+ ListChannelHandshakesCommandOutput,
25
+ PartnerCentralChannelClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ListChannelHandshakesCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListChannelHandshakesCommandInput,
33
+ ListChannelHandshakesCommandOutput,
34
+ PartnerCentralChannelClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListChannelHandshakesCommand extends ListChannelHandshakesCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListChannelHandshakesRequest;
44
+ output: ListChannelHandshakesResponse;
45
+ };
46
+ sdk: {
47
+ input: ListChannelHandshakesCommandInput;
48
+ output: ListChannelHandshakesCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListProgramManagementAccountsRequest,
5
+ ListProgramManagementAccountsResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ PartnerCentralChannelClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../PartnerCentralChannelClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListProgramManagementAccountsCommandInput
15
+ extends ListProgramManagementAccountsRequest {}
16
+ export interface ListProgramManagementAccountsCommandOutput
17
+ extends ListProgramManagementAccountsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListProgramManagementAccountsCommand_base: {
20
+ new (
21
+ input: ListProgramManagementAccountsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListProgramManagementAccountsCommandInput,
24
+ ListProgramManagementAccountsCommandOutput,
25
+ PartnerCentralChannelClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ListProgramManagementAccountsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListProgramManagementAccountsCommandInput,
33
+ ListProgramManagementAccountsCommandOutput,
34
+ PartnerCentralChannelClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListProgramManagementAccountsCommand extends ListProgramManagementAccountsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListProgramManagementAccountsRequest;
44
+ output: ListProgramManagementAccountsResponse;
45
+ };
46
+ sdk: {
47
+ input: ListProgramManagementAccountsCommandInput;
48
+ output: ListProgramManagementAccountsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListRelationshipsRequest,
5
+ ListRelationshipsResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ PartnerCentralChannelClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../PartnerCentralChannelClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListRelationshipsCommandInput
15
+ extends ListRelationshipsRequest {}
16
+ export interface ListRelationshipsCommandOutput
17
+ extends ListRelationshipsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListRelationshipsCommand_base: {
20
+ new (
21
+ input: ListRelationshipsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListRelationshipsCommandInput,
24
+ ListRelationshipsCommandOutput,
25
+ PartnerCentralChannelClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ListRelationshipsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListRelationshipsCommandInput,
33
+ ListRelationshipsCommandOutput,
34
+ PartnerCentralChannelClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListRelationshipsCommand extends ListRelationshipsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListRelationshipsRequest;
44
+ output: ListRelationshipsResponse;
45
+ };
46
+ sdk: {
47
+ input: ListRelationshipsCommandInput;
48
+ output: ListRelationshipsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListTagsForResourceRequest,
5
+ ListTagsForResourceResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ PartnerCentralChannelClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../PartnerCentralChannelClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListTagsForResourceCommandInput
15
+ extends ListTagsForResourceRequest {}
16
+ export interface ListTagsForResourceCommandOutput
17
+ extends ListTagsForResourceResponse,
18
+ __MetadataBearer {}
19
+ declare const ListTagsForResourceCommand_base: {
20
+ new (
21
+ input: ListTagsForResourceCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListTagsForResourceCommandInput,
24
+ ListTagsForResourceCommandOutput,
25
+ PartnerCentralChannelClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ListTagsForResourceCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListTagsForResourceCommandInput,
33
+ ListTagsForResourceCommandOutput,
34
+ PartnerCentralChannelClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListTagsForResourceRequest;
44
+ output: ListTagsForResourceResponse;
45
+ };
46
+ sdk: {
47
+ input: ListTagsForResourceCommandInput;
48
+ output: ListTagsForResourceCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ RejectChannelHandshakeRequest,
5
+ RejectChannelHandshakeResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ PartnerCentralChannelClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../PartnerCentralChannelClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface RejectChannelHandshakeCommandInput
15
+ extends RejectChannelHandshakeRequest {}
16
+ export interface RejectChannelHandshakeCommandOutput
17
+ extends RejectChannelHandshakeResponse,
18
+ __MetadataBearer {}
19
+ declare const RejectChannelHandshakeCommand_base: {
20
+ new (
21
+ input: RejectChannelHandshakeCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ RejectChannelHandshakeCommandInput,
24
+ RejectChannelHandshakeCommandOutput,
25
+ PartnerCentralChannelClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: RejectChannelHandshakeCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ RejectChannelHandshakeCommandInput,
33
+ RejectChannelHandshakeCommandOutput,
34
+ PartnerCentralChannelClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class RejectChannelHandshakeCommand extends RejectChannelHandshakeCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: RejectChannelHandshakeRequest;
44
+ output: RejectChannelHandshakeResponse;
45
+ };
46
+ sdk: {
47
+ input: RejectChannelHandshakeCommandInput;
48
+ output: RejectChannelHandshakeCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
4
+ import {
5
+ PartnerCentralChannelClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../PartnerCentralChannelClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface TagResourceCommandInput extends TagResourceRequest {}
12
+ export interface TagResourceCommandOutput
13
+ extends TagResourceResponse,
14
+ __MetadataBearer {}
15
+ declare const TagResourceCommand_base: {
16
+ new (
17
+ input: TagResourceCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ TagResourceCommandInput,
20
+ TagResourceCommandOutput,
21
+ PartnerCentralChannelClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: TagResourceCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ TagResourceCommandInput,
29
+ TagResourceCommandOutput,
30
+ PartnerCentralChannelClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class TagResourceCommand extends TagResourceCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: TagResourceRequest;
40
+ output: {};
41
+ };
42
+ sdk: {
43
+ input: TagResourceCommandInput;
44
+ output: TagResourceCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ UntagResourceRequest,
5
+ UntagResourceResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ PartnerCentralChannelClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../PartnerCentralChannelClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
15
+ export interface UntagResourceCommandOutput
16
+ extends UntagResourceResponse,
17
+ __MetadataBearer {}
18
+ declare const UntagResourceCommand_base: {
19
+ new (
20
+ input: UntagResourceCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ UntagResourceCommandInput,
23
+ UntagResourceCommandOutput,
24
+ PartnerCentralChannelClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: UntagResourceCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ UntagResourceCommandInput,
32
+ UntagResourceCommandOutput,
33
+ PartnerCentralChannelClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class UntagResourceCommand extends UntagResourceCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: UntagResourceRequest;
43
+ output: {};
44
+ };
45
+ sdk: {
46
+ input: UntagResourceCommandInput;
47
+ output: UntagResourceCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ UpdateProgramManagementAccountRequest,
5
+ UpdateProgramManagementAccountResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ PartnerCentralChannelClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../PartnerCentralChannelClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UpdateProgramManagementAccountCommandInput
15
+ extends UpdateProgramManagementAccountRequest {}
16
+ export interface UpdateProgramManagementAccountCommandOutput
17
+ extends UpdateProgramManagementAccountResponse,
18
+ __MetadataBearer {}
19
+ declare const UpdateProgramManagementAccountCommand_base: {
20
+ new (
21
+ input: UpdateProgramManagementAccountCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ UpdateProgramManagementAccountCommandInput,
24
+ UpdateProgramManagementAccountCommandOutput,
25
+ PartnerCentralChannelClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: UpdateProgramManagementAccountCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ UpdateProgramManagementAccountCommandInput,
33
+ UpdateProgramManagementAccountCommandOutput,
34
+ PartnerCentralChannelClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class UpdateProgramManagementAccountCommand extends UpdateProgramManagementAccountCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: UpdateProgramManagementAccountRequest;
44
+ output: UpdateProgramManagementAccountResponse;
45
+ };
46
+ sdk: {
47
+ input: UpdateProgramManagementAccountCommandInput;
48
+ output: UpdateProgramManagementAccountCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ UpdateRelationshipRequest,
5
+ UpdateRelationshipResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ PartnerCentralChannelClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../PartnerCentralChannelClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UpdateRelationshipCommandInput
15
+ extends UpdateRelationshipRequest {}
16
+ export interface UpdateRelationshipCommandOutput
17
+ extends UpdateRelationshipResponse,
18
+ __MetadataBearer {}
19
+ declare const UpdateRelationshipCommand_base: {
20
+ new (
21
+ input: UpdateRelationshipCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ UpdateRelationshipCommandInput,
24
+ UpdateRelationshipCommandOutput,
25
+ PartnerCentralChannelClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: UpdateRelationshipCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ UpdateRelationshipCommandInput,
33
+ UpdateRelationshipCommandOutput,
34
+ PartnerCentralChannelClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class UpdateRelationshipCommand extends UpdateRelationshipCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: UpdateRelationshipRequest;
44
+ output: UpdateRelationshipResponse;
45
+ };
46
+ sdk: {
47
+ input: UpdateRelationshipCommandInput;
48
+ output: UpdateRelationshipCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,17 @@
1
+ export * from "./AcceptChannelHandshakeCommand";
2
+ export * from "./CancelChannelHandshakeCommand";
3
+ export * from "./CreateChannelHandshakeCommand";
4
+ export * from "./CreateProgramManagementAccountCommand";
5
+ export * from "./CreateRelationshipCommand";
6
+ export * from "./DeleteProgramManagementAccountCommand";
7
+ export * from "./DeleteRelationshipCommand";
8
+ export * from "./GetRelationshipCommand";
9
+ export * from "./ListChannelHandshakesCommand";
10
+ export * from "./ListProgramManagementAccountsCommand";
11
+ export * from "./ListRelationshipsCommand";
12
+ export * from "./ListTagsForResourceCommand";
13
+ export * from "./RejectChannelHandshakeCommand";
14
+ export * from "./TagResourceCommand";
15
+ export * from "./UntagResourceCommand";
16
+ export * from "./UpdateProgramManagementAccountCommand";
17
+ export * from "./UpdateRelationshipCommand";
@@ -0,0 +1,45 @@
1
+ import {
2
+ Endpoint,
3
+ EndpointParameters as __EndpointParameters,
4
+ EndpointV2,
5
+ Provider,
6
+ } from "@smithy/types";
7
+ export interface ClientInputEndpointParameters {
8
+ useFipsEndpoint?: boolean | undefined | Provider<boolean | undefined>;
9
+ endpoint?:
10
+ | string
11
+ | Provider<string>
12
+ | Endpoint
13
+ | Provider<Endpoint>
14
+ | EndpointV2
15
+ | Provider<EndpointV2>;
16
+ region?: string | undefined | Provider<string | undefined>;
17
+ }
18
+ export type ClientResolvedEndpointParameters = Pick<
19
+ ClientInputEndpointParameters,
20
+ Exclude<keyof ClientInputEndpointParameters, "endpoint">
21
+ > & {
22
+ defaultSigningName: string;
23
+ };
24
+ export declare const resolveClientEndpointParameters: <T>(
25
+ options: T & ClientInputEndpointParameters
26
+ ) => T & ClientResolvedEndpointParameters;
27
+ export declare const commonParams: {
28
+ readonly UseFIPS: {
29
+ readonly type: "builtInParams";
30
+ readonly name: "useFipsEndpoint";
31
+ };
32
+ readonly Endpoint: {
33
+ readonly type: "builtInParams";
34
+ readonly name: "endpoint";
35
+ };
36
+ readonly Region: {
37
+ readonly type: "builtInParams";
38
+ readonly name: "region";
39
+ };
40
+ };
41
+ export interface EndpointParameters extends __EndpointParameters {
42
+ UseFIPS?: boolean | undefined;
43
+ Endpoint?: string | undefined;
44
+ Region?: string | undefined;
45
+ }
@@ -0,0 +1,8 @@
1
+ import { EndpointV2, Logger } from "@smithy/types";
2
+ import { EndpointParameters } from "./EndpointParameters";
3
+ export declare const defaultEndpointResolver: (
4
+ endpointParams: EndpointParameters,
5
+ context?: {
6
+ logger?: Logger;
7
+ }
8
+ ) => EndpointV2;
@@ -0,0 +1,2 @@
1
+ import { RuleSetObject } from "@smithy/types";
2
+ export declare const ruleSet: RuleSetObject;
@@ -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 PartnerCentralChannelExtensionConfiguration
6
+ extends HttpHandlerExtensionConfiguration,
7
+ DefaultExtensionConfiguration,
8
+ AwsRegionExtensionConfiguration,
9
+ HttpAuthExtensionConfiguration {}
@@ -0,0 +1,11 @@
1
+ export * from "./PartnerCentralChannelClient";
2
+ export * from "./PartnerCentralChannel";
3
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
+ export { RuntimeExtension } from "./runtimeExtensions";
5
+ export { PartnerCentralChannelExtensionConfiguration } from "./extensionConfiguration";
6
+ export * from "./commands";
7
+ export * from "./pagination";
8
+ export * from "./models/enums";
9
+ export * from "./models/errors";
10
+ export * from "./models/models_0";
11
+ export { PartnerCentralChannelServiceException } from "./models/PartnerCentralChannelServiceException";
@@ -0,0 +1,9 @@
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@smithy/smithy-client";
5
+ export { __ServiceExceptionOptions };
6
+ export { __ServiceException };
7
+ export declare class PartnerCentralChannelServiceException extends __ServiceException {
8
+ constructor(options: __ServiceExceptionOptions);
9
+ }