aws-sdk-imagebuilder 1.88.0 → 1.89.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.
@@ -23,6 +23,8 @@ module Aws::Imagebuilder
23
23
  AmiList = Shapes::ListShape.new(name: 'AmiList')
24
24
  AmiNameString = Shapes::StringShape.new(name: 'AmiNameString')
25
25
  Arn = Shapes::StringShape.new(name: 'Arn')
26
+ AutoDisableFailureCount = Shapes::IntegerShape.new(name: 'AutoDisableFailureCount')
27
+ AutoDisablePolicy = Shapes::StructureShape.new(name: 'AutoDisablePolicy')
26
28
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
27
29
  BuildType = Shapes::StringShape.new(name: 'BuildType')
28
30
  CallRateLimitExceededException = Shapes::StructureShape.new(name: 'CallRateLimitExceededException')
@@ -56,6 +58,7 @@ module Aws::Imagebuilder
56
58
  ComponentVersionArn = Shapes::StringShape.new(name: 'ComponentVersionArn')
57
59
  ComponentVersionArnOrBuildVersionArn = Shapes::StringShape.new(name: 'ComponentVersionArnOrBuildVersionArn')
58
60
  ComponentVersionList = Shapes::ListShape.new(name: 'ComponentVersionList')
61
+ ConsecutiveFailures = Shapes::IntegerShape.new(name: 'ConsecutiveFailures')
59
62
  Container = Shapes::StructureShape.new(name: 'Container')
60
63
  ContainerDistributionConfiguration = Shapes::StructureShape.new(name: 'ContainerDistributionConfiguration')
61
64
  ContainerList = Shapes::ListShape.new(name: 'ContainerList')
@@ -177,6 +180,7 @@ module Aws::Imagebuilder
177
180
  ImageBuildMessage = Shapes::StringShape.new(name: 'ImageBuildMessage')
178
181
  ImageBuildVersionArn = Shapes::StringShape.new(name: 'ImageBuildVersionArn')
179
182
  ImageBuilderArn = Shapes::StringShape.new(name: 'ImageBuilderArn')
183
+ ImageLoggingConfiguration = Shapes::StructureShape.new(name: 'ImageLoggingConfiguration')
180
184
  ImagePackage = Shapes::StructureShape.new(name: 'ImagePackage')
181
185
  ImagePackageList = Shapes::ListShape.new(name: 'ImagePackageList')
182
186
  ImagePipeline = Shapes::StructureShape.new(name: 'ImagePipeline')
@@ -323,6 +327,7 @@ module Aws::Imagebuilder
323
327
  ListWorkflowStepExecutionsResponse = Shapes::StructureShape.new(name: 'ListWorkflowStepExecutionsResponse')
324
328
  ListWorkflowsRequest = Shapes::StructureShape.new(name: 'ListWorkflowsRequest')
325
329
  ListWorkflowsResponse = Shapes::StructureShape.new(name: 'ListWorkflowsResponse')
330
+ LogGroupName = Shapes::StringShape.new(name: 'LogGroupName')
326
331
  Logging = Shapes::StructureShape.new(name: 'Logging')
327
332
  MarketplaceResourceLocation = Shapes::StringShape.new(name: 'MarketplaceResourceLocation')
328
333
  MarketplaceResourceType = Shapes::StringShape.new(name: 'MarketplaceResourceType')
@@ -346,6 +351,7 @@ module Aws::Imagebuilder
346
351
  PaginationToken = Shapes::StringShape.new(name: 'PaginationToken')
347
352
  ParallelGroup = Shapes::StringShape.new(name: 'ParallelGroup')
348
353
  PipelineExecutionStartCondition = Shapes::StringShape.new(name: 'PipelineExecutionStartCondition')
354
+ PipelineLoggingConfiguration = Shapes::StructureShape.new(name: 'PipelineLoggingConfiguration')
349
355
  PipelineStatus = Shapes::StringShape.new(name: 'PipelineStatus')
350
356
  Placement = Shapes::StructureShape.new(name: 'Placement')
351
357
  Platform = Shapes::StringShape.new(name: 'Platform')
@@ -503,6 +509,9 @@ module Aws::Imagebuilder
503
509
 
504
510
  AmiList.member = Shapes::ShapeRef.new(shape: Ami)
505
511
 
512
+ AutoDisablePolicy.add_member(:failure_count, Shapes::ShapeRef.new(shape: AutoDisableFailureCount, required: true, location_name: "failureCount"))
513
+ AutoDisablePolicy.struct_class = Types::AutoDisablePolicy
514
+
506
515
  CallRateLimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
507
516
  CallRateLimitExceededException.struct_class = Types::CallRateLimitExceededException
508
517
 
@@ -642,6 +651,7 @@ module Aws::Imagebuilder
642
651
  ContainerRecipeSummary.add_member(:owner, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "owner"))
643
652
  ContainerRecipeSummary.add_member(:parent_image, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "parentImage"))
644
653
  ContainerRecipeSummary.add_member(:date_created, Shapes::ShapeRef.new(shape: DateTime, location_name: "dateCreated"))
654
+ ContainerRecipeSummary.add_member(:instance_image, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "instanceImage"))
645
655
  ContainerRecipeSummary.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
646
656
  ContainerRecipeSummary.struct_class = Types::ContainerRecipeSummary
647
657
 
@@ -715,6 +725,7 @@ module Aws::Imagebuilder
715
725
  CreateImagePipelineRequest.add_member(:image_scanning_configuration, Shapes::ShapeRef.new(shape: ImageScanningConfiguration, location_name: "imageScanningConfiguration"))
716
726
  CreateImagePipelineRequest.add_member(:workflows, Shapes::ShapeRef.new(shape: WorkflowConfigurationList, location_name: "workflows"))
717
727
  CreateImagePipelineRequest.add_member(:execution_role, Shapes::ShapeRef.new(shape: RoleNameOrArn, location_name: "executionRole"))
728
+ CreateImagePipelineRequest.add_member(:logging_configuration, Shapes::ShapeRef.new(shape: PipelineLoggingConfiguration, location_name: "loggingConfiguration"))
718
729
  CreateImagePipelineRequest.struct_class = Types::CreateImagePipelineRequest
719
730
 
720
731
  CreateImagePipelineResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "requestId"))
@@ -731,6 +742,7 @@ module Aws::Imagebuilder
731
742
  CreateImageRecipeRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
732
743
  CreateImageRecipeRequest.add_member(:working_directory, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "workingDirectory"))
733
744
  CreateImageRecipeRequest.add_member(:additional_instance_configuration, Shapes::ShapeRef.new(shape: AdditionalInstanceConfiguration, location_name: "additionalInstanceConfiguration"))
745
+ CreateImageRecipeRequest.add_member(:ami_tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "amiTags"))
734
746
  CreateImageRecipeRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
735
747
  CreateImageRecipeRequest.struct_class = Types::CreateImageRecipeRequest
736
748
 
@@ -750,6 +762,7 @@ module Aws::Imagebuilder
750
762
  CreateImageRequest.add_member(:image_scanning_configuration, Shapes::ShapeRef.new(shape: ImageScanningConfiguration, location_name: "imageScanningConfiguration"))
751
763
  CreateImageRequest.add_member(:workflows, Shapes::ShapeRef.new(shape: WorkflowConfigurationList, location_name: "workflows"))
752
764
  CreateImageRequest.add_member(:execution_role, Shapes::ShapeRef.new(shape: RoleNameOrArn, location_name: "executionRole"))
765
+ CreateImageRequest.add_member(:logging_configuration, Shapes::ShapeRef.new(shape: ImageLoggingConfiguration, location_name: "loggingConfiguration"))
753
766
  CreateImageRequest.struct_class = Types::CreateImageRequest
754
767
 
755
768
  CreateImageResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "requestId"))
@@ -1143,12 +1156,16 @@ module Aws::Imagebuilder
1143
1156
  Image.add_member(:lifecycle_execution_id, Shapes::ShapeRef.new(shape: LifecycleExecutionId, location_name: "lifecycleExecutionId"))
1144
1157
  Image.add_member(:execution_role, Shapes::ShapeRef.new(shape: RoleNameOrArn, location_name: "executionRole"))
1145
1158
  Image.add_member(:workflows, Shapes::ShapeRef.new(shape: WorkflowConfigurationList, location_name: "workflows"))
1159
+ Image.add_member(:logging_configuration, Shapes::ShapeRef.new(shape: ImageLoggingConfiguration, location_name: "loggingConfiguration"))
1146
1160
  Image.struct_class = Types::Image
1147
1161
 
1148
1162
  ImageAggregation.add_member(:image_build_version_arn, Shapes::ShapeRef.new(shape: ImageBuildVersionArn, location_name: "imageBuildVersionArn"))
1149
1163
  ImageAggregation.add_member(:severity_counts, Shapes::ShapeRef.new(shape: SeverityCounts, location_name: "severityCounts"))
1150
1164
  ImageAggregation.struct_class = Types::ImageAggregation
1151
1165
 
1166
+ ImageLoggingConfiguration.add_member(:log_group_name, Shapes::ShapeRef.new(shape: LogGroupName, location_name: "logGroupName"))
1167
+ ImageLoggingConfiguration.struct_class = Types::ImageLoggingConfiguration
1168
+
1152
1169
  ImagePackage.add_member(:package_name, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "packageName"))
1153
1170
  ImagePackage.add_member(:package_version, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "packageVersion"))
1154
1171
  ImagePackage.struct_class = Types::ImagePackage
@@ -1170,11 +1187,14 @@ module Aws::Imagebuilder
1170
1187
  ImagePipeline.add_member(:date_created, Shapes::ShapeRef.new(shape: DateTime, location_name: "dateCreated"))
1171
1188
  ImagePipeline.add_member(:date_updated, Shapes::ShapeRef.new(shape: DateTime, location_name: "dateUpdated"))
1172
1189
  ImagePipeline.add_member(:date_last_run, Shapes::ShapeRef.new(shape: DateTime, location_name: "dateLastRun"))
1190
+ ImagePipeline.add_member(:last_run_status, Shapes::ShapeRef.new(shape: ImageStatus, location_name: "lastRunStatus"))
1173
1191
  ImagePipeline.add_member(:date_next_run, Shapes::ShapeRef.new(shape: DateTime, location_name: "dateNextRun"))
1174
1192
  ImagePipeline.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
1175
1193
  ImagePipeline.add_member(:image_scanning_configuration, Shapes::ShapeRef.new(shape: ImageScanningConfiguration, location_name: "imageScanningConfiguration"))
1176
1194
  ImagePipeline.add_member(:execution_role, Shapes::ShapeRef.new(shape: RoleNameOrArn, location_name: "executionRole"))
1177
1195
  ImagePipeline.add_member(:workflows, Shapes::ShapeRef.new(shape: WorkflowConfigurationList, location_name: "workflows"))
1196
+ ImagePipeline.add_member(:logging_configuration, Shapes::ShapeRef.new(shape: PipelineLoggingConfiguration, location_name: "loggingConfiguration"))
1197
+ ImagePipeline.add_member(:consecutive_failures, Shapes::ShapeRef.new(shape: ConsecutiveFailures, location_name: "consecutiveFailures"))
1178
1198
  ImagePipeline.struct_class = Types::ImagePipeline
1179
1199
 
1180
1200
  ImagePipelineAggregation.add_member(:image_pipeline_arn, Shapes::ShapeRef.new(shape: ImagePipelineArn, location_name: "imagePipelineArn"))
@@ -1197,6 +1217,7 @@ module Aws::Imagebuilder
1197
1217
  ImageRecipe.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
1198
1218
  ImageRecipe.add_member(:working_directory, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "workingDirectory"))
1199
1219
  ImageRecipe.add_member(:additional_instance_configuration, Shapes::ShapeRef.new(shape: AdditionalInstanceConfiguration, location_name: "additionalInstanceConfiguration"))
1220
+ ImageRecipe.add_member(:ami_tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "amiTags"))
1200
1221
  ImageRecipe.struct_class = Types::ImageRecipe
1201
1222
 
1202
1223
  ImageRecipeSummary.add_member(:arn, Shapes::ShapeRef.new(shape: ImageBuilderArn, location_name: "arn"))
@@ -1271,6 +1292,7 @@ module Aws::Imagebuilder
1271
1292
  ImageSummary.add_member(:image_source, Shapes::ShapeRef.new(shape: ImageSource, location_name: "imageSource"))
1272
1293
  ImageSummary.add_member(:deprecation_time, Shapes::ShapeRef.new(shape: DateTimeTimestamp, location_name: "deprecationTime"))
1273
1294
  ImageSummary.add_member(:lifecycle_execution_id, Shapes::ShapeRef.new(shape: LifecycleExecutionId, location_name: "lifecycleExecutionId"))
1295
+ ImageSummary.add_member(:logging_configuration, Shapes::ShapeRef.new(shape: ImageLoggingConfiguration, location_name: "loggingConfiguration"))
1274
1296
  ImageSummary.struct_class = Types::ImageSummary
1275
1297
 
1276
1298
  ImageSummaryList.member = Shapes::ShapeRef.new(shape: ImageSummary)
@@ -1320,6 +1342,7 @@ module Aws::Imagebuilder
1320
1342
  ImportDiskImageRequest.add_member(:execution_role, Shapes::ShapeRef.new(shape: RoleNameOrArn, location_name: "executionRole"))
1321
1343
  ImportDiskImageRequest.add_member(:infrastructure_configuration_arn, Shapes::ShapeRef.new(shape: InfrastructureConfigurationArn, required: true, location_name: "infrastructureConfigurationArn"))
1322
1344
  ImportDiskImageRequest.add_member(:uri, Shapes::ShapeRef.new(shape: Uri, required: true, location_name: "uri"))
1345
+ ImportDiskImageRequest.add_member(:logging_configuration, Shapes::ShapeRef.new(shape: ImageLoggingConfiguration, location_name: "loggingConfiguration"))
1323
1346
  ImportDiskImageRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
1324
1347
  ImportDiskImageRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
1325
1348
  ImportDiskImageRequest.struct_class = Types::ImportDiskImageRequest
@@ -1334,6 +1357,7 @@ module Aws::Imagebuilder
1334
1357
  ImportVmImageRequest.add_member(:platform, Shapes::ShapeRef.new(shape: Platform, required: true, location_name: "platform"))
1335
1358
  ImportVmImageRequest.add_member(:os_version, Shapes::ShapeRef.new(shape: OsVersion, location_name: "osVersion"))
1336
1359
  ImportVmImageRequest.add_member(:vm_import_task_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location_name: "vmImportTaskId"))
1360
+ ImportVmImageRequest.add_member(:logging_configuration, Shapes::ShapeRef.new(shape: ImageLoggingConfiguration, location_name: "loggingConfiguration"))
1337
1361
  ImportVmImageRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
1338
1362
  ImportVmImageRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
1339
1363
  ImportVmImageRequest.struct_class = Types::ImportVmImageRequest
@@ -1805,6 +1829,10 @@ module Aws::Imagebuilder
1805
1829
  PackageVulnerabilityDetails.add_member(:reference_urls, Shapes::ShapeRef.new(shape: NonEmptyStringList, location_name: "referenceUrls"))
1806
1830
  PackageVulnerabilityDetails.struct_class = Types::PackageVulnerabilityDetails
1807
1831
 
1832
+ PipelineLoggingConfiguration.add_member(:image_log_group_name, Shapes::ShapeRef.new(shape: LogGroupName, location_name: "imageLogGroupName"))
1833
+ PipelineLoggingConfiguration.add_member(:pipeline_log_group_name, Shapes::ShapeRef.new(shape: LogGroupName, location_name: "pipelineLogGroupName"))
1834
+ PipelineLoggingConfiguration.struct_class = Types::PipelineLoggingConfiguration
1835
+
1808
1836
  Placement.add_member(:availability_zone, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "availabilityZone"))
1809
1837
  Placement.add_member(:tenancy, Shapes::ShapeRef.new(shape: TenancyType, location_name: "tenancy"))
1810
1838
  Placement.add_member(:host_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "hostId"))
@@ -1897,6 +1925,7 @@ module Aws::Imagebuilder
1897
1925
  Schedule.add_member(:schedule_expression, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "scheduleExpression"))
1898
1926
  Schedule.add_member(:timezone, Shapes::ShapeRef.new(shape: Timezone, location_name: "timezone"))
1899
1927
  Schedule.add_member(:pipeline_execution_start_condition, Shapes::ShapeRef.new(shape: PipelineExecutionStartCondition, location_name: "pipelineExecutionStartCondition"))
1928
+ Schedule.add_member(:auto_disable_policy, Shapes::ShapeRef.new(shape: AutoDisablePolicy, location_name: "autoDisablePolicy"))
1900
1929
  Schedule.struct_class = Types::Schedule
1901
1930
 
1902
1931
  SecurityGroupIds.member = Shapes::ShapeRef.new(shape: NonEmptyString)
@@ -1937,6 +1966,7 @@ module Aws::Imagebuilder
1937
1966
 
1938
1967
  StartImagePipelineExecutionRequest.add_member(:image_pipeline_arn, Shapes::ShapeRef.new(shape: ImagePipelineArn, required: true, location_name: "imagePipelineArn"))
1939
1968
  StartImagePipelineExecutionRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
1969
+ StartImagePipelineExecutionRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
1940
1970
  StartImagePipelineExecutionRequest.struct_class = Types::StartImagePipelineExecutionRequest
1941
1971
 
1942
1972
  StartImagePipelineExecutionResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "requestId"))
@@ -2007,6 +2037,7 @@ module Aws::Imagebuilder
2007
2037
  UpdateImagePipelineRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
2008
2038
  UpdateImagePipelineRequest.add_member(:image_scanning_configuration, Shapes::ShapeRef.new(shape: ImageScanningConfiguration, location_name: "imageScanningConfiguration"))
2009
2039
  UpdateImagePipelineRequest.add_member(:workflows, Shapes::ShapeRef.new(shape: WorkflowConfigurationList, location_name: "workflows"))
2040
+ UpdateImagePipelineRequest.add_member(:logging_configuration, Shapes::ShapeRef.new(shape: PipelineLoggingConfiguration, location_name: "loggingConfiguration"))
2010
2041
  UpdateImagePipelineRequest.add_member(:execution_role, Shapes::ShapeRef.new(shape: RoleNameOrArn, location_name: "executionRole"))
2011
2042
  UpdateImagePipelineRequest.struct_class = Types::UpdateImagePipelineRequest
2012
2043