@aws-sdk/client-fis 3.300.0 → 3.301.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/dist-types/commands/CreateExperimentTemplateCommand.d.ts +19 -19
- package/dist-types/commands/DeleteExperimentTemplateCommand.d.ts +1 -1
- package/dist-types/commands/GetActionCommand.d.ts +1 -1
- package/dist-types/commands/GetExperimentCommand.d.ts +1 -1
- package/dist-types/commands/GetExperimentTemplateCommand.d.ts +1 -1
- package/dist-types/commands/GetTargetResourceTypeCommand.d.ts +1 -1
- package/dist-types/commands/ListActionsCommand.d.ts +1 -1
- package/dist-types/commands/ListExperimentTemplatesCommand.d.ts +1 -1
- package/dist-types/commands/ListExperimentsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListTargetResourceTypesCommand.d.ts +1 -1
- package/dist-types/commands/StartExperimentCommand.d.ts +2 -2
- package/dist-types/commands/StopExperimentCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateExperimentTemplateCommand.d.ts +19 -19
- package/package.json +3 -3
|
@@ -48,49 +48,49 @@ export interface CreateExperimentTemplateCommandOutput extends CreateExperimentT
|
|
|
48
48
|
* import { FisClient, CreateExperimentTemplateCommand } from "@aws-sdk/client-fis"; // ES Modules import
|
|
49
49
|
* // const { FisClient, CreateExperimentTemplateCommand } = require("@aws-sdk/client-fis"); // CommonJS import
|
|
50
50
|
* const client = new FisClient(config);
|
|
51
|
-
* const input = {
|
|
51
|
+
* const input = { // CreateExperimentTemplateRequest
|
|
52
52
|
* clientToken: "STRING_VALUE", // required
|
|
53
53
|
* description: "STRING_VALUE", // required
|
|
54
|
-
* stopConditions: [ // required
|
|
55
|
-
* {
|
|
54
|
+
* stopConditions: [ // CreateExperimentTemplateStopConditionInputList // required
|
|
55
|
+
* { // CreateExperimentTemplateStopConditionInput
|
|
56
56
|
* source: "STRING_VALUE", // required
|
|
57
57
|
* value: "STRING_VALUE",
|
|
58
58
|
* },
|
|
59
59
|
* ],
|
|
60
|
-
* targets: {
|
|
61
|
-
* "<keys>": {
|
|
60
|
+
* targets: { // CreateExperimentTemplateTargetInputMap
|
|
61
|
+
* "<keys>": { // CreateExperimentTemplateTargetInput
|
|
62
62
|
* resourceType: "STRING_VALUE", // required
|
|
63
|
-
* resourceArns: [
|
|
63
|
+
* resourceArns: [ // ResourceArnList
|
|
64
64
|
* "STRING_VALUE",
|
|
65
65
|
* ],
|
|
66
|
-
* resourceTags: {
|
|
66
|
+
* resourceTags: { // TagMap
|
|
67
67
|
* "<keys>": "STRING_VALUE",
|
|
68
68
|
* },
|
|
69
|
-
* filters: [
|
|
70
|
-
* {
|
|
69
|
+
* filters: [ // ExperimentTemplateTargetFilterInputList
|
|
70
|
+
* { // ExperimentTemplateTargetInputFilter
|
|
71
71
|
* path: "STRING_VALUE", // required
|
|
72
|
-
* values: [ // required
|
|
72
|
+
* values: [ // ExperimentTemplateTargetFilterValues // required
|
|
73
73
|
* "STRING_VALUE",
|
|
74
74
|
* ],
|
|
75
75
|
* },
|
|
76
76
|
* ],
|
|
77
77
|
* selectionMode: "STRING_VALUE", // required
|
|
78
|
-
* parameters: {
|
|
78
|
+
* parameters: { // ExperimentTemplateTargetParameterMap
|
|
79
79
|
* "<keys>": "STRING_VALUE",
|
|
80
80
|
* },
|
|
81
81
|
* },
|
|
82
82
|
* },
|
|
83
|
-
* actions: { // required
|
|
84
|
-
* "<keys>": {
|
|
83
|
+
* actions: { // CreateExperimentTemplateActionInputMap // required
|
|
84
|
+
* "<keys>": { // CreateExperimentTemplateActionInput
|
|
85
85
|
* actionId: "STRING_VALUE", // required
|
|
86
86
|
* description: "STRING_VALUE",
|
|
87
|
-
* parameters: {
|
|
87
|
+
* parameters: { // ExperimentTemplateActionParameterMap
|
|
88
88
|
* "<keys>": "STRING_VALUE",
|
|
89
89
|
* },
|
|
90
|
-
* targets: {
|
|
90
|
+
* targets: { // ExperimentTemplateActionTargetMap
|
|
91
91
|
* "<keys>": "STRING_VALUE",
|
|
92
92
|
* },
|
|
93
|
-
* startAfter: [
|
|
93
|
+
* startAfter: [ // ExperimentTemplateActionStartAfterList
|
|
94
94
|
* "STRING_VALUE",
|
|
95
95
|
* ],
|
|
96
96
|
* },
|
|
@@ -99,11 +99,11 @@ export interface CreateExperimentTemplateCommandOutput extends CreateExperimentT
|
|
|
99
99
|
* tags: {
|
|
100
100
|
* "<keys>": "STRING_VALUE",
|
|
101
101
|
* },
|
|
102
|
-
* logConfiguration: {
|
|
103
|
-
* cloudWatchLogsConfiguration: {
|
|
102
|
+
* logConfiguration: { // CreateExperimentTemplateLogConfigurationInput
|
|
103
|
+
* cloudWatchLogsConfiguration: { // ExperimentTemplateCloudWatchLogsLogConfigurationInput
|
|
104
104
|
* logGroupArn: "STRING_VALUE", // required
|
|
105
105
|
* },
|
|
106
|
-
* s3Configuration: {
|
|
106
|
+
* s3Configuration: { // ExperimentTemplateS3LogConfigurationInput
|
|
107
107
|
* bucketName: "STRING_VALUE", // required
|
|
108
108
|
* prefix: "STRING_VALUE",
|
|
109
109
|
* },
|
|
@@ -26,7 +26,7 @@ export interface DeleteExperimentTemplateCommandOutput extends DeleteExperimentT
|
|
|
26
26
|
* import { FisClient, DeleteExperimentTemplateCommand } from "@aws-sdk/client-fis"; // ES Modules import
|
|
27
27
|
* // const { FisClient, DeleteExperimentTemplateCommand } = require("@aws-sdk/client-fis"); // CommonJS import
|
|
28
28
|
* const client = new FisClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteExperimentTemplateRequest
|
|
30
30
|
* id: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteExperimentTemplateCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetActionCommandOutput extends GetActionResponse, __MetadataBea
|
|
|
26
26
|
* import { FisClient, GetActionCommand } from "@aws-sdk/client-fis"; // ES Modules import
|
|
27
27
|
* // const { FisClient, GetActionCommand } = require("@aws-sdk/client-fis"); // CommonJS import
|
|
28
28
|
* const client = new FisClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetActionRequest
|
|
30
30
|
* id: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetActionCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetExperimentCommandOutput extends GetExperimentResponse, __Met
|
|
|
26
26
|
* import { FisClient, GetExperimentCommand } from "@aws-sdk/client-fis"; // ES Modules import
|
|
27
27
|
* // const { FisClient, GetExperimentCommand } = require("@aws-sdk/client-fis"); // CommonJS import
|
|
28
28
|
* const client = new FisClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetExperimentRequest
|
|
30
30
|
* id: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetExperimentCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetExperimentTemplateCommandOutput extends GetExperimentTemplat
|
|
|
26
26
|
* import { FisClient, GetExperimentTemplateCommand } from "@aws-sdk/client-fis"; // ES Modules import
|
|
27
27
|
* // const { FisClient, GetExperimentTemplateCommand } = require("@aws-sdk/client-fis"); // CommonJS import
|
|
28
28
|
* const client = new FisClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetExperimentTemplateRequest
|
|
30
30
|
* id: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetExperimentTemplateCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetTargetResourceTypeCommandOutput extends GetTargetResourceTyp
|
|
|
26
26
|
* import { FisClient, GetTargetResourceTypeCommand } from "@aws-sdk/client-fis"; // ES Modules import
|
|
27
27
|
* // const { FisClient, GetTargetResourceTypeCommand } = require("@aws-sdk/client-fis"); // CommonJS import
|
|
28
28
|
* const client = new FisClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetTargetResourceTypeRequest
|
|
30
30
|
* resourceType: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetTargetResourceTypeCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface ListActionsCommandOutput extends ListActionsResponse, __Metadat
|
|
|
26
26
|
* import { FisClient, ListActionsCommand } from "@aws-sdk/client-fis"; // ES Modules import
|
|
27
27
|
* // const { FisClient, ListActionsCommand } = require("@aws-sdk/client-fis"); // CommonJS import
|
|
28
28
|
* const client = new FisClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListActionsRequest
|
|
30
30
|
* maxResults: Number("int"),
|
|
31
31
|
* nextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListExperimentTemplatesCommandOutput extends ListExperimentTemp
|
|
|
26
26
|
* import { FisClient, ListExperimentTemplatesCommand } from "@aws-sdk/client-fis"; // ES Modules import
|
|
27
27
|
* // const { FisClient, ListExperimentTemplatesCommand } = require("@aws-sdk/client-fis"); // CommonJS import
|
|
28
28
|
* const client = new FisClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListExperimentTemplatesRequest
|
|
30
30
|
* maxResults: Number("int"),
|
|
31
31
|
* nextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListExperimentsCommandOutput extends ListExperimentsResponse, _
|
|
|
26
26
|
* import { FisClient, ListExperimentsCommand } from "@aws-sdk/client-fis"; // ES Modules import
|
|
27
27
|
* // const { FisClient, ListExperimentsCommand } = require("@aws-sdk/client-fis"); // CommonJS import
|
|
28
28
|
* const client = new FisClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListExperimentsRequest
|
|
30
30
|
* maxResults: Number("int"),
|
|
31
31
|
* nextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { FisClient, ListTagsForResourceCommand } from "@aws-sdk/client-fis"; // ES Modules import
|
|
27
27
|
* // const { FisClient, ListTagsForResourceCommand } = require("@aws-sdk/client-fis"); // CommonJS import
|
|
28
28
|
* const client = new FisClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface ListTargetResourceTypesCommandOutput extends ListTargetResource
|
|
|
26
26
|
* import { FisClient, ListTargetResourceTypesCommand } from "@aws-sdk/client-fis"; // ES Modules import
|
|
27
27
|
* // const { FisClient, ListTargetResourceTypesCommand } = require("@aws-sdk/client-fis"); // CommonJS import
|
|
28
28
|
* const client = new FisClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTargetResourceTypesRequest
|
|
30
30
|
* maxResults: Number("int"),
|
|
31
31
|
* nextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,10 +26,10 @@ export interface StartExperimentCommandOutput extends StartExperimentResponse, _
|
|
|
26
26
|
* import { FisClient, StartExperimentCommand } from "@aws-sdk/client-fis"; // ES Modules import
|
|
27
27
|
* // const { FisClient, StartExperimentCommand } = require("@aws-sdk/client-fis"); // CommonJS import
|
|
28
28
|
* const client = new FisClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // StartExperimentRequest
|
|
30
30
|
* clientToken: "STRING_VALUE", // required
|
|
31
31
|
* experimentTemplateId: "STRING_VALUE", // required
|
|
32
|
-
* tags: {
|
|
32
|
+
* tags: { // TagMap
|
|
33
33
|
* "<keys>": "STRING_VALUE",
|
|
34
34
|
* },
|
|
35
35
|
* };
|
|
@@ -26,7 +26,7 @@ export interface StopExperimentCommandOutput extends StopExperimentResponse, __M
|
|
|
26
26
|
* import { FisClient, StopExperimentCommand } from "@aws-sdk/client-fis"; // ES Modules import
|
|
27
27
|
* // const { FisClient, StopExperimentCommand } = require("@aws-sdk/client-fis"); // CommonJS import
|
|
28
28
|
* const client = new FisClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // StopExperimentRequest
|
|
30
30
|
* id: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StopExperimentCommand(input);
|
|
@@ -26,9 +26,9 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
26
26
|
* import { FisClient, TagResourceCommand } from "@aws-sdk/client-fis"; // ES Modules import
|
|
27
27
|
* // const { FisClient, TagResourceCommand } = require("@aws-sdk/client-fis"); // CommonJS import
|
|
28
28
|
* const client = new FisClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // TagResourceRequest
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
|
-
* tags: { // required
|
|
31
|
+
* tags: { // TagMap // required
|
|
32
32
|
* "<keys>": "STRING_VALUE",
|
|
33
33
|
* },
|
|
34
34
|
* };
|
|
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
26
26
|
* import { FisClient, UntagResourceCommand } from "@aws-sdk/client-fis"; // ES Modules import
|
|
27
27
|
* // const { FisClient, UntagResourceCommand } = require("@aws-sdk/client-fis"); // CommonJS import
|
|
28
28
|
* const client = new FisClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UntagResourceRequest
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
|
-
* tagKeys: [
|
|
31
|
+
* tagKeys: [ // TagKeyList
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -26,59 +26,59 @@ export interface UpdateExperimentTemplateCommandOutput extends UpdateExperimentT
|
|
|
26
26
|
* import { FisClient, UpdateExperimentTemplateCommand } from "@aws-sdk/client-fis"; // ES Modules import
|
|
27
27
|
* // const { FisClient, UpdateExperimentTemplateCommand } = require("@aws-sdk/client-fis"); // CommonJS import
|
|
28
28
|
* const client = new FisClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateExperimentTemplateRequest
|
|
30
30
|
* id: "STRING_VALUE", // required
|
|
31
31
|
* description: "STRING_VALUE",
|
|
32
|
-
* stopConditions: [
|
|
33
|
-
* {
|
|
32
|
+
* stopConditions: [ // UpdateExperimentTemplateStopConditionInputList
|
|
33
|
+
* { // UpdateExperimentTemplateStopConditionInput
|
|
34
34
|
* source: "STRING_VALUE", // required
|
|
35
35
|
* value: "STRING_VALUE",
|
|
36
36
|
* },
|
|
37
37
|
* ],
|
|
38
|
-
* targets: {
|
|
39
|
-
* "<keys>": {
|
|
38
|
+
* targets: { // UpdateExperimentTemplateTargetInputMap
|
|
39
|
+
* "<keys>": { // UpdateExperimentTemplateTargetInput
|
|
40
40
|
* resourceType: "STRING_VALUE", // required
|
|
41
|
-
* resourceArns: [
|
|
41
|
+
* resourceArns: [ // ResourceArnList
|
|
42
42
|
* "STRING_VALUE",
|
|
43
43
|
* ],
|
|
44
|
-
* resourceTags: {
|
|
44
|
+
* resourceTags: { // TagMap
|
|
45
45
|
* "<keys>": "STRING_VALUE",
|
|
46
46
|
* },
|
|
47
|
-
* filters: [
|
|
48
|
-
* {
|
|
47
|
+
* filters: [ // ExperimentTemplateTargetFilterInputList
|
|
48
|
+
* { // ExperimentTemplateTargetInputFilter
|
|
49
49
|
* path: "STRING_VALUE", // required
|
|
50
|
-
* values: [ // required
|
|
50
|
+
* values: [ // ExperimentTemplateTargetFilterValues // required
|
|
51
51
|
* "STRING_VALUE",
|
|
52
52
|
* ],
|
|
53
53
|
* },
|
|
54
54
|
* ],
|
|
55
55
|
* selectionMode: "STRING_VALUE", // required
|
|
56
|
-
* parameters: {
|
|
56
|
+
* parameters: { // ExperimentTemplateTargetParameterMap
|
|
57
57
|
* "<keys>": "STRING_VALUE",
|
|
58
58
|
* },
|
|
59
59
|
* },
|
|
60
60
|
* },
|
|
61
|
-
* actions: {
|
|
62
|
-
* "<keys>": {
|
|
61
|
+
* actions: { // UpdateExperimentTemplateActionInputMap
|
|
62
|
+
* "<keys>": { // UpdateExperimentTemplateActionInputItem
|
|
63
63
|
* actionId: "STRING_VALUE",
|
|
64
64
|
* description: "STRING_VALUE",
|
|
65
|
-
* parameters: {
|
|
65
|
+
* parameters: { // ExperimentTemplateActionParameterMap
|
|
66
66
|
* "<keys>": "STRING_VALUE",
|
|
67
67
|
* },
|
|
68
|
-
* targets: {
|
|
68
|
+
* targets: { // ExperimentTemplateActionTargetMap
|
|
69
69
|
* "<keys>": "STRING_VALUE",
|
|
70
70
|
* },
|
|
71
|
-
* startAfter: [
|
|
71
|
+
* startAfter: [ // ExperimentTemplateActionStartAfterList
|
|
72
72
|
* "STRING_VALUE",
|
|
73
73
|
* ],
|
|
74
74
|
* },
|
|
75
75
|
* },
|
|
76
76
|
* roleArn: "STRING_VALUE",
|
|
77
|
-
* logConfiguration: {
|
|
78
|
-
* cloudWatchLogsConfiguration: {
|
|
77
|
+
* logConfiguration: { // UpdateExperimentTemplateLogConfigurationInput
|
|
78
|
+
* cloudWatchLogsConfiguration: { // ExperimentTemplateCloudWatchLogsLogConfigurationInput
|
|
79
79
|
* logGroupArn: "STRING_VALUE", // required
|
|
80
80
|
* },
|
|
81
|
-
* s3Configuration: {
|
|
81
|
+
* s3Configuration: { // ExperimentTemplateS3LogConfigurationInput
|
|
82
82
|
* bucketName: "STRING_VALUE", // required
|
|
83
83
|
* prefix: "STRING_VALUE",
|
|
84
84
|
* },
|
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.
|
|
4
|
+
"version": "3.301.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",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|