@aws-sdk/client-fis 3.952.0 → 3.954.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-cjs/index.js +486 -342
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/CreateExperimentTemplateCommand.js +2 -2
- package/dist-es/commands/CreateTargetAccountConfigurationCommand.js +2 -2
- package/dist-es/commands/DeleteExperimentTemplateCommand.js +2 -2
- package/dist-es/commands/DeleteTargetAccountConfigurationCommand.js +2 -2
- package/dist-es/commands/GetActionCommand.js +2 -2
- package/dist-es/commands/GetExperimentCommand.js +2 -2
- package/dist-es/commands/GetExperimentTargetAccountConfigurationCommand.js +2 -2
- package/dist-es/commands/GetExperimentTemplateCommand.js +2 -2
- package/dist-es/commands/GetSafetyLeverCommand.js +2 -2
- package/dist-es/commands/GetTargetAccountConfigurationCommand.js +2 -2
- package/dist-es/commands/GetTargetResourceTypeCommand.js +2 -2
- package/dist-es/commands/ListActionsCommand.js +2 -2
- package/dist-es/commands/ListExperimentResolvedTargetsCommand.js +2 -2
- package/dist-es/commands/ListExperimentTargetAccountConfigurationsCommand.js +2 -2
- package/dist-es/commands/ListExperimentTemplatesCommand.js +2 -2
- package/dist-es/commands/ListExperimentsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/ListTargetAccountConfigurationsCommand.js +2 -2
- package/dist-es/commands/ListTargetResourceTypesCommand.js +2 -2
- package/dist-es/commands/StartExperimentCommand.js +2 -2
- package/dist-es/commands/StopExperimentCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateExperimentTemplateCommand.js +2 -2
- package/dist-es/commands/UpdateSafetyLeverStateCommand.js +2 -2
- package/dist-es/commands/UpdateTargetAccountConfigurationCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +318 -329
- package/dist-types/FisClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +156 -199
- package/dist-types/ts3.4/FisClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +155 -200
- package/package.json +34 -34
|
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.fis",
|
|
32
|
+
version: "2020-12-01",
|
|
33
|
+
serviceTarget: "FaultInjectionSimulator",
|
|
34
|
+
},
|
|
30
35
|
serviceId: config?.serviceId ?? "fis",
|
|
31
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
32
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateExperimentTemplate } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateExperimentTemplate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateExperimentTemplateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateExperimentTemplateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FaultInjectionSimulator", "CreateExperimentTemplate", {})
|
|
13
13
|
.n("FisClient", "CreateExperimentTemplateCommand")
|
|
14
|
-
.sc(CreateExperimentTemplate)
|
|
14
|
+
.sc(CreateExperimentTemplate$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateTargetAccountConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateTargetAccountConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateTargetAccountConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateTargetAccountConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FaultInjectionSimulator", "CreateTargetAccountConfiguration", {})
|
|
13
13
|
.n("FisClient", "CreateTargetAccountConfigurationCommand")
|
|
14
|
-
.sc(CreateTargetAccountConfiguration)
|
|
14
|
+
.sc(CreateTargetAccountConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteExperimentTemplate } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteExperimentTemplate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteExperimentTemplateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteExperimentTemplateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FaultInjectionSimulator", "DeleteExperimentTemplate", {})
|
|
13
13
|
.n("FisClient", "DeleteExperimentTemplateCommand")
|
|
14
|
-
.sc(DeleteExperimentTemplate)
|
|
14
|
+
.sc(DeleteExperimentTemplate$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteTargetAccountConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteTargetAccountConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteTargetAccountConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteTargetAccountConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FaultInjectionSimulator", "DeleteTargetAccountConfiguration", {})
|
|
13
13
|
.n("FisClient", "DeleteTargetAccountConfigurationCommand")
|
|
14
|
-
.sc(DeleteTargetAccountConfiguration)
|
|
14
|
+
.sc(DeleteTargetAccountConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetAction } from "../schemas/schemas_0";
|
|
4
|
+
import { GetAction$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetActionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetActionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FaultInjectionSimulator", "GetAction", {})
|
|
13
13
|
.n("FisClient", "GetActionCommand")
|
|
14
|
-
.sc(GetAction)
|
|
14
|
+
.sc(GetAction$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetExperiment } from "../schemas/schemas_0";
|
|
4
|
+
import { GetExperiment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetExperimentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetExperimentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FaultInjectionSimulator", "GetExperiment", {})
|
|
13
13
|
.n("FisClient", "GetExperimentCommand")
|
|
14
|
-
.sc(GetExperiment)
|
|
14
|
+
.sc(GetExperiment$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetExperimentTargetAccountConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { GetExperimentTargetAccountConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetExperimentTargetAccountConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetExperimentTargetAccountConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FaultInjectionSimulator", "GetExperimentTargetAccountConfiguration", {})
|
|
13
13
|
.n("FisClient", "GetExperimentTargetAccountConfigurationCommand")
|
|
14
|
-
.sc(GetExperimentTargetAccountConfiguration)
|
|
14
|
+
.sc(GetExperimentTargetAccountConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetExperimentTemplate } from "../schemas/schemas_0";
|
|
4
|
+
import { GetExperimentTemplate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetExperimentTemplateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetExperimentTemplateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FaultInjectionSimulator", "GetExperimentTemplate", {})
|
|
13
13
|
.n("FisClient", "GetExperimentTemplateCommand")
|
|
14
|
-
.sc(GetExperimentTemplate)
|
|
14
|
+
.sc(GetExperimentTemplate$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetSafetyLever } from "../schemas/schemas_0";
|
|
4
|
+
import { GetSafetyLever$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetSafetyLeverCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetSafetyLeverCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FaultInjectionSimulator", "GetSafetyLever", {})
|
|
13
13
|
.n("FisClient", "GetSafetyLeverCommand")
|
|
14
|
-
.sc(GetSafetyLever)
|
|
14
|
+
.sc(GetSafetyLever$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetTargetAccountConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { GetTargetAccountConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetTargetAccountConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetTargetAccountConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FaultInjectionSimulator", "GetTargetAccountConfiguration", {})
|
|
13
13
|
.n("FisClient", "GetTargetAccountConfigurationCommand")
|
|
14
|
-
.sc(GetTargetAccountConfiguration)
|
|
14
|
+
.sc(GetTargetAccountConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetTargetResourceType } from "../schemas/schemas_0";
|
|
4
|
+
import { GetTargetResourceType$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetTargetResourceTypeCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetTargetResourceTypeCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FaultInjectionSimulator", "GetTargetResourceType", {})
|
|
13
13
|
.n("FisClient", "GetTargetResourceTypeCommand")
|
|
14
|
-
.sc(GetTargetResourceType)
|
|
14
|
+
.sc(GetTargetResourceType$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListActions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListActions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListActionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListActionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FaultInjectionSimulator", "ListActions", {})
|
|
13
13
|
.n("FisClient", "ListActionsCommand")
|
|
14
|
-
.sc(ListActions)
|
|
14
|
+
.sc(ListActions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListExperimentResolvedTargets } from "../schemas/schemas_0";
|
|
4
|
+
import { ListExperimentResolvedTargets$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListExperimentResolvedTargetsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListExperimentResolvedTargetsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FaultInjectionSimulator", "ListExperimentResolvedTargets", {})
|
|
13
13
|
.n("FisClient", "ListExperimentResolvedTargetsCommand")
|
|
14
|
-
.sc(ListExperimentResolvedTargets)
|
|
14
|
+
.sc(ListExperimentResolvedTargets$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListExperimentTargetAccountConfigurations } from "../schemas/schemas_0";
|
|
4
|
+
import { ListExperimentTargetAccountConfigurations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListExperimentTargetAccountConfigurationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListExperimentTargetAccountConfigurationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FaultInjectionSimulator", "ListExperimentTargetAccountConfigurations", {})
|
|
13
13
|
.n("FisClient", "ListExperimentTargetAccountConfigurationsCommand")
|
|
14
|
-
.sc(ListExperimentTargetAccountConfigurations)
|
|
14
|
+
.sc(ListExperimentTargetAccountConfigurations$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListExperimentTemplates } from "../schemas/schemas_0";
|
|
4
|
+
import { ListExperimentTemplates$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListExperimentTemplatesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListExperimentTemplatesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FaultInjectionSimulator", "ListExperimentTemplates", {})
|
|
13
13
|
.n("FisClient", "ListExperimentTemplatesCommand")
|
|
14
|
-
.sc(ListExperimentTemplates)
|
|
14
|
+
.sc(ListExperimentTemplates$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListExperiments } from "../schemas/schemas_0";
|
|
4
|
+
import { ListExperiments$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListExperimentsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListExperimentsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FaultInjectionSimulator", "ListExperiments", {})
|
|
13
13
|
.n("FisClient", "ListExperimentsCommand")
|
|
14
|
-
.sc(ListExperiments)
|
|
14
|
+
.sc(ListExperiments$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FaultInjectionSimulator", "ListTagsForResource", {})
|
|
13
13
|
.n("FisClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTargetAccountConfigurations } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTargetAccountConfigurations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTargetAccountConfigurationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTargetAccountConfigurationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FaultInjectionSimulator", "ListTargetAccountConfigurations", {})
|
|
13
13
|
.n("FisClient", "ListTargetAccountConfigurationsCommand")
|
|
14
|
-
.sc(ListTargetAccountConfigurations)
|
|
14
|
+
.sc(ListTargetAccountConfigurations$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTargetResourceTypes } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTargetResourceTypes$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTargetResourceTypesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTargetResourceTypesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FaultInjectionSimulator", "ListTargetResourceTypes", {})
|
|
13
13
|
.n("FisClient", "ListTargetResourceTypesCommand")
|
|
14
|
-
.sc(ListTargetResourceTypes)
|
|
14
|
+
.sc(ListTargetResourceTypes$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartExperiment } from "../schemas/schemas_0";
|
|
4
|
+
import { StartExperiment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartExperimentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartExperimentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FaultInjectionSimulator", "StartExperiment", {})
|
|
13
13
|
.n("FisClient", "StartExperimentCommand")
|
|
14
|
-
.sc(StartExperiment)
|
|
14
|
+
.sc(StartExperiment$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StopExperiment } from "../schemas/schemas_0";
|
|
4
|
+
import { StopExperiment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StopExperimentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StopExperimentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FaultInjectionSimulator", "StopExperiment", {})
|
|
13
13
|
.n("FisClient", "StopExperimentCommand")
|
|
14
|
-
.sc(StopExperiment)
|
|
14
|
+
.sc(StopExperiment$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FaultInjectionSimulator", "TagResource", {})
|
|
13
13
|
.n("FisClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FaultInjectionSimulator", "UntagResource", {})
|
|
13
13
|
.n("FisClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateExperimentTemplate } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateExperimentTemplate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateExperimentTemplateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateExperimentTemplateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FaultInjectionSimulator", "UpdateExperimentTemplate", {})
|
|
13
13
|
.n("FisClient", "UpdateExperimentTemplateCommand")
|
|
14
|
-
.sc(UpdateExperimentTemplate)
|
|
14
|
+
.sc(UpdateExperimentTemplate$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateSafetyLeverState } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateSafetyLeverState$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateSafetyLeverStateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateSafetyLeverStateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FaultInjectionSimulator", "UpdateSafetyLeverState", {})
|
|
13
13
|
.n("FisClient", "UpdateSafetyLeverStateCommand")
|
|
14
|
-
.sc(UpdateSafetyLeverState)
|
|
14
|
+
.sc(UpdateSafetyLeverState$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateTargetAccountConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateTargetAccountConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateTargetAccountConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateTargetAccountConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FaultInjectionSimulator", "UpdateTargetAccountConfiguration", {})
|
|
13
13
|
.n("FisClient", "UpdateTargetAccountConfigurationCommand")
|
|
14
|
-
.sc(UpdateTargetAccountConfiguration)
|
|
14
|
+
.sc(UpdateTargetAccountConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
26
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.fis",
|
|
29
|
+
version: "2020-12-01",
|
|
30
|
+
serviceTarget: "FaultInjectionSimulator",
|
|
31
|
+
},
|
|
27
32
|
serviceId: config?.serviceId ?? "fis",
|
|
28
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
29
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|