@aws-sdk/client-partnercentral-account 3.942.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 (167) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +421 -0
  3. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -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 +1701 -0
  7. package/dist-cjs/runtimeConfig.browser.js +39 -0
  8. package/dist-cjs/runtimeConfig.js +56 -0
  9. package/dist-cjs/runtimeConfig.native.js +15 -0
  10. package/dist-cjs/runtimeConfig.shared.js +41 -0
  11. package/dist-es/PartnerCentralAccount.js +61 -0
  12. package/dist-es/PartnerCentralAccountClient.js +50 -0
  13. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  14. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  15. package/dist-es/commands/AcceptConnectionInvitationCommand.js +16 -0
  16. package/dist-es/commands/AssociateAwsTrainingCertificationEmailDomainCommand.js +16 -0
  17. package/dist-es/commands/CancelConnectionCommand.js +16 -0
  18. package/dist-es/commands/CancelConnectionInvitationCommand.js +16 -0
  19. package/dist-es/commands/CancelProfileUpdateTaskCommand.js +16 -0
  20. package/dist-es/commands/CreateConnectionInvitationCommand.js +16 -0
  21. package/dist-es/commands/CreatePartnerCommand.js +16 -0
  22. package/dist-es/commands/DisassociateAwsTrainingCertificationEmailDomainCommand.js +16 -0
  23. package/dist-es/commands/GetAllianceLeadContactCommand.js +16 -0
  24. package/dist-es/commands/GetConnectionCommand.js +16 -0
  25. package/dist-es/commands/GetConnectionInvitationCommand.js +16 -0
  26. package/dist-es/commands/GetConnectionPreferencesCommand.js +16 -0
  27. package/dist-es/commands/GetPartnerCommand.js +16 -0
  28. package/dist-es/commands/GetProfileUpdateTaskCommand.js +16 -0
  29. package/dist-es/commands/GetProfileVisibilityCommand.js +16 -0
  30. package/dist-es/commands/ListConnectionInvitationsCommand.js +16 -0
  31. package/dist-es/commands/ListConnectionsCommand.js +16 -0
  32. package/dist-es/commands/ListPartnersCommand.js +16 -0
  33. package/dist-es/commands/ListTagsForResourceCommand.js +16 -0
  34. package/dist-es/commands/PutAllianceLeadContactCommand.js +16 -0
  35. package/dist-es/commands/PutProfileVisibilityCommand.js +16 -0
  36. package/dist-es/commands/RejectConnectionInvitationCommand.js +16 -0
  37. package/dist-es/commands/SendEmailVerificationCodeCommand.js +16 -0
  38. package/dist-es/commands/StartProfileUpdateTaskCommand.js +16 -0
  39. package/dist-es/commands/TagResourceCommand.js +16 -0
  40. package/dist-es/commands/UntagResourceCommand.js +16 -0
  41. package/dist-es/commands/UpdateConnectionPreferencesCommand.js +16 -0
  42. package/dist-es/commands/index.js +27 -0
  43. package/dist-es/endpoint/EndpointParameters.js +11 -0
  44. package/dist-es/endpoint/endpointResolver.js +14 -0
  45. package/dist-es/endpoint/ruleset.js +4 -0
  46. package/dist-es/extensionConfiguration.js +1 -0
  47. package/dist-es/index.js +7 -0
  48. package/dist-es/models/PartnerCentralAccountServiceException.js +8 -0
  49. package/dist-es/models/enums.js +144 -0
  50. package/dist-es/models/errors.js +117 -0
  51. package/dist-es/models/models_0.js +1 -0
  52. package/dist-es/pagination/Interfaces.js +1 -0
  53. package/dist-es/pagination/ListConnectionInvitationsPaginator.js +4 -0
  54. package/dist-es/pagination/ListConnectionsPaginator.js +4 -0
  55. package/dist-es/pagination/ListPartnersPaginator.js +4 -0
  56. package/dist-es/pagination/index.js +4 -0
  57. package/dist-es/runtimeConfig.browser.js +34 -0
  58. package/dist-es/runtimeConfig.js +51 -0
  59. package/dist-es/runtimeConfig.native.js +11 -0
  60. package/dist-es/runtimeConfig.shared.js +37 -0
  61. package/dist-es/runtimeExtensions.js +9 -0
  62. package/dist-es/schemas/schemas_0.js +900 -0
  63. package/dist-types/PartnerCentralAccount.d.ts +199 -0
  64. package/dist-types/PartnerCentralAccountClient.d.ts +223 -0
  65. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  66. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  67. package/dist-types/commands/AcceptConnectionInvitationCommand.d.ts +123 -0
  68. package/dist-types/commands/AssociateAwsTrainingCertificationEmailDomainCommand.d.ts +94 -0
  69. package/dist-types/commands/CancelConnectionCommand.d.ts +123 -0
  70. package/dist-types/commands/CancelConnectionInvitationCommand.d.ts +107 -0
  71. package/dist-types/commands/CancelProfileUpdateTaskCommand.d.ts +128 -0
  72. package/dist-types/commands/CreateConnectionInvitationCommand.d.ts +111 -0
  73. package/dist-types/commands/CreatePartnerCommand.d.ts +142 -0
  74. package/dist-types/commands/DisassociateAwsTrainingCertificationEmailDomainCommand.d.ts +90 -0
  75. package/dist-types/commands/GetAllianceLeadContactCommand.d.ts +98 -0
  76. package/dist-types/commands/GetConnectionCommand.d.ts +117 -0
  77. package/dist-types/commands/GetConnectionInvitationCommand.d.ts +103 -0
  78. package/dist-types/commands/GetConnectionPreferencesCommand.d.ts +93 -0
  79. package/dist-types/commands/GetPartnerCommand.d.ts +121 -0
  80. package/dist-types/commands/GetProfileUpdateTaskCommand.d.ts +123 -0
  81. package/dist-types/commands/GetProfileVisibilityCommand.d.ts +94 -0
  82. package/dist-types/commands/ListConnectionInvitationsCommand.d.ts +109 -0
  83. package/dist-types/commands/ListConnectionsCommand.d.ts +119 -0
  84. package/dist-types/commands/ListPartnersCommand.d.ts +96 -0
  85. package/dist-types/commands/ListTagsForResourceCommand.d.ts +95 -0
  86. package/dist-types/commands/PutAllianceLeadContactCommand.d.ts +105 -0
  87. package/dist-types/commands/PutProfileVisibilityCommand.d.ts +95 -0
  88. package/dist-types/commands/RejectConnectionInvitationCommand.d.ts +108 -0
  89. package/dist-types/commands/SendEmailVerificationCodeCommand.d.ts +88 -0
  90. package/dist-types/commands/StartProfileUpdateTaskCommand.d.ts +147 -0
  91. package/dist-types/commands/TagResourceCommand.d.ts +96 -0
  92. package/dist-types/commands/UntagResourceCommand.d.ts +93 -0
  93. package/dist-types/commands/UpdateConnectionPreferencesCommand.d.ts +101 -0
  94. package/dist-types/commands/index.d.ts +27 -0
  95. package/dist-types/endpoint/EndpointParameters.d.ts +32 -0
  96. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  97. package/dist-types/endpoint/ruleset.d.ts +2 -0
  98. package/dist-types/extensionConfiguration.d.ts +9 -0
  99. package/dist-types/index.d.ts +16 -0
  100. package/dist-types/models/PartnerCentralAccountServiceException.d.ts +14 -0
  101. package/dist-types/models/enums.d.ts +280 -0
  102. package/dist-types/models/errors.d.ts +137 -0
  103. package/dist-types/models/models_0.d.ts +2083 -0
  104. package/dist-types/pagination/Interfaces.d.ts +8 -0
  105. package/dist-types/pagination/ListConnectionInvitationsPaginator.d.ts +7 -0
  106. package/dist-types/pagination/ListConnectionsPaginator.d.ts +7 -0
  107. package/dist-types/pagination/ListPartnersPaginator.d.ts +7 -0
  108. package/dist-types/pagination/index.d.ts +4 -0
  109. package/dist-types/runtimeConfig.browser.d.ts +51 -0
  110. package/dist-types/runtimeConfig.d.ts +51 -0
  111. package/dist-types/runtimeConfig.native.d.ts +50 -0
  112. package/dist-types/runtimeConfig.shared.d.ts +22 -0
  113. package/dist-types/runtimeExtensions.d.ts +17 -0
  114. package/dist-types/schemas/schemas_0.d.ts +126 -0
  115. package/dist-types/ts3.4/PartnerCentralAccount.d.ts +478 -0
  116. package/dist-types/ts3.4/PartnerCentralAccountClient.d.ts +288 -0
  117. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  118. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
  119. package/dist-types/ts3.4/commands/AcceptConnectionInvitationCommand.d.ts +51 -0
  120. package/dist-types/ts3.4/commands/AssociateAwsTrainingCertificationEmailDomainCommand.d.ts +51 -0
  121. package/dist-types/ts3.4/commands/CancelConnectionCommand.d.ts +50 -0
  122. package/dist-types/ts3.4/commands/CancelConnectionInvitationCommand.d.ts +51 -0
  123. package/dist-types/ts3.4/commands/CancelProfileUpdateTaskCommand.d.ts +51 -0
  124. package/dist-types/ts3.4/commands/CreateConnectionInvitationCommand.d.ts +51 -0
  125. package/dist-types/ts3.4/commands/CreatePartnerCommand.d.ts +50 -0
  126. package/dist-types/ts3.4/commands/DisassociateAwsTrainingCertificationEmailDomainCommand.d.ts +51 -0
  127. package/dist-types/ts3.4/commands/GetAllianceLeadContactCommand.d.ts +51 -0
  128. package/dist-types/ts3.4/commands/GetConnectionCommand.d.ts +50 -0
  129. package/dist-types/ts3.4/commands/GetConnectionInvitationCommand.d.ts +51 -0
  130. package/dist-types/ts3.4/commands/GetConnectionPreferencesCommand.d.ts +51 -0
  131. package/dist-types/ts3.4/commands/GetPartnerCommand.d.ts +47 -0
  132. package/dist-types/ts3.4/commands/GetProfileUpdateTaskCommand.d.ts +51 -0
  133. package/dist-types/ts3.4/commands/GetProfileVisibilityCommand.d.ts +51 -0
  134. package/dist-types/ts3.4/commands/ListConnectionInvitationsCommand.d.ts +51 -0
  135. package/dist-types/ts3.4/commands/ListConnectionsCommand.d.ts +50 -0
  136. package/dist-types/ts3.4/commands/ListPartnersCommand.d.ts +47 -0
  137. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  138. package/dist-types/ts3.4/commands/PutAllianceLeadContactCommand.d.ts +51 -0
  139. package/dist-types/ts3.4/commands/PutProfileVisibilityCommand.d.ts +51 -0
  140. package/dist-types/ts3.4/commands/RejectConnectionInvitationCommand.d.ts +51 -0
  141. package/dist-types/ts3.4/commands/SendEmailVerificationCodeCommand.d.ts +51 -0
  142. package/dist-types/ts3.4/commands/StartProfileUpdateTaskCommand.d.ts +51 -0
  143. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  144. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
  145. package/dist-types/ts3.4/commands/UpdateConnectionPreferencesCommand.d.ts +51 -0
  146. package/dist-types/ts3.4/commands/index.d.ts +27 -0
  147. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
  148. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  149. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  150. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  151. package/dist-types/ts3.4/index.d.ts +11 -0
  152. package/dist-types/ts3.4/models/PartnerCentralAccountServiceException.d.ts +9 -0
  153. package/dist-types/ts3.4/models/enums.d.ts +177 -0
  154. package/dist-types/ts3.4/models/errors.d.ts +74 -0
  155. package/dist-types/ts3.4/models/models_0.d.ts +544 -0
  156. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  157. package/dist-types/ts3.4/pagination/ListConnectionInvitationsPaginator.d.ts +11 -0
  158. package/dist-types/ts3.4/pagination/ListConnectionsPaginator.d.ts +11 -0
  159. package/dist-types/ts3.4/pagination/ListPartnersPaginator.d.ts +11 -0
  160. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  161. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +97 -0
  162. package/dist-types/ts3.4/runtimeConfig.d.ts +93 -0
  163. package/dist-types/ts3.4/runtimeConfig.native.d.ts +101 -0
  164. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +27 -0
  165. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  166. package/dist-types/ts3.4/schemas/schemas_0.d.ts +133 -0
  167. package/package.json +99 -0
@@ -0,0 +1,8 @@
1
+ import { PaginationConfiguration } from "@smithy/types";
2
+ import { PartnerCentralAccountClient } from "../PartnerCentralAccountClient";
3
+ /**
4
+ * @public
5
+ */
6
+ export interface PartnerCentralAccountPaginationConfiguration extends PaginationConfiguration {
7
+ client: PartnerCentralAccountClient;
8
+ }
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListConnectionInvitationsCommandInput, ListConnectionInvitationsCommandOutput } from "../commands/ListConnectionInvitationsCommand";
3
+ import { PartnerCentralAccountPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListConnectionInvitations: (config: PartnerCentralAccountPaginationConfiguration, input: ListConnectionInvitationsCommandInput, ...rest: any[]) => Paginator<ListConnectionInvitationsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListConnectionsCommandInput, ListConnectionsCommandOutput } from "../commands/ListConnectionsCommand";
3
+ import { PartnerCentralAccountPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListConnections: (config: PartnerCentralAccountPaginationConfiguration, input: ListConnectionsCommandInput, ...rest: any[]) => Paginator<ListConnectionsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListPartnersCommandInput, ListPartnersCommandOutput } from "../commands/ListPartnersCommand";
3
+ import { PartnerCentralAccountPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListPartners: (config: PartnerCentralAccountPaginationConfiguration, input: ListPartnersCommandInput, ...rest: any[]) => Paginator<ListPartnersCommandOutput>;
@@ -0,0 +1,4 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListConnectionInvitationsPaginator";
3
+ export * from "./ListConnectionsPaginator";
4
+ export * from "./ListPartnersPaginator";
@@ -0,0 +1,51 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { PartnerCentralAccountClientConfig } from "./PartnerCentralAccountClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: PartnerCentralAccountClientConfig) => {
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").PartnerCentralAccountHttpAuthSchemeProvider;
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?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
51
+ };
@@ -0,0 +1,51 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { PartnerCentralAccountClientConfig } from "./PartnerCentralAccountClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: PartnerCentralAccountClientConfig) => {
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
+ streamCollector: import("@smithy/types").StreamCollector;
19
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
22
+ apiVersion: string;
23
+ cacheMiddleware?: boolean | undefined;
24
+ urlParser: import("@smithy/types").UrlParser;
25
+ base64Decoder: import("@smithy/types").Decoder;
26
+ base64Encoder: (_input: Uint8Array | string) => string;
27
+ utf8Decoder: import("@smithy/types").Decoder;
28
+ utf8Encoder: (input: Uint8Array | string) => string;
29
+ disableHostPrefix: boolean;
30
+ serviceId: string;
31
+ profile?: string;
32
+ logger: import("@smithy/types").Logger;
33
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
34
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
35
+ customUserAgent?: string | import("@smithy/types").UserAgent;
36
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
37
+ 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;
38
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
39
+ logger?: import("@smithy/types").Logger;
40
+ }) => import("@smithy/types").EndpointV2;
41
+ tls?: boolean;
42
+ serviceConfiguredEndpoint?: never;
43
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
44
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").PartnerCentralAccountHttpAuthSchemeProvider;
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?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
51
+ };
@@ -0,0 +1,50 @@
1
+ import { PartnerCentralAccountClientConfig } from "./PartnerCentralAccountClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: PartnerCentralAccountClientConfig) => {
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").PartnerCentralAccountHttpAuthSchemeProvider;
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?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
50
+ };
@@ -0,0 +1,22 @@
1
+ import { PartnerCentralAccountClientConfig } from "./PartnerCentralAccountClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: PartnerCentralAccountClientConfig) => {
6
+ apiVersion: string;
7
+ base64Decoder: import("@smithy/types").Decoder;
8
+ base64Encoder: (_input: Uint8Array | string) => string;
9
+ disableHostPrefix: boolean;
10
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
11
+ logger?: import("@smithy/types").Logger;
12
+ }) => import("@smithy/types").EndpointV2;
13
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
14
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").PartnerCentralAccountHttpAuthSchemeProvider;
15
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
+ logger: import("@smithy/types").Logger;
17
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
18
+ serviceId: string;
19
+ urlParser: import("@smithy/types").UrlParser;
20
+ utf8Decoder: import("@smithy/types").Decoder;
21
+ utf8Encoder: (input: Uint8Array | string) => string;
22
+ };
@@ -0,0 +1,17 @@
1
+ import { PartnerCentralAccountExtensionConfiguration } from "./extensionConfiguration";
2
+ /**
3
+ * @public
4
+ */
5
+ export interface RuntimeExtension {
6
+ configure(extensionConfiguration: PartnerCentralAccountExtensionConfiguration): 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,126 @@
1
+ import { StaticErrorSchema, StaticListSchema, StaticMapSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types";
2
+ export declare var EmailVerificationCode: StaticSimpleSchema;
3
+ export declare var SensitiveUnicodeString: StaticSimpleSchema;
4
+ export declare var AcceptConnectionInvitationRequest: StaticStructureSchema;
5
+ export declare var AcceptConnectionInvitationResponse: StaticStructureSchema;
6
+ export declare var AccessDeniedException: StaticErrorSchema;
7
+ export declare var AccountSummary: StaticStructureSchema;
8
+ export declare var AllianceLeadContact: StaticStructureSchema;
9
+ export declare var AssociateAwsTrainingCertificationEmailDomainRequest: StaticStructureSchema;
10
+ export declare var AssociateAwsTrainingCertificationEmailDomainResponse: StaticStructureSchema;
11
+ export declare var BusinessValidationError: StaticStructureSchema;
12
+ export declare var CancelConnectionInvitationRequest: StaticStructureSchema;
13
+ export declare var CancelConnectionInvitationResponse: StaticStructureSchema;
14
+ export declare var CancelConnectionRequest: StaticStructureSchema;
15
+ export declare var CancelConnectionResponse: StaticStructureSchema;
16
+ export declare var CancelProfileUpdateTaskRequest: StaticStructureSchema;
17
+ export declare var CancelProfileUpdateTaskResponse: StaticStructureSchema;
18
+ export declare var ConflictException: StaticErrorSchema;
19
+ export declare var Connection: StaticStructureSchema;
20
+ export declare var ConnectionInvitationSummary: StaticStructureSchema;
21
+ export declare var ConnectionSummary: StaticStructureSchema;
22
+ export declare var ConnectionTypeDetail: StaticStructureSchema;
23
+ export declare var ConnectionTypeSummary: StaticStructureSchema;
24
+ export declare var CreateConnectionInvitationRequest: StaticStructureSchema;
25
+ export declare var CreateConnectionInvitationResponse: StaticStructureSchema;
26
+ export declare var CreatePartnerRequest: StaticStructureSchema;
27
+ export declare var CreatePartnerResponse: StaticStructureSchema;
28
+ export declare var DisassociateAwsTrainingCertificationEmailDomainRequest: StaticStructureSchema;
29
+ export declare var DisassociateAwsTrainingCertificationEmailDomainResponse: StaticStructureSchema;
30
+ export declare var ErrorDetail: StaticStructureSchema;
31
+ export declare var FieldValidationError: StaticStructureSchema;
32
+ export declare var GetAllianceLeadContactRequest: StaticStructureSchema;
33
+ export declare var GetAllianceLeadContactResponse: StaticStructureSchema;
34
+ export declare var GetConnectionInvitationRequest: StaticStructureSchema;
35
+ export declare var GetConnectionInvitationResponse: StaticStructureSchema;
36
+ export declare var GetConnectionPreferencesRequest: StaticStructureSchema;
37
+ export declare var GetConnectionPreferencesResponse: StaticStructureSchema;
38
+ export declare var GetConnectionRequest: StaticStructureSchema;
39
+ export declare var GetConnectionResponse: StaticStructureSchema;
40
+ export declare var GetPartnerRequest: StaticStructureSchema;
41
+ export declare var GetPartnerResponse: StaticStructureSchema;
42
+ export declare var GetProfileUpdateTaskRequest: StaticStructureSchema;
43
+ export declare var GetProfileUpdateTaskResponse: StaticStructureSchema;
44
+ export declare var GetProfileVisibilityRequest: StaticStructureSchema;
45
+ export declare var GetProfileVisibilityResponse: StaticStructureSchema;
46
+ export declare var InternalServerException: StaticErrorSchema;
47
+ export declare var ListConnectionInvitationsRequest: StaticStructureSchema;
48
+ export declare var ListConnectionInvitationsResponse: StaticStructureSchema;
49
+ export declare var ListConnectionsRequest: StaticStructureSchema;
50
+ export declare var ListConnectionsResponse: StaticStructureSchema;
51
+ export declare var ListPartnersRequest: StaticStructureSchema;
52
+ export declare var ListPartnersResponse: StaticStructureSchema;
53
+ export declare var ListTagsForResourceRequest: StaticStructureSchema;
54
+ export declare var ListTagsForResourceResponse: StaticStructureSchema;
55
+ export declare var LocalizedContent: StaticStructureSchema;
56
+ export declare var PartnerDomain: StaticStructureSchema;
57
+ export declare var PartnerProfile: StaticStructureSchema;
58
+ export declare var PartnerProfileSummary: StaticStructureSchema;
59
+ export declare var PartnerSummary: StaticStructureSchema;
60
+ export declare var PutAllianceLeadContactRequest: StaticStructureSchema;
61
+ export declare var PutAllianceLeadContactResponse: StaticStructureSchema;
62
+ export declare var PutProfileVisibilityRequest: StaticStructureSchema;
63
+ export declare var PutProfileVisibilityResponse: StaticStructureSchema;
64
+ export declare var RejectConnectionInvitationRequest: StaticStructureSchema;
65
+ export declare var RejectConnectionInvitationResponse: StaticStructureSchema;
66
+ export declare var ResourceNotFoundException: StaticErrorSchema;
67
+ export declare var SellerProfileSummary: StaticStructureSchema;
68
+ export declare var SendEmailVerificationCodeRequest: StaticStructureSchema;
69
+ export declare var SendEmailVerificationCodeResponse: StaticStructureSchema;
70
+ export declare var ServiceQuotaExceededException: StaticErrorSchema;
71
+ export declare var StartProfileUpdateTaskRequest: StaticStructureSchema;
72
+ export declare var StartProfileUpdateTaskResponse: StaticStructureSchema;
73
+ export declare var Tag: StaticStructureSchema;
74
+ export declare var TagResourceRequest: StaticStructureSchema;
75
+ export declare var TagResourceResponse: StaticStructureSchema;
76
+ export declare var TaskDetails: StaticStructureSchema;
77
+ export declare var ThrottlingException: StaticErrorSchema;
78
+ export declare var UntagResourceRequest: StaticStructureSchema;
79
+ export declare var UntagResourceResponse: StaticStructureSchema;
80
+ export declare var UpdateConnectionPreferencesRequest: StaticStructureSchema;
81
+ export declare var UpdateConnectionPreferencesResponse: StaticStructureSchema;
82
+ export declare var ValidationException: StaticErrorSchema;
83
+ export declare var __Unit: "unit";
84
+ export declare var PartnerCentralAccountServiceException: StaticErrorSchema;
85
+ export declare var ConnectionInvitationSummaryList: StaticListSchema;
86
+ export declare var ConnectionSummaryList: StaticListSchema;
87
+ export declare var ErrorDetailList: StaticListSchema;
88
+ export declare var IndustrySegmentList: number;
89
+ export declare var LocalizedContentList: StaticListSchema;
90
+ export declare var ParticipantIdentifierList: number;
91
+ export declare var PartnerDomainList: StaticListSchema;
92
+ export declare var PartnerSummaryList: StaticListSchema;
93
+ export declare var TagKeyList: number;
94
+ export declare var TagList: StaticListSchema;
95
+ export declare var ValidationErrorList: StaticListSchema;
96
+ export declare var ConnectionTypeDetailMap: StaticMapSchema;
97
+ export declare var ConnectionTypeSummaryMap: StaticMapSchema;
98
+ export declare var Participant: StaticStructureSchema;
99
+ export declare var ValidationError: StaticStructureSchema;
100
+ export declare var AcceptConnectionInvitation: StaticOperationSchema;
101
+ export declare var AssociateAwsTrainingCertificationEmailDomain: StaticOperationSchema;
102
+ export declare var CancelConnection: StaticOperationSchema;
103
+ export declare var CancelConnectionInvitation: StaticOperationSchema;
104
+ export declare var CancelProfileUpdateTask: StaticOperationSchema;
105
+ export declare var CreateConnectionInvitation: StaticOperationSchema;
106
+ export declare var CreatePartner: StaticOperationSchema;
107
+ export declare var DisassociateAwsTrainingCertificationEmailDomain: StaticOperationSchema;
108
+ export declare var GetAllianceLeadContact: StaticOperationSchema;
109
+ export declare var GetConnection: StaticOperationSchema;
110
+ export declare var GetConnectionInvitation: StaticOperationSchema;
111
+ export declare var GetConnectionPreferences: StaticOperationSchema;
112
+ export declare var GetPartner: StaticOperationSchema;
113
+ export declare var GetProfileUpdateTask: StaticOperationSchema;
114
+ export declare var GetProfileVisibility: StaticOperationSchema;
115
+ export declare var ListConnectionInvitations: StaticOperationSchema;
116
+ export declare var ListConnections: StaticOperationSchema;
117
+ export declare var ListPartners: StaticOperationSchema;
118
+ export declare var ListTagsForResource: StaticOperationSchema;
119
+ export declare var PutAllianceLeadContact: StaticOperationSchema;
120
+ export declare var PutProfileVisibility: StaticOperationSchema;
121
+ export declare var RejectConnectionInvitation: StaticOperationSchema;
122
+ export declare var SendEmailVerificationCode: StaticOperationSchema;
123
+ export declare var StartProfileUpdateTask: StaticOperationSchema;
124
+ export declare var TagResource: StaticOperationSchema;
125
+ export declare var UntagResource: StaticOperationSchema;
126
+ export declare var UpdateConnectionPreferences: StaticOperationSchema;