@aws-sdk/client-fis 3.48.0 → 3.52.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 (36) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/dist-cjs/Fis.js +30 -0
  3. package/dist-cjs/commands/GetTargetResourceTypeCommand.js +36 -0
  4. package/dist-cjs/commands/ListTargetResourceTypesCommand.js +36 -0
  5. package/dist-cjs/commands/index.js +2 -0
  6. package/dist-cjs/models/models_0.js +44 -2
  7. package/dist-cjs/pagination/ListTargetResourceTypesPaginator.js +35 -0
  8. package/dist-cjs/pagination/index.js +1 -0
  9. package/dist-cjs/protocols/Aws_restJson1.js +245 -1
  10. package/dist-es/Fis.js +30 -0
  11. package/dist-es/commands/GetTargetResourceTypeCommand.js +39 -0
  12. package/dist-es/commands/ListTargetResourceTypesCommand.js +39 -0
  13. package/dist-es/commands/index.js +2 -0
  14. package/dist-es/models/models_0.js +28 -0
  15. package/dist-es/pagination/ListTargetResourceTypesPaginator.js +74 -0
  16. package/dist-es/pagination/index.js +1 -0
  17. package/dist-es/protocols/Aws_restJson1.js +275 -2
  18. package/dist-types/Fis.d.ts +14 -0
  19. package/dist-types/FisClient.d.ts +4 -2
  20. package/dist-types/commands/GetTargetResourceTypeCommand.d.ts +35 -0
  21. package/dist-types/commands/ListTargetResourceTypesCommand.d.ts +35 -0
  22. package/dist-types/commands/index.d.ts +2 -0
  23. package/dist-types/models/models_0.d.ts +146 -2
  24. package/dist-types/pagination/ListTargetResourceTypesPaginator.d.ts +4 -0
  25. package/dist-types/pagination/index.d.ts +1 -0
  26. package/dist-types/protocols/Aws_restJson1.d.ts +6 -0
  27. package/dist-types/ts3.4/Fis.d.ts +10 -0
  28. package/dist-types/ts3.4/FisClient.d.ts +4 -2
  29. package/dist-types/ts3.4/commands/GetTargetResourceTypeCommand.d.ts +17 -0
  30. package/dist-types/ts3.4/commands/ListTargetResourceTypesCommand.d.ts +17 -0
  31. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  32. package/dist-types/ts3.4/models/models_0.d.ts +89 -0
  33. package/dist-types/ts3.4/pagination/ListTargetResourceTypesPaginator.d.ts +4 -0
  34. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  35. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +6 -0
  36. package/package.json +40 -34
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListTargetResourceTypesCommandInput, ListTargetResourceTypesCommandOutput } from "../commands/ListTargetResourceTypesCommand";
3
+ import { FisPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListTargetResourceTypes(config: FisPaginationConfiguration, input: ListTargetResourceTypesCommandInput, ...additionalArguments: any): Paginator<ListTargetResourceTypesCommandOutput>;
@@ -2,3 +2,4 @@ export * from "./Interfaces";
2
2
  export * from "./ListActionsPaginator";
3
3
  export * from "./ListExperimentTemplatesPaginator";
4
4
  export * from "./ListExperimentsPaginator";
5
+ export * from "./ListTargetResourceTypesPaginator";
@@ -5,10 +5,12 @@ import { DeleteExperimentTemplateCommandInput, DeleteExperimentTemplateCommandOu
5
5
  import { GetActionCommandInput, GetActionCommandOutput } from "../commands/GetActionCommand";
6
6
  import { GetExperimentCommandInput, GetExperimentCommandOutput } from "../commands/GetExperimentCommand";
7
7
  import { GetExperimentTemplateCommandInput, GetExperimentTemplateCommandOutput } from "../commands/GetExperimentTemplateCommand";
8
+ import { GetTargetResourceTypeCommandInput, GetTargetResourceTypeCommandOutput } from "../commands/GetTargetResourceTypeCommand";
8
9
  import { ListActionsCommandInput, ListActionsCommandOutput } from "../commands/ListActionsCommand";
9
10
  import { ListExperimentsCommandInput, ListExperimentsCommandOutput } from "../commands/ListExperimentsCommand";
10
11
  import { ListExperimentTemplatesCommandInput, ListExperimentTemplatesCommandOutput } from "../commands/ListExperimentTemplatesCommand";
11
12
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
13
+ import { ListTargetResourceTypesCommandInput, ListTargetResourceTypesCommandOutput } from "../commands/ListTargetResourceTypesCommand";
12
14
  import { StartExperimentCommandInput, StartExperimentCommandOutput } from "../commands/StartExperimentCommand";
13
15
  import { StopExperimentCommandInput, StopExperimentCommandOutput } from "../commands/StopExperimentCommand";
14
16
  import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
@@ -19,10 +21,12 @@ export declare const serializeAws_restJson1DeleteExperimentTemplateCommand: (inp
19
21
  export declare const serializeAws_restJson1GetActionCommand: (input: GetActionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
20
22
  export declare const serializeAws_restJson1GetExperimentCommand: (input: GetExperimentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
21
23
  export declare const serializeAws_restJson1GetExperimentTemplateCommand: (input: GetExperimentTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
24
+ export declare const serializeAws_restJson1GetTargetResourceTypeCommand: (input: GetTargetResourceTypeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
22
25
  export declare const serializeAws_restJson1ListActionsCommand: (input: ListActionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
26
  export declare const serializeAws_restJson1ListExperimentsCommand: (input: ListExperimentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
24
27
  export declare const serializeAws_restJson1ListExperimentTemplatesCommand: (input: ListExperimentTemplatesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
28
  export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
+ export declare const serializeAws_restJson1ListTargetResourceTypesCommand: (input: ListTargetResourceTypesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
30
  export declare const serializeAws_restJson1StartExperimentCommand: (input: StartExperimentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
31
  export declare const serializeAws_restJson1StopExperimentCommand: (input: StopExperimentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
32
  export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -33,10 +37,12 @@ export declare const deserializeAws_restJson1DeleteExperimentTemplateCommand: (o
33
37
  export declare const deserializeAws_restJson1GetActionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetActionCommandOutput>;
34
38
  export declare const deserializeAws_restJson1GetExperimentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetExperimentCommandOutput>;
35
39
  export declare const deserializeAws_restJson1GetExperimentTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetExperimentTemplateCommandOutput>;
40
+ export declare const deserializeAws_restJson1GetTargetResourceTypeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTargetResourceTypeCommandOutput>;
36
41
  export declare const deserializeAws_restJson1ListActionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListActionsCommandOutput>;
37
42
  export declare const deserializeAws_restJson1ListExperimentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListExperimentsCommandOutput>;
38
43
  export declare const deserializeAws_restJson1ListExperimentTemplatesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListExperimentTemplatesCommandOutput>;
39
44
  export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
45
+ export declare const deserializeAws_restJson1ListTargetResourceTypesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTargetResourceTypesCommandOutput>;
40
46
  export declare const deserializeAws_restJson1StartExperimentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartExperimentCommandOutput>;
41
47
  export declare const deserializeAws_restJson1StopExperimentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopExperimentCommandOutput>;
42
48
  export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-fis",
3
3
  "description": "AWS SDK for JavaScript Fis Client for Node.js, Browser and React Native",
4
- "version": "3.48.0",
4
+ "version": "3.52.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -9,7 +9,7 @@
9
9
  "build:es": "tsc -p tsconfig.es.json",
10
10
  "build:types": "tsc -p tsconfig.types.json",
11
11
  "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
12
- "clean": "rimraf ./dist-*"
12
+ "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo"
13
13
  },
14
14
  "main": "./dist-cjs/index.js",
15
15
  "types": "./dist-types/index.d.ts",
@@ -18,43 +18,49 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.48.0",
22
- "@aws-sdk/config-resolver": "3.47.2",
23
- "@aws-sdk/credential-provider-node": "3.48.0",
24
- "@aws-sdk/fetch-http-handler": "3.47.2",
25
- "@aws-sdk/hash-node": "3.47.2",
26
- "@aws-sdk/invalid-dependency": "3.47.2",
27
- "@aws-sdk/middleware-content-length": "3.47.2",
28
- "@aws-sdk/middleware-host-header": "3.47.2",
29
- "@aws-sdk/middleware-logger": "3.47.2",
30
- "@aws-sdk/middleware-retry": "3.47.2",
31
- "@aws-sdk/middleware-serde": "3.47.2",
32
- "@aws-sdk/middleware-signing": "3.47.2",
33
- "@aws-sdk/middleware-stack": "3.47.2",
34
- "@aws-sdk/middleware-user-agent": "3.47.2",
35
- "@aws-sdk/node-config-provider": "3.47.2",
36
- "@aws-sdk/node-http-handler": "3.47.2",
37
- "@aws-sdk/protocol-http": "3.47.2",
38
- "@aws-sdk/smithy-client": "3.47.2",
39
- "@aws-sdk/types": "3.47.1",
40
- "@aws-sdk/url-parser": "3.47.2",
41
- "@aws-sdk/util-base64-browser": "3.47.1",
42
- "@aws-sdk/util-base64-node": "3.47.2",
43
- "@aws-sdk/util-body-length-browser": "3.47.1",
44
- "@aws-sdk/util-body-length-node": "3.47.1",
45
- "@aws-sdk/util-defaults-mode-browser": "3.47.2",
46
- "@aws-sdk/util-defaults-mode-node": "3.47.2",
47
- "@aws-sdk/util-user-agent-browser": "3.47.2",
48
- "@aws-sdk/util-user-agent-node": "3.47.2",
49
- "@aws-sdk/util-utf8-browser": "3.47.1",
50
- "@aws-sdk/util-utf8-node": "3.47.2",
21
+ "@aws-sdk/client-sts": "3.52.0",
22
+ "@aws-sdk/config-resolver": "3.52.0",
23
+ "@aws-sdk/credential-provider-node": "3.52.0",
24
+ "@aws-sdk/fetch-http-handler": "3.52.0",
25
+ "@aws-sdk/hash-node": "3.52.0",
26
+ "@aws-sdk/invalid-dependency": "3.52.0",
27
+ "@aws-sdk/middleware-content-length": "3.52.0",
28
+ "@aws-sdk/middleware-host-header": "3.52.0",
29
+ "@aws-sdk/middleware-logger": "3.52.0",
30
+ "@aws-sdk/middleware-retry": "3.52.0",
31
+ "@aws-sdk/middleware-serde": "3.52.0",
32
+ "@aws-sdk/middleware-signing": "3.52.0",
33
+ "@aws-sdk/middleware-stack": "3.52.0",
34
+ "@aws-sdk/middleware-user-agent": "3.52.0",
35
+ "@aws-sdk/node-config-provider": "3.52.0",
36
+ "@aws-sdk/node-http-handler": "3.52.0",
37
+ "@aws-sdk/protocol-http": "3.52.0",
38
+ "@aws-sdk/smithy-client": "3.52.0",
39
+ "@aws-sdk/types": "3.52.0",
40
+ "@aws-sdk/url-parser": "3.52.0",
41
+ "@aws-sdk/util-base64-browser": "3.52.0",
42
+ "@aws-sdk/util-base64-node": "3.52.0",
43
+ "@aws-sdk/util-body-length-browser": "3.52.0",
44
+ "@aws-sdk/util-body-length-node": "3.52.0",
45
+ "@aws-sdk/util-defaults-mode-browser": "3.52.0",
46
+ "@aws-sdk/util-defaults-mode-node": "3.52.0",
47
+ "@aws-sdk/util-user-agent-browser": "3.52.0",
48
+ "@aws-sdk/util-user-agent-node": "3.52.0",
49
+ "@aws-sdk/util-utf8-browser": "3.52.0",
50
+ "@aws-sdk/util-utf8-node": "3.52.0",
51
51
  "tslib": "^2.3.0",
52
52
  "uuid": "^8.3.2"
53
53
  },
54
54
  "devDependencies": {
55
- "@aws-sdk/service-client-documentation-generator": "3.47.1",
55
+ "@aws-sdk/service-client-documentation-generator": "3.52.0",
56
+ "@tsconfig/recommended": "1.0.1",
56
57
  "@types/node": "^12.7.5",
57
- "@types/uuid": "^8.3.0"
58
+ "@types/uuid": "^8.3.0",
59
+ "concurrently": "7.0.0",
60
+ "downlevel-dts": "0.7.0",
61
+ "rimraf": "3.0.2",
62
+ "typedoc": "0.19.2",
63
+ "typescript": "~4.3.5"
58
64
  },
59
65
  "engines": {
60
66
  "node": ">=12.0.0"