@aws-sdk/client-imagebuilder 3.935.0 → 3.937.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/README.md +16 -0
- package/dist-cjs/index.js +240 -17
- package/dist-es/Imagebuilder.js +4 -0
- package/dist-es/commands/DistributeImageCommand.js +16 -0
- package/dist-es/commands/RetryImageCommand.js +16 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/errors.js +36 -0
- package/dist-es/schemas/schemas_0.js +174 -18
- package/dist-types/Imagebuilder.d.ts +14 -0
- package/dist-types/ImagebuilderClient.d.ts +4 -2
- package/dist-types/commands/CreateComponentCommand.d.ts +10 -0
- package/dist-types/commands/CreateContainerRecipeCommand.d.ts +6 -0
- package/dist-types/commands/CreateImageCommand.d.ts +6 -0
- package/dist-types/commands/CreateImageRecipeCommand.d.ts +6 -0
- package/dist-types/commands/CreateWorkflowCommand.d.ts +10 -0
- package/dist-types/commands/DistributeImageCommand.d.ts +127 -0
- package/dist-types/commands/GetComponentCommand.d.ts +6 -0
- package/dist-types/commands/GetContainerRecipeCommand.d.ts +6 -0
- package/dist-types/commands/GetImageCommand.d.ts +6 -0
- package/dist-types/commands/GetImageRecipeCommand.d.ts +6 -0
- package/dist-types/commands/GetWorkflowCommand.d.ts +6 -0
- package/dist-types/commands/ListWorkflowExecutionsCommand.d.ts +1 -0
- package/dist-types/commands/RetryImageCommand.d.ts +105 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/errors.d.ts +36 -0
- package/dist-types/models/models_0.d.ts +189 -15
- package/dist-types/schemas/schemas_0.d.ts +10 -0
- package/dist-types/ts3.4/Imagebuilder.d.ts +34 -0
- package/dist-types/ts3.4/ImagebuilderClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/DistributeImageCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/RetryImageCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/errors.d.ts +21 -0
- package/dist-types/ts3.4/models/models_0.d.ts +39 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +10 -0
- package/package.json +12 -12
|
@@ -272,7 +272,7 @@ export interface CancelImageCreationResponse {
|
|
|
272
272
|
*/
|
|
273
273
|
clientToken?: string | undefined;
|
|
274
274
|
/**
|
|
275
|
-
* <p>The ARN of the image whose creation this request canceled.</p>
|
|
275
|
+
* <p>The Amazon Resource Name (ARN) of the image whose creation this request canceled.</p>
|
|
276
276
|
* @public
|
|
277
277
|
*/
|
|
278
278
|
imageBuildVersionArn?: string | undefined;
|
|
@@ -1115,6 +1115,37 @@ export interface CreateComponentRequest {
|
|
|
1115
1115
|
* @public
|
|
1116
1116
|
*/
|
|
1117
1117
|
clientToken?: string | undefined;
|
|
1118
|
+
/**
|
|
1119
|
+
* <p>Validates the required permissions for the operation and the request parameters, without actually making the request, and provides an error response. Upon a successful request, the error response is <code>DryRunOperationException</code>.</p>
|
|
1120
|
+
* @public
|
|
1121
|
+
*/
|
|
1122
|
+
dryRun?: boolean | undefined;
|
|
1123
|
+
}
|
|
1124
|
+
/**
|
|
1125
|
+
* <p>The resource ARNs with different wildcard variations of semantic versioning.</p>
|
|
1126
|
+
* @public
|
|
1127
|
+
*/
|
|
1128
|
+
export interface LatestVersionReferences {
|
|
1129
|
+
/**
|
|
1130
|
+
* <p>The latest version Amazon Resource Name (ARN) of the Image Builder resource.</p>
|
|
1131
|
+
* @public
|
|
1132
|
+
*/
|
|
1133
|
+
latestVersionArn?: string | undefined;
|
|
1134
|
+
/**
|
|
1135
|
+
* <p>The latest version Amazon Resource Name (ARN) with the same <code>major</code> version of the Image Builder resource.</p>
|
|
1136
|
+
* @public
|
|
1137
|
+
*/
|
|
1138
|
+
latestMajorVersionArn?: string | undefined;
|
|
1139
|
+
/**
|
|
1140
|
+
* <p>The latest version Amazon Resource Name (ARN) with the same <code>minor</code> version of the Image Builder resource.</p>
|
|
1141
|
+
* @public
|
|
1142
|
+
*/
|
|
1143
|
+
latestMinorVersionArn?: string | undefined;
|
|
1144
|
+
/**
|
|
1145
|
+
* <p>The latest version Amazon Resource Name (ARN) with the same <code>patch</code> version of the Image Builder resource.</p>
|
|
1146
|
+
* @public
|
|
1147
|
+
*/
|
|
1148
|
+
latestPatchVersionArn?: string | undefined;
|
|
1118
1149
|
}
|
|
1119
1150
|
/**
|
|
1120
1151
|
* @public
|
|
@@ -1135,6 +1166,11 @@ export interface CreateComponentResponse {
|
|
|
1135
1166
|
* @public
|
|
1136
1167
|
*/
|
|
1137
1168
|
componentBuildVersionArn?: string | undefined;
|
|
1169
|
+
/**
|
|
1170
|
+
* <p>The resource ARNs with different wildcard variations of semantic versioning.</p>
|
|
1171
|
+
* @public
|
|
1172
|
+
*/
|
|
1173
|
+
latestVersionReferences?: LatestVersionReferences | undefined;
|
|
1138
1174
|
}
|
|
1139
1175
|
/**
|
|
1140
1176
|
* @public
|
|
@@ -1260,6 +1296,11 @@ export interface CreateContainerRecipeResponse {
|
|
|
1260
1296
|
* @public
|
|
1261
1297
|
*/
|
|
1262
1298
|
containerRecipeArn?: string | undefined;
|
|
1299
|
+
/**
|
|
1300
|
+
* <p>The resource ARNs with different wildcard variations of semantic versioning.</p>
|
|
1301
|
+
* @public
|
|
1302
|
+
*/
|
|
1303
|
+
latestVersionReferences?: LatestVersionReferences | undefined;
|
|
1263
1304
|
}
|
|
1264
1305
|
/**
|
|
1265
1306
|
* <p>Identifies the launch template that the associated Windows AMI uses for launching an
|
|
@@ -1752,6 +1793,11 @@ export interface CreateImageResponse {
|
|
|
1752
1793
|
* @public
|
|
1753
1794
|
*/
|
|
1754
1795
|
imageBuildVersionArn?: string | undefined;
|
|
1796
|
+
/**
|
|
1797
|
+
* <p>The resource ARNs with different wildcard variations of semantic versioning.</p>
|
|
1798
|
+
* @public
|
|
1799
|
+
*/
|
|
1800
|
+
latestVersionReferences?: LatestVersionReferences | undefined;
|
|
1755
1801
|
}
|
|
1756
1802
|
/**
|
|
1757
1803
|
* <p>The logging configuration that's defined for pipeline execution.</p>
|
|
@@ -2052,6 +2098,11 @@ export interface CreateImageRecipeResponse {
|
|
|
2052
2098
|
* @public
|
|
2053
2099
|
*/
|
|
2054
2100
|
imageRecipeArn?: string | undefined;
|
|
2101
|
+
/**
|
|
2102
|
+
* <p>The resource ARNs with different wildcard variations of semantic versioning.</p>
|
|
2103
|
+
* @public
|
|
2104
|
+
*/
|
|
2105
|
+
latestVersionReferences?: LatestVersionReferences | undefined;
|
|
2055
2106
|
}
|
|
2056
2107
|
/**
|
|
2057
2108
|
* <p>The instance metadata options that apply to the HTTP requests that pipeline builds use
|
|
@@ -2626,6 +2677,11 @@ export interface CreateWorkflowRequest {
|
|
|
2626
2677
|
* @public
|
|
2627
2678
|
*/
|
|
2628
2679
|
type: WorkflowType | undefined;
|
|
2680
|
+
/**
|
|
2681
|
+
* <p>Validates the required permissions for the operation and the request parameters, without actually making the request, and provides an error response. Upon a successful request, the error response is <code>DryRunOperationException</code>.</p>
|
|
2682
|
+
* @public
|
|
2683
|
+
*/
|
|
2684
|
+
dryRun?: boolean | undefined;
|
|
2629
2685
|
}
|
|
2630
2686
|
/**
|
|
2631
2687
|
* @public
|
|
@@ -2641,6 +2697,11 @@ export interface CreateWorkflowResponse {
|
|
|
2641
2697
|
* @public
|
|
2642
2698
|
*/
|
|
2643
2699
|
workflowBuildVersionArn?: string | undefined;
|
|
2700
|
+
/**
|
|
2701
|
+
* <p>The resource ARNs with different wildcard variations of semantic versioning.</p>
|
|
2702
|
+
* @public
|
|
2703
|
+
*/
|
|
2704
|
+
latestVersionReferences?: LatestVersionReferences | undefined;
|
|
2644
2705
|
}
|
|
2645
2706
|
/**
|
|
2646
2707
|
* <p>Amazon Inspector generates a risk score for each finding. This score helps you to prioritize
|
|
@@ -2747,7 +2808,7 @@ export interface DeleteComponentResponse {
|
|
|
2747
2808
|
*/
|
|
2748
2809
|
requestId?: string | undefined;
|
|
2749
2810
|
/**
|
|
2750
|
-
* <p>The ARN of the component build version that this request deleted.</p>
|
|
2811
|
+
* <p>The Amazon Resource Name (ARN) of the component build version that this request deleted.</p>
|
|
2751
2812
|
* @public
|
|
2752
2813
|
*/
|
|
2753
2814
|
componentBuildVersionArn?: string | undefined;
|
|
@@ -2823,7 +2884,7 @@ export interface DeleteImageResponse {
|
|
|
2823
2884
|
*/
|
|
2824
2885
|
requestId?: string | undefined;
|
|
2825
2886
|
/**
|
|
2826
|
-
* <p>The ARN of the Image Builder image resource that this request deleted.</p>
|
|
2887
|
+
* <p>The Amazon Resource Name (ARN) of the Image Builder image resource that this request deleted.</p>
|
|
2827
2888
|
* @public
|
|
2828
2889
|
*/
|
|
2829
2890
|
imageBuildVersionArn?: string | undefined;
|
|
@@ -2919,7 +2980,7 @@ export interface DeleteLifecyclePolicyRequest {
|
|
|
2919
2980
|
*/
|
|
2920
2981
|
export interface DeleteLifecyclePolicyResponse {
|
|
2921
2982
|
/**
|
|
2922
|
-
* <p>The ARN of the lifecycle policy that was deleted.</p>
|
|
2983
|
+
* <p>The Amazon Resource Name (ARN) of the lifecycle policy that was deleted.</p>
|
|
2923
2984
|
* @public
|
|
2924
2985
|
*/
|
|
2925
2986
|
lifecyclePolicyArn?: string | undefined;
|
|
@@ -2939,11 +3000,63 @@ export interface DeleteWorkflowRequest {
|
|
|
2939
3000
|
*/
|
|
2940
3001
|
export interface DeleteWorkflowResponse {
|
|
2941
3002
|
/**
|
|
2942
|
-
* <p>The ARN of the workflow resource that this request deleted.</p>
|
|
3003
|
+
* <p>The Amazon Resource Name (ARN) of the workflow resource that this request deleted.</p>
|
|
2943
3004
|
* @public
|
|
2944
3005
|
*/
|
|
2945
3006
|
workflowBuildVersionArn?: string | undefined;
|
|
2946
3007
|
}
|
|
3008
|
+
/**
|
|
3009
|
+
* @public
|
|
3010
|
+
*/
|
|
3011
|
+
export interface DistributeImageRequest {
|
|
3012
|
+
/**
|
|
3013
|
+
* <p>The source image Amazon Resource Name (ARN) to distribute.</p>
|
|
3014
|
+
* @public
|
|
3015
|
+
*/
|
|
3016
|
+
sourceImage: string | undefined;
|
|
3017
|
+
/**
|
|
3018
|
+
* <p>The Amazon Resource Name (ARN) of the distribution configuration to use.</p>
|
|
3019
|
+
* @public
|
|
3020
|
+
*/
|
|
3021
|
+
distributionConfigurationArn: string | undefined;
|
|
3022
|
+
/**
|
|
3023
|
+
* <p>The IAM role to use for the distribution.</p>
|
|
3024
|
+
* @public
|
|
3025
|
+
*/
|
|
3026
|
+
executionRole: string | undefined;
|
|
3027
|
+
/**
|
|
3028
|
+
* <p>The tags to apply to the distributed image.</p>
|
|
3029
|
+
* @public
|
|
3030
|
+
*/
|
|
3031
|
+
tags?: Record<string, string> | undefined;
|
|
3032
|
+
/**
|
|
3033
|
+
* <p>Unique, case-sensitive identifier you provide to ensure
|
|
3034
|
+
* 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>
|
|
3035
|
+
* in the <i>Amazon EC2 API Reference</i>.</p>
|
|
3036
|
+
* @public
|
|
3037
|
+
*/
|
|
3038
|
+
clientToken?: string | undefined;
|
|
3039
|
+
/**
|
|
3040
|
+
* <p>The logging configuration for the distribution.</p>
|
|
3041
|
+
* @public
|
|
3042
|
+
*/
|
|
3043
|
+
loggingConfiguration?: ImageLoggingConfiguration | undefined;
|
|
3044
|
+
}
|
|
3045
|
+
/**
|
|
3046
|
+
* @public
|
|
3047
|
+
*/
|
|
3048
|
+
export interface DistributeImageResponse {
|
|
3049
|
+
/**
|
|
3050
|
+
* <p>The client token that uniquely identifies the request.</p>
|
|
3051
|
+
* @public
|
|
3052
|
+
*/
|
|
3053
|
+
clientToken?: string | undefined;
|
|
3054
|
+
/**
|
|
3055
|
+
* <p>The Amazon Resource Name (ARN) of the image to be distributed.</p>
|
|
3056
|
+
* @public
|
|
3057
|
+
*/
|
|
3058
|
+
imageBuildVersionArn?: string | undefined;
|
|
3059
|
+
}
|
|
2947
3060
|
/**
|
|
2948
3061
|
* <p>A distribution configuration.</p>
|
|
2949
3062
|
* @public
|
|
@@ -3075,6 +3188,11 @@ export interface GetComponentResponse {
|
|
|
3075
3188
|
* @public
|
|
3076
3189
|
*/
|
|
3077
3190
|
component?: Component | undefined;
|
|
3191
|
+
/**
|
|
3192
|
+
* <p>The resource ARNs with different wildcard variations of semantic versioning.</p>
|
|
3193
|
+
* @public
|
|
3194
|
+
*/
|
|
3195
|
+
latestVersionReferences?: LatestVersionReferences | undefined;
|
|
3078
3196
|
}
|
|
3079
3197
|
/**
|
|
3080
3198
|
* @public
|
|
@@ -3126,6 +3244,11 @@ export interface GetContainerRecipeResponse {
|
|
|
3126
3244
|
* @public
|
|
3127
3245
|
*/
|
|
3128
3246
|
containerRecipe?: ContainerRecipe | undefined;
|
|
3247
|
+
/**
|
|
3248
|
+
* <p>The resource ARNs with different wildcard variations of semantic versioning.</p>
|
|
3249
|
+
* @public
|
|
3250
|
+
*/
|
|
3251
|
+
latestVersionReferences?: LatestVersionReferences | undefined;
|
|
3129
3252
|
}
|
|
3130
3253
|
/**
|
|
3131
3254
|
* @public
|
|
@@ -3645,6 +3768,11 @@ export interface GetImageResponse {
|
|
|
3645
3768
|
* @public
|
|
3646
3769
|
*/
|
|
3647
3770
|
image?: Image | undefined;
|
|
3771
|
+
/**
|
|
3772
|
+
* <p>The resource ARNs with different wildcard variations of semantic versioning.</p>
|
|
3773
|
+
* @public
|
|
3774
|
+
*/
|
|
3775
|
+
latestVersionReferences?: LatestVersionReferences | undefined;
|
|
3648
3776
|
}
|
|
3649
3777
|
/**
|
|
3650
3778
|
* @public
|
|
@@ -3874,6 +4002,11 @@ export interface GetImageRecipeResponse {
|
|
|
3874
4002
|
* @public
|
|
3875
4003
|
*/
|
|
3876
4004
|
imageRecipe?: ImageRecipe | undefined;
|
|
4005
|
+
/**
|
|
4006
|
+
* <p>The resource ARNs with different wildcard variations of semantic versioning.</p>
|
|
4007
|
+
* @public
|
|
4008
|
+
*/
|
|
4009
|
+
latestVersionReferences?: LatestVersionReferences | undefined;
|
|
3877
4010
|
}
|
|
3878
4011
|
/**
|
|
3879
4012
|
* @public
|
|
@@ -4099,7 +4232,7 @@ export interface LifecyclePolicy {
|
|
|
4099
4232
|
*/
|
|
4100
4233
|
export interface GetLifecyclePolicyResponse {
|
|
4101
4234
|
/**
|
|
4102
|
-
* <p>The ARN of the image lifecycle policy resource that was returned.</p>
|
|
4235
|
+
* <p>The Amazon Resource Name (ARN) of the image lifecycle policy resource that was returned.</p>
|
|
4103
4236
|
* @public
|
|
4104
4237
|
*/
|
|
4105
4238
|
lifecyclePolicy?: LifecyclePolicy | undefined;
|
|
@@ -4285,6 +4418,11 @@ export interface GetWorkflowResponse {
|
|
|
4285
4418
|
* @public
|
|
4286
4419
|
*/
|
|
4287
4420
|
workflow?: Workflow | undefined;
|
|
4421
|
+
/**
|
|
4422
|
+
* <p>The resource ARNs with different wildcard variations of semantic versioning.</p>
|
|
4423
|
+
* @public
|
|
4424
|
+
*/
|
|
4425
|
+
latestVersionReferences?: LatestVersionReferences | undefined;
|
|
4288
4426
|
}
|
|
4289
4427
|
/**
|
|
4290
4428
|
* @public
|
|
@@ -5801,8 +5939,7 @@ export interface ImageScanFindingAggregation {
|
|
|
5801
5939
|
*/
|
|
5802
5940
|
accountAggregation?: AccountAggregation | undefined;
|
|
5803
5941
|
/**
|
|
5804
|
-
* <p>Returns an object that contains severity counts based on the Amazon Resource Name
|
|
5805
|
-
* (ARN) for a specific image.</p>
|
|
5942
|
+
* <p>Returns an object that contains severity counts based on the Amazon Resource Name (ARN) for a specific image.</p>
|
|
5806
5943
|
* @public
|
|
5807
5944
|
*/
|
|
5808
5945
|
imageAggregation?: ImageAggregation | undefined;
|
|
@@ -6658,7 +6795,7 @@ export interface WorkflowStepExecution {
|
|
|
6658
6795
|
*/
|
|
6659
6796
|
workflowExecutionId?: string | undefined;
|
|
6660
6797
|
/**
|
|
6661
|
-
* <p>The ARN of the workflow resource that ran.</p>
|
|
6798
|
+
* <p>The Amazon Resource Name (ARN) of the workflow resource that ran.</p>
|
|
6662
6799
|
* @public
|
|
6663
6800
|
*/
|
|
6664
6801
|
workflowBuildVersionArn?: string | undefined;
|
|
@@ -6881,6 +7018,11 @@ export interface WorkflowExecutionMetadata {
|
|
|
6881
7018
|
* @public
|
|
6882
7019
|
*/
|
|
6883
7020
|
parallelGroup?: string | undefined;
|
|
7021
|
+
/**
|
|
7022
|
+
* <p>Indicates retry status for this runtime instance of the workflow.</p>
|
|
7023
|
+
* @public
|
|
7024
|
+
*/
|
|
7025
|
+
retried?: boolean | undefined;
|
|
6884
7026
|
}
|
|
6885
7027
|
/**
|
|
6886
7028
|
* @public
|
|
@@ -6898,7 +7040,7 @@ export interface ListWorkflowExecutionsResponse {
|
|
|
6898
7040
|
*/
|
|
6899
7041
|
workflowExecutions?: WorkflowExecutionMetadata[] | undefined;
|
|
6900
7042
|
/**
|
|
6901
|
-
* <p>The resource ARN of the image build version for which you requested a list of
|
|
7043
|
+
* <p>The resource Amazon Resource Name (ARN) of the image build version for which you requested a list of
|
|
6902
7044
|
* workflow runtime details.</p>
|
|
6903
7045
|
* @public
|
|
6904
7046
|
*/
|
|
@@ -7105,7 +7247,7 @@ export interface ListWorkflowStepExecutionsResponse {
|
|
|
7105
7247
|
*/
|
|
7106
7248
|
steps?: WorkflowStepMetadata[] | undefined;
|
|
7107
7249
|
/**
|
|
7108
|
-
* <p>The build version ARN for the Image Builder workflow resource that defines the steps for
|
|
7250
|
+
* <p>The build version Amazon Resource Name (ARN) for the Image Builder workflow resource that defines the steps for
|
|
7109
7251
|
* this runtime instance of the workflow.</p>
|
|
7110
7252
|
* @public
|
|
7111
7253
|
*/
|
|
@@ -7117,7 +7259,7 @@ export interface ListWorkflowStepExecutionsResponse {
|
|
|
7117
7259
|
*/
|
|
7118
7260
|
workflowExecutionId?: string | undefined;
|
|
7119
7261
|
/**
|
|
7120
|
-
* <p>The image build version resource ARN that's associated with the specified runtime
|
|
7262
|
+
* <p>The image build version resource Amazon Resource Name (ARN) that's associated with the specified runtime
|
|
7121
7263
|
* instance of the workflow.</p>
|
|
7122
7264
|
* @public
|
|
7123
7265
|
*/
|
|
@@ -7262,6 +7404,38 @@ export interface PutImageRecipePolicyResponse {
|
|
|
7262
7404
|
*/
|
|
7263
7405
|
imageRecipeArn?: string | undefined;
|
|
7264
7406
|
}
|
|
7407
|
+
/**
|
|
7408
|
+
* @public
|
|
7409
|
+
*/
|
|
7410
|
+
export interface RetryImageRequest {
|
|
7411
|
+
/**
|
|
7412
|
+
* <p>The source image Amazon Resource Name (ARN) to retry.</p>
|
|
7413
|
+
* @public
|
|
7414
|
+
*/
|
|
7415
|
+
imageBuildVersionArn: string | undefined;
|
|
7416
|
+
/**
|
|
7417
|
+
* <p>Unique, case-sensitive identifier you provide to ensure
|
|
7418
|
+
* 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>
|
|
7419
|
+
* in the <i>Amazon EC2 API Reference</i>.</p>
|
|
7420
|
+
* @public
|
|
7421
|
+
*/
|
|
7422
|
+
clientToken?: string | undefined;
|
|
7423
|
+
}
|
|
7424
|
+
/**
|
|
7425
|
+
* @public
|
|
7426
|
+
*/
|
|
7427
|
+
export interface RetryImageResponse {
|
|
7428
|
+
/**
|
|
7429
|
+
* <p>The client token that uniquely identifies the request.</p>
|
|
7430
|
+
* @public
|
|
7431
|
+
*/
|
|
7432
|
+
clientToken?: string | undefined;
|
|
7433
|
+
/**
|
|
7434
|
+
* <p>The ARN of the image to be retried.</p>
|
|
7435
|
+
* @public
|
|
7436
|
+
*/
|
|
7437
|
+
imageBuildVersionArn?: string | undefined;
|
|
7438
|
+
}
|
|
7265
7439
|
/**
|
|
7266
7440
|
* @public
|
|
7267
7441
|
*/
|
|
@@ -7408,7 +7582,7 @@ export interface ResourceState {
|
|
|
7408
7582
|
*/
|
|
7409
7583
|
export interface StartResourceStateUpdateRequest {
|
|
7410
7584
|
/**
|
|
7411
|
-
* <p>The ARN of the Image Builder resource that is updated. The state update might also
|
|
7585
|
+
* <p>The Amazon Resource Name (ARN) of the Image Builder resource that is updated. The state update might also
|
|
7412
7586
|
* impact associated resources.</p>
|
|
7413
7587
|
* @public
|
|
7414
7588
|
*/
|
|
@@ -7458,7 +7632,7 @@ export interface StartResourceStateUpdateResponse {
|
|
|
7458
7632
|
*/
|
|
7459
7633
|
lifecycleExecutionId?: string | undefined;
|
|
7460
7634
|
/**
|
|
7461
|
-
* <p>The requested ARN of the Image Builder resource for the asynchronous update.</p>
|
|
7635
|
+
* <p>The requested Amazon Resource Name (ARN) of the Image Builder resource for the asynchronous update.</p>
|
|
7462
7636
|
* @public
|
|
7463
7637
|
*/
|
|
7464
7638
|
resourceArn?: string | undefined;
|
|
@@ -7846,7 +8020,7 @@ export interface UpdateLifecyclePolicyRequest {
|
|
|
7846
8020
|
*/
|
|
7847
8021
|
export interface UpdateLifecyclePolicyResponse {
|
|
7848
8022
|
/**
|
|
7849
|
-
* <p>The ARN of the image lifecycle policy resource that was updated.</p>
|
|
8023
|
+
* <p>The Amazon Resource Name (ARN) of the image lifecycle policy resource that was updated.</p>
|
|
7850
8024
|
* @public
|
|
7851
8025
|
*/
|
|
7852
8026
|
lifecyclePolicyArn?: string | undefined;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
2
3
|
export declare var AccountAggregation: StaticStructureSchema;
|
|
3
4
|
export declare var AdditionalInstanceConfiguration: StaticStructureSchema;
|
|
4
5
|
export declare var Ami: StaticStructureSchema;
|
|
@@ -60,9 +61,12 @@ export declare var DeleteLifecyclePolicyRequest: StaticStructureSchema;
|
|
|
60
61
|
export declare var DeleteLifecyclePolicyResponse: StaticStructureSchema;
|
|
61
62
|
export declare var DeleteWorkflowRequest: StaticStructureSchema;
|
|
62
63
|
export declare var DeleteWorkflowResponse: StaticStructureSchema;
|
|
64
|
+
export declare var DistributeImageRequest: StaticStructureSchema;
|
|
65
|
+
export declare var DistributeImageResponse: StaticStructureSchema;
|
|
63
66
|
export declare var Distribution: StaticStructureSchema;
|
|
64
67
|
export declare var DistributionConfiguration: StaticStructureSchema;
|
|
65
68
|
export declare var DistributionConfigurationSummary: StaticStructureSchema;
|
|
69
|
+
export declare var DryRunOperationException: StaticErrorSchema;
|
|
66
70
|
export declare var EbsInstanceBlockDeviceSpecification: StaticStructureSchema;
|
|
67
71
|
export declare var EcrConfiguration: StaticStructureSchema;
|
|
68
72
|
export declare var FastLaunchConfiguration: StaticStructureSchema;
|
|
@@ -140,6 +144,7 @@ export declare var InvalidParameterException: StaticErrorSchema;
|
|
|
140
144
|
export declare var InvalidParameterValueException: StaticErrorSchema;
|
|
141
145
|
export declare var InvalidRequestException: StaticErrorSchema;
|
|
142
146
|
export declare var InvalidVersionNumberException: StaticErrorSchema;
|
|
147
|
+
export declare var LatestVersionReferences: StaticStructureSchema;
|
|
143
148
|
export declare var LaunchPermissionConfiguration: StaticStructureSchema;
|
|
144
149
|
export declare var LaunchTemplateConfiguration: StaticStructureSchema;
|
|
145
150
|
export declare var LifecycleExecution: StaticStructureSchema;
|
|
@@ -227,6 +232,8 @@ export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
|
227
232
|
export declare var ResourceState: StaticStructureSchema;
|
|
228
233
|
export declare var ResourceStateUpdateExclusionRules: StaticStructureSchema;
|
|
229
234
|
export declare var ResourceStateUpdateIncludeResources: StaticStructureSchema;
|
|
235
|
+
export declare var RetryImageRequest: StaticStructureSchema;
|
|
236
|
+
export declare var RetryImageResponse: StaticStructureSchema;
|
|
230
237
|
export declare var S3ExportConfiguration: StaticStructureSchema;
|
|
231
238
|
export declare var S3Logs: StaticStructureSchema;
|
|
232
239
|
export declare var Schedule: StaticStructureSchema;
|
|
@@ -245,6 +252,7 @@ export declare var SystemsManagerAgent: StaticStructureSchema;
|
|
|
245
252
|
export declare var TagResourceRequest: StaticStructureSchema;
|
|
246
253
|
export declare var TagResourceResponse: StaticStructureSchema;
|
|
247
254
|
export declare var TargetContainerRepository: StaticStructureSchema;
|
|
255
|
+
export declare var TooManyRequestsException: StaticErrorSchema;
|
|
248
256
|
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
249
257
|
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
250
258
|
export declare var UpdateDistributionConfigurationRequest: StaticStructureSchema;
|
|
@@ -349,6 +357,7 @@ export declare var DeleteImageRecipe: StaticOperationSchema;
|
|
|
349
357
|
export declare var DeleteInfrastructureConfiguration: StaticOperationSchema;
|
|
350
358
|
export declare var DeleteLifecyclePolicy: StaticOperationSchema;
|
|
351
359
|
export declare var DeleteWorkflow: StaticOperationSchema;
|
|
360
|
+
export declare var DistributeImage: StaticOperationSchema;
|
|
352
361
|
export declare var GetComponent: StaticOperationSchema;
|
|
353
362
|
export declare var GetComponentPolicy: StaticOperationSchema;
|
|
354
363
|
export declare var GetContainerRecipe: StaticOperationSchema;
|
|
@@ -395,6 +404,7 @@ export declare var PutComponentPolicy: StaticOperationSchema;
|
|
|
395
404
|
export declare var PutContainerRecipePolicy: StaticOperationSchema;
|
|
396
405
|
export declare var PutImagePolicy: StaticOperationSchema;
|
|
397
406
|
export declare var PutImageRecipePolicy: StaticOperationSchema;
|
|
407
|
+
export declare var RetryImage: StaticOperationSchema;
|
|
398
408
|
export declare var SendWorkflowStepAction: StaticOperationSchema;
|
|
399
409
|
export declare var StartImagePipelineExecution: StaticOperationSchema;
|
|
400
410
|
export declare var StartResourceStateUpdate: StaticOperationSchema;
|
|
@@ -79,6 +79,10 @@ import {
|
|
|
79
79
|
DeleteWorkflowCommandInput,
|
|
80
80
|
DeleteWorkflowCommandOutput,
|
|
81
81
|
} from "./commands/DeleteWorkflowCommand";
|
|
82
|
+
import {
|
|
83
|
+
DistributeImageCommandInput,
|
|
84
|
+
DistributeImageCommandOutput,
|
|
85
|
+
} from "./commands/DistributeImageCommand";
|
|
82
86
|
import {
|
|
83
87
|
GetComponentCommandInput,
|
|
84
88
|
GetComponentCommandOutput,
|
|
@@ -263,6 +267,10 @@ import {
|
|
|
263
267
|
PutImageRecipePolicyCommandInput,
|
|
264
268
|
PutImageRecipePolicyCommandOutput,
|
|
265
269
|
} from "./commands/PutImageRecipePolicyCommand";
|
|
270
|
+
import {
|
|
271
|
+
RetryImageCommandInput,
|
|
272
|
+
RetryImageCommandOutput,
|
|
273
|
+
} from "./commands/RetryImageCommand";
|
|
266
274
|
import {
|
|
267
275
|
SendWorkflowStepActionCommandInput,
|
|
268
276
|
SendWorkflowStepActionCommandOutput,
|
|
@@ -573,6 +581,19 @@ export interface Imagebuilder {
|
|
|
573
581
|
options: __HttpHandlerOptions,
|
|
574
582
|
cb: (err: any, data?: DeleteWorkflowCommandOutput) => void
|
|
575
583
|
): void;
|
|
584
|
+
distributeImage(
|
|
585
|
+
args: DistributeImageCommandInput,
|
|
586
|
+
options?: __HttpHandlerOptions
|
|
587
|
+
): Promise<DistributeImageCommandOutput>;
|
|
588
|
+
distributeImage(
|
|
589
|
+
args: DistributeImageCommandInput,
|
|
590
|
+
cb: (err: any, data?: DistributeImageCommandOutput) => void
|
|
591
|
+
): void;
|
|
592
|
+
distributeImage(
|
|
593
|
+
args: DistributeImageCommandInput,
|
|
594
|
+
options: __HttpHandlerOptions,
|
|
595
|
+
cb: (err: any, data?: DistributeImageCommandOutput) => void
|
|
596
|
+
): void;
|
|
576
597
|
getComponent(
|
|
577
598
|
args: GetComponentCommandInput,
|
|
578
599
|
options?: __HttpHandlerOptions
|
|
@@ -1186,6 +1207,19 @@ export interface Imagebuilder {
|
|
|
1186
1207
|
options: __HttpHandlerOptions,
|
|
1187
1208
|
cb: (err: any, data?: PutImageRecipePolicyCommandOutput) => void
|
|
1188
1209
|
): void;
|
|
1210
|
+
retryImage(
|
|
1211
|
+
args: RetryImageCommandInput,
|
|
1212
|
+
options?: __HttpHandlerOptions
|
|
1213
|
+
): Promise<RetryImageCommandOutput>;
|
|
1214
|
+
retryImage(
|
|
1215
|
+
args: RetryImageCommandInput,
|
|
1216
|
+
cb: (err: any, data?: RetryImageCommandOutput) => void
|
|
1217
|
+
): void;
|
|
1218
|
+
retryImage(
|
|
1219
|
+
args: RetryImageCommandInput,
|
|
1220
|
+
options: __HttpHandlerOptions,
|
|
1221
|
+
cb: (err: any, data?: RetryImageCommandOutput) => void
|
|
1222
|
+
): void;
|
|
1189
1223
|
sendWorkflowStepAction(
|
|
1190
1224
|
args: SendWorkflowStepActionCommandInput,
|
|
1191
1225
|
options?: __HttpHandlerOptions
|
|
@@ -128,6 +128,10 @@ import {
|
|
|
128
128
|
DeleteWorkflowCommandInput,
|
|
129
129
|
DeleteWorkflowCommandOutput,
|
|
130
130
|
} from "./commands/DeleteWorkflowCommand";
|
|
131
|
+
import {
|
|
132
|
+
DistributeImageCommandInput,
|
|
133
|
+
DistributeImageCommandOutput,
|
|
134
|
+
} from "./commands/DistributeImageCommand";
|
|
131
135
|
import {
|
|
132
136
|
GetComponentCommandInput,
|
|
133
137
|
GetComponentCommandOutput,
|
|
@@ -312,6 +316,10 @@ import {
|
|
|
312
316
|
PutImageRecipePolicyCommandInput,
|
|
313
317
|
PutImageRecipePolicyCommandOutput,
|
|
314
318
|
} from "./commands/PutImageRecipePolicyCommand";
|
|
319
|
+
import {
|
|
320
|
+
RetryImageCommandInput,
|
|
321
|
+
RetryImageCommandOutput,
|
|
322
|
+
} from "./commands/RetryImageCommand";
|
|
315
323
|
import {
|
|
316
324
|
SendWorkflowStepActionCommandInput,
|
|
317
325
|
SendWorkflowStepActionCommandOutput,
|
|
@@ -376,6 +384,7 @@ export type ServiceInputTypes =
|
|
|
376
384
|
| DeleteInfrastructureConfigurationCommandInput
|
|
377
385
|
| DeleteLifecyclePolicyCommandInput
|
|
378
386
|
| DeleteWorkflowCommandInput
|
|
387
|
+
| DistributeImageCommandInput
|
|
379
388
|
| GetComponentCommandInput
|
|
380
389
|
| GetComponentPolicyCommandInput
|
|
381
390
|
| GetContainerRecipeCommandInput
|
|
@@ -422,6 +431,7 @@ export type ServiceInputTypes =
|
|
|
422
431
|
| PutContainerRecipePolicyCommandInput
|
|
423
432
|
| PutImagePolicyCommandInput
|
|
424
433
|
| PutImageRecipePolicyCommandInput
|
|
434
|
+
| RetryImageCommandInput
|
|
425
435
|
| SendWorkflowStepActionCommandInput
|
|
426
436
|
| StartImagePipelineExecutionCommandInput
|
|
427
437
|
| StartResourceStateUpdateCommandInput
|
|
@@ -452,6 +462,7 @@ export type ServiceOutputTypes =
|
|
|
452
462
|
| DeleteInfrastructureConfigurationCommandOutput
|
|
453
463
|
| DeleteLifecyclePolicyCommandOutput
|
|
454
464
|
| DeleteWorkflowCommandOutput
|
|
465
|
+
| DistributeImageCommandOutput
|
|
455
466
|
| GetComponentCommandOutput
|
|
456
467
|
| GetComponentPolicyCommandOutput
|
|
457
468
|
| GetContainerRecipeCommandOutput
|
|
@@ -498,6 +509,7 @@ export type ServiceOutputTypes =
|
|
|
498
509
|
| PutContainerRecipePolicyCommandOutput
|
|
499
510
|
| PutImagePolicyCommandOutput
|
|
500
511
|
| PutImageRecipePolicyCommandOutput
|
|
512
|
+
| RetryImageCommandOutput
|
|
501
513
|
| SendWorkflowStepActionCommandOutput
|
|
502
514
|
| StartImagePipelineExecutionCommandOutput
|
|
503
515
|
| StartResourceStateUpdateCommandOutput
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ImagebuilderClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ImagebuilderClient";
|
|
8
|
+
import {
|
|
9
|
+
DistributeImageRequest,
|
|
10
|
+
DistributeImageResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DistributeImageCommandInput extends DistributeImageRequest {}
|
|
15
|
+
export interface DistributeImageCommandOutput
|
|
16
|
+
extends DistributeImageResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const DistributeImageCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: DistributeImageCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
DistributeImageCommandInput,
|
|
23
|
+
DistributeImageCommandOutput,
|
|
24
|
+
ImagebuilderClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: DistributeImageCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DistributeImageCommandInput,
|
|
32
|
+
DistributeImageCommandOutput,
|
|
33
|
+
ImagebuilderClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class DistributeImageCommand extends DistributeImageCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: DistributeImageRequest;
|
|
43
|
+
output: DistributeImageResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: DistributeImageCommandInput;
|
|
47
|
+
output: DistributeImageCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ImagebuilderClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ImagebuilderClient";
|
|
8
|
+
import { RetryImageRequest, RetryImageResponse } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface RetryImageCommandInput extends RetryImageRequest {}
|
|
12
|
+
export interface RetryImageCommandOutput
|
|
13
|
+
extends RetryImageResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const RetryImageCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: RetryImageCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
RetryImageCommandInput,
|
|
20
|
+
RetryImageCommandOutput,
|
|
21
|
+
ImagebuilderClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: RetryImageCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
RetryImageCommandInput,
|
|
29
|
+
RetryImageCommandOutput,
|
|
30
|
+
ImagebuilderClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class RetryImageCommand extends RetryImageCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: RetryImageRequest;
|
|
40
|
+
output: RetryImageResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: RetryImageCommandInput;
|
|
44
|
+
output: RetryImageCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -18,6 +18,7 @@ export * from "./DeleteImageRecipeCommand";
|
|
|
18
18
|
export * from "./DeleteInfrastructureConfigurationCommand";
|
|
19
19
|
export * from "./DeleteLifecyclePolicyCommand";
|
|
20
20
|
export * from "./DeleteWorkflowCommand";
|
|
21
|
+
export * from "./DistributeImageCommand";
|
|
21
22
|
export * from "./GetComponentCommand";
|
|
22
23
|
export * from "./GetComponentPolicyCommand";
|
|
23
24
|
export * from "./GetContainerRecipeCommand";
|
|
@@ -64,6 +65,7 @@ export * from "./PutComponentPolicyCommand";
|
|
|
64
65
|
export * from "./PutContainerRecipePolicyCommand";
|
|
65
66
|
export * from "./PutImagePolicyCommand";
|
|
66
67
|
export * from "./PutImageRecipePolicyCommand";
|
|
68
|
+
export * from "./RetryImageCommand";
|
|
67
69
|
export * from "./SendWorkflowStepActionCommand";
|
|
68
70
|
export * from "./StartImagePipelineExecutionCommand";
|
|
69
71
|
export * from "./StartResourceStateUpdateCommand";
|