@aws-sdk/client-simspaceweaver 3.295.0 → 3.297.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.
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { StartSimulationInput, StartSimulationOutput } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link StartSimulationCommand}.
8
10
  */
9
11
  export interface StartSimulationCommandInput extends StartSimulationInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link StartSimulationCommand}.
13
17
  */
14
18
  export interface StartSimulationCommandOutput extends StartSimulationOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Starts a simulation with the given name and schema.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface StartSimulationCommandOutput extends StartSimulationOutput, __M
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param StartSimulationCommandInput - {@link StartSimulationCommandInput}
34
+ * @returns {@link StartSimulationCommandOutput}
28
35
  * @see {@link StartSimulationCommandInput} for command's `input` shape.
29
36
  * @see {@link StartSimulationCommandOutput} for command's `response` shape.
30
37
  * @see {@link SimSpaceWeaverClientResolvedConfig | config} for SimSpaceWeaverClient's `config` shape.
@@ -49,11 +56,20 @@ export interface StartSimulationCommandOutput extends StartSimulationOutput, __M
49
56
  export declare class StartSimulationCommand extends $Command<StartSimulationCommandInput, StartSimulationCommandOutput, SimSpaceWeaverClientResolvedConfig> {
50
57
  readonly input: StartSimulationCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: StartSimulationCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SimSpaceWeaverClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartSimulationCommandInput, StartSimulationCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { StopAppInput, StopAppOutput } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link StopAppCommand}.
8
10
  */
9
11
  export interface StopAppCommandInput extends StopAppInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link StopAppCommand}.
13
17
  */
14
18
  export interface StopAppCommandOutput extends StopAppOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Stops the given custom app and shuts down all of its allocated compute resources.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface StopAppCommandOutput extends StopAppOutput, __MetadataBearer {
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param StopAppCommandInput - {@link StopAppCommandInput}
34
+ * @returns {@link StopAppCommandOutput}
28
35
  * @see {@link StopAppCommandInput} for command's `input` shape.
29
36
  * @see {@link StopAppCommandOutput} for command's `response` shape.
30
37
  * @see {@link SimSpaceWeaverClientResolvedConfig | config} for SimSpaceWeaverClient's `config` shape.
@@ -49,11 +56,20 @@ export interface StopAppCommandOutput extends StopAppOutput, __MetadataBearer {
49
56
  export declare class StopAppCommand extends $Command<StopAppCommandInput, StopAppCommandOutput, SimSpaceWeaverClientResolvedConfig> {
50
57
  readonly input: StopAppCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: StopAppCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SimSpaceWeaverClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopAppCommandInput, StopAppCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { StopClockInput, StopClockOutput } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link StopClockCommand}.
8
10
  */
9
11
  export interface StopClockCommandInput extends StopClockInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link StopClockCommand}.
13
17
  */
14
18
  export interface StopClockCommandOutput extends StopClockOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Stops the simulation clock.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface StopClockCommandOutput extends StopClockOutput, __MetadataBeare
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param StopClockCommandInput - {@link StopClockCommandInput}
34
+ * @returns {@link StopClockCommandOutput}
28
35
  * @see {@link StopClockCommandInput} for command's `input` shape.
29
36
  * @see {@link StopClockCommandOutput} for command's `response` shape.
30
37
  * @see {@link SimSpaceWeaverClientResolvedConfig | config} for SimSpaceWeaverClient's `config` shape.
@@ -49,11 +56,20 @@ export interface StopClockCommandOutput extends StopClockOutput, __MetadataBeare
49
56
  export declare class StopClockCommand extends $Command<StopClockCommandInput, StopClockCommandOutput, SimSpaceWeaverClientResolvedConfig> {
50
57
  readonly input: StopClockCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: StopClockCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SimSpaceWeaverClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopClockCommandInput, StopClockCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { StopSimulationInput, StopSimulationOutput } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link StopSimulationCommand}.
8
10
  */
9
11
  export interface StopSimulationCommandInput extends StopSimulationInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link StopSimulationCommand}.
13
17
  */
14
18
  export interface StopSimulationCommandOutput extends StopSimulationOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Stops the given simulation.</p>
18
23
  * <important>
19
24
  * <p>You can't restart a simulation after you stop it.
@@ -30,6 +35,8 @@ export interface StopSimulationCommandOutput extends StopSimulationOutput, __Met
30
35
  * const response = await client.send(command);
31
36
  * ```
32
37
  *
38
+ * @param StopSimulationCommandInput - {@link StopSimulationCommandInput}
39
+ * @returns {@link StopSimulationCommandOutput}
33
40
  * @see {@link StopSimulationCommandInput} for command's `input` shape.
34
41
  * @see {@link StopSimulationCommandOutput} for command's `response` shape.
35
42
  * @see {@link SimSpaceWeaverClientResolvedConfig | config} for SimSpaceWeaverClient's `config` shape.
@@ -54,11 +61,20 @@ export interface StopSimulationCommandOutput extends StopSimulationOutput, __Met
54
61
  export declare class StopSimulationCommand extends $Command<StopSimulationCommandInput, StopSimulationCommandOutput, SimSpaceWeaverClientResolvedConfig> {
55
62
  readonly input: StopSimulationCommandInput;
56
63
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
64
+ /**
65
+ * @public
66
+ */
57
67
  constructor(input: StopSimulationCommandInput);
58
68
  /**
59
69
  * @internal
60
70
  */
61
71
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SimSpaceWeaverClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopSimulationCommandInput, StopSimulationCommandOutput>;
72
+ /**
73
+ * @internal
74
+ */
62
75
  private serialize;
76
+ /**
77
+ * @internal
78
+ */
63
79
  private deserialize;
64
80
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { TagResourceInput, TagResourceOutput } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link TagResourceCommand}.
8
10
  */
9
11
  export interface TagResourceCommandInput extends TagResourceInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link TagResourceCommand}.
13
17
  */
14
18
  export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Adds tags to a SimSpace Weaver resource. For more information about tags, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services resources</a> in the
18
23
  * <i>Amazon Web Services General Reference</i>.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param TagResourceCommandInput - {@link TagResourceCommandInput}
35
+ * @returns {@link TagResourceCommandOutput}
29
36
  * @see {@link TagResourceCommandInput} for command's `input` shape.
30
37
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
31
38
  * @see {@link SimSpaceWeaverClientResolvedConfig | config} for SimSpaceWeaverClient's `config` shape.
@@ -44,11 +51,20 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
44
51
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, SimSpaceWeaverClientResolvedConfig> {
45
52
  readonly input: TagResourceCommandInput;
46
53
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
54
+ /**
55
+ * @public
56
+ */
47
57
  constructor(input: TagResourceCommandInput);
48
58
  /**
49
59
  * @internal
50
60
  */
51
61
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SimSpaceWeaverClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
62
+ /**
63
+ * @internal
64
+ */
52
65
  private serialize;
66
+ /**
67
+ * @internal
68
+ */
53
69
  private deserialize;
54
70
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { UntagResourceInput, UntagResourceOutput } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UntagResourceCommand}.
8
10
  */
9
11
  export interface UntagResourceCommandInput extends UntagResourceInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UntagResourceCommand}.
13
17
  */
14
18
  export interface UntagResourceCommandOutput extends UntagResourceOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Removes tags from a SimSpace Weaver resource. For more information about tags, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services resources</a> in the
18
23
  * <i>Amazon Web Services General Reference</i>.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
35
+ * @returns {@link UntagResourceCommandOutput}
29
36
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
30
37
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
31
38
  * @see {@link SimSpaceWeaverClientResolvedConfig | config} for SimSpaceWeaverClient's `config` shape.
@@ -41,11 +48,20 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
41
48
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, SimSpaceWeaverClientResolvedConfig> {
42
49
  readonly input: UntagResourceCommandInput;
43
50
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
51
+ /**
52
+ * @public
53
+ */
44
54
  constructor(input: UntagResourceCommandInput);
45
55
  /**
46
56
  * @internal
47
57
  */
48
58
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SimSpaceWeaverClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
59
+ /**
60
+ * @internal
61
+ */
49
62
  private serialize;
63
+ /**
64
+ * @internal
65
+ */
50
66
  private deserialize;
51
67
  }
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from SimSpaceWeaver service.
4
6
  */
5
7
  export declare class SimSpaceWeaverServiceException extends __ServiceException {