@aws-sdk/client-imagebuilder 3.100.0 → 3.105.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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** support recursion detection in Lambda ([#3654](https://github.com/aws/aws-sdk-js-v3/issues/3654)) ([ecfe46e](https://github.com/aws/aws-sdk-js-v3/commit/ecfe46ea1fd8b6e3812b75b3dc6c03554fb4b3fa))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @aws-sdk/client-imagebuilder
|
|
@@ -5,6 +5,7 @@ const config_resolver_1 = require("@aws-sdk/config-resolver");
|
|
|
5
5
|
const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
|
|
6
6
|
const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
|
|
7
7
|
const middleware_logger_1 = require("@aws-sdk/middleware-logger");
|
|
8
|
+
const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
|
|
8
9
|
const middleware_retry_1 = require("@aws-sdk/middleware-retry");
|
|
9
10
|
const middleware_signing_1 = require("@aws-sdk/middleware-signing");
|
|
10
11
|
const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
|
|
@@ -25,6 +26,7 @@ class ImagebuilderClient extends smithy_client_1.Client {
|
|
|
25
26
|
this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
|
|
26
27
|
this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
|
|
27
28
|
this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
|
|
29
|
+
this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
|
|
28
30
|
this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
|
|
29
31
|
this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
|
|
30
32
|
}
|
|
@@ -3,6 +3,7 @@ import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-re
|
|
|
3
3
|
import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
|
|
4
4
|
import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
|
|
5
5
|
import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
|
|
6
|
+
import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
|
|
6
7
|
import { getRetryPlugin, resolveRetryConfig } from "@aws-sdk/middleware-retry";
|
|
7
8
|
import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-signing";
|
|
8
9
|
import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
|
|
@@ -25,6 +26,7 @@ var ImagebuilderClient = (function (_super) {
|
|
|
25
26
|
_this.middlewareStack.use(getContentLengthPlugin(_this.config));
|
|
26
27
|
_this.middlewareStack.use(getHostHeaderPlugin(_this.config));
|
|
27
28
|
_this.middlewareStack.use(getLoggerPlugin(_this.config));
|
|
29
|
+
_this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
|
|
28
30
|
_this.middlewareStack.use(getAwsAuthPlugin(_this.config));
|
|
29
31
|
_this.middlewareStack.use(getUserAgentPlugin(_this.config));
|
|
30
32
|
return _this;
|
|
@@ -174,9 +174,7 @@ export interface AmiDistributionConfiguration {
|
|
|
174
174
|
/**
|
|
175
175
|
* <p>The tags to apply to AMIs distributed to this Region.</p>
|
|
176
176
|
*/
|
|
177
|
-
amiTags?:
|
|
178
|
-
[key: string]: string;
|
|
179
|
-
};
|
|
177
|
+
amiTags?: Record<string, string>;
|
|
180
178
|
/**
|
|
181
179
|
* <p>The KMS key identifier used to encrypt the distributed image.</p>
|
|
182
180
|
*/
|
|
@@ -457,9 +455,7 @@ export interface Component {
|
|
|
457
455
|
/**
|
|
458
456
|
* <p>The tags associated with the component.</p>
|
|
459
457
|
*/
|
|
460
|
-
tags?:
|
|
461
|
-
[key: string]: string;
|
|
462
|
-
};
|
|
458
|
+
tags?: Record<string, string>;
|
|
463
459
|
}
|
|
464
460
|
export declare namespace Component {
|
|
465
461
|
/**
|
|
@@ -562,9 +558,7 @@ export interface ComponentSummary {
|
|
|
562
558
|
/**
|
|
563
559
|
* <p>The tags associated with the component.</p>
|
|
564
560
|
*/
|
|
565
|
-
tags?:
|
|
566
|
-
[key: string]: string;
|
|
567
|
-
};
|
|
561
|
+
tags?: Record<string, string>;
|
|
568
562
|
}
|
|
569
563
|
export declare namespace ComponentSummary {
|
|
570
564
|
/**
|
|
@@ -920,9 +914,7 @@ export interface ContainerRecipe {
|
|
|
920
914
|
/**
|
|
921
915
|
* <p>Tags that are attached to the container recipe.</p>
|
|
922
916
|
*/
|
|
923
|
-
tags?:
|
|
924
|
-
[key: string]: string;
|
|
925
|
-
};
|
|
917
|
+
tags?: Record<string, string>;
|
|
926
918
|
/**
|
|
927
919
|
* <p>The working directory for use during build and test workflows.</p>
|
|
928
920
|
*/
|
|
@@ -973,9 +965,7 @@ export interface ContainerRecipeSummary {
|
|
|
973
965
|
/**
|
|
974
966
|
* <p>Tags that are attached to the container recipe.</p>
|
|
975
967
|
*/
|
|
976
|
-
tags?:
|
|
977
|
-
[key: string]: string;
|
|
978
|
-
};
|
|
968
|
+
tags?: Record<string, string>;
|
|
979
969
|
}
|
|
980
970
|
export declare namespace ContainerRecipeSummary {
|
|
981
971
|
/**
|
|
@@ -1045,9 +1035,7 @@ export interface CreateComponentRequest {
|
|
|
1045
1035
|
/**
|
|
1046
1036
|
* <p>The tags of the component.</p>
|
|
1047
1037
|
*/
|
|
1048
|
-
tags?:
|
|
1049
|
-
[key: string]: string;
|
|
1050
|
-
};
|
|
1038
|
+
tags?: Record<string, string>;
|
|
1051
1039
|
/**
|
|
1052
1040
|
* <p>The idempotency token of the component.</p>
|
|
1053
1041
|
*/
|
|
@@ -1173,9 +1161,7 @@ export interface CreateContainerRecipeRequest {
|
|
|
1173
1161
|
/**
|
|
1174
1162
|
* <p>Tags that are attached to the container recipe.</p>
|
|
1175
1163
|
*/
|
|
1176
|
-
tags?:
|
|
1177
|
-
[key: string]: string;
|
|
1178
|
-
};
|
|
1164
|
+
tags?: Record<string, string>;
|
|
1179
1165
|
/**
|
|
1180
1166
|
* <p>The working directory for use during build and test workflows.</p>
|
|
1181
1167
|
*/
|
|
@@ -1446,9 +1432,7 @@ export interface CreateDistributionConfigurationRequest {
|
|
|
1446
1432
|
/**
|
|
1447
1433
|
* <p> The tags of the distribution configuration.</p>
|
|
1448
1434
|
*/
|
|
1449
|
-
tags?:
|
|
1450
|
-
[key: string]: string;
|
|
1451
|
-
};
|
|
1435
|
+
tags?: Record<string, string>;
|
|
1452
1436
|
/**
|
|
1453
1437
|
* <p> The idempotency token of the distribution configuration.</p>
|
|
1454
1438
|
*/
|
|
@@ -1536,9 +1520,7 @@ export interface CreateImageRequest {
|
|
|
1536
1520
|
/**
|
|
1537
1521
|
* <p> The tags of the image.</p>
|
|
1538
1522
|
*/
|
|
1539
|
-
tags?:
|
|
1540
|
-
[key: string]: string;
|
|
1541
|
-
};
|
|
1523
|
+
tags?: Record<string, string>;
|
|
1542
1524
|
/**
|
|
1543
1525
|
* <p> The idempotency token used to make this request idempotent.</p>
|
|
1544
1526
|
*/
|
|
@@ -1663,9 +1645,7 @@ export interface CreateImagePipelineRequest {
|
|
|
1663
1645
|
/**
|
|
1664
1646
|
* <p> The tags of the image pipeline.</p>
|
|
1665
1647
|
*/
|
|
1666
|
-
tags?:
|
|
1667
|
-
[key: string]: string;
|
|
1668
|
-
};
|
|
1648
|
+
tags?: Record<string, string>;
|
|
1669
1649
|
/**
|
|
1670
1650
|
* <p> The idempotency token used to make this request idempotent.</p>
|
|
1671
1651
|
*/
|
|
@@ -1742,9 +1722,7 @@ export interface CreateImageRecipeRequest {
|
|
|
1742
1722
|
/**
|
|
1743
1723
|
* <p> The tags of the image recipe.</p>
|
|
1744
1724
|
*/
|
|
1745
|
-
tags?:
|
|
1746
|
-
[key: string]: string;
|
|
1747
|
-
};
|
|
1725
|
+
tags?: Record<string, string>;
|
|
1748
1726
|
/**
|
|
1749
1727
|
* <p>The working directory used during build and test workflows.</p>
|
|
1750
1728
|
*/
|
|
@@ -1918,9 +1896,7 @@ export interface CreateInfrastructureConfigurationRequest {
|
|
|
1918
1896
|
/**
|
|
1919
1897
|
* <p>The tags attached to the resource created by Image Builder.</p>
|
|
1920
1898
|
*/
|
|
1921
|
-
resourceTags?:
|
|
1922
|
-
[key: string]: string;
|
|
1923
|
-
};
|
|
1899
|
+
resourceTags?: Record<string, string>;
|
|
1924
1900
|
/**
|
|
1925
1901
|
* <p>The instance metadata options that you can set for the HTTP requests that
|
|
1926
1902
|
* pipeline builds use to launch EC2 build and test instances.</p>
|
|
@@ -1929,9 +1905,7 @@ export interface CreateInfrastructureConfigurationRequest {
|
|
|
1929
1905
|
/**
|
|
1930
1906
|
* <p>The tags of the infrastructure configuration.</p>
|
|
1931
1907
|
*/
|
|
1932
|
-
tags?:
|
|
1933
|
-
[key: string]: string;
|
|
1934
|
-
};
|
|
1908
|
+
tags?: Record<string, string>;
|
|
1935
1909
|
/**
|
|
1936
1910
|
* <p>The idempotency token used to make this request idempotent.</p>
|
|
1937
1911
|
*/
|
|
@@ -2208,9 +2182,7 @@ export interface DistributionConfiguration {
|
|
|
2208
2182
|
/**
|
|
2209
2183
|
* <p>The tags of the distribution configuration.</p>
|
|
2210
2184
|
*/
|
|
2211
|
-
tags?:
|
|
2212
|
-
[key: string]: string;
|
|
2213
|
-
};
|
|
2185
|
+
tags?: Record<string, string>;
|
|
2214
2186
|
}
|
|
2215
2187
|
export declare namespace DistributionConfiguration {
|
|
2216
2188
|
/**
|
|
@@ -2245,9 +2217,7 @@ export interface DistributionConfigurationSummary {
|
|
|
2245
2217
|
/**
|
|
2246
2218
|
* <p>The tags associated with the distribution configuration.</p>
|
|
2247
2219
|
*/
|
|
2248
|
-
tags?:
|
|
2249
|
-
[key: string]: string;
|
|
2250
|
-
};
|
|
2220
|
+
tags?: Record<string, string>;
|
|
2251
2221
|
/**
|
|
2252
2222
|
* <p>A list of Regions where the container image is distributed to.</p>
|
|
2253
2223
|
*/
|
|
@@ -2501,9 +2471,7 @@ export interface ImageRecipe {
|
|
|
2501
2471
|
/**
|
|
2502
2472
|
* <p>The tags of the image recipe.</p>
|
|
2503
2473
|
*/
|
|
2504
|
-
tags?:
|
|
2505
|
-
[key: string]: string;
|
|
2506
|
-
};
|
|
2474
|
+
tags?: Record<string, string>;
|
|
2507
2475
|
/**
|
|
2508
2476
|
* <p>The working directory to be used during build and test workflows.</p>
|
|
2509
2477
|
*/
|
|
@@ -2587,9 +2555,7 @@ export interface InfrastructureConfiguration {
|
|
|
2587
2555
|
/**
|
|
2588
2556
|
* <p>The tags attached to the resource created by Image Builder.</p>
|
|
2589
2557
|
*/
|
|
2590
|
-
resourceTags?:
|
|
2591
|
-
[key: string]: string;
|
|
2592
|
-
};
|
|
2558
|
+
resourceTags?: Record<string, string>;
|
|
2593
2559
|
/**
|
|
2594
2560
|
* <p>The instance metadata option settings for the infrastructure configuration.</p>
|
|
2595
2561
|
*/
|
|
@@ -2597,9 +2563,7 @@ export interface InfrastructureConfiguration {
|
|
|
2597
2563
|
/**
|
|
2598
2564
|
* <p>The tags of the infrastructure configuration.</p>
|
|
2599
2565
|
*/
|
|
2600
|
-
tags?:
|
|
2601
|
-
[key: string]: string;
|
|
2602
|
-
};
|
|
2566
|
+
tags?: Record<string, string>;
|
|
2603
2567
|
}
|
|
2604
2568
|
export declare namespace InfrastructureConfiguration {
|
|
2605
2569
|
/**
|
|
@@ -2739,9 +2703,7 @@ export interface Image {
|
|
|
2739
2703
|
/**
|
|
2740
2704
|
* <p>The tags of the image.</p>
|
|
2741
2705
|
*/
|
|
2742
|
-
tags?:
|
|
2743
|
-
[key: string]: string;
|
|
2744
|
-
};
|
|
2706
|
+
tags?: Record<string, string>;
|
|
2745
2707
|
/**
|
|
2746
2708
|
* <p>Indicates the type of build that created this image. The build can be initiated
|
|
2747
2709
|
* in the following ways:</p>
|
|
@@ -2875,9 +2837,7 @@ export interface ImagePipeline {
|
|
|
2875
2837
|
/**
|
|
2876
2838
|
* <p>The tags of this image pipeline.</p>
|
|
2877
2839
|
*/
|
|
2878
|
-
tags?:
|
|
2879
|
-
[key: string]: string;
|
|
2880
|
-
};
|
|
2840
|
+
tags?: Record<string, string>;
|
|
2881
2841
|
}
|
|
2882
2842
|
export declare namespace ImagePipeline {
|
|
2883
2843
|
/**
|
|
@@ -3079,9 +3039,7 @@ export interface ImportComponentRequest {
|
|
|
3079
3039
|
/**
|
|
3080
3040
|
* <p>The tags of the component.</p>
|
|
3081
3041
|
*/
|
|
3082
|
-
tags?:
|
|
3083
|
-
[key: string]: string;
|
|
3084
|
-
};
|
|
3042
|
+
tags?: Record<string, string>;
|
|
3085
3043
|
/**
|
|
3086
3044
|
* <p>The idempotency token of the component.</p>
|
|
3087
3045
|
*/
|
|
@@ -3156,9 +3114,7 @@ export interface ImportVmImageRequest {
|
|
|
3156
3114
|
/**
|
|
3157
3115
|
* <p>Tags that are attached to the import resources.</p>
|
|
3158
3116
|
*/
|
|
3159
|
-
tags?:
|
|
3160
|
-
[key: string]: string;
|
|
3161
|
-
};
|
|
3117
|
+
tags?: Record<string, string>;
|
|
3162
3118
|
/**
|
|
3163
3119
|
* <p>Unique, case-sensitive identifier you provide to ensure
|
|
3164
3120
|
* idempotency of the request. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html">Ensuring idempotency</a>
|
|
@@ -3552,9 +3508,7 @@ export interface ImageSummary {
|
|
|
3552
3508
|
/**
|
|
3553
3509
|
* <p>The tags of the image.</p>
|
|
3554
3510
|
*/
|
|
3555
|
-
tags?:
|
|
3556
|
-
[key: string]: string;
|
|
3557
|
-
};
|
|
3511
|
+
tags?: Record<string, string>;
|
|
3558
3512
|
/**
|
|
3559
3513
|
* <p>Indicates the type of build that created this image. The build can be initiated
|
|
3560
3514
|
* in the following ways:</p>
|
|
@@ -3875,9 +3829,7 @@ export interface ImageRecipeSummary {
|
|
|
3875
3829
|
/**
|
|
3876
3830
|
* <p>The tags of the image recipe.</p>
|
|
3877
3831
|
*/
|
|
3878
|
-
tags?:
|
|
3879
|
-
[key: string]: string;
|
|
3880
|
-
};
|
|
3832
|
+
tags?: Record<string, string>;
|
|
3881
3833
|
}
|
|
3882
3834
|
export declare namespace ImageRecipeSummary {
|
|
3883
3835
|
/**
|
|
@@ -4148,15 +4100,11 @@ export interface InfrastructureConfigurationSummary {
|
|
|
4148
4100
|
/**
|
|
4149
4101
|
* <p>The tags attached to the image created by Image Builder.</p>
|
|
4150
4102
|
*/
|
|
4151
|
-
resourceTags?:
|
|
4152
|
-
[key: string]: string;
|
|
4153
|
-
};
|
|
4103
|
+
resourceTags?: Record<string, string>;
|
|
4154
4104
|
/**
|
|
4155
4105
|
* <p>The tags of the infrastructure configuration.</p>
|
|
4156
4106
|
*/
|
|
4157
|
-
tags?:
|
|
4158
|
-
[key: string]: string;
|
|
4159
|
-
};
|
|
4107
|
+
tags?: Record<string, string>;
|
|
4160
4108
|
/**
|
|
4161
4109
|
* <p>The instance types of the infrastructure configuration.</p>
|
|
4162
4110
|
*/
|
|
@@ -4222,9 +4170,7 @@ export interface ListTagsForResourceResponse {
|
|
|
4222
4170
|
/**
|
|
4223
4171
|
* <p>The tags for the specified resource.</p>
|
|
4224
4172
|
*/
|
|
4225
|
-
tags?:
|
|
4226
|
-
[key: string]: string;
|
|
4227
|
-
};
|
|
4173
|
+
tags?: Record<string, string>;
|
|
4228
4174
|
}
|
|
4229
4175
|
export declare namespace ListTagsForResourceResponse {
|
|
4230
4176
|
/**
|
|
@@ -4415,9 +4361,7 @@ export interface TagResourceRequest {
|
|
|
4415
4361
|
/**
|
|
4416
4362
|
* <p>The tags to apply to the resource.</p>
|
|
4417
4363
|
*/
|
|
4418
|
-
tags:
|
|
4419
|
-
[key: string]: string;
|
|
4420
|
-
} | undefined;
|
|
4364
|
+
tags: Record<string, string> | undefined;
|
|
4421
4365
|
}
|
|
4422
4366
|
export declare namespace TagResourceRequest {
|
|
4423
4367
|
/**
|
|
@@ -4638,9 +4582,7 @@ export interface UpdateInfrastructureConfigurationRequest {
|
|
|
4638
4582
|
/**
|
|
4639
4583
|
* <p>The tags attached to the resource created by Image Builder.</p>
|
|
4640
4584
|
*/
|
|
4641
|
-
resourceTags?:
|
|
4642
|
-
[key: string]: string;
|
|
4643
|
-
};
|
|
4585
|
+
resourceTags?: Record<string, string>;
|
|
4644
4586
|
/**
|
|
4645
4587
|
* <p>The instance metadata options that you can set for the HTTP requests that pipeline builds
|
|
4646
4588
|
* use to launch EC2 build and test instances. For more information about instance metadata
|
|
@@ -87,9 +87,7 @@ export interface AmiDistributionConfiguration {
|
|
|
87
87
|
|
|
88
88
|
targetAccountIds?: string[];
|
|
89
89
|
|
|
90
|
-
amiTags?:
|
|
91
|
-
[key: string]: string;
|
|
92
|
-
};
|
|
90
|
+
amiTags?: Record<string, string>;
|
|
93
91
|
|
|
94
92
|
kmsKeyId?: string;
|
|
95
93
|
|
|
@@ -252,9 +250,7 @@ export interface Component {
|
|
|
252
250
|
|
|
253
251
|
dateCreated?: string;
|
|
254
252
|
|
|
255
|
-
tags?:
|
|
256
|
-
[key: string]: string;
|
|
257
|
-
};
|
|
253
|
+
tags?: Record<string, string>;
|
|
258
254
|
}
|
|
259
255
|
export declare namespace Component {
|
|
260
256
|
|
|
@@ -310,9 +306,7 @@ export interface ComponentSummary {
|
|
|
310
306
|
|
|
311
307
|
dateCreated?: string;
|
|
312
308
|
|
|
313
|
-
tags?:
|
|
314
|
-
[key: string]: string;
|
|
315
|
-
};
|
|
309
|
+
tags?: Record<string, string>;
|
|
316
310
|
}
|
|
317
311
|
export declare namespace ComponentSummary {
|
|
318
312
|
|
|
@@ -473,9 +467,7 @@ export interface ContainerRecipe {
|
|
|
473
467
|
|
|
474
468
|
dateCreated?: string;
|
|
475
469
|
|
|
476
|
-
tags?:
|
|
477
|
-
[key: string]: string;
|
|
478
|
-
};
|
|
470
|
+
tags?: Record<string, string>;
|
|
479
471
|
|
|
480
472
|
workingDirectory?: string;
|
|
481
473
|
|
|
@@ -502,9 +494,7 @@ export interface ContainerRecipeSummary {
|
|
|
502
494
|
|
|
503
495
|
dateCreated?: string;
|
|
504
496
|
|
|
505
|
-
tags?:
|
|
506
|
-
[key: string]: string;
|
|
507
|
-
};
|
|
497
|
+
tags?: Record<string, string>;
|
|
508
498
|
}
|
|
509
499
|
export declare namespace ContainerRecipeSummary {
|
|
510
500
|
|
|
@@ -530,9 +520,7 @@ export interface CreateComponentRequest {
|
|
|
530
520
|
|
|
531
521
|
kmsKeyId?: string;
|
|
532
522
|
|
|
533
|
-
tags?:
|
|
534
|
-
[key: string]: string;
|
|
535
|
-
};
|
|
523
|
+
tags?: Record<string, string>;
|
|
536
524
|
|
|
537
525
|
clientToken?: string;
|
|
538
526
|
}
|
|
@@ -597,9 +585,7 @@ export interface CreateContainerRecipeRequest {
|
|
|
597
585
|
|
|
598
586
|
parentImage: string | undefined;
|
|
599
587
|
|
|
600
|
-
tags?:
|
|
601
|
-
[key: string]: string;
|
|
602
|
-
};
|
|
588
|
+
tags?: Record<string, string>;
|
|
603
589
|
|
|
604
590
|
workingDirectory?: string;
|
|
605
591
|
|
|
@@ -733,9 +719,7 @@ export interface CreateDistributionConfigurationRequest {
|
|
|
733
719
|
|
|
734
720
|
distributions: Distribution[] | undefined;
|
|
735
721
|
|
|
736
|
-
tags?:
|
|
737
|
-
[key: string]: string;
|
|
738
|
-
};
|
|
722
|
+
tags?: Record<string, string>;
|
|
739
723
|
|
|
740
724
|
clientToken?: string;
|
|
741
725
|
}
|
|
@@ -780,9 +764,7 @@ export interface CreateImageRequest {
|
|
|
780
764
|
|
|
781
765
|
enhancedImageMetadataEnabled?: boolean;
|
|
782
766
|
|
|
783
|
-
tags?:
|
|
784
|
-
[key: string]: string;
|
|
785
|
-
};
|
|
767
|
+
tags?: Record<string, string>;
|
|
786
768
|
|
|
787
769
|
clientToken?: string;
|
|
788
770
|
}
|
|
@@ -845,9 +827,7 @@ export interface CreateImagePipelineRequest {
|
|
|
845
827
|
|
|
846
828
|
status?: PipelineStatus | string;
|
|
847
829
|
|
|
848
|
-
tags?:
|
|
849
|
-
[key: string]: string;
|
|
850
|
-
};
|
|
830
|
+
tags?: Record<string, string>;
|
|
851
831
|
|
|
852
832
|
clientToken?: string;
|
|
853
833
|
}
|
|
@@ -881,9 +861,7 @@ export interface CreateImageRecipeRequest {
|
|
|
881
861
|
|
|
882
862
|
blockDeviceMappings?: InstanceBlockDeviceMapping[];
|
|
883
863
|
|
|
884
|
-
tags?:
|
|
885
|
-
[key: string]: string;
|
|
886
|
-
};
|
|
864
|
+
tags?: Record<string, string>;
|
|
887
865
|
|
|
888
866
|
workingDirectory?: string;
|
|
889
867
|
|
|
@@ -960,15 +938,11 @@ export interface CreateInfrastructureConfigurationRequest {
|
|
|
960
938
|
|
|
961
939
|
snsTopicArn?: string;
|
|
962
940
|
|
|
963
|
-
resourceTags?:
|
|
964
|
-
[key: string]: string;
|
|
965
|
-
};
|
|
941
|
+
resourceTags?: Record<string, string>;
|
|
966
942
|
|
|
967
943
|
instanceMetadataOptions?: InstanceMetadataOptions;
|
|
968
944
|
|
|
969
|
-
tags?:
|
|
970
|
-
[key: string]: string;
|
|
971
|
-
};
|
|
945
|
+
tags?: Record<string, string>;
|
|
972
946
|
|
|
973
947
|
clientToken?: string;
|
|
974
948
|
}
|
|
@@ -1138,9 +1112,7 @@ export interface DistributionConfiguration {
|
|
|
1138
1112
|
|
|
1139
1113
|
dateUpdated?: string;
|
|
1140
1114
|
|
|
1141
|
-
tags?:
|
|
1142
|
-
[key: string]: string;
|
|
1143
|
-
};
|
|
1115
|
+
tags?: Record<string, string>;
|
|
1144
1116
|
}
|
|
1145
1117
|
export declare namespace DistributionConfiguration {
|
|
1146
1118
|
|
|
@@ -1159,9 +1131,7 @@ export interface DistributionConfigurationSummary {
|
|
|
1159
1131
|
|
|
1160
1132
|
dateUpdated?: string;
|
|
1161
1133
|
|
|
1162
|
-
tags?:
|
|
1163
|
-
[key: string]: string;
|
|
1164
|
-
};
|
|
1134
|
+
tags?: Record<string, string>;
|
|
1165
1135
|
|
|
1166
1136
|
regions?: string[];
|
|
1167
1137
|
}
|
|
@@ -1314,9 +1284,7 @@ export interface ImageRecipe {
|
|
|
1314
1284
|
|
|
1315
1285
|
dateCreated?: string;
|
|
1316
1286
|
|
|
1317
|
-
tags?:
|
|
1318
|
-
[key: string]: string;
|
|
1319
|
-
};
|
|
1287
|
+
tags?: Record<string, string>;
|
|
1320
1288
|
|
|
1321
1289
|
workingDirectory?: string;
|
|
1322
1290
|
|
|
@@ -1355,15 +1323,11 @@ export interface InfrastructureConfiguration {
|
|
|
1355
1323
|
|
|
1356
1324
|
dateUpdated?: string;
|
|
1357
1325
|
|
|
1358
|
-
resourceTags?:
|
|
1359
|
-
[key: string]: string;
|
|
1360
|
-
};
|
|
1326
|
+
resourceTags?: Record<string, string>;
|
|
1361
1327
|
|
|
1362
1328
|
instanceMetadataOptions?: InstanceMetadataOptions;
|
|
1363
1329
|
|
|
1364
|
-
tags?:
|
|
1365
|
-
[key: string]: string;
|
|
1366
|
-
};
|
|
1330
|
+
tags?: Record<string, string>;
|
|
1367
1331
|
}
|
|
1368
1332
|
export declare namespace InfrastructureConfiguration {
|
|
1369
1333
|
|
|
@@ -1417,9 +1381,7 @@ export interface Image {
|
|
|
1417
1381
|
|
|
1418
1382
|
outputResources?: OutputResources;
|
|
1419
1383
|
|
|
1420
|
-
tags?:
|
|
1421
|
-
[key: string]: string;
|
|
1422
|
-
};
|
|
1384
|
+
tags?: Record<string, string>;
|
|
1423
1385
|
|
|
1424
1386
|
buildType?: BuildType | string;
|
|
1425
1387
|
}
|
|
@@ -1480,9 +1442,7 @@ export interface ImagePipeline {
|
|
|
1480
1442
|
|
|
1481
1443
|
dateNextRun?: string;
|
|
1482
1444
|
|
|
1483
|
-
tags?:
|
|
1484
|
-
[key: string]: string;
|
|
1485
|
-
};
|
|
1445
|
+
tags?: Record<string, string>;
|
|
1486
1446
|
}
|
|
1487
1447
|
export declare namespace ImagePipeline {
|
|
1488
1448
|
|
|
@@ -1594,9 +1554,7 @@ export interface ImportComponentRequest {
|
|
|
1594
1554
|
|
|
1595
1555
|
kmsKeyId?: string;
|
|
1596
1556
|
|
|
1597
|
-
tags?:
|
|
1598
|
-
[key: string]: string;
|
|
1599
|
-
};
|
|
1557
|
+
tags?: Record<string, string>;
|
|
1600
1558
|
|
|
1601
1559
|
clientToken?: string;
|
|
1602
1560
|
}
|
|
@@ -1630,9 +1588,7 @@ export interface ImportVmImageRequest {
|
|
|
1630
1588
|
|
|
1631
1589
|
vmImportTaskId: string | undefined;
|
|
1632
1590
|
|
|
1633
|
-
tags?:
|
|
1634
|
-
[key: string]: string;
|
|
1635
|
-
};
|
|
1591
|
+
tags?: Record<string, string>;
|
|
1636
1592
|
|
|
1637
1593
|
clientToken?: string;
|
|
1638
1594
|
}
|
|
@@ -1803,9 +1759,7 @@ export interface ImageSummary {
|
|
|
1803
1759
|
|
|
1804
1760
|
outputResources?: OutputResources;
|
|
1805
1761
|
|
|
1806
|
-
tags?:
|
|
1807
|
-
[key: string]: string;
|
|
1808
|
-
};
|
|
1762
|
+
tags?: Record<string, string>;
|
|
1809
1763
|
|
|
1810
1764
|
buildType?: BuildType | string;
|
|
1811
1765
|
}
|
|
@@ -1939,9 +1893,7 @@ export interface ImageRecipeSummary {
|
|
|
1939
1893
|
|
|
1940
1894
|
dateCreated?: string;
|
|
1941
1895
|
|
|
1942
|
-
tags?:
|
|
1943
|
-
[key: string]: string;
|
|
1944
|
-
};
|
|
1896
|
+
tags?: Record<string, string>;
|
|
1945
1897
|
}
|
|
1946
1898
|
export declare namespace ImageRecipeSummary {
|
|
1947
1899
|
|
|
@@ -2039,13 +1991,9 @@ export interface InfrastructureConfigurationSummary {
|
|
|
2039
1991
|
|
|
2040
1992
|
dateUpdated?: string;
|
|
2041
1993
|
|
|
2042
|
-
resourceTags?:
|
|
2043
|
-
[key: string]: string;
|
|
2044
|
-
};
|
|
1994
|
+
resourceTags?: Record<string, string>;
|
|
2045
1995
|
|
|
2046
|
-
tags?:
|
|
2047
|
-
[key: string]: string;
|
|
2048
|
-
};
|
|
1996
|
+
tags?: Record<string, string>;
|
|
2049
1997
|
|
|
2050
1998
|
instanceTypes?: string[];
|
|
2051
1999
|
|
|
@@ -2084,9 +2032,7 @@ export declare namespace ListTagsForResourceRequest {
|
|
|
2084
2032
|
}
|
|
2085
2033
|
export interface ListTagsForResourceResponse {
|
|
2086
2034
|
|
|
2087
|
-
tags?:
|
|
2088
|
-
[key: string]: string;
|
|
2089
|
-
};
|
|
2035
|
+
tags?: Record<string, string>;
|
|
2090
2036
|
}
|
|
2091
2037
|
export declare namespace ListTagsForResourceResponse {
|
|
2092
2038
|
|
|
@@ -2205,9 +2151,7 @@ export interface TagResourceRequest {
|
|
|
2205
2151
|
|
|
2206
2152
|
resourceArn: string | undefined;
|
|
2207
2153
|
|
|
2208
|
-
tags:
|
|
2209
|
-
[key: string]: string;
|
|
2210
|
-
} | undefined;
|
|
2154
|
+
tags: Record<string, string> | undefined;
|
|
2211
2155
|
}
|
|
2212
2156
|
export declare namespace TagResourceRequest {
|
|
2213
2157
|
|
|
@@ -2325,9 +2269,7 @@ export interface UpdateInfrastructureConfigurationRequest {
|
|
|
2325
2269
|
|
|
2326
2270
|
clientToken?: string;
|
|
2327
2271
|
|
|
2328
|
-
resourceTags?:
|
|
2329
|
-
[key: string]: string;
|
|
2330
|
-
};
|
|
2272
|
+
resourceTags?: Record<string, string>;
|
|
2331
2273
|
|
|
2332
2274
|
instanceMetadataOptions?: InstanceMetadataOptions;
|
|
2333
2275
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-imagebuilder",
|
|
3
3
|
"description": "AWS SDK for JavaScript Imagebuilder Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.105.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",
|
|
@@ -18,15 +18,16 @@
|
|
|
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.
|
|
21
|
+
"@aws-sdk/client-sts": "3.105.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.80.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.105.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.78.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.78.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.78.0",
|
|
27
27
|
"@aws-sdk/middleware-content-length": "3.78.0",
|
|
28
28
|
"@aws-sdk/middleware-host-header": "3.78.0",
|
|
29
29
|
"@aws-sdk/middleware-logger": "3.78.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.105.0",
|
|
30
31
|
"@aws-sdk/middleware-retry": "3.80.0",
|
|
31
32
|
"@aws-sdk/middleware-serde": "3.78.0",
|
|
32
33
|
"@aws-sdk/middleware-signing": "3.78.0",
|