@aws-sdk/client-simspaceweaver 3.220.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 +216 -0
- package/dist-cjs/SimSpaceWeaver.js +232 -0
- package/dist-cjs/SimSpaceWeaverClient.js +40 -0
- package/dist-cjs/commands/DeleteAppCommand.js +46 -0
- package/dist-cjs/commands/DeleteSimulationCommand.js +46 -0
- package/dist-cjs/commands/DescribeAppCommand.js +46 -0
- package/dist-cjs/commands/DescribeSimulationCommand.js +46 -0
- package/dist-cjs/commands/ListAppsCommand.js +46 -0
- package/dist-cjs/commands/ListSimulationsCommand.js +46 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
- package/dist-cjs/commands/StartAppCommand.js +46 -0
- package/dist-cjs/commands/StartClockCommand.js +46 -0
- package/dist-cjs/commands/StartSimulationCommand.js +46 -0
- package/dist-cjs/commands/StopAppCommand.js +46 -0
- package/dist-cjs/commands/StopClockCommand.js +46 -0
- package/dist-cjs/commands/StopSimulationCommand.js +46 -0
- package/dist-cjs/commands/TagResourceCommand.js +46 -0
- package/dist-cjs/commands/UntagResourceCommand.js +46 -0
- package/dist-cjs/commands/index.js +18 -0
- package/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +312 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/SimSpaceWeaverServiceException.js +11 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +328 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListAppsPaginator.js +36 -0
- package/dist-cjs/pagination/ListSimulationsPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +6 -0
- package/dist-cjs/protocols/Aws_restJson1.js +1384 -0
- package/dist-cjs/runtimeConfig.browser.js +42 -0
- package/dist-cjs/runtimeConfig.js +50 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +18 -0
- package/dist-es/SimSpaceWeaver.js +228 -0
- package/dist-es/SimSpaceWeaverClient.js +36 -0
- package/dist-es/commands/DeleteAppCommand.js +42 -0
- package/dist-es/commands/DeleteSimulationCommand.js +42 -0
- package/dist-es/commands/DescribeAppCommand.js +42 -0
- package/dist-es/commands/DescribeSimulationCommand.js +42 -0
- package/dist-es/commands/ListAppsCommand.js +42 -0
- package/dist-es/commands/ListSimulationsCommand.js +42 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +42 -0
- package/dist-es/commands/StartAppCommand.js +42 -0
- package/dist-es/commands/StartClockCommand.js +42 -0
- package/dist-es/commands/StartSimulationCommand.js +42 -0
- package/dist-es/commands/StopAppCommand.js +42 -0
- package/dist-es/commands/StopClockCommand.js +42 -0
- package/dist-es/commands/StopSimulationCommand.js +42 -0
- package/dist-es/commands/TagResourceCommand.js +42 -0
- package/dist-es/commands/UntagResourceCommand.js +42 -0
- package/dist-es/commands/index.js +15 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +309 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/SimSpaceWeaverServiceException.js +7 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +275 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListAppsPaginator.js +32 -0
- package/dist-es/pagination/ListSimulationsPaginator.js +32 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +1351 -0
- package/dist-es/runtimeConfig.browser.js +37 -0
- package/dist-es/runtimeConfig.js +45 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +14 -0
- package/dist-types/SimSpaceWeaver.d.ts +134 -0
- package/dist-types/SimSpaceWeaverClient.d.ts +167 -0
- package/dist-types/commands/DeleteAppCommand.d.ts +37 -0
- package/dist-types/commands/DeleteSimulationCommand.d.ts +41 -0
- package/dist-types/commands/DescribeAppCommand.d.ts +37 -0
- package/dist-types/commands/DescribeSimulationCommand.d.ts +37 -0
- package/dist-types/commands/ListAppsCommand.d.ts +37 -0
- package/dist-types/commands/ListSimulationsCommand.d.ts +37 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +37 -0
- package/dist-types/commands/StartAppCommand.d.ts +37 -0
- package/dist-types/commands/StartClockCommand.d.ts +37 -0
- package/dist-types/commands/StartSimulationCommand.d.ts +37 -0
- package/dist-types/commands/StopAppCommand.d.ts +37 -0
- package/dist-types/commands/StopClockCommand.d.ts +37 -0
- package/dist-types/commands/StopSimulationCommand.d.ts +42 -0
- package/dist-types/commands/TagResourceCommand.d.ts +38 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +38 -0
- package/dist-types/commands/index.d.ts +15 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/index.d.ts +6 -0
- package/dist-types/models/SimSpaceWeaverServiceException.d.ts +10 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +911 -0
- package/dist-types/pagination/Interfaces.d.ts +6 -0
- package/dist-types/pagination/ListAppsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListSimulationsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +47 -0
- package/dist-types/runtimeConfig.browser.d.ts +42 -0
- package/dist-types/runtimeConfig.d.ts +42 -0
- package/dist-types/runtimeConfig.native.d.ts +41 -0
- package/dist-types/runtimeConfig.shared.d.ts +16 -0
- package/dist-types/ts3.4/SimSpaceWeaver.d.ts +259 -0
- package/dist-types/ts3.4/SimSpaceWeaverClient.d.ts +202 -0
- package/dist-types/ts3.4/commands/DeleteAppCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/DeleteSimulationCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/DescribeAppCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/DescribeSimulationCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListAppsCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/ListSimulationsCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/StartAppCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/StartClockCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/StartSimulationCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/StopAppCommand.d.ts +32 -0
- package/dist-types/ts3.4/commands/StopClockCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/StopSimulationCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/index.d.ts +15 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/SimSpaceWeaverServiceException.d.ts +7 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +395 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -0
- package/dist-types/ts3.4/pagination/ListAppsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSimulationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +185 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +88 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +88 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +77 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +16 -0
- package/package.json +103 -0
|
@@ -0,0 +1,185 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@aws-sdk/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
6
|
+
import {
|
|
7
|
+
DeleteAppCommandInput,
|
|
8
|
+
DeleteAppCommandOutput,
|
|
9
|
+
} from "../commands/DeleteAppCommand";
|
|
10
|
+
import {
|
|
11
|
+
DeleteSimulationCommandInput,
|
|
12
|
+
DeleteSimulationCommandOutput,
|
|
13
|
+
} from "../commands/DeleteSimulationCommand";
|
|
14
|
+
import {
|
|
15
|
+
DescribeAppCommandInput,
|
|
16
|
+
DescribeAppCommandOutput,
|
|
17
|
+
} from "../commands/DescribeAppCommand";
|
|
18
|
+
import {
|
|
19
|
+
DescribeSimulationCommandInput,
|
|
20
|
+
DescribeSimulationCommandOutput,
|
|
21
|
+
} from "../commands/DescribeSimulationCommand";
|
|
22
|
+
import {
|
|
23
|
+
ListAppsCommandInput,
|
|
24
|
+
ListAppsCommandOutput,
|
|
25
|
+
} from "../commands/ListAppsCommand";
|
|
26
|
+
import {
|
|
27
|
+
ListSimulationsCommandInput,
|
|
28
|
+
ListSimulationsCommandOutput,
|
|
29
|
+
} from "../commands/ListSimulationsCommand";
|
|
30
|
+
import {
|
|
31
|
+
ListTagsForResourceCommandInput,
|
|
32
|
+
ListTagsForResourceCommandOutput,
|
|
33
|
+
} from "../commands/ListTagsForResourceCommand";
|
|
34
|
+
import {
|
|
35
|
+
StartAppCommandInput,
|
|
36
|
+
StartAppCommandOutput,
|
|
37
|
+
} from "../commands/StartAppCommand";
|
|
38
|
+
import {
|
|
39
|
+
StartClockCommandInput,
|
|
40
|
+
StartClockCommandOutput,
|
|
41
|
+
} from "../commands/StartClockCommand";
|
|
42
|
+
import {
|
|
43
|
+
StartSimulationCommandInput,
|
|
44
|
+
StartSimulationCommandOutput,
|
|
45
|
+
} from "../commands/StartSimulationCommand";
|
|
46
|
+
import {
|
|
47
|
+
StopAppCommandInput,
|
|
48
|
+
StopAppCommandOutput,
|
|
49
|
+
} from "../commands/StopAppCommand";
|
|
50
|
+
import {
|
|
51
|
+
StopClockCommandInput,
|
|
52
|
+
StopClockCommandOutput,
|
|
53
|
+
} from "../commands/StopClockCommand";
|
|
54
|
+
import {
|
|
55
|
+
StopSimulationCommandInput,
|
|
56
|
+
StopSimulationCommandOutput,
|
|
57
|
+
} from "../commands/StopSimulationCommand";
|
|
58
|
+
import {
|
|
59
|
+
TagResourceCommandInput,
|
|
60
|
+
TagResourceCommandOutput,
|
|
61
|
+
} from "../commands/TagResourceCommand";
|
|
62
|
+
import {
|
|
63
|
+
UntagResourceCommandInput,
|
|
64
|
+
UntagResourceCommandOutput,
|
|
65
|
+
} from "../commands/UntagResourceCommand";
|
|
66
|
+
export declare const serializeAws_restJson1DeleteAppCommand: (
|
|
67
|
+
input: DeleteAppCommandInput,
|
|
68
|
+
context: __SerdeContext
|
|
69
|
+
) => Promise<__HttpRequest>;
|
|
70
|
+
export declare const serializeAws_restJson1DeleteSimulationCommand: (
|
|
71
|
+
input: DeleteSimulationCommandInput,
|
|
72
|
+
context: __SerdeContext
|
|
73
|
+
) => Promise<__HttpRequest>;
|
|
74
|
+
export declare const serializeAws_restJson1DescribeAppCommand: (
|
|
75
|
+
input: DescribeAppCommandInput,
|
|
76
|
+
context: __SerdeContext
|
|
77
|
+
) => Promise<__HttpRequest>;
|
|
78
|
+
export declare const serializeAws_restJson1DescribeSimulationCommand: (
|
|
79
|
+
input: DescribeSimulationCommandInput,
|
|
80
|
+
context: __SerdeContext
|
|
81
|
+
) => Promise<__HttpRequest>;
|
|
82
|
+
export declare const serializeAws_restJson1ListAppsCommand: (
|
|
83
|
+
input: ListAppsCommandInput,
|
|
84
|
+
context: __SerdeContext
|
|
85
|
+
) => Promise<__HttpRequest>;
|
|
86
|
+
export declare const serializeAws_restJson1ListSimulationsCommand: (
|
|
87
|
+
input: ListSimulationsCommandInput,
|
|
88
|
+
context: __SerdeContext
|
|
89
|
+
) => Promise<__HttpRequest>;
|
|
90
|
+
export declare const serializeAws_restJson1ListTagsForResourceCommand: (
|
|
91
|
+
input: ListTagsForResourceCommandInput,
|
|
92
|
+
context: __SerdeContext
|
|
93
|
+
) => Promise<__HttpRequest>;
|
|
94
|
+
export declare const serializeAws_restJson1StartAppCommand: (
|
|
95
|
+
input: StartAppCommandInput,
|
|
96
|
+
context: __SerdeContext
|
|
97
|
+
) => Promise<__HttpRequest>;
|
|
98
|
+
export declare const serializeAws_restJson1StartClockCommand: (
|
|
99
|
+
input: StartClockCommandInput,
|
|
100
|
+
context: __SerdeContext
|
|
101
|
+
) => Promise<__HttpRequest>;
|
|
102
|
+
export declare const serializeAws_restJson1StartSimulationCommand: (
|
|
103
|
+
input: StartSimulationCommandInput,
|
|
104
|
+
context: __SerdeContext
|
|
105
|
+
) => Promise<__HttpRequest>;
|
|
106
|
+
export declare const serializeAws_restJson1StopAppCommand: (
|
|
107
|
+
input: StopAppCommandInput,
|
|
108
|
+
context: __SerdeContext
|
|
109
|
+
) => Promise<__HttpRequest>;
|
|
110
|
+
export declare const serializeAws_restJson1StopClockCommand: (
|
|
111
|
+
input: StopClockCommandInput,
|
|
112
|
+
context: __SerdeContext
|
|
113
|
+
) => Promise<__HttpRequest>;
|
|
114
|
+
export declare const serializeAws_restJson1StopSimulationCommand: (
|
|
115
|
+
input: StopSimulationCommandInput,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<__HttpRequest>;
|
|
118
|
+
export declare const serializeAws_restJson1TagResourceCommand: (
|
|
119
|
+
input: TagResourceCommandInput,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<__HttpRequest>;
|
|
122
|
+
export declare const serializeAws_restJson1UntagResourceCommand: (
|
|
123
|
+
input: UntagResourceCommandInput,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<__HttpRequest>;
|
|
126
|
+
export declare const deserializeAws_restJson1DeleteAppCommand: (
|
|
127
|
+
output: __HttpResponse,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<DeleteAppCommandOutput>;
|
|
130
|
+
export declare const deserializeAws_restJson1DeleteSimulationCommand: (
|
|
131
|
+
output: __HttpResponse,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<DeleteSimulationCommandOutput>;
|
|
134
|
+
export declare const deserializeAws_restJson1DescribeAppCommand: (
|
|
135
|
+
output: __HttpResponse,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<DescribeAppCommandOutput>;
|
|
138
|
+
export declare const deserializeAws_restJson1DescribeSimulationCommand: (
|
|
139
|
+
output: __HttpResponse,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<DescribeSimulationCommandOutput>;
|
|
142
|
+
export declare const deserializeAws_restJson1ListAppsCommand: (
|
|
143
|
+
output: __HttpResponse,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<ListAppsCommandOutput>;
|
|
146
|
+
export declare const deserializeAws_restJson1ListSimulationsCommand: (
|
|
147
|
+
output: __HttpResponse,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<ListSimulationsCommandOutput>;
|
|
150
|
+
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
|
|
151
|
+
output: __HttpResponse,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<ListTagsForResourceCommandOutput>;
|
|
154
|
+
export declare const deserializeAws_restJson1StartAppCommand: (
|
|
155
|
+
output: __HttpResponse,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<StartAppCommandOutput>;
|
|
158
|
+
export declare const deserializeAws_restJson1StartClockCommand: (
|
|
159
|
+
output: __HttpResponse,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<StartClockCommandOutput>;
|
|
162
|
+
export declare const deserializeAws_restJson1StartSimulationCommand: (
|
|
163
|
+
output: __HttpResponse,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<StartSimulationCommandOutput>;
|
|
166
|
+
export declare const deserializeAws_restJson1StopAppCommand: (
|
|
167
|
+
output: __HttpResponse,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<StopAppCommandOutput>;
|
|
170
|
+
export declare const deserializeAws_restJson1StopClockCommand: (
|
|
171
|
+
output: __HttpResponse,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<StopClockCommandOutput>;
|
|
174
|
+
export declare const deserializeAws_restJson1StopSimulationCommand: (
|
|
175
|
+
output: __HttpResponse,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<StopSimulationCommandOutput>;
|
|
178
|
+
export declare const deserializeAws_restJson1TagResourceCommand: (
|
|
179
|
+
output: __HttpResponse,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<TagResourceCommandOutput>;
|
|
182
|
+
export declare const deserializeAws_restJson1UntagResourceCommand: (
|
|
183
|
+
output: __HttpResponse,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<UntagResourceCommandOutput>;
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { SimSpaceWeaverClientConfig } from "./SimSpaceWeaverClient";
|
|
3
|
+
export declare const getRuntimeConfig: (config: SimSpaceWeaverClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
6
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
7
|
+
>;
|
|
8
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
9
|
+
credentialDefaultProvider: (
|
|
10
|
+
input: any
|
|
11
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
12
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
13
|
+
import("@aws-sdk/types").UserAgent
|
|
14
|
+
>;
|
|
15
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
16
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
17
|
+
requestHandler:
|
|
18
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
19
|
+
any,
|
|
20
|
+
any,
|
|
21
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
22
|
+
> &
|
|
23
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
24
|
+
| RequestHandler;
|
|
25
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
26
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
27
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
28
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
29
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
30
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
31
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
32
|
+
apiVersion: string;
|
|
33
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
34
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
35
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
36
|
+
disableHostPrefix: boolean;
|
|
37
|
+
logger: import("@aws-sdk/types").Logger;
|
|
38
|
+
serviceId: string;
|
|
39
|
+
endpoint?:
|
|
40
|
+
| ((
|
|
41
|
+
| string
|
|
42
|
+
| import("@aws-sdk/types").Endpoint
|
|
43
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
44
|
+
| import("@aws-sdk/types").EndpointV2
|
|
45
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>
|
|
46
|
+
) &
|
|
47
|
+
(
|
|
48
|
+
| string
|
|
49
|
+
| import("@aws-sdk/types").Provider<string>
|
|
50
|
+
| import("@aws-sdk/types").Endpoint
|
|
51
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
52
|
+
| import("@aws-sdk/types").EndpointV2
|
|
53
|
+
| import("@aws-sdk/types").Provider<
|
|
54
|
+
import("@aws-sdk/types").EndpointV2
|
|
55
|
+
>
|
|
56
|
+
))
|
|
57
|
+
| undefined;
|
|
58
|
+
endpointProvider: (
|
|
59
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
60
|
+
context?: {
|
|
61
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
62
|
+
}
|
|
63
|
+
) => import("@aws-sdk/types").EndpointV2;
|
|
64
|
+
tls?: boolean | undefined;
|
|
65
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
66
|
+
credentials?:
|
|
67
|
+
| import("@aws-sdk/types").AwsCredentialIdentity
|
|
68
|
+
| import("@aws-sdk/types").Provider<
|
|
69
|
+
import("@aws-sdk/types").AwsCredentialIdentity
|
|
70
|
+
>
|
|
71
|
+
| undefined;
|
|
72
|
+
signer?:
|
|
73
|
+
| import("@aws-sdk/types").RequestSigner
|
|
74
|
+
| ((
|
|
75
|
+
authScheme?: import("@aws-sdk/types").AuthScheme | undefined
|
|
76
|
+
) => Promise<import("@aws-sdk/types").RequestSigner>)
|
|
77
|
+
| undefined;
|
|
78
|
+
signingEscapePath?: boolean | undefined;
|
|
79
|
+
systemClockOffset?: number | undefined;
|
|
80
|
+
signingRegion?: string | undefined;
|
|
81
|
+
signerConstructor?:
|
|
82
|
+
| (new (
|
|
83
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
84
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
85
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
86
|
+
| undefined;
|
|
87
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
88
|
+
};
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { SimSpaceWeaverClientConfig } from "./SimSpaceWeaverClient";
|
|
3
|
+
export declare const getRuntimeConfig: (config: SimSpaceWeaverClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
6
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
7
|
+
>;
|
|
8
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
9
|
+
credentialDefaultProvider: (
|
|
10
|
+
input: any
|
|
11
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
12
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
13
|
+
import("@aws-sdk/types").UserAgent
|
|
14
|
+
>;
|
|
15
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
16
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
17
|
+
requestHandler:
|
|
18
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
19
|
+
any,
|
|
20
|
+
any,
|
|
21
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
22
|
+
> &
|
|
23
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
24
|
+
| RequestHandler;
|
|
25
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
26
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
27
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
28
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
29
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
30
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
31
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
32
|
+
apiVersion: string;
|
|
33
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
34
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
35
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
36
|
+
disableHostPrefix: boolean;
|
|
37
|
+
logger: import("@aws-sdk/types").Logger;
|
|
38
|
+
serviceId: string;
|
|
39
|
+
endpoint?:
|
|
40
|
+
| ((
|
|
41
|
+
| string
|
|
42
|
+
| import("@aws-sdk/types").Endpoint
|
|
43
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
44
|
+
| import("@aws-sdk/types").EndpointV2
|
|
45
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>
|
|
46
|
+
) &
|
|
47
|
+
(
|
|
48
|
+
| string
|
|
49
|
+
| import("@aws-sdk/types").Provider<string>
|
|
50
|
+
| import("@aws-sdk/types").Endpoint
|
|
51
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
52
|
+
| import("@aws-sdk/types").EndpointV2
|
|
53
|
+
| import("@aws-sdk/types").Provider<
|
|
54
|
+
import("@aws-sdk/types").EndpointV2
|
|
55
|
+
>
|
|
56
|
+
))
|
|
57
|
+
| undefined;
|
|
58
|
+
endpointProvider: (
|
|
59
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
60
|
+
context?: {
|
|
61
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
62
|
+
}
|
|
63
|
+
) => import("@aws-sdk/types").EndpointV2;
|
|
64
|
+
tls?: boolean | undefined;
|
|
65
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
66
|
+
credentials?:
|
|
67
|
+
| import("@aws-sdk/types").AwsCredentialIdentity
|
|
68
|
+
| import("@aws-sdk/types").Provider<
|
|
69
|
+
import("@aws-sdk/types").AwsCredentialIdentity
|
|
70
|
+
>
|
|
71
|
+
| undefined;
|
|
72
|
+
signer?:
|
|
73
|
+
| import("@aws-sdk/types").RequestSigner
|
|
74
|
+
| ((
|
|
75
|
+
authScheme?: import("@aws-sdk/types").AuthScheme | undefined
|
|
76
|
+
) => Promise<import("@aws-sdk/types").RequestSigner>)
|
|
77
|
+
| undefined;
|
|
78
|
+
signingEscapePath?: boolean | undefined;
|
|
79
|
+
systemClockOffset?: number | undefined;
|
|
80
|
+
signingRegion?: string | undefined;
|
|
81
|
+
signerConstructor?:
|
|
82
|
+
| (new (
|
|
83
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
84
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
85
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
86
|
+
| undefined;
|
|
87
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
88
|
+
};
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import { SimSpaceWeaverClientConfig } from "./SimSpaceWeaverClient";
|
|
2
|
+
export declare const getRuntimeConfig: (config: SimSpaceWeaverClientConfig) => {
|
|
3
|
+
runtime: string;
|
|
4
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
5
|
+
requestHandler:
|
|
6
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
7
|
+
any,
|
|
8
|
+
any,
|
|
9
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
10
|
+
> &
|
|
11
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
12
|
+
| import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
13
|
+
apiVersion: string;
|
|
14
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
15
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
16
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
17
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
18
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
19
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
20
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
21
|
+
disableHostPrefix: boolean;
|
|
22
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
23
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
24
|
+
logger: import("@aws-sdk/types").Logger;
|
|
25
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
26
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
27
|
+
serviceId: string;
|
|
28
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
29
|
+
credentialDefaultProvider: (
|
|
30
|
+
input: any
|
|
31
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
32
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
33
|
+
import("@aws-sdk/types").UserAgent
|
|
34
|
+
>;
|
|
35
|
+
defaultsMode:
|
|
36
|
+
| import("@aws-sdk/smithy-client").DefaultsMode
|
|
37
|
+
| import("@aws-sdk/types").Provider<
|
|
38
|
+
import("@aws-sdk/smithy-client").DefaultsMode
|
|
39
|
+
>;
|
|
40
|
+
endpoint?:
|
|
41
|
+
| string
|
|
42
|
+
| import("@aws-sdk/types").Endpoint
|
|
43
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
44
|
+
| import("@aws-sdk/types").EndpointV2
|
|
45
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>
|
|
46
|
+
| undefined;
|
|
47
|
+
endpointProvider: (
|
|
48
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
49
|
+
context?: {
|
|
50
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
51
|
+
}
|
|
52
|
+
) => import("@aws-sdk/types").EndpointV2;
|
|
53
|
+
tls?: boolean | undefined;
|
|
54
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
55
|
+
credentials?:
|
|
56
|
+
| import("@aws-sdk/types").AwsCredentialIdentity
|
|
57
|
+
| import("@aws-sdk/types").Provider<
|
|
58
|
+
import("@aws-sdk/types").AwsCredentialIdentity
|
|
59
|
+
>
|
|
60
|
+
| undefined;
|
|
61
|
+
signer?:
|
|
62
|
+
| import("@aws-sdk/types").RequestSigner
|
|
63
|
+
| ((
|
|
64
|
+
authScheme?: import("@aws-sdk/types").AuthScheme | undefined
|
|
65
|
+
) => Promise<import("@aws-sdk/types").RequestSigner>)
|
|
66
|
+
| undefined;
|
|
67
|
+
signingEscapePath?: boolean | undefined;
|
|
68
|
+
systemClockOffset?: number | undefined;
|
|
69
|
+
signingRegion?: string | undefined;
|
|
70
|
+
signerConstructor?:
|
|
71
|
+
| (new (
|
|
72
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
73
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
74
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
75
|
+
| undefined;
|
|
76
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
77
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { SimSpaceWeaverClientConfig } from "./SimSpaceWeaverClient";
|
|
2
|
+
export declare const getRuntimeConfig: (config: SimSpaceWeaverClientConfig) => {
|
|
3
|
+
apiVersion: string;
|
|
4
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
5
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
6
|
+
disableHostPrefix: boolean;
|
|
7
|
+
endpointProvider: (
|
|
8
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
9
|
+
context?: {
|
|
10
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
11
|
+
}
|
|
12
|
+
) => import("@aws-sdk/types").EndpointV2;
|
|
13
|
+
logger: import("@aws-sdk/types").Logger;
|
|
14
|
+
serviceId: string;
|
|
15
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
16
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@aws-sdk/client-simspaceweaver",
|
|
3
|
+
"description": "AWS SDK for JavaScript Simspaceweaver Client for Node.js, Browser and React Native",
|
|
4
|
+
"version": "3.220.0",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
|
+
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
8
|
+
"build:docs": "typedoc",
|
|
9
|
+
"build:es": "tsc -p tsconfig.es.json",
|
|
10
|
+
"build:include:deps": "lerna run --scope $npm_package_name --include-dependencies build",
|
|
11
|
+
"build:types": "tsc -p tsconfig.types.json",
|
|
12
|
+
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
13
|
+
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo"
|
|
14
|
+
},
|
|
15
|
+
"main": "./dist-cjs/index.js",
|
|
16
|
+
"types": "./dist-types/index.d.ts",
|
|
17
|
+
"module": "./dist-es/index.js",
|
|
18
|
+
"sideEffects": false,
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
|
+
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
+
"@aws-sdk/client-sts": "3.218.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.215.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.218.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.215.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.215.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.215.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.215.0",
|
|
29
|
+
"@aws-sdk/middleware-endpoint": "3.215.0",
|
|
30
|
+
"@aws-sdk/middleware-host-header": "3.215.0",
|
|
31
|
+
"@aws-sdk/middleware-logger": "3.215.0",
|
|
32
|
+
"@aws-sdk/middleware-recursion-detection": "3.215.0",
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.215.0",
|
|
34
|
+
"@aws-sdk/middleware-serde": "3.215.0",
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.215.0",
|
|
36
|
+
"@aws-sdk/middleware-stack": "3.215.0",
|
|
37
|
+
"@aws-sdk/middleware-user-agent": "3.215.0",
|
|
38
|
+
"@aws-sdk/node-config-provider": "3.215.0",
|
|
39
|
+
"@aws-sdk/node-http-handler": "3.215.0",
|
|
40
|
+
"@aws-sdk/protocol-http": "3.215.0",
|
|
41
|
+
"@aws-sdk/smithy-client": "3.215.0",
|
|
42
|
+
"@aws-sdk/types": "3.215.0",
|
|
43
|
+
"@aws-sdk/url-parser": "3.215.0",
|
|
44
|
+
"@aws-sdk/util-base64": "3.208.0",
|
|
45
|
+
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
46
|
+
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-browser": "3.215.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-node": "3.215.0",
|
|
49
|
+
"@aws-sdk/util-endpoints": "3.216.0",
|
|
50
|
+
"@aws-sdk/util-user-agent-browser": "3.215.0",
|
|
51
|
+
"@aws-sdk/util-user-agent-node": "3.215.0",
|
|
52
|
+
"@aws-sdk/util-utf8-browser": "3.188.0",
|
|
53
|
+
"@aws-sdk/util-utf8-node": "3.208.0",
|
|
54
|
+
"tslib": "^2.3.1",
|
|
55
|
+
"uuid": "^8.3.2"
|
|
56
|
+
},
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@aws-sdk/service-client-documentation-generator": "3.208.0",
|
|
59
|
+
"@tsconfig/node14": "1.0.3",
|
|
60
|
+
"@types/node": "^14.14.31",
|
|
61
|
+
"@types/uuid": "^8.3.0",
|
|
62
|
+
"concurrently": "7.0.0",
|
|
63
|
+
"downlevel-dts": "0.10.1",
|
|
64
|
+
"rimraf": "3.0.2",
|
|
65
|
+
"typedoc": "0.19.2",
|
|
66
|
+
"typescript": "~4.6.2"
|
|
67
|
+
},
|
|
68
|
+
"overrides": {
|
|
69
|
+
"typedoc": {
|
|
70
|
+
"typescript": "~4.6.2"
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
"engines": {
|
|
74
|
+
"node": ">=14.0.0"
|
|
75
|
+
},
|
|
76
|
+
"typesVersions": {
|
|
77
|
+
"<4.0": {
|
|
78
|
+
"dist-types/*": [
|
|
79
|
+
"dist-types/ts3.4/*"
|
|
80
|
+
]
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"files": [
|
|
84
|
+
"dist-*"
|
|
85
|
+
],
|
|
86
|
+
"author": {
|
|
87
|
+
"name": "AWS SDK for JavaScript Team",
|
|
88
|
+
"url": "https://aws.amazon.com/javascript/"
|
|
89
|
+
},
|
|
90
|
+
"license": "Apache-2.0",
|
|
91
|
+
"browser": {
|
|
92
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
|
|
93
|
+
},
|
|
94
|
+
"react-native": {
|
|
95
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
|
|
96
|
+
},
|
|
97
|
+
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-simspaceweaver",
|
|
98
|
+
"repository": {
|
|
99
|
+
"type": "git",
|
|
100
|
+
"url": "https://github.com/aws/aws-sdk-js-v3.git",
|
|
101
|
+
"directory": "clients/client-simspaceweaver"
|
|
102
|
+
}
|
|
103
|
+
}
|