@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.
Files changed (139) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +216 -0
  3. package/dist-cjs/SimSpaceWeaver.js +232 -0
  4. package/dist-cjs/SimSpaceWeaverClient.js +40 -0
  5. package/dist-cjs/commands/DeleteAppCommand.js +46 -0
  6. package/dist-cjs/commands/DeleteSimulationCommand.js +46 -0
  7. package/dist-cjs/commands/DescribeAppCommand.js +46 -0
  8. package/dist-cjs/commands/DescribeSimulationCommand.js +46 -0
  9. package/dist-cjs/commands/ListAppsCommand.js +46 -0
  10. package/dist-cjs/commands/ListSimulationsCommand.js +46 -0
  11. package/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
  12. package/dist-cjs/commands/StartAppCommand.js +46 -0
  13. package/dist-cjs/commands/StartClockCommand.js +46 -0
  14. package/dist-cjs/commands/StartSimulationCommand.js +46 -0
  15. package/dist-cjs/commands/StopAppCommand.js +46 -0
  16. package/dist-cjs/commands/StopClockCommand.js +46 -0
  17. package/dist-cjs/commands/StopSimulationCommand.js +46 -0
  18. package/dist-cjs/commands/TagResourceCommand.js +46 -0
  19. package/dist-cjs/commands/UntagResourceCommand.js +46 -0
  20. package/dist-cjs/commands/index.js +18 -0
  21. package/dist-cjs/endpoint/EndpointParameters.js +12 -0
  22. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  23. package/dist-cjs/endpoint/ruleset.js +312 -0
  24. package/dist-cjs/index.js +11 -0
  25. package/dist-cjs/models/SimSpaceWeaverServiceException.js +11 -0
  26. package/dist-cjs/models/index.js +4 -0
  27. package/dist-cjs/models/models_0.js +328 -0
  28. package/dist-cjs/pagination/Interfaces.js +2 -0
  29. package/dist-cjs/pagination/ListAppsPaginator.js +36 -0
  30. package/dist-cjs/pagination/ListSimulationsPaginator.js +36 -0
  31. package/dist-cjs/pagination/index.js +6 -0
  32. package/dist-cjs/protocols/Aws_restJson1.js +1384 -0
  33. package/dist-cjs/runtimeConfig.browser.js +42 -0
  34. package/dist-cjs/runtimeConfig.js +50 -0
  35. package/dist-cjs/runtimeConfig.native.js +15 -0
  36. package/dist-cjs/runtimeConfig.shared.js +18 -0
  37. package/dist-es/SimSpaceWeaver.js +228 -0
  38. package/dist-es/SimSpaceWeaverClient.js +36 -0
  39. package/dist-es/commands/DeleteAppCommand.js +42 -0
  40. package/dist-es/commands/DeleteSimulationCommand.js +42 -0
  41. package/dist-es/commands/DescribeAppCommand.js +42 -0
  42. package/dist-es/commands/DescribeSimulationCommand.js +42 -0
  43. package/dist-es/commands/ListAppsCommand.js +42 -0
  44. package/dist-es/commands/ListSimulationsCommand.js +42 -0
  45. package/dist-es/commands/ListTagsForResourceCommand.js +42 -0
  46. package/dist-es/commands/StartAppCommand.js +42 -0
  47. package/dist-es/commands/StartClockCommand.js +42 -0
  48. package/dist-es/commands/StartSimulationCommand.js +42 -0
  49. package/dist-es/commands/StopAppCommand.js +42 -0
  50. package/dist-es/commands/StopClockCommand.js +42 -0
  51. package/dist-es/commands/StopSimulationCommand.js +42 -0
  52. package/dist-es/commands/TagResourceCommand.js +42 -0
  53. package/dist-es/commands/UntagResourceCommand.js +42 -0
  54. package/dist-es/commands/index.js +15 -0
  55. package/dist-es/endpoint/EndpointParameters.js +8 -0
  56. package/dist-es/endpoint/endpointResolver.js +8 -0
  57. package/dist-es/endpoint/ruleset.js +309 -0
  58. package/dist-es/index.js +6 -0
  59. package/dist-es/models/SimSpaceWeaverServiceException.js +7 -0
  60. package/dist-es/models/index.js +1 -0
  61. package/dist-es/models/models_0.js +275 -0
  62. package/dist-es/pagination/Interfaces.js +1 -0
  63. package/dist-es/pagination/ListAppsPaginator.js +32 -0
  64. package/dist-es/pagination/ListSimulationsPaginator.js +32 -0
  65. package/dist-es/pagination/index.js +3 -0
  66. package/dist-es/protocols/Aws_restJson1.js +1351 -0
  67. package/dist-es/runtimeConfig.browser.js +37 -0
  68. package/dist-es/runtimeConfig.js +45 -0
  69. package/dist-es/runtimeConfig.native.js +11 -0
  70. package/dist-es/runtimeConfig.shared.js +14 -0
  71. package/dist-types/SimSpaceWeaver.d.ts +134 -0
  72. package/dist-types/SimSpaceWeaverClient.d.ts +167 -0
  73. package/dist-types/commands/DeleteAppCommand.d.ts +37 -0
  74. package/dist-types/commands/DeleteSimulationCommand.d.ts +41 -0
  75. package/dist-types/commands/DescribeAppCommand.d.ts +37 -0
  76. package/dist-types/commands/DescribeSimulationCommand.d.ts +37 -0
  77. package/dist-types/commands/ListAppsCommand.d.ts +37 -0
  78. package/dist-types/commands/ListSimulationsCommand.d.ts +37 -0
  79. package/dist-types/commands/ListTagsForResourceCommand.d.ts +37 -0
  80. package/dist-types/commands/StartAppCommand.d.ts +37 -0
  81. package/dist-types/commands/StartClockCommand.d.ts +37 -0
  82. package/dist-types/commands/StartSimulationCommand.d.ts +37 -0
  83. package/dist-types/commands/StopAppCommand.d.ts +37 -0
  84. package/dist-types/commands/StopClockCommand.d.ts +37 -0
  85. package/dist-types/commands/StopSimulationCommand.d.ts +42 -0
  86. package/dist-types/commands/TagResourceCommand.d.ts +38 -0
  87. package/dist-types/commands/UntagResourceCommand.d.ts +38 -0
  88. package/dist-types/commands/index.d.ts +15 -0
  89. package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
  90. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  91. package/dist-types/endpoint/ruleset.d.ts +2 -0
  92. package/dist-types/index.d.ts +6 -0
  93. package/dist-types/models/SimSpaceWeaverServiceException.d.ts +10 -0
  94. package/dist-types/models/index.d.ts +1 -0
  95. package/dist-types/models/models_0.d.ts +911 -0
  96. package/dist-types/pagination/Interfaces.d.ts +6 -0
  97. package/dist-types/pagination/ListAppsPaginator.d.ts +4 -0
  98. package/dist-types/pagination/ListSimulationsPaginator.d.ts +4 -0
  99. package/dist-types/pagination/index.d.ts +3 -0
  100. package/dist-types/protocols/Aws_restJson1.d.ts +47 -0
  101. package/dist-types/runtimeConfig.browser.d.ts +42 -0
  102. package/dist-types/runtimeConfig.d.ts +42 -0
  103. package/dist-types/runtimeConfig.native.d.ts +41 -0
  104. package/dist-types/runtimeConfig.shared.d.ts +16 -0
  105. package/dist-types/ts3.4/SimSpaceWeaver.d.ts +259 -0
  106. package/dist-types/ts3.4/SimSpaceWeaverClient.d.ts +202 -0
  107. package/dist-types/ts3.4/commands/DeleteAppCommand.d.ts +34 -0
  108. package/dist-types/ts3.4/commands/DeleteSimulationCommand.d.ts +37 -0
  109. package/dist-types/ts3.4/commands/DescribeAppCommand.d.ts +34 -0
  110. package/dist-types/ts3.4/commands/DescribeSimulationCommand.d.ts +38 -0
  111. package/dist-types/ts3.4/commands/ListAppsCommand.d.ts +34 -0
  112. package/dist-types/ts3.4/commands/ListSimulationsCommand.d.ts +37 -0
  113. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -0
  114. package/dist-types/ts3.4/commands/StartAppCommand.d.ts +34 -0
  115. package/dist-types/ts3.4/commands/StartClockCommand.d.ts +34 -0
  116. package/dist-types/ts3.4/commands/StartSimulationCommand.d.ts +37 -0
  117. package/dist-types/ts3.4/commands/StopAppCommand.d.ts +32 -0
  118. package/dist-types/ts3.4/commands/StopClockCommand.d.ts +34 -0
  119. package/dist-types/ts3.4/commands/StopSimulationCommand.d.ts +34 -0
  120. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
  121. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +34 -0
  122. package/dist-types/ts3.4/commands/index.d.ts +15 -0
  123. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
  124. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  125. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  126. package/dist-types/ts3.4/index.d.ts +6 -0
  127. package/dist-types/ts3.4/models/SimSpaceWeaverServiceException.d.ts +7 -0
  128. package/dist-types/ts3.4/models/index.d.ts +1 -0
  129. package/dist-types/ts3.4/models/models_0.d.ts +395 -0
  130. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -0
  131. package/dist-types/ts3.4/pagination/ListAppsPaginator.d.ts +11 -0
  132. package/dist-types/ts3.4/pagination/ListSimulationsPaginator.d.ts +11 -0
  133. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  134. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +185 -0
  135. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +88 -0
  136. package/dist-types/ts3.4/runtimeConfig.d.ts +88 -0
  137. package/dist-types/ts3.4/runtimeConfig.native.d.ts +77 -0
  138. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +16 -0
  139. package/package.json +103 -0
@@ -0,0 +1,6 @@
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { SimSpaceWeaver } from "../SimSpaceWeaver";
3
+ import { SimSpaceWeaverClient } from "../SimSpaceWeaverClient";
4
+ export interface SimSpaceWeaverPaginationConfiguration extends PaginationConfiguration {
5
+ client: SimSpaceWeaver | SimSpaceWeaverClient;
6
+ }
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListAppsCommandInput, ListAppsCommandOutput } from "../commands/ListAppsCommand";
3
+ import { SimSpaceWeaverPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListApps(config: SimSpaceWeaverPaginationConfiguration, input: ListAppsCommandInput, ...additionalArguments: any): Paginator<ListAppsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListSimulationsCommandInput, ListSimulationsCommandOutput } from "../commands/ListSimulationsCommand";
3
+ import { SimSpaceWeaverPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListSimulations(config: SimSpaceWeaverPaginationConfiguration, input: ListSimulationsCommandInput, ...additionalArguments: any): Paginator<ListSimulationsCommandOutput>;
@@ -0,0 +1,3 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListAppsPaginator";
3
+ export * from "./ListSimulationsPaginator";
@@ -0,0 +1,47 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
+ import { DeleteAppCommandInput, DeleteAppCommandOutput } from "../commands/DeleteAppCommand";
4
+ import { DeleteSimulationCommandInput, DeleteSimulationCommandOutput } from "../commands/DeleteSimulationCommand";
5
+ import { DescribeAppCommandInput, DescribeAppCommandOutput } from "../commands/DescribeAppCommand";
6
+ import { DescribeSimulationCommandInput, DescribeSimulationCommandOutput } from "../commands/DescribeSimulationCommand";
7
+ import { ListAppsCommandInput, ListAppsCommandOutput } from "../commands/ListAppsCommand";
8
+ import { ListSimulationsCommandInput, ListSimulationsCommandOutput } from "../commands/ListSimulationsCommand";
9
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
10
+ import { StartAppCommandInput, StartAppCommandOutput } from "../commands/StartAppCommand";
11
+ import { StartClockCommandInput, StartClockCommandOutput } from "../commands/StartClockCommand";
12
+ import { StartSimulationCommandInput, StartSimulationCommandOutput } from "../commands/StartSimulationCommand";
13
+ import { StopAppCommandInput, StopAppCommandOutput } from "../commands/StopAppCommand";
14
+ import { StopClockCommandInput, StopClockCommandOutput } from "../commands/StopClockCommand";
15
+ import { StopSimulationCommandInput, StopSimulationCommandOutput } from "../commands/StopSimulationCommand";
16
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
17
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
18
+ export declare const serializeAws_restJson1DeleteAppCommand: (input: DeleteAppCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
+ export declare const serializeAws_restJson1DeleteSimulationCommand: (input: DeleteSimulationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
20
+ export declare const serializeAws_restJson1DescribeAppCommand: (input: DescribeAppCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
21
+ export declare const serializeAws_restJson1DescribeSimulationCommand: (input: DescribeSimulationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
22
+ export declare const serializeAws_restJson1ListAppsCommand: (input: ListAppsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
+ export declare const serializeAws_restJson1ListSimulationsCommand: (input: ListSimulationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
24
+ export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
+ export declare const serializeAws_restJson1StartAppCommand: (input: StartAppCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
+ export declare const serializeAws_restJson1StartClockCommand: (input: StartClockCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
+ export declare const serializeAws_restJson1StartSimulationCommand: (input: StartSimulationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
+ export declare const serializeAws_restJson1StopAppCommand: (input: StopAppCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
+ export declare const serializeAws_restJson1StopClockCommand: (input: StopClockCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
+ export declare const serializeAws_restJson1StopSimulationCommand: (input: StopSimulationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
+ export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
+ export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
+ export declare const deserializeAws_restJson1DeleteAppCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAppCommandOutput>;
34
+ export declare const deserializeAws_restJson1DeleteSimulationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSimulationCommandOutput>;
35
+ export declare const deserializeAws_restJson1DescribeAppCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAppCommandOutput>;
36
+ export declare const deserializeAws_restJson1DescribeSimulationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeSimulationCommandOutput>;
37
+ export declare const deserializeAws_restJson1ListAppsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAppsCommandOutput>;
38
+ export declare const deserializeAws_restJson1ListSimulationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSimulationsCommandOutput>;
39
+ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
40
+ export declare const deserializeAws_restJson1StartAppCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartAppCommandOutput>;
41
+ export declare const deserializeAws_restJson1StartClockCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartClockCommandOutput>;
42
+ export declare const deserializeAws_restJson1StartSimulationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartSimulationCommandOutput>;
43
+ export declare const deserializeAws_restJson1StopAppCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopAppCommandOutput>;
44
+ export declare const deserializeAws_restJson1StopClockCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopClockCommandOutput>;
45
+ export declare const deserializeAws_restJson1StopSimulationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopSimulationCommandOutput>;
46
+ export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
47
+ export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
@@ -0,0 +1,42 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { SimSpaceWeaverClientConfig } from "./SimSpaceWeaverClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: SimSpaceWeaverClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
+ region: string | import("@aws-sdk/types").Provider<any>;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
16
+ sha256: import("@aws-sdk/types").HashConstructor;
17
+ streamCollector: import("@aws-sdk/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ utf8Decoder: import("@aws-sdk/types").Decoder;
21
+ utf8Encoder: import("@aws-sdk/types").Encoder;
22
+ apiVersion: string;
23
+ urlParser: import("@aws-sdk/types").UrlParser;
24
+ base64Decoder: import("@aws-sdk/types").Decoder;
25
+ base64Encoder: import("@aws-sdk/types").Encoder;
26
+ disableHostPrefix: boolean;
27
+ logger: import("@aws-sdk/types").Logger;
28
+ serviceId: string;
29
+ endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
30
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
31
+ logger?: import("@aws-sdk/types").Logger | undefined;
32
+ }) => import("@aws-sdk/types").EndpointV2;
33
+ tls?: boolean | undefined;
34
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
35
+ credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
36
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
37
+ signingEscapePath?: boolean | undefined;
38
+ systemClockOffset?: number | undefined;
39
+ signingRegion?: string | undefined;
40
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
41
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
42
+ };
@@ -0,0 +1,42 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
+ import { SimSpaceWeaverClientConfig } from "./SimSpaceWeaverClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: SimSpaceWeaverClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
+ region: string | import("@aws-sdk/types").Provider<string>;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
16
+ sha256: import("@aws-sdk/types").HashConstructor;
17
+ streamCollector: import("@aws-sdk/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ utf8Decoder: import("@aws-sdk/types").Decoder;
21
+ utf8Encoder: import("@aws-sdk/types").Encoder;
22
+ apiVersion: string;
23
+ urlParser: import("@aws-sdk/types").UrlParser;
24
+ base64Decoder: import("@aws-sdk/types").Decoder;
25
+ base64Encoder: import("@aws-sdk/types").Encoder;
26
+ disableHostPrefix: boolean;
27
+ logger: import("@aws-sdk/types").Logger;
28
+ serviceId: string;
29
+ endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
30
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
31
+ logger?: import("@aws-sdk/types").Logger | undefined;
32
+ }) => import("@aws-sdk/types").EndpointV2;
33
+ tls?: boolean | undefined;
34
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
35
+ credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
36
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
37
+ signingEscapePath?: boolean | undefined;
38
+ systemClockOffset?: number | undefined;
39
+ signingRegion?: string | undefined;
40
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
41
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
42
+ };
@@ -0,0 +1,41 @@
1
+ import { SimSpaceWeaverClientConfig } from "./SimSpaceWeaverClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: SimSpaceWeaverClientConfig) => {
6
+ runtime: string;
7
+ sha256: import("@aws-sdk/types").HashConstructor;
8
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
9
+ apiVersion: string;
10
+ urlParser: import("@aws-sdk/types").UrlParser;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
+ streamCollector: import("@aws-sdk/types").StreamCollector;
13
+ base64Decoder: import("@aws-sdk/types").Decoder;
14
+ base64Encoder: import("@aws-sdk/types").Encoder;
15
+ utf8Decoder: import("@aws-sdk/types").Decoder;
16
+ utf8Encoder: import("@aws-sdk/types").Encoder;
17
+ disableHostPrefix: boolean;
18
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
19
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
20
+ logger: import("@aws-sdk/types").Logger;
21
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
22
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
23
+ serviceId: string;
24
+ region: string | import("@aws-sdk/types").Provider<any>;
25
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
26
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
27
+ defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
28
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> | undefined;
29
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
30
+ logger?: import("@aws-sdk/types").Logger | undefined;
31
+ }) => import("@aws-sdk/types").EndpointV2;
32
+ tls?: boolean | undefined;
33
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
34
+ credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
35
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
36
+ signingEscapePath?: boolean | undefined;
37
+ systemClockOffset?: number | undefined;
38
+ signingRegion?: string | undefined;
39
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
40
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
41
+ };
@@ -0,0 +1,16 @@
1
+ import { SimSpaceWeaverClientConfig } from "./SimSpaceWeaverClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: SimSpaceWeaverClientConfig) => {
6
+ apiVersion: string;
7
+ base64Decoder: import("@aws-sdk/types").Decoder;
8
+ base64Encoder: import("@aws-sdk/types").Encoder;
9
+ disableHostPrefix: boolean;
10
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
11
+ logger?: import("@aws-sdk/types").Logger | undefined;
12
+ }) => import("@aws-sdk/types").EndpointV2;
13
+ logger: import("@aws-sdk/types").Logger;
14
+ serviceId: string;
15
+ urlParser: import("@aws-sdk/types").UrlParser;
16
+ };
@@ -0,0 +1,259 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import {
3
+ DeleteAppCommandInput,
4
+ DeleteAppCommandOutput,
5
+ } from "./commands/DeleteAppCommand";
6
+ import {
7
+ DeleteSimulationCommandInput,
8
+ DeleteSimulationCommandOutput,
9
+ } from "./commands/DeleteSimulationCommand";
10
+ import {
11
+ DescribeAppCommandInput,
12
+ DescribeAppCommandOutput,
13
+ } from "./commands/DescribeAppCommand";
14
+ import {
15
+ DescribeSimulationCommandInput,
16
+ DescribeSimulationCommandOutput,
17
+ } from "./commands/DescribeSimulationCommand";
18
+ import {
19
+ ListAppsCommandInput,
20
+ ListAppsCommandOutput,
21
+ } from "./commands/ListAppsCommand";
22
+ import {
23
+ ListSimulationsCommandInput,
24
+ ListSimulationsCommandOutput,
25
+ } from "./commands/ListSimulationsCommand";
26
+ import {
27
+ ListTagsForResourceCommandInput,
28
+ ListTagsForResourceCommandOutput,
29
+ } from "./commands/ListTagsForResourceCommand";
30
+ import {
31
+ StartAppCommandInput,
32
+ StartAppCommandOutput,
33
+ } from "./commands/StartAppCommand";
34
+ import {
35
+ StartClockCommandInput,
36
+ StartClockCommandOutput,
37
+ } from "./commands/StartClockCommand";
38
+ import {
39
+ StartSimulationCommandInput,
40
+ StartSimulationCommandOutput,
41
+ } from "./commands/StartSimulationCommand";
42
+ import {
43
+ StopAppCommandInput,
44
+ StopAppCommandOutput,
45
+ } from "./commands/StopAppCommand";
46
+ import {
47
+ StopClockCommandInput,
48
+ StopClockCommandOutput,
49
+ } from "./commands/StopClockCommand";
50
+ import {
51
+ StopSimulationCommandInput,
52
+ StopSimulationCommandOutput,
53
+ } from "./commands/StopSimulationCommand";
54
+ import {
55
+ TagResourceCommandInput,
56
+ TagResourceCommandOutput,
57
+ } from "./commands/TagResourceCommand";
58
+ import {
59
+ UntagResourceCommandInput,
60
+ UntagResourceCommandOutput,
61
+ } from "./commands/UntagResourceCommand";
62
+ import { SimSpaceWeaverClient } from "./SimSpaceWeaverClient";
63
+ export declare class SimSpaceWeaver extends SimSpaceWeaverClient {
64
+ deleteApp(
65
+ args: DeleteAppCommandInput,
66
+ options?: __HttpHandlerOptions
67
+ ): Promise<DeleteAppCommandOutput>;
68
+ deleteApp(
69
+ args: DeleteAppCommandInput,
70
+ cb: (err: any, data?: DeleteAppCommandOutput) => void
71
+ ): void;
72
+ deleteApp(
73
+ args: DeleteAppCommandInput,
74
+ options: __HttpHandlerOptions,
75
+ cb: (err: any, data?: DeleteAppCommandOutput) => void
76
+ ): void;
77
+ deleteSimulation(
78
+ args: DeleteSimulationCommandInput,
79
+ options?: __HttpHandlerOptions
80
+ ): Promise<DeleteSimulationCommandOutput>;
81
+ deleteSimulation(
82
+ args: DeleteSimulationCommandInput,
83
+ cb: (err: any, data?: DeleteSimulationCommandOutput) => void
84
+ ): void;
85
+ deleteSimulation(
86
+ args: DeleteSimulationCommandInput,
87
+ options: __HttpHandlerOptions,
88
+ cb: (err: any, data?: DeleteSimulationCommandOutput) => void
89
+ ): void;
90
+ describeApp(
91
+ args: DescribeAppCommandInput,
92
+ options?: __HttpHandlerOptions
93
+ ): Promise<DescribeAppCommandOutput>;
94
+ describeApp(
95
+ args: DescribeAppCommandInput,
96
+ cb: (err: any, data?: DescribeAppCommandOutput) => void
97
+ ): void;
98
+ describeApp(
99
+ args: DescribeAppCommandInput,
100
+ options: __HttpHandlerOptions,
101
+ cb: (err: any, data?: DescribeAppCommandOutput) => void
102
+ ): void;
103
+ describeSimulation(
104
+ args: DescribeSimulationCommandInput,
105
+ options?: __HttpHandlerOptions
106
+ ): Promise<DescribeSimulationCommandOutput>;
107
+ describeSimulation(
108
+ args: DescribeSimulationCommandInput,
109
+ cb: (err: any, data?: DescribeSimulationCommandOutput) => void
110
+ ): void;
111
+ describeSimulation(
112
+ args: DescribeSimulationCommandInput,
113
+ options: __HttpHandlerOptions,
114
+ cb: (err: any, data?: DescribeSimulationCommandOutput) => void
115
+ ): void;
116
+ listApps(
117
+ args: ListAppsCommandInput,
118
+ options?: __HttpHandlerOptions
119
+ ): Promise<ListAppsCommandOutput>;
120
+ listApps(
121
+ args: ListAppsCommandInput,
122
+ cb: (err: any, data?: ListAppsCommandOutput) => void
123
+ ): void;
124
+ listApps(
125
+ args: ListAppsCommandInput,
126
+ options: __HttpHandlerOptions,
127
+ cb: (err: any, data?: ListAppsCommandOutput) => void
128
+ ): void;
129
+ listSimulations(
130
+ args: ListSimulationsCommandInput,
131
+ options?: __HttpHandlerOptions
132
+ ): Promise<ListSimulationsCommandOutput>;
133
+ listSimulations(
134
+ args: ListSimulationsCommandInput,
135
+ cb: (err: any, data?: ListSimulationsCommandOutput) => void
136
+ ): void;
137
+ listSimulations(
138
+ args: ListSimulationsCommandInput,
139
+ options: __HttpHandlerOptions,
140
+ cb: (err: any, data?: ListSimulationsCommandOutput) => void
141
+ ): void;
142
+ listTagsForResource(
143
+ args: ListTagsForResourceCommandInput,
144
+ options?: __HttpHandlerOptions
145
+ ): Promise<ListTagsForResourceCommandOutput>;
146
+ listTagsForResource(
147
+ args: ListTagsForResourceCommandInput,
148
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
149
+ ): void;
150
+ listTagsForResource(
151
+ args: ListTagsForResourceCommandInput,
152
+ options: __HttpHandlerOptions,
153
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
154
+ ): void;
155
+ startApp(
156
+ args: StartAppCommandInput,
157
+ options?: __HttpHandlerOptions
158
+ ): Promise<StartAppCommandOutput>;
159
+ startApp(
160
+ args: StartAppCommandInput,
161
+ cb: (err: any, data?: StartAppCommandOutput) => void
162
+ ): void;
163
+ startApp(
164
+ args: StartAppCommandInput,
165
+ options: __HttpHandlerOptions,
166
+ cb: (err: any, data?: StartAppCommandOutput) => void
167
+ ): void;
168
+ startClock(
169
+ args: StartClockCommandInput,
170
+ options?: __HttpHandlerOptions
171
+ ): Promise<StartClockCommandOutput>;
172
+ startClock(
173
+ args: StartClockCommandInput,
174
+ cb: (err: any, data?: StartClockCommandOutput) => void
175
+ ): void;
176
+ startClock(
177
+ args: StartClockCommandInput,
178
+ options: __HttpHandlerOptions,
179
+ cb: (err: any, data?: StartClockCommandOutput) => void
180
+ ): void;
181
+ startSimulation(
182
+ args: StartSimulationCommandInput,
183
+ options?: __HttpHandlerOptions
184
+ ): Promise<StartSimulationCommandOutput>;
185
+ startSimulation(
186
+ args: StartSimulationCommandInput,
187
+ cb: (err: any, data?: StartSimulationCommandOutput) => void
188
+ ): void;
189
+ startSimulation(
190
+ args: StartSimulationCommandInput,
191
+ options: __HttpHandlerOptions,
192
+ cb: (err: any, data?: StartSimulationCommandOutput) => void
193
+ ): void;
194
+ stopApp(
195
+ args: StopAppCommandInput,
196
+ options?: __HttpHandlerOptions
197
+ ): Promise<StopAppCommandOutput>;
198
+ stopApp(
199
+ args: StopAppCommandInput,
200
+ cb: (err: any, data?: StopAppCommandOutput) => void
201
+ ): void;
202
+ stopApp(
203
+ args: StopAppCommandInput,
204
+ options: __HttpHandlerOptions,
205
+ cb: (err: any, data?: StopAppCommandOutput) => void
206
+ ): void;
207
+ stopClock(
208
+ args: StopClockCommandInput,
209
+ options?: __HttpHandlerOptions
210
+ ): Promise<StopClockCommandOutput>;
211
+ stopClock(
212
+ args: StopClockCommandInput,
213
+ cb: (err: any, data?: StopClockCommandOutput) => void
214
+ ): void;
215
+ stopClock(
216
+ args: StopClockCommandInput,
217
+ options: __HttpHandlerOptions,
218
+ cb: (err: any, data?: StopClockCommandOutput) => void
219
+ ): void;
220
+ stopSimulation(
221
+ args: StopSimulationCommandInput,
222
+ options?: __HttpHandlerOptions
223
+ ): Promise<StopSimulationCommandOutput>;
224
+ stopSimulation(
225
+ args: StopSimulationCommandInput,
226
+ cb: (err: any, data?: StopSimulationCommandOutput) => void
227
+ ): void;
228
+ stopSimulation(
229
+ args: StopSimulationCommandInput,
230
+ options: __HttpHandlerOptions,
231
+ cb: (err: any, data?: StopSimulationCommandOutput) => void
232
+ ): void;
233
+ tagResource(
234
+ args: TagResourceCommandInput,
235
+ options?: __HttpHandlerOptions
236
+ ): Promise<TagResourceCommandOutput>;
237
+ tagResource(
238
+ args: TagResourceCommandInput,
239
+ cb: (err: any, data?: TagResourceCommandOutput) => void
240
+ ): void;
241
+ tagResource(
242
+ args: TagResourceCommandInput,
243
+ options: __HttpHandlerOptions,
244
+ cb: (err: any, data?: TagResourceCommandOutput) => void
245
+ ): void;
246
+ untagResource(
247
+ args: UntagResourceCommandInput,
248
+ options?: __HttpHandlerOptions
249
+ ): Promise<UntagResourceCommandOutput>;
250
+ untagResource(
251
+ args: UntagResourceCommandInput,
252
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
253
+ ): void;
254
+ untagResource(
255
+ args: UntagResourceCommandInput,
256
+ options: __HttpHandlerOptions,
257
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
258
+ ): void;
259
+ }