@aws-sdk/client-fis 3.296.0 → 3.298.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 (61) hide show
  1. package/dist-cjs/commands/CreateExperimentTemplateCommand.js +2 -3
  2. package/dist-cjs/commands/DeleteExperimentTemplateCommand.js +2 -3
  3. package/dist-cjs/commands/GetActionCommand.js +2 -3
  4. package/dist-cjs/commands/GetExperimentCommand.js +2 -3
  5. package/dist-cjs/commands/GetExperimentTemplateCommand.js +2 -3
  6. package/dist-cjs/commands/GetTargetResourceTypeCommand.js +2 -3
  7. package/dist-cjs/commands/ListActionsCommand.js +2 -3
  8. package/dist-cjs/commands/ListExperimentTemplatesCommand.js +2 -3
  9. package/dist-cjs/commands/ListExperimentsCommand.js +2 -3
  10. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -3
  11. package/dist-cjs/commands/ListTargetResourceTypesCommand.js +2 -3
  12. package/dist-cjs/commands/StartExperimentCommand.js +2 -3
  13. package/dist-cjs/commands/StopExperimentCommand.js +2 -3
  14. package/dist-cjs/commands/TagResourceCommand.js +2 -3
  15. package/dist-cjs/commands/UntagResourceCommand.js +2 -3
  16. package/dist-cjs/commands/UpdateExperimentTemplateCommand.js +2 -3
  17. package/dist-cjs/models/models_0.js +1 -282
  18. package/dist-es/commands/CreateExperimentTemplateCommand.js +2 -3
  19. package/dist-es/commands/DeleteExperimentTemplateCommand.js +2 -3
  20. package/dist-es/commands/GetActionCommand.js +2 -3
  21. package/dist-es/commands/GetExperimentCommand.js +2 -3
  22. package/dist-es/commands/GetExperimentTemplateCommand.js +2 -3
  23. package/dist-es/commands/GetTargetResourceTypeCommand.js +2 -3
  24. package/dist-es/commands/ListActionsCommand.js +2 -3
  25. package/dist-es/commands/ListExperimentTemplatesCommand.js +2 -3
  26. package/dist-es/commands/ListExperimentsCommand.js +2 -3
  27. package/dist-es/commands/ListTagsForResourceCommand.js +2 -3
  28. package/dist-es/commands/ListTargetResourceTypesCommand.js +2 -3
  29. package/dist-es/commands/StartExperimentCommand.js +2 -3
  30. package/dist-es/commands/StopExperimentCommand.js +2 -3
  31. package/dist-es/commands/TagResourceCommand.js +2 -3
  32. package/dist-es/commands/UntagResourceCommand.js +2 -3
  33. package/dist-es/commands/UpdateExperimentTemplateCommand.js +2 -3
  34. package/dist-es/models/models_0.js +0 -210
  35. package/dist-types/Fis.d.ts +17 -0
  36. package/dist-types/FisClient.d.ts +24 -4
  37. package/dist-types/commands/CreateExperimentTemplateCommand.d.ts +16 -0
  38. package/dist-types/commands/DeleteExperimentTemplateCommand.d.ts +16 -0
  39. package/dist-types/commands/GetActionCommand.d.ts +16 -0
  40. package/dist-types/commands/GetExperimentCommand.d.ts +16 -0
  41. package/dist-types/commands/GetExperimentTemplateCommand.d.ts +16 -0
  42. package/dist-types/commands/GetTargetResourceTypeCommand.d.ts +16 -0
  43. package/dist-types/commands/ListActionsCommand.d.ts +16 -0
  44. package/dist-types/commands/ListExperimentTemplatesCommand.d.ts +16 -0
  45. package/dist-types/commands/ListExperimentsCommand.d.ts +16 -0
  46. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  47. package/dist-types/commands/ListTargetResourceTypesCommand.d.ts +16 -0
  48. package/dist-types/commands/StartExperimentCommand.d.ts +16 -0
  49. package/dist-types/commands/StopExperimentCommand.d.ts +16 -0
  50. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  51. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  52. package/dist-types/commands/UpdateExperimentTemplateCommand.d.ts +16 -0
  53. package/dist-types/models/FisServiceException.d.ts +2 -0
  54. package/dist-types/models/models_0.d.ts +144 -280
  55. package/dist-types/pagination/Interfaces.d.ts +3 -0
  56. package/dist-types/pagination/ListActionsPaginator.d.ts +3 -0
  57. package/dist-types/pagination/ListExperimentTemplatesPaginator.d.ts +3 -0
  58. package/dist-types/pagination/ListExperimentsPaginator.d.ts +3 -0
  59. package/dist-types/pagination/ListTargetResourceTypesPaginator.d.ts +3 -0
  60. package/dist-types/ts3.4/models/models_0.d.ts +0 -204
  61. package/package.json +4 -3
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient";
5
5
  import { StartExperimentRequest, StartExperimentResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link StartExperimentCommand}.
8
10
  */
9
11
  export interface StartExperimentCommandInput extends StartExperimentRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link StartExperimentCommand}.
13
17
  */
14
18
  export interface StartExperimentCommandOutput extends StartExperimentResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Starts running an experiment from the specified experiment template.</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 StartExperimentCommandOutput extends StartExperimentResponse, _
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param StartExperimentCommandInput - {@link StartExperimentCommandInput}
34
+ * @returns {@link StartExperimentCommandOutput}
28
35
  * @see {@link StartExperimentCommandInput} for command's `input` shape.
29
36
  * @see {@link StartExperimentCommandOutput} for command's `response` shape.
30
37
  * @see {@link FisClientResolvedConfig | config} for FisClient's `config` shape.
@@ -46,11 +53,20 @@ export interface StartExperimentCommandOutput extends StartExperimentResponse, _
46
53
  export declare class StartExperimentCommand extends $Command<StartExperimentCommandInput, StartExperimentCommandOutput, FisClientResolvedConfig> {
47
54
  readonly input: StartExperimentCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: StartExperimentCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FisClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartExperimentCommandInput, StartExperimentCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient";
5
5
  import { StopExperimentRequest, StopExperimentResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link StopExperimentCommand}.
8
10
  */
9
11
  export interface StopExperimentCommandInput extends StopExperimentRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link StopExperimentCommand}.
13
17
  */
14
18
  export interface StopExperimentCommandOutput extends StopExperimentResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Stops the specified experiment.</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 StopExperimentCommandOutput extends StopExperimentResponse, __M
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param StopExperimentCommandInput - {@link StopExperimentCommandInput}
34
+ * @returns {@link StopExperimentCommandOutput}
28
35
  * @see {@link StopExperimentCommandInput} for command's `input` shape.
29
36
  * @see {@link StopExperimentCommandOutput} for command's `response` shape.
30
37
  * @see {@link FisClientResolvedConfig | config} for FisClient's `config` shape.
@@ -40,11 +47,20 @@ export interface StopExperimentCommandOutput extends StopExperimentResponse, __M
40
47
  export declare class StopExperimentCommand extends $Command<StopExperimentCommandInput, StopExperimentCommandOutput, FisClientResolvedConfig> {
41
48
  readonly input: StopExperimentCommandInput;
42
49
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
50
+ /**
51
+ * @public
52
+ */
43
53
  constructor(input: StopExperimentCommandInput);
44
54
  /**
45
55
  * @internal
46
56
  */
47
57
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FisClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopExperimentCommandInput, StopExperimentCommandOutput>;
58
+ /**
59
+ * @internal
60
+ */
48
61
  private serialize;
62
+ /**
63
+ * @internal
64
+ */
49
65
  private deserialize;
50
66
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient";
5
5
  import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link TagResourceCommand}.
8
10
  */
9
11
  export interface TagResourceCommandInput extends TagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link TagResourceCommand}.
13
17
  */
14
18
  export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Applies the specified tags to the specified resource.</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 TagResourceCommandOutput extends TagResourceResponse, __Metadat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param TagResourceCommandInput - {@link TagResourceCommandInput}
34
+ * @returns {@link TagResourceCommandOutput}
28
35
  * @see {@link TagResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link FisClientResolvedConfig | config} for FisClient's `config` shape.
@@ -34,11 +41,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
34
41
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, FisClientResolvedConfig> {
35
42
  readonly input: TagResourceCommandInput;
36
43
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
44
+ /**
45
+ * @public
46
+ */
37
47
  constructor(input: TagResourceCommandInput);
38
48
  /**
39
49
  * @internal
40
50
  */
41
51
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FisClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
52
+ /**
53
+ * @internal
54
+ */
42
55
  private serialize;
56
+ /**
57
+ * @internal
58
+ */
43
59
  private deserialize;
44
60
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient";
5
5
  import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UntagResourceCommand}.
8
10
  */
9
11
  export interface UntagResourceCommandInput extends UntagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UntagResourceCommand}.
13
17
  */
14
18
  export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Removes the specified tags from the specified resource.</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 UntagResourceCommandOutput extends UntagResourceResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
34
+ * @returns {@link UntagResourceCommandOutput}
28
35
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link FisClientResolvedConfig | config} for FisClient's `config` shape.
@@ -34,11 +41,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
34
41
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, FisClientResolvedConfig> {
35
42
  readonly input: UntagResourceCommandInput;
36
43
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
44
+ /**
45
+ * @public
46
+ */
37
47
  constructor(input: UntagResourceCommandInput);
38
48
  /**
39
49
  * @internal
40
50
  */
41
51
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FisClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
52
+ /**
53
+ * @internal
54
+ */
42
55
  private serialize;
56
+ /**
57
+ * @internal
58
+ */
43
59
  private deserialize;
44
60
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient";
5
5
  import { UpdateExperimentTemplateRequest, UpdateExperimentTemplateResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateExperimentTemplateCommand}.
8
10
  */
9
11
  export interface UpdateExperimentTemplateCommandInput extends UpdateExperimentTemplateRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateExperimentTemplateCommand}.
13
17
  */
14
18
  export interface UpdateExperimentTemplateCommandOutput extends UpdateExperimentTemplateResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates the specified experiment template.</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 UpdateExperimentTemplateCommandOutput extends UpdateExperimentT
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateExperimentTemplateCommandInput - {@link UpdateExperimentTemplateCommandInput}
34
+ * @returns {@link UpdateExperimentTemplateCommandOutput}
28
35
  * @see {@link UpdateExperimentTemplateCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateExperimentTemplateCommandOutput} for command's `response` shape.
30
37
  * @see {@link FisClientResolvedConfig | config} for FisClient's `config` shape.
@@ -43,11 +50,20 @@ export interface UpdateExperimentTemplateCommandOutput extends UpdateExperimentT
43
50
  export declare class UpdateExperimentTemplateCommand extends $Command<UpdateExperimentTemplateCommandInput, UpdateExperimentTemplateCommandOutput, FisClientResolvedConfig> {
44
51
  readonly input: UpdateExperimentTemplateCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: UpdateExperimentTemplateCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FisClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateExperimentTemplateCommandInput, UpdateExperimentTemplateCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -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 Fis service.
4
6
  */
5
7
  export declare class FisServiceException extends __ServiceException {