@aws-sdk/client-pricing-plan-manager 3.1099.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/README.md +244 -0
- package/dist-cjs/index.js +729 -0
- package/dist-es/PricingPlanManager.js +29 -0
- package/dist-es/PricingPlanManagerClient.js +47 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +40 -0
- package/dist-es/commandBuilder.js +6 -0
- package/dist-es/commands/ApprovePaidSubscriptionCommand.js +4 -0
- package/dist-es/commands/AssociateResourcesToSubscriptionCommand.js +4 -0
- package/dist-es/commands/CancelSubscriptionChangeCommand.js +4 -0
- package/dist-es/commands/CancelSubscriptionCommand.js +4 -0
- package/dist-es/commands/CreateSubscriptionCommand.js +4 -0
- package/dist-es/commands/DisassociateResourcesFromSubscriptionCommand.js +4 -0
- package/dist-es/commands/GetSubscriptionCommand.js +4 -0
- package/dist-es/commands/ListSubscriptionsCommand.js +4 -0
- package/dist-es/commands/UpdateSubscriptionCommand.js +4 -0
- package/dist-es/commands/index.js +9 -0
- package/dist-es/endpoint/EndpointParameters.js +9 -0
- package/dist-es/endpoint/bdd.js +19 -0
- package/dist-es/endpoint/endpointResolver.js +14 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +10 -0
- package/dist-es/models/PricingPlanManagerServiceException.js +8 -0
- package/dist-es/models/enums.js +14 -0
- package/dist-es/models/errors.js +91 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListSubscriptionsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/runtimeConfig.browser.js +29 -0
- package/dist-es/runtimeConfig.js +43 -0
- package/dist-es/runtimeConfig.native.js +9 -0
- package/dist-es/runtimeConfig.shared.js +40 -0
- package/dist-es/runtimeExtensions.js +9 -0
- package/dist-es/schemas/schemas_0.js +258 -0
- package/dist-types/PricingPlanManager.d.ts +81 -0
- package/dist-types/PricingPlanManagerClient.d.ts +195 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/dist-types/commandBuilder.d.ts +18 -0
- package/dist-types/commands/ApprovePaidSubscriptionCommand.d.ts +138 -0
- package/dist-types/commands/AssociateResourcesToSubscriptionCommand.d.ts +145 -0
- package/dist-types/commands/CancelSubscriptionChangeCommand.d.ts +138 -0
- package/dist-types/commands/CancelSubscriptionCommand.d.ts +142 -0
- package/dist-types/commands/CreateSubscriptionCommand.d.ts +184 -0
- package/dist-types/commands/DisassociateResourcesFromSubscriptionCommand.d.ts +144 -0
- package/dist-types/commands/GetSubscriptionCommand.d.ts +132 -0
- package/dist-types/commands/ListSubscriptionsCommand.d.ts +135 -0
- package/dist-types/commands/UpdateSubscriptionCommand.d.ts +144 -0
- package/dist-types/commands/index.d.ts +9 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +38 -0
- package/dist-types/endpoint/bdd.d.ts +2 -0
- package/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +18 -0
- package/dist-types/models/PricingPlanManagerServiceException.d.ts +14 -0
- package/dist-types/models/enums.d.ts +38 -0
- package/dist-types/models/errors.d.ts +101 -0
- package/dist-types/models/models_0.d.ts +474 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListSubscriptionsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +57 -0
- package/dist-types/runtimeConfig.d.ts +57 -0
- package/dist-types/runtimeConfig.native.d.ts +56 -0
- package/dist-types/runtimeConfig.shared.d.ts +28 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/schemas/schemas_0.d.ts +46 -0
- package/dist-types/ts3.4/PricingPlanManager.d.ts +172 -0
- package/dist-types/ts3.4/PricingPlanManagerClient.d.ts +157 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +25 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +43 -0
- package/dist-types/ts3.4/commandBuilder.d.ts +40 -0
- package/dist-types/ts3.4/commands/ApprovePaidSubscriptionCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/AssociateResourcesToSubscriptionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CancelSubscriptionChangeCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CancelSubscriptionCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateSubscriptionCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DisassociateResourcesFromSubscriptionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetSubscriptionCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListSubscriptionsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateSubscriptionCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +9 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +39 -0
- package/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +10 -0
- package/dist-types/ts3.4/index.d.ts +13 -0
- package/dist-types/ts3.4/models/PricingPlanManagerServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/enums.d.ts +17 -0
- package/dist-types/ts3.4/models/errors.d.ts +40 -0
- package/dist-types/ts3.4/models/models_0.d.ts +116 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
- package/dist-types/ts3.4/pagination/ListSubscriptionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +95 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +95 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +99 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +31 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +41 -0
- package/package.json +69 -0
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
|
+
import { PricingPlanManagerClientConfig } from "./PricingPlanManagerClient";
|
|
3
|
+
export declare const getRuntimeConfig: (config: PricingPlanManagerClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
6
|
+
import("@smithy/core/client").ResolvedDefaultsMode
|
|
7
|
+
>;
|
|
8
|
+
authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
|
|
9
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
+
credentialDefaultProvider:
|
|
11
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
12
|
+
| ((
|
|
13
|
+
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
|
|
14
|
+
) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
15
|
+
defaultUserAgentProvider: (
|
|
16
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
17
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
18
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
19
|
+
region: string | import("@smithy/types").Provider<string>;
|
|
20
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
21
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
22
|
+
streamCollector: (
|
|
23
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
24
|
+
) => Promise<Uint8Array>;
|
|
25
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
26
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
27
|
+
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
28
|
+
cacheMiddleware?: boolean | undefined;
|
|
29
|
+
protocol:
|
|
30
|
+
| import("@smithy/types").ClientProtocol<any, any>
|
|
31
|
+
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
32
|
+
| typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
33
|
+
protocolSettings: {
|
|
34
|
+
defaultNamespace?: string;
|
|
35
|
+
[setting: string]: unknown;
|
|
36
|
+
};
|
|
37
|
+
apiVersion: string;
|
|
38
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
39
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
40
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
41
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
42
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
43
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
44
|
+
disableHostPrefix: boolean;
|
|
45
|
+
serviceId: string;
|
|
46
|
+
profile?: string;
|
|
47
|
+
logger: import("@smithy/types").Logger;
|
|
48
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
49
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
50
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
51
|
+
endpoint?:
|
|
52
|
+
| ((
|
|
53
|
+
| string
|
|
54
|
+
| import("@smithy/types").Endpoint
|
|
55
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
56
|
+
| import("@smithy/types").EndpointV2
|
|
57
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
58
|
+
) &
|
|
59
|
+
(
|
|
60
|
+
| string
|
|
61
|
+
| import("@smithy/types").Provider<string>
|
|
62
|
+
| import("@smithy/types").Endpoint
|
|
63
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
64
|
+
| import("@smithy/types").EndpointV2
|
|
65
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
66
|
+
))
|
|
67
|
+
| undefined;
|
|
68
|
+
endpointProvider: (
|
|
69
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
70
|
+
context?: {
|
|
71
|
+
logger?: import("@smithy/types").Logger;
|
|
72
|
+
},
|
|
73
|
+
) => import("@smithy/types").EndpointV2;
|
|
74
|
+
tls?: boolean;
|
|
75
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
76
|
+
serviceConfiguredEndpoint?: never;
|
|
77
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
78
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").PricingPlanManagerHttpAuthSchemeProvider;
|
|
79
|
+
credentials?:
|
|
80
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
81
|
+
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
82
|
+
signer?:
|
|
83
|
+
| import("@smithy/types").RequestSigner
|
|
84
|
+
| ((
|
|
85
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
86
|
+
) => Promise<import("@smithy/types").RequestSigner>);
|
|
87
|
+
signingEscapePath?: boolean;
|
|
88
|
+
systemClockOffset?: number;
|
|
89
|
+
signingRegion?: string;
|
|
90
|
+
signerConstructor?: new (
|
|
91
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
92
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
93
|
+
) => import("@smithy/types").RequestSigner;
|
|
94
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
95
|
+
};
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import { PricingPlanManagerClientConfig } from "./PricingPlanManagerClient";
|
|
2
|
+
export declare const getRuntimeConfig: (config: PricingPlanManagerClientConfig) => {
|
|
3
|
+
runtime: string;
|
|
4
|
+
requestHandler:
|
|
5
|
+
| import("@smithy/types").NodeHttpHandlerOptions
|
|
6
|
+
| import("@smithy/types").FetchHttpHandlerOptions
|
|
7
|
+
| Record<string, unknown>
|
|
8
|
+
| import("@smithy/core/protocols").HttpHandler<any>
|
|
9
|
+
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
10
|
+
cacheMiddleware?: boolean;
|
|
11
|
+
protocol:
|
|
12
|
+
| import("@smithy/types").ClientProtocol<any, any>
|
|
13
|
+
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
14
|
+
| typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
15
|
+
protocolSettings: {
|
|
16
|
+
defaultNamespace?: string;
|
|
17
|
+
[setting: string]: unknown;
|
|
18
|
+
};
|
|
19
|
+
apiVersion: string;
|
|
20
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
21
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
22
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
23
|
+
streamCollector: (
|
|
24
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
25
|
+
) => Promise<Uint8Array>;
|
|
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
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
33
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
34
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
35
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
36
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
37
|
+
profile?: string;
|
|
38
|
+
defaultUserAgentProvider: (
|
|
39
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
40
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
41
|
+
credentialDefaultProvider:
|
|
42
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
43
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
44
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
45
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
46
|
+
logger: import("@smithy/types").Logger;
|
|
47
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
48
|
+
defaultsMode:
|
|
49
|
+
| import("@smithy/core/client").DefaultsMode
|
|
50
|
+
| import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
|
|
51
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
52
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
53
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
54
|
+
endpoint?:
|
|
55
|
+
| ((
|
|
56
|
+
| string
|
|
57
|
+
| import("@smithy/types").Endpoint
|
|
58
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
59
|
+
| import("@smithy/types").EndpointV2
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
61
|
+
) &
|
|
62
|
+
(
|
|
63
|
+
| string
|
|
64
|
+
| import("@smithy/types").Provider<string>
|
|
65
|
+
| import("@smithy/types").Endpoint
|
|
66
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
67
|
+
| import("@smithy/types").EndpointV2
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
69
|
+
))
|
|
70
|
+
| undefined;
|
|
71
|
+
endpointProvider: (
|
|
72
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
73
|
+
context?: {
|
|
74
|
+
logger?: import("@smithy/types").Logger;
|
|
75
|
+
},
|
|
76
|
+
) => import("@smithy/types").EndpointV2;
|
|
77
|
+
tls?: boolean;
|
|
78
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
79
|
+
serviceConfiguredEndpoint?: never;
|
|
80
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
81
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
82
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").PricingPlanManagerHttpAuthSchemeProvider;
|
|
83
|
+
credentials?:
|
|
84
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
85
|
+
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
86
|
+
signer?:
|
|
87
|
+
| import("@smithy/types").RequestSigner
|
|
88
|
+
| ((
|
|
89
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
90
|
+
) => Promise<import("@smithy/types").RequestSigner>);
|
|
91
|
+
signingEscapePath?: boolean;
|
|
92
|
+
systemClockOffset?: number;
|
|
93
|
+
signingRegion?: string;
|
|
94
|
+
signerConstructor?: new (
|
|
95
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
96
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
97
|
+
) => import("@smithy/types").RequestSigner;
|
|
98
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
99
|
+
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
|
|
2
|
+
import { PricingPlanManagerClientConfig } from "./PricingPlanManagerClient";
|
|
3
|
+
export declare const getRuntimeConfig: (config: PricingPlanManagerClientConfig) => {
|
|
4
|
+
apiVersion: string;
|
|
5
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
6
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
7
|
+
disableHostPrefix: boolean;
|
|
8
|
+
endpointProvider: (
|
|
9
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
10
|
+
context?: {
|
|
11
|
+
logger?: import("@smithy/types").Logger;
|
|
12
|
+
},
|
|
13
|
+
) => import("@smithy/types").EndpointV2;
|
|
14
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
15
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").PricingPlanManagerHttpAuthSchemeProvider;
|
|
16
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
17
|
+
logger: import("@smithy/types").Logger;
|
|
18
|
+
protocol:
|
|
19
|
+
| import("@smithy/types").ClientProtocol<any, any>
|
|
20
|
+
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
21
|
+
| typeof AwsRestJsonProtocol;
|
|
22
|
+
protocolSettings: {
|
|
23
|
+
[setting: string]: unknown;
|
|
24
|
+
defaultNamespace?: string;
|
|
25
|
+
};
|
|
26
|
+
serviceId: string;
|
|
27
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
28
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
29
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
30
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
31
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { PricingPlanManagerExtensionConfiguration } from "./extensionConfiguration";
|
|
2
|
+
export interface RuntimeExtension {
|
|
3
|
+
configure(extensionConfiguration: PricingPlanManagerExtensionConfiguration): void;
|
|
4
|
+
}
|
|
5
|
+
export interface RuntimeExtensionsConfig {
|
|
6
|
+
extensions: RuntimeExtension[];
|
|
7
|
+
}
|
|
8
|
+
export declare const resolveRuntimeExtensions: (
|
|
9
|
+
runtimeConfig: any,
|
|
10
|
+
extensions: RuntimeExtension[],
|
|
11
|
+
) => any;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
2
|
+
import { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
3
|
+
export declare var PricingPlanManagerServiceException$: StaticErrorSchema;
|
|
4
|
+
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
5
|
+
export declare var ConflictException$: StaticErrorSchema;
|
|
6
|
+
export declare var InternalServerException$: StaticErrorSchema;
|
|
7
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
8
|
+
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
9
|
+
export declare var ThrottlingException$: StaticErrorSchema;
|
|
10
|
+
export declare var ValidationException$: StaticErrorSchema;
|
|
11
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
12
|
+
export declare var ApprovePaidSubscriptionInput$: StaticStructureSchema;
|
|
13
|
+
export declare var ApprovePaidSubscriptionOutput$: StaticStructureSchema;
|
|
14
|
+
export declare var AssociateResourcesToSubscriptionInput$: StaticStructureSchema;
|
|
15
|
+
export declare var AssociateResourcesToSubscriptionOutput$: StaticStructureSchema;
|
|
16
|
+
export declare var CancelSubscriptionChangeInput$: StaticStructureSchema;
|
|
17
|
+
export declare var CancelSubscriptionChangeOutput$: StaticStructureSchema;
|
|
18
|
+
export declare var CancelSubscriptionInput$: StaticStructureSchema;
|
|
19
|
+
export declare var CancelSubscriptionOutput$: StaticStructureSchema;
|
|
20
|
+
export declare var CreateSubscriptionInput$: StaticStructureSchema;
|
|
21
|
+
export declare var CreateSubscriptionOutput$: StaticStructureSchema;
|
|
22
|
+
export declare var DisassociateResourcesFromSubscriptionInput$: StaticStructureSchema;
|
|
23
|
+
export declare var DisassociateResourcesFromSubscriptionOutput$: StaticStructureSchema;
|
|
24
|
+
export declare var GetSubscriptionInput$: StaticStructureSchema;
|
|
25
|
+
export declare var GetSubscriptionOutput$: StaticStructureSchema;
|
|
26
|
+
export declare var ListSubscriptionsInput$: StaticStructureSchema;
|
|
27
|
+
export declare var ListSubscriptionsOutput$: StaticStructureSchema;
|
|
28
|
+
export declare var ScheduledChange$: StaticStructureSchema;
|
|
29
|
+
export declare var Subscription$: StaticStructureSchema;
|
|
30
|
+
export declare var SubscriptionSummary$: StaticStructureSchema;
|
|
31
|
+
export declare var UpdateSubscriptionInput$: StaticStructureSchema;
|
|
32
|
+
export declare var UpdateSubscriptionOutput$: StaticStructureSchema;
|
|
33
|
+
export declare var ApprovePaidSubscription$: StaticOperationSchema;
|
|
34
|
+
export declare var AssociateResourcesToSubscription$: StaticOperationSchema;
|
|
35
|
+
export declare var CancelSubscription$: StaticOperationSchema;
|
|
36
|
+
export declare var CancelSubscriptionChange$: StaticOperationSchema;
|
|
37
|
+
export declare var CreateSubscription$: StaticOperationSchema;
|
|
38
|
+
export declare var DisassociateResourcesFromSubscription$: StaticOperationSchema;
|
|
39
|
+
export declare var GetSubscription$: StaticOperationSchema;
|
|
40
|
+
export declare var ListSubscriptions$: StaticOperationSchema;
|
|
41
|
+
export declare var UpdateSubscription$: StaticOperationSchema;
|
package/package.json
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@aws-sdk/client-pricing-plan-manager",
|
|
3
|
+
"version": "3.1099.0",
|
|
4
|
+
"description": "AWS SDK for JavaScript Pricing Plan Manager Client for Node.js, Browser and React Native",
|
|
5
|
+
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-pricing-plan-manager",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"author": {
|
|
8
|
+
"name": "AWS SDK for JavaScript Team",
|
|
9
|
+
"url": "https://aws.amazon.com/sdk-for-javascript/"
|
|
10
|
+
},
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "https://github.com/aws/aws-sdk-js-v3.git",
|
|
14
|
+
"directory": "clients/client-pricing-plan-manager"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist-*/**"
|
|
18
|
+
],
|
|
19
|
+
"sideEffects": false,
|
|
20
|
+
"main": "./dist-cjs/index.js",
|
|
21
|
+
"module": "./dist-es/index.js",
|
|
22
|
+
"browser": {
|
|
23
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
|
|
24
|
+
},
|
|
25
|
+
"types": "./dist-types/index.d.ts",
|
|
26
|
+
"typesVersions": {
|
|
27
|
+
"<4.5": {
|
|
28
|
+
"dist-types/*": [
|
|
29
|
+
"dist-types/ts3.4/*"
|
|
30
|
+
]
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"react-native": {
|
|
34
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
|
|
35
|
+
},
|
|
36
|
+
"scripts": {
|
|
37
|
+
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
38
|
+
"build:cjs": "node ../../scripts/compilation/inline",
|
|
39
|
+
"build:es": "premove dist-es && tsc -p tsconfig.es.json",
|
|
40
|
+
"build:include:deps": "yarn g:turbo run build -F=\"$npm_package_name\"",
|
|
41
|
+
"build:types": "premove dist-types && tsc -p tsconfig.types.json",
|
|
42
|
+
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
43
|
+
"clean": "premove dist-cjs dist-es dist-types",
|
|
44
|
+
"extract:docs": "api-extractor run --local",
|
|
45
|
+
"generate:client": "node ../../scripts/generate-clients/single-service",
|
|
46
|
+
"test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
|
|
47
|
+
},
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"@aws-sdk/core": "^3.977.3",
|
|
50
|
+
"@aws-sdk/credential-provider-node": "^3.972.75",
|
|
51
|
+
"@aws-sdk/types": "^3.974.2",
|
|
52
|
+
"@smithy/core": "^3.31.1",
|
|
53
|
+
"@smithy/fetch-http-handler": "^5.6.13",
|
|
54
|
+
"@smithy/node-http-handler": "^4.9.13",
|
|
55
|
+
"@smithy/types": "^4.16.1",
|
|
56
|
+
"tslib": "^2.6.2"
|
|
57
|
+
},
|
|
58
|
+
"devDependencies": {
|
|
59
|
+
"@tsconfig/node20": "20.1.8",
|
|
60
|
+
"@types/node": "^20.14.8",
|
|
61
|
+
"concurrently": "7.0.0",
|
|
62
|
+
"downlevel-dts": "0.10.1",
|
|
63
|
+
"premove": "4.0.0",
|
|
64
|
+
"typescript": "~5.8.3"
|
|
65
|
+
},
|
|
66
|
+
"engines": {
|
|
67
|
+
"node": ">=20.0.0"
|
|
68
|
+
}
|
|
69
|
+
}
|