@aws-sdk/client-fis 3.300.0 → 3.303.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.
@@ -54,24 +54,22 @@ class ValidationException extends FisServiceException_1.FisServiceException {
54
54
  }
55
55
  }
56
56
  exports.ValidationException = ValidationException;
57
- var ExperimentActionStatus;
58
- (function (ExperimentActionStatus) {
59
- ExperimentActionStatus["cancelled"] = "cancelled";
60
- ExperimentActionStatus["completed"] = "completed";
61
- ExperimentActionStatus["failed"] = "failed";
62
- ExperimentActionStatus["initiating"] = "initiating";
63
- ExperimentActionStatus["pending"] = "pending";
64
- ExperimentActionStatus["running"] = "running";
65
- ExperimentActionStatus["stopped"] = "stopped";
66
- ExperimentActionStatus["stopping"] = "stopping";
67
- })(ExperimentActionStatus = exports.ExperimentActionStatus || (exports.ExperimentActionStatus = {}));
68
- var ExperimentStatus;
69
- (function (ExperimentStatus) {
70
- ExperimentStatus["completed"] = "completed";
71
- ExperimentStatus["failed"] = "failed";
72
- ExperimentStatus["initiating"] = "initiating";
73
- ExperimentStatus["pending"] = "pending";
74
- ExperimentStatus["running"] = "running";
75
- ExperimentStatus["stopped"] = "stopped";
76
- ExperimentStatus["stopping"] = "stopping";
77
- })(ExperimentStatus = exports.ExperimentStatus || (exports.ExperimentStatus = {}));
57
+ exports.ExperimentActionStatus = {
58
+ cancelled: "cancelled",
59
+ completed: "completed",
60
+ failed: "failed",
61
+ initiating: "initiating",
62
+ pending: "pending",
63
+ running: "running",
64
+ stopped: "stopped",
65
+ stopping: "stopping",
66
+ };
67
+ exports.ExperimentStatus = {
68
+ completed: "completed",
69
+ failed: "failed",
70
+ initiating: "initiating",
71
+ pending: "pending",
72
+ running: "running",
73
+ stopped: "stopped",
74
+ stopping: "stopping",
75
+ };
@@ -47,24 +47,22 @@ export class ValidationException extends __BaseException {
47
47
  Object.setPrototypeOf(this, ValidationException.prototype);
48
48
  }
49
49
  }
50
- export var ExperimentActionStatus;
51
- (function (ExperimentActionStatus) {
52
- ExperimentActionStatus["cancelled"] = "cancelled";
53
- ExperimentActionStatus["completed"] = "completed";
54
- ExperimentActionStatus["failed"] = "failed";
55
- ExperimentActionStatus["initiating"] = "initiating";
56
- ExperimentActionStatus["pending"] = "pending";
57
- ExperimentActionStatus["running"] = "running";
58
- ExperimentActionStatus["stopped"] = "stopped";
59
- ExperimentActionStatus["stopping"] = "stopping";
60
- })(ExperimentActionStatus || (ExperimentActionStatus = {}));
61
- export var ExperimentStatus;
62
- (function (ExperimentStatus) {
63
- ExperimentStatus["completed"] = "completed";
64
- ExperimentStatus["failed"] = "failed";
65
- ExperimentStatus["initiating"] = "initiating";
66
- ExperimentStatus["pending"] = "pending";
67
- ExperimentStatus["running"] = "running";
68
- ExperimentStatus["stopped"] = "stopped";
69
- ExperimentStatus["stopping"] = "stopping";
70
- })(ExperimentStatus || (ExperimentStatus = {}));
50
+ export const ExperimentActionStatus = {
51
+ cancelled: "cancelled",
52
+ completed: "completed",
53
+ failed: "failed",
54
+ initiating: "initiating",
55
+ pending: "pending",
56
+ running: "running",
57
+ stopped: "stopped",
58
+ stopping: "stopping",
59
+ };
60
+ export const ExperimentStatus = {
61
+ completed: "completed",
62
+ failed: "failed",
63
+ initiating: "initiating",
64
+ pending: "pending",
65
+ running: "running",
66
+ stopped: "stopped",
67
+ stopping: "stopping",
68
+ };
@@ -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
  * },
@@ -508,17 +508,22 @@ export interface DeleteExperimentTemplateResponse {
508
508
  }
509
509
  /**
510
510
  * @public
511
+ * @enum
511
512
  */
512
- export declare enum ExperimentActionStatus {
513
- cancelled = "cancelled",
514
- completed = "completed",
515
- failed = "failed",
516
- initiating = "initiating",
517
- pending = "pending",
518
- running = "running",
519
- stopped = "stopped",
520
- stopping = "stopping"
521
- }
513
+ export declare const ExperimentActionStatus: {
514
+ readonly cancelled: "cancelled";
515
+ readonly completed: "completed";
516
+ readonly failed: "failed";
517
+ readonly initiating: "initiating";
518
+ readonly pending: "pending";
519
+ readonly running: "running";
520
+ readonly stopped: "stopped";
521
+ readonly stopping: "stopping";
522
+ };
523
+ /**
524
+ * @public
525
+ */
526
+ export type ExperimentActionStatus = (typeof ExperimentActionStatus)[keyof typeof ExperimentActionStatus];
522
527
  /**
523
528
  * @public
524
529
  * <p>Describes the state of an action.</p>
@@ -615,16 +620,21 @@ export interface ExperimentLogConfiguration {
615
620
  }
616
621
  /**
617
622
  * @public
623
+ * @enum
618
624
  */
619
- export declare enum ExperimentStatus {
620
- completed = "completed",
621
- failed = "failed",
622
- initiating = "initiating",
623
- pending = "pending",
624
- running = "running",
625
- stopped = "stopped",
626
- stopping = "stopping"
627
- }
625
+ export declare const ExperimentStatus: {
626
+ readonly completed: "completed";
627
+ readonly failed: "failed";
628
+ readonly initiating: "initiating";
629
+ readonly pending: "pending";
630
+ readonly running: "running";
631
+ readonly stopped: "stopped";
632
+ readonly stopping: "stopping";
633
+ };
634
+ /**
635
+ * @public
636
+ */
637
+ export type ExperimentStatus = (typeof ExperimentStatus)[keyof typeof ExperimentStatus];
628
638
  /**
629
639
  * @public
630
640
  * <p>Describes the state of an experiment.</p>
@@ -147,16 +147,18 @@ export interface DeleteExperimentTemplateRequest {
147
147
  export interface DeleteExperimentTemplateResponse {
148
148
  experimentTemplate?: ExperimentTemplate;
149
149
  }
150
- export declare enum ExperimentActionStatus {
151
- cancelled = "cancelled",
152
- completed = "completed",
153
- failed = "failed",
154
- initiating = "initiating",
155
- pending = "pending",
156
- running = "running",
157
- stopped = "stopped",
158
- stopping = "stopping",
159
- }
150
+ export declare const ExperimentActionStatus: {
151
+ readonly cancelled: "cancelled";
152
+ readonly completed: "completed";
153
+ readonly failed: "failed";
154
+ readonly initiating: "initiating";
155
+ readonly pending: "pending";
156
+ readonly running: "running";
157
+ readonly stopped: "stopped";
158
+ readonly stopping: "stopping";
159
+ };
160
+ export type ExperimentActionStatus =
161
+ (typeof ExperimentActionStatus)[keyof typeof ExperimentActionStatus];
160
162
  export interface ExperimentActionState {
161
163
  status?: ExperimentActionStatus | string;
162
164
  reason?: string;
@@ -183,15 +185,17 @@ export interface ExperimentLogConfiguration {
183
185
  s3Configuration?: ExperimentS3LogConfiguration;
184
186
  logSchemaVersion?: number;
185
187
  }
186
- export declare enum ExperimentStatus {
187
- completed = "completed",
188
- failed = "failed",
189
- initiating = "initiating",
190
- pending = "pending",
191
- running = "running",
192
- stopped = "stopped",
193
- stopping = "stopping",
194
- }
188
+ export declare const ExperimentStatus: {
189
+ readonly completed: "completed";
190
+ readonly failed: "failed";
191
+ readonly initiating: "initiating";
192
+ readonly pending: "pending";
193
+ readonly running: "running";
194
+ readonly stopped: "stopped";
195
+ readonly stopping: "stopping";
196
+ };
197
+ export type ExperimentStatus =
198
+ (typeof ExperimentStatus)[keyof typeof ExperimentStatus];
195
199
  export interface ExperimentState {
196
200
  status?: ExperimentStatus | string;
197
201
  reason?: string;
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.300.0",
4
+ "version": "3.303.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,43 +21,43 @@
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.300.0",
25
- "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
27
- "@aws-sdk/fetch-http-handler": "3.296.0",
28
- "@aws-sdk/hash-node": "3.296.0",
29
- "@aws-sdk/invalid-dependency": "3.296.0",
30
- "@aws-sdk/middleware-content-length": "3.296.0",
31
- "@aws-sdk/middleware-endpoint": "3.299.0",
32
- "@aws-sdk/middleware-host-header": "3.296.0",
33
- "@aws-sdk/middleware-logger": "3.296.0",
34
- "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.300.0",
36
- "@aws-sdk/middleware-serde": "3.296.0",
37
- "@aws-sdk/middleware-signing": "3.299.0",
38
- "@aws-sdk/middleware-stack": "3.296.0",
39
- "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.300.0",
41
- "@aws-sdk/node-http-handler": "3.296.0",
42
- "@aws-sdk/protocol-http": "3.296.0",
43
- "@aws-sdk/smithy-client": "3.296.0",
44
- "@aws-sdk/types": "3.296.0",
45
- "@aws-sdk/url-parser": "3.296.0",
46
- "@aws-sdk/util-base64": "3.295.0",
47
- "@aws-sdk/util-body-length-browser": "3.295.0",
48
- "@aws-sdk/util-body-length-node": "3.295.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
- "@aws-sdk/util-endpoints": "3.296.0",
52
- "@aws-sdk/util-retry": "3.296.0",
53
- "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.300.0",
55
- "@aws-sdk/util-utf8": "3.295.0",
24
+ "@aws-sdk/client-sts": "3.303.0",
25
+ "@aws-sdk/config-resolver": "3.303.0",
26
+ "@aws-sdk/credential-provider-node": "3.303.0",
27
+ "@aws-sdk/fetch-http-handler": "3.303.0",
28
+ "@aws-sdk/hash-node": "3.303.0",
29
+ "@aws-sdk/invalid-dependency": "3.303.0",
30
+ "@aws-sdk/middleware-content-length": "3.303.0",
31
+ "@aws-sdk/middleware-endpoint": "3.303.0",
32
+ "@aws-sdk/middleware-host-header": "3.303.0",
33
+ "@aws-sdk/middleware-logger": "3.303.0",
34
+ "@aws-sdk/middleware-recursion-detection": "3.303.0",
35
+ "@aws-sdk/middleware-retry": "3.303.0",
36
+ "@aws-sdk/middleware-serde": "3.303.0",
37
+ "@aws-sdk/middleware-signing": "3.303.0",
38
+ "@aws-sdk/middleware-stack": "3.303.0",
39
+ "@aws-sdk/middleware-user-agent": "3.303.0",
40
+ "@aws-sdk/node-config-provider": "3.303.0",
41
+ "@aws-sdk/node-http-handler": "3.303.0",
42
+ "@aws-sdk/protocol-http": "3.303.0",
43
+ "@aws-sdk/smithy-client": "3.303.0",
44
+ "@aws-sdk/types": "3.303.0",
45
+ "@aws-sdk/url-parser": "3.303.0",
46
+ "@aws-sdk/util-base64": "3.303.0",
47
+ "@aws-sdk/util-body-length-browser": "3.303.0",
48
+ "@aws-sdk/util-body-length-node": "3.303.0",
49
+ "@aws-sdk/util-defaults-mode-browser": "3.303.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.303.0",
51
+ "@aws-sdk/util-endpoints": "3.303.0",
52
+ "@aws-sdk/util-retry": "3.303.0",
53
+ "@aws-sdk/util-user-agent-browser": "3.303.0",
54
+ "@aws-sdk/util-user-agent-node": "3.303.0",
55
+ "@aws-sdk/util-utf8": "3.303.0",
56
56
  "tslib": "^2.5.0",
57
57
  "uuid": "^8.3.2"
58
58
  },
59
59
  "devDependencies": {
60
- "@aws-sdk/service-client-documentation-generator": "3.295.0",
60
+ "@aws-sdk/service-client-documentation-generator": "3.303.0",
61
61
  "@tsconfig/node14": "1.0.3",
62
62
  "@types/node": "^14.14.31",
63
63
  "@types/uuid": "^8.3.0",