@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,8 @@
1
+ import { PaginationConfiguration } from "@smithy/types";
2
+ import { PartnerCentralChannelClient } from "../PartnerCentralChannelClient";
3
+ /**
4
+ * @public
5
+ */
6
+ export interface PartnerCentralChannelPaginationConfiguration extends PaginationConfiguration {
7
+ client: PartnerCentralChannelClient;
8
+ }
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListChannelHandshakesCommandInput, ListChannelHandshakesCommandOutput } from "../commands/ListChannelHandshakesCommand";
3
+ import { PartnerCentralChannelPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListChannelHandshakes: (config: PartnerCentralChannelPaginationConfiguration, input: ListChannelHandshakesCommandInput, ...rest: any[]) => Paginator<ListChannelHandshakesCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListProgramManagementAccountsCommandInput, ListProgramManagementAccountsCommandOutput } from "../commands/ListProgramManagementAccountsCommand";
3
+ import { PartnerCentralChannelPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListProgramManagementAccounts: (config: PartnerCentralChannelPaginationConfiguration, input: ListProgramManagementAccountsCommandInput, ...rest: any[]) => Paginator<ListProgramManagementAccountsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListRelationshipsCommandInput, ListRelationshipsCommandOutput } from "../commands/ListRelationshipsCommand";
3
+ import { PartnerCentralChannelPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListRelationships: (config: PartnerCentralChannelPaginationConfiguration, input: ListRelationshipsCommandInput, ...rest: any[]) => Paginator<ListRelationshipsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListChannelHandshakesPaginator";
3
+ export * from "./ListProgramManagementAccountsPaginator";
4
+ export * from "./ListRelationshipsPaginator";
@@ -0,0 +1,52 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { PartnerCentralChannelClientConfig } from "./PartnerCentralChannelClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: PartnerCentralChannelClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
11
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
12
+ maxAttempts: number | import("@smithy/types").Provider<number>;
13
+ region: string | import("@smithy/types").Provider<any>;
14
+ requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
15
+ retryMode: string | import("@smithy/types").Provider<string>;
16
+ sha256: import("@smithy/types").HashConstructor;
17
+ streamCollector: import("@smithy/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
19
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
20
+ apiVersion: string;
21
+ cacheMiddleware?: boolean | undefined;
22
+ urlParser: import("@smithy/types").UrlParser;
23
+ base64Decoder: import("@smithy/types").Decoder;
24
+ base64Encoder: (_input: Uint8Array | string) => string;
25
+ utf8Decoder: import("@smithy/types").Decoder;
26
+ utf8Encoder: (input: Uint8Array | string) => string;
27
+ disableHostPrefix: boolean;
28
+ serviceId: string;
29
+ profile?: string;
30
+ logger: import("@smithy/types").Logger;
31
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
32
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
33
+ customUserAgent?: string | import("@smithy/types").UserAgent;
34
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
35
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
36
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
37
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
38
+ logger?: import("@smithy/types").Logger;
39
+ }) => import("@smithy/types").EndpointV2;
40
+ tls?: boolean;
41
+ serviceConfiguredEndpoint?: never;
42
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
43
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
44
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").PartnerCentralChannelHttpAuthSchemeProvider;
45
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
46
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
47
+ signingEscapePath?: boolean;
48
+ systemClockOffset?: number;
49
+ signingRegion?: string;
50
+ signerConstructor: typeof import("@aws-sdk/signature-v4-multi-region").SignatureV4MultiRegion | (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner);
51
+ sigv4aSigningRegionSet?: string[] | undefined | import("@smithy/types").Provider<string[] | undefined>;
52
+ };
@@ -0,0 +1,52 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { PartnerCentralChannelClientConfig } from "./PartnerCentralChannelClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: PartnerCentralChannelClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
10
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
11
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit) => import("@aws-sdk/credential-provider-node/dist-types/runtime/memoize-chain").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
12
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
13
+ maxAttempts: number | import("@smithy/types").Provider<number>;
14
+ region: string | import("@smithy/types").Provider<string>;
15
+ requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
16
+ retryMode: string | import("@smithy/types").Provider<string>;
17
+ sha256: import("@smithy/types").HashConstructor;
18
+ sigv4aSigningRegionSet: string[] | import("@smithy/types").Provider<string[] | undefined>;
19
+ streamCollector: import("@smithy/types").StreamCollector;
20
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
22
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
23
+ apiVersion: string;
24
+ cacheMiddleware?: boolean | undefined;
25
+ urlParser: import("@smithy/types").UrlParser;
26
+ base64Decoder: import("@smithy/types").Decoder;
27
+ base64Encoder: (_input: Uint8Array | string) => string;
28
+ utf8Decoder: import("@smithy/types").Decoder;
29
+ utf8Encoder: (input: Uint8Array | string) => string;
30
+ disableHostPrefix: boolean;
31
+ serviceId: string;
32
+ profile?: string;
33
+ logger: import("@smithy/types").Logger;
34
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
35
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
36
+ customUserAgent?: string | import("@smithy/types").UserAgent;
37
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
38
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
39
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
40
+ logger?: import("@smithy/types").Logger;
41
+ }) => import("@smithy/types").EndpointV2;
42
+ tls?: boolean;
43
+ serviceConfiguredEndpoint?: never;
44
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
45
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").PartnerCentralChannelHttpAuthSchemeProvider;
46
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
47
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
48
+ signingEscapePath?: boolean;
49
+ systemClockOffset?: number;
50
+ signingRegion?: string;
51
+ signerConstructor: typeof import("@aws-sdk/signature-v4-multi-region").SignatureV4MultiRegion | (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner);
52
+ };
@@ -0,0 +1,51 @@
1
+ import { PartnerCentralChannelClientConfig } from "./PartnerCentralChannelClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: PartnerCentralChannelClientConfig) => {
6
+ runtime: string;
7
+ sha256: import("@smithy/types").HashConstructor;
8
+ requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
+ apiVersion: string;
10
+ cacheMiddleware?: boolean;
11
+ urlParser: import("@smithy/types").UrlParser;
12
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
13
+ streamCollector: import("@smithy/types").StreamCollector;
14
+ base64Decoder: import("@smithy/types").Decoder;
15
+ base64Encoder: (_input: Uint8Array | string) => string;
16
+ utf8Decoder: import("@smithy/types").Decoder;
17
+ utf8Encoder: (input: Uint8Array | string) => string;
18
+ disableHostPrefix: boolean;
19
+ serviceId: string;
20
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
22
+ region: string | import("@smithy/types").Provider<any>;
23
+ profile?: string;
24
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
25
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
26
+ maxAttempts: number | import("@smithy/types").Provider<number>;
27
+ retryMode: string | import("@smithy/types").Provider<string>;
28
+ logger: import("@smithy/types").Logger;
29
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
30
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
31
+ defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
32
+ customUserAgent?: string | import("@smithy/types").UserAgent;
33
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
34
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
35
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
36
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
37
+ logger?: import("@smithy/types").Logger;
38
+ }) => import("@smithy/types").EndpointV2;
39
+ tls?: boolean;
40
+ serviceConfiguredEndpoint?: never;
41
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
42
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
43
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").PartnerCentralChannelHttpAuthSchemeProvider;
44
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
45
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
46
+ signingEscapePath?: boolean;
47
+ systemClockOffset?: number;
48
+ signingRegion?: string;
49
+ signerConstructor: typeof import("@aws-sdk/signature-v4-multi-region").SignatureV4MultiRegion | (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner);
50
+ sigv4aSigningRegionSet?: string[] | undefined | import("@smithy/types").Provider<string[] | undefined>;
51
+ };
@@ -0,0 +1,24 @@
1
+ import { SignatureV4MultiRegion } from "@aws-sdk/signature-v4-multi-region";
2
+ import { PartnerCentralChannelClientConfig } from "./PartnerCentralChannelClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: PartnerCentralChannelClientConfig) => {
7
+ apiVersion: string;
8
+ base64Decoder: import("@smithy/types").Decoder;
9
+ base64Encoder: (_input: Uint8Array | string) => string;
10
+ disableHostPrefix: boolean;
11
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
12
+ logger?: import("@smithy/types").Logger;
13
+ }) => import("@smithy/types").EndpointV2;
14
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
15
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").PartnerCentralChannelHttpAuthSchemeProvider;
16
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
17
+ logger: import("@smithy/types").Logger;
18
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
19
+ serviceId: string;
20
+ signerConstructor: typeof SignatureV4MultiRegion | (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner);
21
+ urlParser: import("@smithy/types").UrlParser;
22
+ utf8Decoder: import("@smithy/types").Decoder;
23
+ utf8Encoder: (input: Uint8Array | string) => string;
24
+ };
@@ -0,0 +1,17 @@
1
+ import { PartnerCentralChannelExtensionConfiguration } from "./extensionConfiguration";
2
+ /**
3
+ * @public
4
+ */
5
+ export interface RuntimeExtension {
6
+ configure(extensionConfiguration: PartnerCentralChannelExtensionConfiguration): void;
7
+ }
8
+ /**
9
+ * @public
10
+ */
11
+ export interface RuntimeExtensionsConfig {
12
+ extensions: RuntimeExtension[];
13
+ }
14
+ /**
15
+ * @internal
16
+ */
17
+ export declare const resolveRuntimeExtensions: (runtimeConfig: any, extensions: RuntimeExtension[]) => any;
@@ -0,0 +1,112 @@
1
+ import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
2
+ export declare var AcceptChannelHandshakeDetail: StaticStructureSchema;
3
+ export declare var AcceptChannelHandshakeRequest: StaticStructureSchema;
4
+ export declare var AcceptChannelHandshakeResponse: StaticStructureSchema;
5
+ export declare var AccessDeniedException: StaticErrorSchema;
6
+ export declare var CancelChannelHandshakeDetail: StaticStructureSchema;
7
+ export declare var CancelChannelHandshakeRequest: StaticStructureSchema;
8
+ export declare var CancelChannelHandshakeResponse: StaticStructureSchema;
9
+ export declare var ChannelHandshakeSummary: StaticStructureSchema;
10
+ export declare var ConflictException: StaticErrorSchema;
11
+ export declare var CreateChannelHandshakeDetail: StaticStructureSchema;
12
+ export declare var CreateChannelHandshakeRequest: StaticStructureSchema;
13
+ export declare var CreateChannelHandshakeResponse: StaticStructureSchema;
14
+ export declare var CreateProgramManagementAccountDetail: StaticStructureSchema;
15
+ export declare var CreateProgramManagementAccountRequest: StaticStructureSchema;
16
+ export declare var CreateProgramManagementAccountResponse: StaticStructureSchema;
17
+ export declare var CreateRelationshipDetail: StaticStructureSchema;
18
+ export declare var CreateRelationshipRequest: StaticStructureSchema;
19
+ export declare var CreateRelationshipResponse: StaticStructureSchema;
20
+ export declare var DeleteProgramManagementAccountRequest: StaticStructureSchema;
21
+ export declare var DeleteProgramManagementAccountResponse: StaticStructureSchema;
22
+ export declare var DeleteRelationshipRequest: StaticStructureSchema;
23
+ export declare var DeleteRelationshipResponse: StaticStructureSchema;
24
+ export declare var GetRelationshipRequest: StaticStructureSchema;
25
+ export declare var GetRelationshipResponse: StaticStructureSchema;
26
+ export declare var InternalServerException: StaticErrorSchema;
27
+ export declare var ListChannelHandshakesRequest: StaticStructureSchema;
28
+ export declare var ListChannelHandshakesResponse: StaticStructureSchema;
29
+ export declare var ListProgramManagementAccountsRequest: StaticStructureSchema;
30
+ export declare var ListProgramManagementAccountsResponse: StaticStructureSchema;
31
+ export declare var ListProgramManagementAccountsSortBase: StaticStructureSchema;
32
+ export declare var ListRelationshipsRequest: StaticStructureSchema;
33
+ export declare var ListRelationshipsResponse: StaticStructureSchema;
34
+ export declare var ListRelationshipsSortBase: StaticStructureSchema;
35
+ export declare var ListTagsForResourceRequest: StaticStructureSchema;
36
+ export declare var ListTagsForResourceResponse: StaticStructureSchema;
37
+ export declare var PartnerLedSupport: StaticStructureSchema;
38
+ export declare var ProgramManagementAccountHandshakeDetail: StaticStructureSchema;
39
+ export declare var ProgramManagementAccountSummary: StaticStructureSchema;
40
+ export declare var ProgramManagementAccountTypeFilters: StaticStructureSchema;
41
+ export declare var ProgramManagementAccountTypeSort: StaticStructureSchema;
42
+ export declare var RejectChannelHandshakeDetail: StaticStructureSchema;
43
+ export declare var RejectChannelHandshakeRequest: StaticStructureSchema;
44
+ export declare var RejectChannelHandshakeResponse: StaticStructureSchema;
45
+ export declare var RelationshipDetail: StaticStructureSchema;
46
+ export declare var RelationshipSummary: StaticStructureSchema;
47
+ export declare var ResoldBusiness: StaticStructureSchema;
48
+ export declare var ResoldEnterprise: StaticStructureSchema;
49
+ export declare var ResourceNotFoundException: StaticErrorSchema;
50
+ export declare var RevokeServicePeriodHandshakeDetail: StaticStructureSchema;
51
+ export declare var RevokeServicePeriodPayload: StaticStructureSchema;
52
+ export declare var RevokeServicePeriodTypeFilters: StaticStructureSchema;
53
+ export declare var RevokeServicePeriodTypeSort: StaticStructureSchema;
54
+ export declare var ServiceQuotaExceededException: StaticErrorSchema;
55
+ export declare var StartServicePeriodHandshakeDetail: StaticStructureSchema;
56
+ export declare var StartServicePeriodPayload: StaticStructureSchema;
57
+ export declare var StartServicePeriodTypeFilters: StaticStructureSchema;
58
+ export declare var StartServicePeriodTypeSort: StaticStructureSchema;
59
+ export declare var Tag: StaticStructureSchema;
60
+ export declare var TagResourceRequest: StaticStructureSchema;
61
+ export declare var TagResourceResponse: StaticStructureSchema;
62
+ export declare var ThrottlingException: StaticErrorSchema;
63
+ export declare var UntagResourceRequest: StaticStructureSchema;
64
+ export declare var UntagResourceResponse: StaticStructureSchema;
65
+ export declare var UpdateProgramManagementAccountDetail: StaticStructureSchema;
66
+ export declare var UpdateProgramManagementAccountRequest: StaticStructureSchema;
67
+ export declare var UpdateProgramManagementAccountResponse: StaticStructureSchema;
68
+ export declare var UpdateRelationshipDetail: StaticStructureSchema;
69
+ export declare var UpdateRelationshipRequest: StaticStructureSchema;
70
+ export declare var UpdateRelationshipResponse: StaticStructureSchema;
71
+ export declare var ValidationException: StaticErrorSchema;
72
+ export declare var ValidationExceptionField: StaticStructureSchema;
73
+ export declare var __Unit: "unit";
74
+ export declare var PartnerCentralChannelServiceException: StaticErrorSchema;
75
+ export declare var AccountIdList: number;
76
+ export declare var AssociatedResourceIdentifierList: number;
77
+ export declare var AssociationTypeList: number;
78
+ export declare var ChannelHandshakeSummaries: StaticListSchema;
79
+ export declare var HandshakeStatusList: number;
80
+ export declare var ProgramList: number;
81
+ export declare var ProgramManagementAccountDisplayNameList: number;
82
+ export declare var ProgramManagementAccountIdentifierList: number;
83
+ export declare var ProgramManagementAccountStatusList: number;
84
+ export declare var ProgramManagementAccountSummaries: StaticListSchema;
85
+ export declare var RelationshipDisplayNameList: number;
86
+ export declare var RelationshipSummaries: StaticListSchema;
87
+ export declare var ServicePeriodTypeList: number;
88
+ export declare var TagKeyList: number;
89
+ export declare var TagList: StaticListSchema;
90
+ export declare var ValidationExceptionFieldList: StaticListSchema;
91
+ export declare var ChannelHandshakePayload: StaticStructureSchema;
92
+ export declare var HandshakeDetail: StaticStructureSchema;
93
+ export declare var ListChannelHandshakesTypeFilters: StaticStructureSchema;
94
+ export declare var ListChannelHandshakesTypeSort: StaticStructureSchema;
95
+ export declare var SupportPlan: StaticStructureSchema;
96
+ export declare var AcceptChannelHandshake: StaticOperationSchema;
97
+ export declare var CancelChannelHandshake: StaticOperationSchema;
98
+ export declare var CreateChannelHandshake: StaticOperationSchema;
99
+ export declare var CreateProgramManagementAccount: StaticOperationSchema;
100
+ export declare var CreateRelationship: StaticOperationSchema;
101
+ export declare var DeleteProgramManagementAccount: StaticOperationSchema;
102
+ export declare var DeleteRelationship: StaticOperationSchema;
103
+ export declare var GetRelationship: StaticOperationSchema;
104
+ export declare var ListChannelHandshakes: StaticOperationSchema;
105
+ export declare var ListProgramManagementAccounts: StaticOperationSchema;
106
+ export declare var ListRelationships: StaticOperationSchema;
107
+ export declare var ListTagsForResource: StaticOperationSchema;
108
+ export declare var RejectChannelHandshake: StaticOperationSchema;
109
+ export declare var TagResource: StaticOperationSchema;
110
+ export declare var UntagResource: StaticOperationSchema;
111
+ export declare var UpdateProgramManagementAccount: StaticOperationSchema;
112
+ export declare var UpdateRelationship: StaticOperationSchema;
@@ -0,0 +1,296 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import {
3
+ AcceptChannelHandshakeCommandInput,
4
+ AcceptChannelHandshakeCommandOutput,
5
+ } from "./commands/AcceptChannelHandshakeCommand";
6
+ import {
7
+ CancelChannelHandshakeCommandInput,
8
+ CancelChannelHandshakeCommandOutput,
9
+ } from "./commands/CancelChannelHandshakeCommand";
10
+ import {
11
+ CreateChannelHandshakeCommandInput,
12
+ CreateChannelHandshakeCommandOutput,
13
+ } from "./commands/CreateChannelHandshakeCommand";
14
+ import {
15
+ CreateProgramManagementAccountCommandInput,
16
+ CreateProgramManagementAccountCommandOutput,
17
+ } from "./commands/CreateProgramManagementAccountCommand";
18
+ import {
19
+ CreateRelationshipCommandInput,
20
+ CreateRelationshipCommandOutput,
21
+ } from "./commands/CreateRelationshipCommand";
22
+ import {
23
+ DeleteProgramManagementAccountCommandInput,
24
+ DeleteProgramManagementAccountCommandOutput,
25
+ } from "./commands/DeleteProgramManagementAccountCommand";
26
+ import {
27
+ DeleteRelationshipCommandInput,
28
+ DeleteRelationshipCommandOutput,
29
+ } from "./commands/DeleteRelationshipCommand";
30
+ import {
31
+ GetRelationshipCommandInput,
32
+ GetRelationshipCommandOutput,
33
+ } from "./commands/GetRelationshipCommand";
34
+ import {
35
+ ListChannelHandshakesCommandInput,
36
+ ListChannelHandshakesCommandOutput,
37
+ } from "./commands/ListChannelHandshakesCommand";
38
+ import {
39
+ ListProgramManagementAccountsCommandInput,
40
+ ListProgramManagementAccountsCommandOutput,
41
+ } from "./commands/ListProgramManagementAccountsCommand";
42
+ import {
43
+ ListRelationshipsCommandInput,
44
+ ListRelationshipsCommandOutput,
45
+ } from "./commands/ListRelationshipsCommand";
46
+ import {
47
+ ListTagsForResourceCommandInput,
48
+ ListTagsForResourceCommandOutput,
49
+ } from "./commands/ListTagsForResourceCommand";
50
+ import {
51
+ RejectChannelHandshakeCommandInput,
52
+ RejectChannelHandshakeCommandOutput,
53
+ } from "./commands/RejectChannelHandshakeCommand";
54
+ import {
55
+ TagResourceCommandInput,
56
+ TagResourceCommandOutput,
57
+ } from "./commands/TagResourceCommand";
58
+ import {
59
+ UntagResourceCommandInput,
60
+ UntagResourceCommandOutput,
61
+ } from "./commands/UntagResourceCommand";
62
+ import {
63
+ UpdateProgramManagementAccountCommandInput,
64
+ UpdateProgramManagementAccountCommandOutput,
65
+ } from "./commands/UpdateProgramManagementAccountCommand";
66
+ import {
67
+ UpdateRelationshipCommandInput,
68
+ UpdateRelationshipCommandOutput,
69
+ } from "./commands/UpdateRelationshipCommand";
70
+ import { PartnerCentralChannelClient } from "./PartnerCentralChannelClient";
71
+ export interface PartnerCentralChannel {
72
+ acceptChannelHandshake(
73
+ args: AcceptChannelHandshakeCommandInput,
74
+ options?: __HttpHandlerOptions
75
+ ): Promise<AcceptChannelHandshakeCommandOutput>;
76
+ acceptChannelHandshake(
77
+ args: AcceptChannelHandshakeCommandInput,
78
+ cb: (err: any, data?: AcceptChannelHandshakeCommandOutput) => void
79
+ ): void;
80
+ acceptChannelHandshake(
81
+ args: AcceptChannelHandshakeCommandInput,
82
+ options: __HttpHandlerOptions,
83
+ cb: (err: any, data?: AcceptChannelHandshakeCommandOutput) => void
84
+ ): void;
85
+ cancelChannelHandshake(
86
+ args: CancelChannelHandshakeCommandInput,
87
+ options?: __HttpHandlerOptions
88
+ ): Promise<CancelChannelHandshakeCommandOutput>;
89
+ cancelChannelHandshake(
90
+ args: CancelChannelHandshakeCommandInput,
91
+ cb: (err: any, data?: CancelChannelHandshakeCommandOutput) => void
92
+ ): void;
93
+ cancelChannelHandshake(
94
+ args: CancelChannelHandshakeCommandInput,
95
+ options: __HttpHandlerOptions,
96
+ cb: (err: any, data?: CancelChannelHandshakeCommandOutput) => void
97
+ ): void;
98
+ createChannelHandshake(
99
+ args: CreateChannelHandshakeCommandInput,
100
+ options?: __HttpHandlerOptions
101
+ ): Promise<CreateChannelHandshakeCommandOutput>;
102
+ createChannelHandshake(
103
+ args: CreateChannelHandshakeCommandInput,
104
+ cb: (err: any, data?: CreateChannelHandshakeCommandOutput) => void
105
+ ): void;
106
+ createChannelHandshake(
107
+ args: CreateChannelHandshakeCommandInput,
108
+ options: __HttpHandlerOptions,
109
+ cb: (err: any, data?: CreateChannelHandshakeCommandOutput) => void
110
+ ): void;
111
+ createProgramManagementAccount(
112
+ args: CreateProgramManagementAccountCommandInput,
113
+ options?: __HttpHandlerOptions
114
+ ): Promise<CreateProgramManagementAccountCommandOutput>;
115
+ createProgramManagementAccount(
116
+ args: CreateProgramManagementAccountCommandInput,
117
+ cb: (err: any, data?: CreateProgramManagementAccountCommandOutput) => void
118
+ ): void;
119
+ createProgramManagementAccount(
120
+ args: CreateProgramManagementAccountCommandInput,
121
+ options: __HttpHandlerOptions,
122
+ cb: (err: any, data?: CreateProgramManagementAccountCommandOutput) => void
123
+ ): void;
124
+ createRelationship(
125
+ args: CreateRelationshipCommandInput,
126
+ options?: __HttpHandlerOptions
127
+ ): Promise<CreateRelationshipCommandOutput>;
128
+ createRelationship(
129
+ args: CreateRelationshipCommandInput,
130
+ cb: (err: any, data?: CreateRelationshipCommandOutput) => void
131
+ ): void;
132
+ createRelationship(
133
+ args: CreateRelationshipCommandInput,
134
+ options: __HttpHandlerOptions,
135
+ cb: (err: any, data?: CreateRelationshipCommandOutput) => void
136
+ ): void;
137
+ deleteProgramManagementAccount(
138
+ args: DeleteProgramManagementAccountCommandInput,
139
+ options?: __HttpHandlerOptions
140
+ ): Promise<DeleteProgramManagementAccountCommandOutput>;
141
+ deleteProgramManagementAccount(
142
+ args: DeleteProgramManagementAccountCommandInput,
143
+ cb: (err: any, data?: DeleteProgramManagementAccountCommandOutput) => void
144
+ ): void;
145
+ deleteProgramManagementAccount(
146
+ args: DeleteProgramManagementAccountCommandInput,
147
+ options: __HttpHandlerOptions,
148
+ cb: (err: any, data?: DeleteProgramManagementAccountCommandOutput) => void
149
+ ): void;
150
+ deleteRelationship(
151
+ args: DeleteRelationshipCommandInput,
152
+ options?: __HttpHandlerOptions
153
+ ): Promise<DeleteRelationshipCommandOutput>;
154
+ deleteRelationship(
155
+ args: DeleteRelationshipCommandInput,
156
+ cb: (err: any, data?: DeleteRelationshipCommandOutput) => void
157
+ ): void;
158
+ deleteRelationship(
159
+ args: DeleteRelationshipCommandInput,
160
+ options: __HttpHandlerOptions,
161
+ cb: (err: any, data?: DeleteRelationshipCommandOutput) => void
162
+ ): void;
163
+ getRelationship(
164
+ args: GetRelationshipCommandInput,
165
+ options?: __HttpHandlerOptions
166
+ ): Promise<GetRelationshipCommandOutput>;
167
+ getRelationship(
168
+ args: GetRelationshipCommandInput,
169
+ cb: (err: any, data?: GetRelationshipCommandOutput) => void
170
+ ): void;
171
+ getRelationship(
172
+ args: GetRelationshipCommandInput,
173
+ options: __HttpHandlerOptions,
174
+ cb: (err: any, data?: GetRelationshipCommandOutput) => void
175
+ ): void;
176
+ listChannelHandshakes(
177
+ args: ListChannelHandshakesCommandInput,
178
+ options?: __HttpHandlerOptions
179
+ ): Promise<ListChannelHandshakesCommandOutput>;
180
+ listChannelHandshakes(
181
+ args: ListChannelHandshakesCommandInput,
182
+ cb: (err: any, data?: ListChannelHandshakesCommandOutput) => void
183
+ ): void;
184
+ listChannelHandshakes(
185
+ args: ListChannelHandshakesCommandInput,
186
+ options: __HttpHandlerOptions,
187
+ cb: (err: any, data?: ListChannelHandshakesCommandOutput) => void
188
+ ): void;
189
+ listProgramManagementAccounts(
190
+ args: ListProgramManagementAccountsCommandInput,
191
+ options?: __HttpHandlerOptions
192
+ ): Promise<ListProgramManagementAccountsCommandOutput>;
193
+ listProgramManagementAccounts(
194
+ args: ListProgramManagementAccountsCommandInput,
195
+ cb: (err: any, data?: ListProgramManagementAccountsCommandOutput) => void
196
+ ): void;
197
+ listProgramManagementAccounts(
198
+ args: ListProgramManagementAccountsCommandInput,
199
+ options: __HttpHandlerOptions,
200
+ cb: (err: any, data?: ListProgramManagementAccountsCommandOutput) => void
201
+ ): void;
202
+ listRelationships(
203
+ args: ListRelationshipsCommandInput,
204
+ options?: __HttpHandlerOptions
205
+ ): Promise<ListRelationshipsCommandOutput>;
206
+ listRelationships(
207
+ args: ListRelationshipsCommandInput,
208
+ cb: (err: any, data?: ListRelationshipsCommandOutput) => void
209
+ ): void;
210
+ listRelationships(
211
+ args: ListRelationshipsCommandInput,
212
+ options: __HttpHandlerOptions,
213
+ cb: (err: any, data?: ListRelationshipsCommandOutput) => void
214
+ ): void;
215
+ listTagsForResource(
216
+ args: ListTagsForResourceCommandInput,
217
+ options?: __HttpHandlerOptions
218
+ ): Promise<ListTagsForResourceCommandOutput>;
219
+ listTagsForResource(
220
+ args: ListTagsForResourceCommandInput,
221
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
222
+ ): void;
223
+ listTagsForResource(
224
+ args: ListTagsForResourceCommandInput,
225
+ options: __HttpHandlerOptions,
226
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
227
+ ): void;
228
+ rejectChannelHandshake(
229
+ args: RejectChannelHandshakeCommandInput,
230
+ options?: __HttpHandlerOptions
231
+ ): Promise<RejectChannelHandshakeCommandOutput>;
232
+ rejectChannelHandshake(
233
+ args: RejectChannelHandshakeCommandInput,
234
+ cb: (err: any, data?: RejectChannelHandshakeCommandOutput) => void
235
+ ): void;
236
+ rejectChannelHandshake(
237
+ args: RejectChannelHandshakeCommandInput,
238
+ options: __HttpHandlerOptions,
239
+ cb: (err: any, data?: RejectChannelHandshakeCommandOutput) => void
240
+ ): void;
241
+ tagResource(
242
+ args: TagResourceCommandInput,
243
+ options?: __HttpHandlerOptions
244
+ ): Promise<TagResourceCommandOutput>;
245
+ tagResource(
246
+ args: TagResourceCommandInput,
247
+ cb: (err: any, data?: TagResourceCommandOutput) => void
248
+ ): void;
249
+ tagResource(
250
+ args: TagResourceCommandInput,
251
+ options: __HttpHandlerOptions,
252
+ cb: (err: any, data?: TagResourceCommandOutput) => void
253
+ ): void;
254
+ untagResource(
255
+ args: UntagResourceCommandInput,
256
+ options?: __HttpHandlerOptions
257
+ ): Promise<UntagResourceCommandOutput>;
258
+ untagResource(
259
+ args: UntagResourceCommandInput,
260
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
261
+ ): void;
262
+ untagResource(
263
+ args: UntagResourceCommandInput,
264
+ options: __HttpHandlerOptions,
265
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
266
+ ): void;
267
+ updateProgramManagementAccount(
268
+ args: UpdateProgramManagementAccountCommandInput,
269
+ options?: __HttpHandlerOptions
270
+ ): Promise<UpdateProgramManagementAccountCommandOutput>;
271
+ updateProgramManagementAccount(
272
+ args: UpdateProgramManagementAccountCommandInput,
273
+ cb: (err: any, data?: UpdateProgramManagementAccountCommandOutput) => void
274
+ ): void;
275
+ updateProgramManagementAccount(
276
+ args: UpdateProgramManagementAccountCommandInput,
277
+ options: __HttpHandlerOptions,
278
+ cb: (err: any, data?: UpdateProgramManagementAccountCommandOutput) => void
279
+ ): void;
280
+ updateRelationship(
281
+ args: UpdateRelationshipCommandInput,
282
+ options?: __HttpHandlerOptions
283
+ ): Promise<UpdateRelationshipCommandOutput>;
284
+ updateRelationship(
285
+ args: UpdateRelationshipCommandInput,
286
+ cb: (err: any, data?: UpdateRelationshipCommandOutput) => void
287
+ ): void;
288
+ updateRelationship(
289
+ args: UpdateRelationshipCommandInput,
290
+ options: __HttpHandlerOptions,
291
+ cb: (err: any, data?: UpdateRelationshipCommandOutput) => void
292
+ ): void;
293
+ }
294
+ export declare class PartnerCentralChannel
295
+ extends PartnerCentralChannelClient
296
+ implements PartnerCentralChannel {}