@aws-sdk/client-imagebuilder 3.934.0 → 3.935.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.
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  UpdateInfrastructureConfigurationRequest,
10
10
  UpdateInfrastructureConfigurationResponse,
11
- } from "../models/models_1";
11
+ } from "../models/models_0";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface UpdateInfrastructureConfigurationCommandInput
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  UpdateLifecyclePolicyRequest,
10
10
  UpdateLifecyclePolicyResponse,
11
- } from "../models/models_1";
11
+ } from "../models/models_0";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface UpdateLifecyclePolicyCommandInput
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { ImagebuilderExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
- export * from "./models";
8
+ export * from "./models/enums";
9
+ export * from "./models/errors";
10
+ export * from "./models/models_0";
9
11
  export { ImagebuilderServiceException } from "./models/ImagebuilderServiceException";
@@ -0,0 +1,257 @@
1
+ export declare const ImageStatus: {
2
+ readonly AVAILABLE: "AVAILABLE";
3
+ readonly BUILDING: "BUILDING";
4
+ readonly CANCELLED: "CANCELLED";
5
+ readonly CREATING: "CREATING";
6
+ readonly DELETED: "DELETED";
7
+ readonly DEPRECATED: "DEPRECATED";
8
+ readonly DISABLED: "DISABLED";
9
+ readonly DISTRIBUTING: "DISTRIBUTING";
10
+ readonly FAILED: "FAILED";
11
+ readonly INTEGRATING: "INTEGRATING";
12
+ readonly PENDING: "PENDING";
13
+ readonly TESTING: "TESTING";
14
+ };
15
+ export type ImageStatus = (typeof ImageStatus)[keyof typeof ImageStatus];
16
+ export declare const BuildType: {
17
+ readonly IMPORT: "IMPORT";
18
+ readonly IMPORT_ISO: "IMPORT_ISO";
19
+ readonly SCHEDULED: "SCHEDULED";
20
+ readonly USER_INITIATED: "USER_INITIATED";
21
+ };
22
+ export type BuildType = (typeof BuildType)[keyof typeof BuildType];
23
+ export declare const Platform: {
24
+ readonly LINUX: "Linux";
25
+ readonly MACOS: "macOS";
26
+ readonly WINDOWS: "Windows";
27
+ };
28
+ export type Platform = (typeof Platform)[keyof typeof Platform];
29
+ export declare const ProductCodeType: {
30
+ readonly MARKETPLACE: "marketplace";
31
+ };
32
+ export type ProductCodeType =
33
+ (typeof ProductCodeType)[keyof typeof ProductCodeType];
34
+ export declare const ComponentStatus: {
35
+ readonly ACTIVE: "ACTIVE";
36
+ readonly DEPRECATED: "DEPRECATED";
37
+ readonly DISABLED: "DISABLED";
38
+ };
39
+ export type ComponentStatus =
40
+ (typeof ComponentStatus)[keyof typeof ComponentStatus];
41
+ export declare const ComponentType: {
42
+ readonly BUILD: "BUILD";
43
+ readonly TEST: "TEST";
44
+ };
45
+ export type ComponentType = (typeof ComponentType)[keyof typeof ComponentType];
46
+ export declare const ComponentFormat: {
47
+ readonly SHELL: "SHELL";
48
+ };
49
+ export type ComponentFormat =
50
+ (typeof ComponentFormat)[keyof typeof ComponentFormat];
51
+ export declare const ContainerRepositoryService: {
52
+ readonly ECR: "ECR";
53
+ };
54
+ export type ContainerRepositoryService =
55
+ (typeof ContainerRepositoryService)[keyof typeof ContainerRepositoryService];
56
+ export declare const ContainerType: {
57
+ readonly DOCKER: "DOCKER";
58
+ };
59
+ export type ContainerType = (typeof ContainerType)[keyof typeof ContainerType];
60
+ export declare const EbsVolumeType: {
61
+ readonly GP2: "gp2";
62
+ readonly GP3: "gp3";
63
+ readonly IO1: "io1";
64
+ readonly IO2: "io2";
65
+ readonly SC1: "sc1";
66
+ readonly ST1: "st1";
67
+ readonly STANDARD: "standard";
68
+ };
69
+ export type EbsVolumeType = (typeof EbsVolumeType)[keyof typeof EbsVolumeType];
70
+ export declare const DiskImageFormat: {
71
+ readonly RAW: "RAW";
72
+ readonly VHD: "VHD";
73
+ readonly VMDK: "VMDK";
74
+ };
75
+ export type DiskImageFormat =
76
+ (typeof DiskImageFormat)[keyof typeof DiskImageFormat];
77
+ export declare const SsmParameterDataType: {
78
+ readonly AWS_EC2_IMAGE: "aws:ec2:image";
79
+ readonly TEXT: "text";
80
+ };
81
+ export type SsmParameterDataType =
82
+ (typeof SsmParameterDataType)[keyof typeof SsmParameterDataType];
83
+ export declare const OnWorkflowFailure: {
84
+ readonly ABORT: "ABORT";
85
+ readonly CONTINUE: "CONTINUE";
86
+ };
87
+ export type OnWorkflowFailure =
88
+ (typeof OnWorkflowFailure)[keyof typeof OnWorkflowFailure];
89
+ export declare const PipelineExecutionStartCondition: {
90
+ readonly EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE: "EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE";
91
+ readonly EXPRESSION_MATCH_ONLY: "EXPRESSION_MATCH_ONLY";
92
+ };
93
+ export type PipelineExecutionStartCondition =
94
+ (typeof PipelineExecutionStartCondition)[keyof typeof PipelineExecutionStartCondition];
95
+ export declare const PipelineStatus: {
96
+ readonly DISABLED: "DISABLED";
97
+ readonly ENABLED: "ENABLED";
98
+ };
99
+ export type PipelineStatus =
100
+ (typeof PipelineStatus)[keyof typeof PipelineStatus];
101
+ export declare const TenancyType: {
102
+ readonly DEDICATED: "dedicated";
103
+ readonly DEFAULT: "default";
104
+ readonly HOST: "host";
105
+ };
106
+ export type TenancyType = (typeof TenancyType)[keyof typeof TenancyType];
107
+ export declare const LifecyclePolicyDetailActionType: {
108
+ readonly DELETE: "DELETE";
109
+ readonly DEPRECATE: "DEPRECATE";
110
+ readonly DISABLE: "DISABLE";
111
+ };
112
+ export type LifecyclePolicyDetailActionType =
113
+ (typeof LifecyclePolicyDetailActionType)[keyof typeof LifecyclePolicyDetailActionType];
114
+ export declare const LifecyclePolicyTimeUnit: {
115
+ readonly DAYS: "DAYS";
116
+ readonly MONTHS: "MONTHS";
117
+ readonly WEEKS: "WEEKS";
118
+ readonly YEARS: "YEARS";
119
+ };
120
+ export type LifecyclePolicyTimeUnit =
121
+ (typeof LifecyclePolicyTimeUnit)[keyof typeof LifecyclePolicyTimeUnit];
122
+ export declare const LifecyclePolicyDetailFilterType: {
123
+ readonly AGE: "AGE";
124
+ readonly COUNT: "COUNT";
125
+ };
126
+ export type LifecyclePolicyDetailFilterType =
127
+ (typeof LifecyclePolicyDetailFilterType)[keyof typeof LifecyclePolicyDetailFilterType];
128
+ export declare const LifecyclePolicyResourceType: {
129
+ readonly AMI_IMAGE: "AMI_IMAGE";
130
+ readonly CONTAINER_IMAGE: "CONTAINER_IMAGE";
131
+ };
132
+ export type LifecyclePolicyResourceType =
133
+ (typeof LifecyclePolicyResourceType)[keyof typeof LifecyclePolicyResourceType];
134
+ export declare const LifecyclePolicyStatus: {
135
+ readonly DISABLED: "DISABLED";
136
+ readonly ENABLED: "ENABLED";
137
+ };
138
+ export type LifecyclePolicyStatus =
139
+ (typeof LifecyclePolicyStatus)[keyof typeof LifecyclePolicyStatus];
140
+ export declare const WorkflowType: {
141
+ readonly BUILD: "BUILD";
142
+ readonly DISTRIBUTION: "DISTRIBUTION";
143
+ readonly TEST: "TEST";
144
+ };
145
+ export type WorkflowType = (typeof WorkflowType)[keyof typeof WorkflowType];
146
+ export declare const ImageType: {
147
+ readonly AMI: "AMI";
148
+ readonly DOCKER: "DOCKER";
149
+ };
150
+ export type ImageType = (typeof ImageType)[keyof typeof ImageType];
151
+ export declare const ImageSource: {
152
+ readonly AMAZON_MANAGED: "AMAZON_MANAGED";
153
+ readonly AWS_MARKETPLACE: "AWS_MARKETPLACE";
154
+ readonly CUSTOM: "CUSTOM";
155
+ readonly IMPORTED: "IMPORTED";
156
+ };
157
+ export type ImageSource = (typeof ImageSource)[keyof typeof ImageSource];
158
+ export declare const ImageScanStatus: {
159
+ readonly ABANDONED: "ABANDONED";
160
+ readonly COLLECTING: "COLLECTING";
161
+ readonly COMPLETED: "COMPLETED";
162
+ readonly FAILED: "FAILED";
163
+ readonly PENDING: "PENDING";
164
+ readonly SCANNING: "SCANNING";
165
+ readonly TIMED_OUT: "TIMED_OUT";
166
+ };
167
+ export type ImageScanStatus =
168
+ (typeof ImageScanStatus)[keyof typeof ImageScanStatus];
169
+ export declare const LifecycleExecutionStatus: {
170
+ readonly CANCELLED: "CANCELLED";
171
+ readonly CANCELLING: "CANCELLING";
172
+ readonly FAILED: "FAILED";
173
+ readonly IN_PROGRESS: "IN_PROGRESS";
174
+ readonly PENDING: "PENDING";
175
+ readonly SUCCESS: "SUCCESS";
176
+ };
177
+ export type LifecycleExecutionStatus =
178
+ (typeof LifecycleExecutionStatus)[keyof typeof LifecycleExecutionStatus];
179
+ export declare const MarketplaceResourceType: {
180
+ readonly COMPONENT_ARTIFACT: "COMPONENT_ARTIFACT";
181
+ readonly COMPONENT_DATA: "COMPONENT_DATA";
182
+ };
183
+ export type MarketplaceResourceType =
184
+ (typeof MarketplaceResourceType)[keyof typeof MarketplaceResourceType];
185
+ export declare const WorkflowStatus: {
186
+ readonly DEPRECATED: "DEPRECATED";
187
+ };
188
+ export type WorkflowStatus =
189
+ (typeof WorkflowStatus)[keyof typeof WorkflowStatus];
190
+ export declare const WorkflowExecutionStatus: {
191
+ readonly CANCELLED: "CANCELLED";
192
+ readonly COMPLETED: "COMPLETED";
193
+ readonly FAILED: "FAILED";
194
+ readonly PENDING: "PENDING";
195
+ readonly ROLLBACK_COMPLETED: "ROLLBACK_COMPLETED";
196
+ readonly ROLLBACK_IN_PROGRESS: "ROLLBACK_IN_PROGRESS";
197
+ readonly RUNNING: "RUNNING";
198
+ readonly SKIPPED: "SKIPPED";
199
+ };
200
+ export type WorkflowExecutionStatus =
201
+ (typeof WorkflowExecutionStatus)[keyof typeof WorkflowExecutionStatus];
202
+ export declare const WorkflowStepExecutionRollbackStatus: {
203
+ readonly COMPLETED: "COMPLETED";
204
+ readonly FAILED: "FAILED";
205
+ readonly RUNNING: "RUNNING";
206
+ readonly SKIPPED: "SKIPPED";
207
+ };
208
+ export type WorkflowStepExecutionRollbackStatus =
209
+ (typeof WorkflowStepExecutionRollbackStatus)[keyof typeof WorkflowStepExecutionRollbackStatus];
210
+ export declare const WorkflowStepExecutionStatus: {
211
+ readonly CANCELLED: "CANCELLED";
212
+ readonly COMPLETED: "COMPLETED";
213
+ readonly FAILED: "FAILED";
214
+ readonly PENDING: "PENDING";
215
+ readonly RUNNING: "RUNNING";
216
+ readonly SKIPPED: "SKIPPED";
217
+ };
218
+ export type WorkflowStepExecutionStatus =
219
+ (typeof WorkflowStepExecutionStatus)[keyof typeof WorkflowStepExecutionStatus];
220
+ export declare const Ownership: {
221
+ readonly AMAZON: "Amazon";
222
+ readonly AWS_MARKETPLACE: "AWSMarketplace";
223
+ readonly SELF: "Self";
224
+ readonly SHARED: "Shared";
225
+ readonly THIRDPARTY: "ThirdParty";
226
+ };
227
+ export type Ownership = (typeof Ownership)[keyof typeof Ownership];
228
+ export declare const LifecycleExecutionResourceActionName: {
229
+ readonly AVAILABLE: "AVAILABLE";
230
+ readonly DELETE: "DELETE";
231
+ readonly DEPRECATE: "DEPRECATE";
232
+ readonly DISABLE: "DISABLE";
233
+ };
234
+ export type LifecycleExecutionResourceActionName =
235
+ (typeof LifecycleExecutionResourceActionName)[keyof typeof LifecycleExecutionResourceActionName];
236
+ export declare const LifecycleExecutionResourceStatus: {
237
+ readonly FAILED: "FAILED";
238
+ readonly IN_PROGRESS: "IN_PROGRESS";
239
+ readonly SKIPPED: "SKIPPED";
240
+ readonly SUCCESS: "SUCCESS";
241
+ };
242
+ export type LifecycleExecutionResourceStatus =
243
+ (typeof LifecycleExecutionResourceStatus)[keyof typeof LifecycleExecutionResourceStatus];
244
+ export declare const WorkflowStepActionType: {
245
+ readonly RESUME: "RESUME";
246
+ readonly STOP: "STOP";
247
+ };
248
+ export type WorkflowStepActionType =
249
+ (typeof WorkflowStepActionType)[keyof typeof WorkflowStepActionType];
250
+ export declare const ResourceStatus: {
251
+ readonly AVAILABLE: "AVAILABLE";
252
+ readonly DELETED: "DELETED";
253
+ readonly DEPRECATED: "DEPRECATED";
254
+ readonly DISABLED: "DISABLED";
255
+ };
256
+ export type ResourceStatus =
257
+ (typeof ResourceStatus)[keyof typeof ResourceStatus];
@@ -0,0 +1,124 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { ImagebuilderServiceException as __BaseException } from "./ImagebuilderServiceException";
3
+ export declare class CallRateLimitExceededException extends __BaseException {
4
+ readonly name: "CallRateLimitExceededException";
5
+ readonly $fault: "client";
6
+ constructor(
7
+ opts: __ExceptionOptionType<CallRateLimitExceededException, __BaseException>
8
+ );
9
+ }
10
+ export declare class ClientException extends __BaseException {
11
+ readonly name: "ClientException";
12
+ readonly $fault: "client";
13
+ constructor(opts: __ExceptionOptionType<ClientException, __BaseException>);
14
+ }
15
+ export declare class ForbiddenException extends __BaseException {
16
+ readonly name: "ForbiddenException";
17
+ readonly $fault: "client";
18
+ constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
19
+ }
20
+ export declare class IdempotentParameterMismatchException extends __BaseException {
21
+ readonly name: "IdempotentParameterMismatchException";
22
+ readonly $fault: "client";
23
+ constructor(
24
+ opts: __ExceptionOptionType<
25
+ IdempotentParameterMismatchException,
26
+ __BaseException
27
+ >
28
+ );
29
+ }
30
+ export declare class InvalidRequestException extends __BaseException {
31
+ readonly name: "InvalidRequestException";
32
+ readonly $fault: "client";
33
+ constructor(
34
+ opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
35
+ );
36
+ }
37
+ export declare class ResourceInUseException extends __BaseException {
38
+ readonly name: "ResourceInUseException";
39
+ readonly $fault: "client";
40
+ constructor(
41
+ opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
42
+ );
43
+ }
44
+ export declare class ServiceException extends __BaseException {
45
+ readonly name: "ServiceException";
46
+ readonly $fault: "server";
47
+ constructor(opts: __ExceptionOptionType<ServiceException, __BaseException>);
48
+ }
49
+ export declare class ServiceUnavailableException extends __BaseException {
50
+ readonly name: "ServiceUnavailableException";
51
+ readonly $fault: "server";
52
+ constructor(
53
+ opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
54
+ );
55
+ }
56
+ export declare class InvalidParameterCombinationException extends __BaseException {
57
+ readonly name: "InvalidParameterCombinationException";
58
+ readonly $fault: "client";
59
+ constructor(
60
+ opts: __ExceptionOptionType<
61
+ InvalidParameterCombinationException,
62
+ __BaseException
63
+ >
64
+ );
65
+ }
66
+ export declare class InvalidVersionNumberException extends __BaseException {
67
+ readonly name: "InvalidVersionNumberException";
68
+ readonly $fault: "client";
69
+ constructor(
70
+ opts: __ExceptionOptionType<InvalidVersionNumberException, __BaseException>
71
+ );
72
+ }
73
+ export declare class ServiceQuotaExceededException extends __BaseException {
74
+ readonly name: "ServiceQuotaExceededException";
75
+ readonly $fault: "client";
76
+ constructor(
77
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
78
+ );
79
+ }
80
+ export declare class ResourceAlreadyExistsException extends __BaseException {
81
+ readonly name: "ResourceAlreadyExistsException";
82
+ readonly $fault: "client";
83
+ constructor(
84
+ opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>
85
+ );
86
+ }
87
+ export declare class ResourceDependencyException extends __BaseException {
88
+ readonly name: "ResourceDependencyException";
89
+ readonly $fault: "client";
90
+ constructor(
91
+ opts: __ExceptionOptionType<ResourceDependencyException, __BaseException>
92
+ );
93
+ }
94
+ export declare class ResourceNotFoundException extends __BaseException {
95
+ readonly name: "ResourceNotFoundException";
96
+ readonly $fault: "client";
97
+ constructor(
98
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
99
+ );
100
+ }
101
+ export declare class InvalidPaginationTokenException extends __BaseException {
102
+ readonly name: "InvalidPaginationTokenException";
103
+ readonly $fault: "client";
104
+ constructor(
105
+ opts: __ExceptionOptionType<
106
+ InvalidPaginationTokenException,
107
+ __BaseException
108
+ >
109
+ );
110
+ }
111
+ export declare class InvalidParameterException extends __BaseException {
112
+ readonly name: "InvalidParameterException";
113
+ readonly $fault: "client";
114
+ constructor(
115
+ opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
116
+ );
117
+ }
118
+ export declare class InvalidParameterValueException extends __BaseException {
119
+ readonly name: "InvalidParameterValueException";
120
+ readonly $fault: "client";
121
+ constructor(
122
+ opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>
123
+ );
124
+ }