aws-sdk-imagebuilder 1.71.0 → 1.73.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-imagebuilder/client.rb +73 -49
- data/lib/aws-sdk-imagebuilder/client_api.rb +13 -1
- data/lib/aws-sdk-imagebuilder/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-imagebuilder/endpoints.rb +2 -801
- data/lib/aws-sdk-imagebuilder/plugins/endpoints.rb +1 -152
- data/lib/aws-sdk-imagebuilder/types.rb +101 -22
- data/lib/aws-sdk-imagebuilder.rb +1 -1
- data/sig/client.rbs +18 -6
- data/sig/types.rbs +28 -16
- metadata +4 -4
@@ -27,7 +27,7 @@ The endpoint provider used to resolve endpoints. Any object that responds to
|
|
27
27
|
class Handler < Seahorse::Client::Handler
|
28
28
|
def call(context)
|
29
29
|
unless context[:discovered_endpoint]
|
30
|
-
params = parameters_for_operation(context)
|
30
|
+
params = Aws::Imagebuilder::Endpoints.parameters_for_operation(context)
|
31
31
|
endpoint = context.config.endpoint_provider.resolve_endpoint(params)
|
32
32
|
|
33
33
|
context.http_request.endpoint = endpoint.url
|
@@ -67,157 +67,6 @@ The endpoint provider used to resolve endpoints. Any object that responds to
|
|
67
67
|
context.http_request.headers[key] = value
|
68
68
|
end
|
69
69
|
end
|
70
|
-
|
71
|
-
def parameters_for_operation(context)
|
72
|
-
case context.operation_name
|
73
|
-
when :cancel_image_creation
|
74
|
-
Aws::Imagebuilder::Endpoints::CancelImageCreation.build(context)
|
75
|
-
when :cancel_lifecycle_execution
|
76
|
-
Aws::Imagebuilder::Endpoints::CancelLifecycleExecution.build(context)
|
77
|
-
when :create_component
|
78
|
-
Aws::Imagebuilder::Endpoints::CreateComponent.build(context)
|
79
|
-
when :create_container_recipe
|
80
|
-
Aws::Imagebuilder::Endpoints::CreateContainerRecipe.build(context)
|
81
|
-
when :create_distribution_configuration
|
82
|
-
Aws::Imagebuilder::Endpoints::CreateDistributionConfiguration.build(context)
|
83
|
-
when :create_image
|
84
|
-
Aws::Imagebuilder::Endpoints::CreateImage.build(context)
|
85
|
-
when :create_image_pipeline
|
86
|
-
Aws::Imagebuilder::Endpoints::CreateImagePipeline.build(context)
|
87
|
-
when :create_image_recipe
|
88
|
-
Aws::Imagebuilder::Endpoints::CreateImageRecipe.build(context)
|
89
|
-
when :create_infrastructure_configuration
|
90
|
-
Aws::Imagebuilder::Endpoints::CreateInfrastructureConfiguration.build(context)
|
91
|
-
when :create_lifecycle_policy
|
92
|
-
Aws::Imagebuilder::Endpoints::CreateLifecyclePolicy.build(context)
|
93
|
-
when :create_workflow
|
94
|
-
Aws::Imagebuilder::Endpoints::CreateWorkflow.build(context)
|
95
|
-
when :delete_component
|
96
|
-
Aws::Imagebuilder::Endpoints::DeleteComponent.build(context)
|
97
|
-
when :delete_container_recipe
|
98
|
-
Aws::Imagebuilder::Endpoints::DeleteContainerRecipe.build(context)
|
99
|
-
when :delete_distribution_configuration
|
100
|
-
Aws::Imagebuilder::Endpoints::DeleteDistributionConfiguration.build(context)
|
101
|
-
when :delete_image
|
102
|
-
Aws::Imagebuilder::Endpoints::DeleteImage.build(context)
|
103
|
-
when :delete_image_pipeline
|
104
|
-
Aws::Imagebuilder::Endpoints::DeleteImagePipeline.build(context)
|
105
|
-
when :delete_image_recipe
|
106
|
-
Aws::Imagebuilder::Endpoints::DeleteImageRecipe.build(context)
|
107
|
-
when :delete_infrastructure_configuration
|
108
|
-
Aws::Imagebuilder::Endpoints::DeleteInfrastructureConfiguration.build(context)
|
109
|
-
when :delete_lifecycle_policy
|
110
|
-
Aws::Imagebuilder::Endpoints::DeleteLifecyclePolicy.build(context)
|
111
|
-
when :delete_workflow
|
112
|
-
Aws::Imagebuilder::Endpoints::DeleteWorkflow.build(context)
|
113
|
-
when :get_component
|
114
|
-
Aws::Imagebuilder::Endpoints::GetComponent.build(context)
|
115
|
-
when :get_component_policy
|
116
|
-
Aws::Imagebuilder::Endpoints::GetComponentPolicy.build(context)
|
117
|
-
when :get_container_recipe
|
118
|
-
Aws::Imagebuilder::Endpoints::GetContainerRecipe.build(context)
|
119
|
-
when :get_container_recipe_policy
|
120
|
-
Aws::Imagebuilder::Endpoints::GetContainerRecipePolicy.build(context)
|
121
|
-
when :get_distribution_configuration
|
122
|
-
Aws::Imagebuilder::Endpoints::GetDistributionConfiguration.build(context)
|
123
|
-
when :get_image
|
124
|
-
Aws::Imagebuilder::Endpoints::GetImage.build(context)
|
125
|
-
when :get_image_pipeline
|
126
|
-
Aws::Imagebuilder::Endpoints::GetImagePipeline.build(context)
|
127
|
-
when :get_image_policy
|
128
|
-
Aws::Imagebuilder::Endpoints::GetImagePolicy.build(context)
|
129
|
-
when :get_image_recipe
|
130
|
-
Aws::Imagebuilder::Endpoints::GetImageRecipe.build(context)
|
131
|
-
when :get_image_recipe_policy
|
132
|
-
Aws::Imagebuilder::Endpoints::GetImageRecipePolicy.build(context)
|
133
|
-
when :get_infrastructure_configuration
|
134
|
-
Aws::Imagebuilder::Endpoints::GetInfrastructureConfiguration.build(context)
|
135
|
-
when :get_lifecycle_execution
|
136
|
-
Aws::Imagebuilder::Endpoints::GetLifecycleExecution.build(context)
|
137
|
-
when :get_lifecycle_policy
|
138
|
-
Aws::Imagebuilder::Endpoints::GetLifecyclePolicy.build(context)
|
139
|
-
when :get_workflow
|
140
|
-
Aws::Imagebuilder::Endpoints::GetWorkflow.build(context)
|
141
|
-
when :get_workflow_execution
|
142
|
-
Aws::Imagebuilder::Endpoints::GetWorkflowExecution.build(context)
|
143
|
-
when :get_workflow_step_execution
|
144
|
-
Aws::Imagebuilder::Endpoints::GetWorkflowStepExecution.build(context)
|
145
|
-
when :import_component
|
146
|
-
Aws::Imagebuilder::Endpoints::ImportComponent.build(context)
|
147
|
-
when :import_vm_image
|
148
|
-
Aws::Imagebuilder::Endpoints::ImportVmImage.build(context)
|
149
|
-
when :list_component_build_versions
|
150
|
-
Aws::Imagebuilder::Endpoints::ListComponentBuildVersions.build(context)
|
151
|
-
when :list_components
|
152
|
-
Aws::Imagebuilder::Endpoints::ListComponents.build(context)
|
153
|
-
when :list_container_recipes
|
154
|
-
Aws::Imagebuilder::Endpoints::ListContainerRecipes.build(context)
|
155
|
-
when :list_distribution_configurations
|
156
|
-
Aws::Imagebuilder::Endpoints::ListDistributionConfigurations.build(context)
|
157
|
-
when :list_image_build_versions
|
158
|
-
Aws::Imagebuilder::Endpoints::ListImageBuildVersions.build(context)
|
159
|
-
when :list_image_packages
|
160
|
-
Aws::Imagebuilder::Endpoints::ListImagePackages.build(context)
|
161
|
-
when :list_image_pipeline_images
|
162
|
-
Aws::Imagebuilder::Endpoints::ListImagePipelineImages.build(context)
|
163
|
-
when :list_image_pipelines
|
164
|
-
Aws::Imagebuilder::Endpoints::ListImagePipelines.build(context)
|
165
|
-
when :list_image_recipes
|
166
|
-
Aws::Imagebuilder::Endpoints::ListImageRecipes.build(context)
|
167
|
-
when :list_image_scan_finding_aggregations
|
168
|
-
Aws::Imagebuilder::Endpoints::ListImageScanFindingAggregations.build(context)
|
169
|
-
when :list_image_scan_findings
|
170
|
-
Aws::Imagebuilder::Endpoints::ListImageScanFindings.build(context)
|
171
|
-
when :list_images
|
172
|
-
Aws::Imagebuilder::Endpoints::ListImages.build(context)
|
173
|
-
when :list_infrastructure_configurations
|
174
|
-
Aws::Imagebuilder::Endpoints::ListInfrastructureConfigurations.build(context)
|
175
|
-
when :list_lifecycle_execution_resources
|
176
|
-
Aws::Imagebuilder::Endpoints::ListLifecycleExecutionResources.build(context)
|
177
|
-
when :list_lifecycle_executions
|
178
|
-
Aws::Imagebuilder::Endpoints::ListLifecycleExecutions.build(context)
|
179
|
-
when :list_lifecycle_policies
|
180
|
-
Aws::Imagebuilder::Endpoints::ListLifecyclePolicies.build(context)
|
181
|
-
when :list_tags_for_resource
|
182
|
-
Aws::Imagebuilder::Endpoints::ListTagsForResource.build(context)
|
183
|
-
when :list_waiting_workflow_steps
|
184
|
-
Aws::Imagebuilder::Endpoints::ListWaitingWorkflowSteps.build(context)
|
185
|
-
when :list_workflow_build_versions
|
186
|
-
Aws::Imagebuilder::Endpoints::ListWorkflowBuildVersions.build(context)
|
187
|
-
when :list_workflow_executions
|
188
|
-
Aws::Imagebuilder::Endpoints::ListWorkflowExecutions.build(context)
|
189
|
-
when :list_workflow_step_executions
|
190
|
-
Aws::Imagebuilder::Endpoints::ListWorkflowStepExecutions.build(context)
|
191
|
-
when :list_workflows
|
192
|
-
Aws::Imagebuilder::Endpoints::ListWorkflows.build(context)
|
193
|
-
when :put_component_policy
|
194
|
-
Aws::Imagebuilder::Endpoints::PutComponentPolicy.build(context)
|
195
|
-
when :put_container_recipe_policy
|
196
|
-
Aws::Imagebuilder::Endpoints::PutContainerRecipePolicy.build(context)
|
197
|
-
when :put_image_policy
|
198
|
-
Aws::Imagebuilder::Endpoints::PutImagePolicy.build(context)
|
199
|
-
when :put_image_recipe_policy
|
200
|
-
Aws::Imagebuilder::Endpoints::PutImageRecipePolicy.build(context)
|
201
|
-
when :send_workflow_step_action
|
202
|
-
Aws::Imagebuilder::Endpoints::SendWorkflowStepAction.build(context)
|
203
|
-
when :start_image_pipeline_execution
|
204
|
-
Aws::Imagebuilder::Endpoints::StartImagePipelineExecution.build(context)
|
205
|
-
when :start_resource_state_update
|
206
|
-
Aws::Imagebuilder::Endpoints::StartResourceStateUpdate.build(context)
|
207
|
-
when :tag_resource
|
208
|
-
Aws::Imagebuilder::Endpoints::TagResource.build(context)
|
209
|
-
when :untag_resource
|
210
|
-
Aws::Imagebuilder::Endpoints::UntagResource.build(context)
|
211
|
-
when :update_distribution_configuration
|
212
|
-
Aws::Imagebuilder::Endpoints::UpdateDistributionConfiguration.build(context)
|
213
|
-
when :update_image_pipeline
|
214
|
-
Aws::Imagebuilder::Endpoints::UpdateImagePipeline.build(context)
|
215
|
-
when :update_infrastructure_configuration
|
216
|
-
Aws::Imagebuilder::Endpoints::UpdateInfrastructureConfiguration.build(context)
|
217
|
-
when :update_lifecycle_policy
|
218
|
-
Aws::Imagebuilder::Endpoints::UpdateLifecyclePolicy.build(context)
|
219
|
-
end
|
220
|
-
end
|
221
70
|
end
|
222
71
|
|
223
72
|
def add_handlers(handlers, _config)
|
@@ -1101,7 +1101,7 @@ module Aws::Imagebuilder
|
|
1101
1101
|
# @return [Types::TargetContainerRepository]
|
1102
1102
|
#
|
1103
1103
|
# @!attribute [rw] kms_key_id
|
1104
|
-
# Identifies which KMS key is used to encrypt the
|
1104
|
+
# Identifies which KMS key is used to encrypt the Dockerfile template.
|
1105
1105
|
# @return [String]
|
1106
1106
|
#
|
1107
1107
|
# @!attribute [rw] client_token
|
@@ -1625,7 +1625,9 @@ module Aws::Imagebuilder
|
|
1625
1625
|
# @return [String]
|
1626
1626
|
#
|
1627
1627
|
# @!attribute [rw] resource_tags
|
1628
|
-
# The tags
|
1628
|
+
# The metadata tags to assign to the Amazon EC2 instance that Image
|
1629
|
+
# Builder launches during the build process. Tags are formatted as key
|
1630
|
+
# value pairs.
|
1629
1631
|
# @return [Hash<String,String>]
|
1630
1632
|
#
|
1631
1633
|
# @!attribute [rw] instance_metadata_options
|
@@ -1634,9 +1636,16 @@ module Aws::Imagebuilder
|
|
1634
1636
|
# @return [Types::InstanceMetadataOptions]
|
1635
1637
|
#
|
1636
1638
|
# @!attribute [rw] tags
|
1637
|
-
# The tags
|
1639
|
+
# The metadata tags to assign to the infrastructure configuration
|
1640
|
+
# resource that Image Builder creates as output. Tags are formatted as
|
1641
|
+
# key value pairs.
|
1638
1642
|
# @return [Hash<String,String>]
|
1639
1643
|
#
|
1644
|
+
# @!attribute [rw] placement
|
1645
|
+
# The instance placement settings that define where the instances that
|
1646
|
+
# are launched from your image will run.
|
1647
|
+
# @return [Types::Placement]
|
1648
|
+
#
|
1640
1649
|
# @!attribute [rw] client_token
|
1641
1650
|
# Unique, case-sensitive identifier you provide to ensure idempotency
|
1642
1651
|
# of the request. For more information, see [Ensuring idempotency][1]
|
@@ -1666,6 +1675,7 @@ module Aws::Imagebuilder
|
|
1666
1675
|
:resource_tags,
|
1667
1676
|
:instance_metadata_options,
|
1668
1677
|
:tags,
|
1678
|
+
:placement,
|
1669
1679
|
:client_token)
|
1670
1680
|
SENSITIVE = []
|
1671
1681
|
include Aws::Structure
|
@@ -2460,8 +2470,8 @@ module Aws::Imagebuilder
|
|
2460
2470
|
#
|
2461
2471
|
# @!attribute [rw] container_tags
|
2462
2472
|
# Tags for Image Builder to apply to the output container image that
|
2463
|
-
#
|
2464
|
-
# images.
|
2473
|
+
# Amazon Inspector scans. Tags can help you identify and manage your
|
2474
|
+
# scanned images.
|
2465
2475
|
# @return [Array<String>]
|
2466
2476
|
#
|
2467
2477
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/EcrConfiguration AWS API Documentation
|
@@ -4502,6 +4512,11 @@ module Aws::Imagebuilder
|
|
4502
4512
|
# The tags of the infrastructure configuration.
|
4503
4513
|
# @return [Hash<String,String>]
|
4504
4514
|
#
|
4515
|
+
# @!attribute [rw] placement
|
4516
|
+
# The instance placement settings that define where the instances that
|
4517
|
+
# are launched from your image will run.
|
4518
|
+
# @return [Types::Placement]
|
4519
|
+
#
|
4505
4520
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/InfrastructureConfiguration AWS API Documentation
|
4506
4521
|
#
|
4507
4522
|
class InfrastructureConfiguration < Struct.new(
|
@@ -4520,7 +4535,8 @@ module Aws::Imagebuilder
|
|
4520
4535
|
:date_updated,
|
4521
4536
|
:resource_tags,
|
4522
4537
|
:instance_metadata_options,
|
4523
|
-
:tags
|
4538
|
+
:tags,
|
4539
|
+
:placement)
|
4524
4540
|
SENSITIVE = []
|
4525
4541
|
include Aws::Structure
|
4526
4542
|
end
|
@@ -4563,6 +4579,11 @@ module Aws::Imagebuilder
|
|
4563
4579
|
# The instance profile of the infrastructure configuration.
|
4564
4580
|
# @return [String]
|
4565
4581
|
#
|
4582
|
+
# @!attribute [rw] placement
|
4583
|
+
# The instance placement settings that define where the instances that
|
4584
|
+
# are launched from your image will run.
|
4585
|
+
# @return [Types::Placement]
|
4586
|
+
#
|
4566
4587
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/InfrastructureConfigurationSummary AWS API Documentation
|
4567
4588
|
#
|
4568
4589
|
class InfrastructureConfigurationSummary < Struct.new(
|
@@ -4574,7 +4595,8 @@ module Aws::Imagebuilder
|
|
4574
4595
|
:resource_tags,
|
4575
4596
|
:tags,
|
4576
4597
|
:instance_types,
|
4577
|
-
:instance_profile_name
|
4598
|
+
:instance_profile_name,
|
4599
|
+
:placement)
|
4578
4600
|
SENSITIVE = []
|
4579
4601
|
include Aws::Structure
|
4580
4602
|
end
|
@@ -6790,6 +6812,57 @@ module Aws::Imagebuilder
|
|
6790
6812
|
include Aws::Structure
|
6791
6813
|
end
|
6792
6814
|
|
6815
|
+
# By default, EC2 instances run on shared tenancy hardware. This means
|
6816
|
+
# that multiple Amazon Web Services accounts might share the same
|
6817
|
+
# physical hardware. When you use dedicated hardware, the physical
|
6818
|
+
# server that hosts your instances is dedicated to your Amazon Web
|
6819
|
+
# Services account. Instance placement settings contain the details for
|
6820
|
+
# the physical hardware where instances that Image Builder launches
|
6821
|
+
# during image creation will run.
|
6822
|
+
#
|
6823
|
+
# @!attribute [rw] availability_zone
|
6824
|
+
# The Availability Zone where your build and test instances will
|
6825
|
+
# launch.
|
6826
|
+
# @return [String]
|
6827
|
+
#
|
6828
|
+
# @!attribute [rw] tenancy
|
6829
|
+
# The tenancy of the instance. An instance with a tenancy of
|
6830
|
+
# `dedicated` runs on single-tenant hardware. An instance with a
|
6831
|
+
# tenancy of `host` runs on a Dedicated Host.
|
6832
|
+
#
|
6833
|
+
# If tenancy is set to `host`, then you can optionally specify one
|
6834
|
+
# target for placement – either host ID or host resource group ARN. If
|
6835
|
+
# automatic placement is enabled for your host, and you don't specify
|
6836
|
+
# any placement target, Amazon EC2 will try to find an available host
|
6837
|
+
# for your build and test instances.
|
6838
|
+
# @return [String]
|
6839
|
+
#
|
6840
|
+
# @!attribute [rw] host_id
|
6841
|
+
# The ID of the Dedicated Host on which build and test instances run.
|
6842
|
+
# This only applies if `tenancy` is `host`. If you specify the host
|
6843
|
+
# ID, you must not specify the resource group ARN. If you specify
|
6844
|
+
# both, Image Builder returns an error.
|
6845
|
+
# @return [String]
|
6846
|
+
#
|
6847
|
+
# @!attribute [rw] host_resource_group_arn
|
6848
|
+
# The Amazon Resource Name (ARN) of the host resource group in which
|
6849
|
+
# to launch build and test instances. This only applies if `tenancy`
|
6850
|
+
# is `host`. If you specify the resource group ARN, you must not
|
6851
|
+
# specify the host ID. If you specify both, Image Builder returns an
|
6852
|
+
# error.
|
6853
|
+
# @return [String]
|
6854
|
+
#
|
6855
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/Placement AWS API Documentation
|
6856
|
+
#
|
6857
|
+
class Placement < Struct.new(
|
6858
|
+
:availability_zone,
|
6859
|
+
:tenancy,
|
6860
|
+
:host_id,
|
6861
|
+
:host_resource_group_arn)
|
6862
|
+
SENSITIVE = []
|
6863
|
+
include Aws::Structure
|
6864
|
+
end
|
6865
|
+
|
6793
6866
|
# @!attribute [rw] component_arn
|
6794
6867
|
# The Amazon Resource Name (ARN) of the component that this policy
|
6795
6868
|
# should be applied to.
|
@@ -7783,19 +7856,6 @@ module Aws::Imagebuilder
|
|
7783
7856
|
# </note>
|
7784
7857
|
# @return [String]
|
7785
7858
|
#
|
7786
|
-
# @!attribute [rw] client_token
|
7787
|
-
# Unique, case-sensitive identifier you provide to ensure idempotency
|
7788
|
-
# of the request. For more information, see [Ensuring idempotency][1]
|
7789
|
-
# in the *Amazon EC2 API Reference*.
|
7790
|
-
#
|
7791
|
-
# **A suitable default value is auto-generated.** You should normally
|
7792
|
-
# not need to pass this option.
|
7793
|
-
#
|
7794
|
-
#
|
7795
|
-
#
|
7796
|
-
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
|
7797
|
-
# @return [String]
|
7798
|
-
#
|
7799
7859
|
# @!attribute [rw] resource_tags
|
7800
7860
|
# The tags attached to the resource created by Image Builder.
|
7801
7861
|
# @return [Hash<String,String>]
|
@@ -7818,6 +7878,24 @@ module Aws::Imagebuilder
|
|
7818
7878
|
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/configuring-instance-metadata-options.html
|
7819
7879
|
# @return [Types::InstanceMetadataOptions]
|
7820
7880
|
#
|
7881
|
+
# @!attribute [rw] placement
|
7882
|
+
# The instance placement settings that define where the instances that
|
7883
|
+
# are launched from your image will run.
|
7884
|
+
# @return [Types::Placement]
|
7885
|
+
#
|
7886
|
+
# @!attribute [rw] client_token
|
7887
|
+
# Unique, case-sensitive identifier you provide to ensure idempotency
|
7888
|
+
# of the request. For more information, see [Ensuring idempotency][1]
|
7889
|
+
# in the *Amazon EC2 API Reference*.
|
7890
|
+
#
|
7891
|
+
# **A suitable default value is auto-generated.** You should normally
|
7892
|
+
# not need to pass this option.
|
7893
|
+
#
|
7894
|
+
#
|
7895
|
+
#
|
7896
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
|
7897
|
+
# @return [String]
|
7898
|
+
#
|
7821
7899
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/UpdateInfrastructureConfigurationRequest AWS API Documentation
|
7822
7900
|
#
|
7823
7901
|
class UpdateInfrastructureConfigurationRequest < Struct.new(
|
@@ -7831,9 +7909,10 @@ module Aws::Imagebuilder
|
|
7831
7909
|
:key_pair,
|
7832
7910
|
:terminate_instance_on_failure,
|
7833
7911
|
:sns_topic_arn,
|
7834
|
-
:client_token,
|
7835
7912
|
:resource_tags,
|
7836
|
-
:instance_metadata_options
|
7913
|
+
:instance_metadata_options,
|
7914
|
+
:placement,
|
7915
|
+
:client_token)
|
7837
7916
|
SENSITIVE = []
|
7838
7917
|
include Aws::Structure
|
7839
7918
|
end
|
data/lib/aws-sdk-imagebuilder.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -111,7 +111,7 @@ module Aws
|
|
111
111
|
semantic_version: ::String,
|
112
112
|
?description: ::String,
|
113
113
|
?change_description: ::String,
|
114
|
-
platform: ("Windows" | "Linux"),
|
114
|
+
platform: ("Windows" | "Linux" | "macOS"),
|
115
115
|
?supported_os_versions: Array[::String],
|
116
116
|
?data: ::String,
|
117
117
|
?uri: ::String,
|
@@ -166,7 +166,7 @@ module Aws
|
|
166
166
|
},
|
167
167
|
?dockerfile_template_data: ::String,
|
168
168
|
?dockerfile_template_uri: ::String,
|
169
|
-
?platform_override: ("Windows" | "Linux"),
|
169
|
+
?platform_override: ("Windows" | "Linux" | "macOS"),
|
170
170
|
?image_os_version_override: ::String,
|
171
171
|
parent_image: ::String,
|
172
172
|
?tags: Hash[::String, ::String],
|
@@ -425,6 +425,12 @@ module Aws
|
|
425
425
|
http_put_response_hop_limit: ::Integer?
|
426
426
|
},
|
427
427
|
?tags: Hash[::String, ::String],
|
428
|
+
?placement: {
|
429
|
+
availability_zone: ::String?,
|
430
|
+
tenancy: ("default" | "dedicated" | "host")?,
|
431
|
+
host_id: ::String?,
|
432
|
+
host_resource_group_arn: ::String?
|
433
|
+
},
|
428
434
|
client_token: ::String
|
429
435
|
) -> _CreateInfrastructureConfigurationResponseSuccess
|
430
436
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateInfrastructureConfigurationResponseSuccess
|
@@ -817,7 +823,7 @@ module Aws
|
|
817
823
|
?change_description: ::String,
|
818
824
|
type: ("BUILD" | "TEST"),
|
819
825
|
format: ("SHELL"),
|
820
|
-
platform: ("Windows" | "Linux"),
|
826
|
+
platform: ("Windows" | "Linux" | "macOS"),
|
821
827
|
?data: ::String,
|
822
828
|
?uri: ::String,
|
823
829
|
?kms_key_id: ::String,
|
@@ -837,7 +843,7 @@ module Aws
|
|
837
843
|
name: ::String,
|
838
844
|
semantic_version: ::String,
|
839
845
|
?description: ::String,
|
840
|
-
platform: ("Windows" | "Linux"),
|
846
|
+
platform: ("Windows" | "Linux" | "macOS"),
|
841
847
|
?os_version: ::String,
|
842
848
|
vm_import_task_id: ::String,
|
843
849
|
?tags: Hash[::String, ::String],
|
@@ -1498,12 +1504,18 @@ module Aws
|
|
1498
1504
|
?key_pair: ::String,
|
1499
1505
|
?terminate_instance_on_failure: bool,
|
1500
1506
|
?sns_topic_arn: ::String,
|
1501
|
-
client_token: ::String,
|
1502
1507
|
?resource_tags: Hash[::String, ::String],
|
1503
1508
|
?instance_metadata_options: {
|
1504
1509
|
http_tokens: ::String?,
|
1505
1510
|
http_put_response_hop_limit: ::Integer?
|
1506
|
-
}
|
1511
|
+
},
|
1512
|
+
?placement: {
|
1513
|
+
availability_zone: ::String?,
|
1514
|
+
tenancy: ("default" | "dedicated" | "host")?,
|
1515
|
+
host_id: ::String?,
|
1516
|
+
host_resource_group_arn: ::String?
|
1517
|
+
},
|
1518
|
+
client_token: ::String
|
1507
1519
|
) -> _UpdateInfrastructureConfigurationResponseSuccess
|
1508
1520
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateInfrastructureConfigurationResponseSuccess
|
1509
1521
|
|
data/sig/types.rbs
CHANGED
@@ -81,7 +81,7 @@ module Aws::Imagebuilder
|
|
81
81
|
attr_accessor description: ::String
|
82
82
|
attr_accessor change_description: ::String
|
83
83
|
attr_accessor type: ("BUILD" | "TEST")
|
84
|
-
attr_accessor platform: ("Windows" | "Linux")
|
84
|
+
attr_accessor platform: ("Windows" | "Linux" | "macOS")
|
85
85
|
attr_accessor supported_os_versions: ::Array[::String]
|
86
86
|
attr_accessor state: Types::ComponentState
|
87
87
|
attr_accessor parameters: ::Array[Types::ComponentParameterDetail]
|
@@ -126,7 +126,7 @@ module Aws::Imagebuilder
|
|
126
126
|
attr_accessor arn: ::String
|
127
127
|
attr_accessor name: ::String
|
128
128
|
attr_accessor version: ::String
|
129
|
-
attr_accessor platform: ("Windows" | "Linux")
|
129
|
+
attr_accessor platform: ("Windows" | "Linux" | "macOS")
|
130
130
|
attr_accessor supported_os_versions: ::Array[::String]
|
131
131
|
attr_accessor state: Types::ComponentState
|
132
132
|
attr_accessor type: ("BUILD" | "TEST")
|
@@ -145,7 +145,7 @@ module Aws::Imagebuilder
|
|
145
145
|
attr_accessor name: ::String
|
146
146
|
attr_accessor version: ::String
|
147
147
|
attr_accessor description: ::String
|
148
|
-
attr_accessor platform: ("Windows" | "Linux")
|
148
|
+
attr_accessor platform: ("Windows" | "Linux" | "macOS")
|
149
149
|
attr_accessor supported_os_versions: ::Array[::String]
|
150
150
|
attr_accessor type: ("BUILD" | "TEST")
|
151
151
|
attr_accessor owner: ::String
|
@@ -171,7 +171,7 @@ module Aws::Imagebuilder
|
|
171
171
|
attr_accessor container_type: ("DOCKER")
|
172
172
|
attr_accessor name: ::String
|
173
173
|
attr_accessor description: ::String
|
174
|
-
attr_accessor platform: ("Windows" | "Linux")
|
174
|
+
attr_accessor platform: ("Windows" | "Linux" | "macOS")
|
175
175
|
attr_accessor owner: ::String
|
176
176
|
attr_accessor version: ::String
|
177
177
|
attr_accessor components: ::Array[Types::ComponentConfiguration]
|
@@ -191,7 +191,7 @@ module Aws::Imagebuilder
|
|
191
191
|
attr_accessor arn: ::String
|
192
192
|
attr_accessor container_type: ("DOCKER")
|
193
193
|
attr_accessor name: ::String
|
194
|
-
attr_accessor platform: ("Windows" | "Linux")
|
194
|
+
attr_accessor platform: ("Windows" | "Linux" | "macOS")
|
195
195
|
attr_accessor owner: ::String
|
196
196
|
attr_accessor parent_image: ::String
|
197
197
|
attr_accessor date_created: ::String
|
@@ -204,7 +204,7 @@ module Aws::Imagebuilder
|
|
204
204
|
attr_accessor semantic_version: ::String
|
205
205
|
attr_accessor description: ::String
|
206
206
|
attr_accessor change_description: ::String
|
207
|
-
attr_accessor platform: ("Windows" | "Linux")
|
207
|
+
attr_accessor platform: ("Windows" | "Linux" | "macOS")
|
208
208
|
attr_accessor supported_os_versions: ::Array[::String]
|
209
209
|
attr_accessor data: ::String
|
210
210
|
attr_accessor uri: ::String
|
@@ -230,7 +230,7 @@ module Aws::Imagebuilder
|
|
230
230
|
attr_accessor instance_configuration: Types::InstanceConfiguration
|
231
231
|
attr_accessor dockerfile_template_data: ::String
|
232
232
|
attr_accessor dockerfile_template_uri: ::String
|
233
|
-
attr_accessor platform_override: ("Windows" | "Linux")
|
233
|
+
attr_accessor platform_override: ("Windows" | "Linux" | "macOS")
|
234
234
|
attr_accessor image_os_version_override: ::String
|
235
235
|
attr_accessor parent_image: ::String
|
236
236
|
attr_accessor tags: ::Hash[::String, ::String]
|
@@ -347,6 +347,7 @@ module Aws::Imagebuilder
|
|
347
347
|
attr_accessor resource_tags: ::Hash[::String, ::String]
|
348
348
|
attr_accessor instance_metadata_options: Types::InstanceMetadataOptions
|
349
349
|
attr_accessor tags: ::Hash[::String, ::String]
|
350
|
+
attr_accessor placement: Types::Placement
|
350
351
|
attr_accessor client_token: ::String
|
351
352
|
SENSITIVE: []
|
352
353
|
end
|
@@ -812,7 +813,7 @@ module Aws::Imagebuilder
|
|
812
813
|
attr_accessor type: ("AMI" | "DOCKER")
|
813
814
|
attr_accessor name: ::String
|
814
815
|
attr_accessor version: ::String
|
815
|
-
attr_accessor platform: ("Windows" | "Linux")
|
816
|
+
attr_accessor platform: ("Windows" | "Linux" | "macOS")
|
816
817
|
attr_accessor enhanced_image_metadata_enabled: bool
|
817
818
|
attr_accessor os_version: ::String
|
818
819
|
attr_accessor state: Types::ImageState
|
@@ -853,7 +854,7 @@ module Aws::Imagebuilder
|
|
853
854
|
attr_accessor arn: ::String
|
854
855
|
attr_accessor name: ::String
|
855
856
|
attr_accessor description: ::String
|
856
|
-
attr_accessor platform: ("Windows" | "Linux")
|
857
|
+
attr_accessor platform: ("Windows" | "Linux" | "macOS")
|
857
858
|
attr_accessor enhanced_image_metadata_enabled: bool
|
858
859
|
attr_accessor image_recipe_arn: ::String
|
859
860
|
attr_accessor container_recipe_arn: ::String
|
@@ -884,7 +885,7 @@ module Aws::Imagebuilder
|
|
884
885
|
attr_accessor type: ("AMI" | "DOCKER")
|
885
886
|
attr_accessor name: ::String
|
886
887
|
attr_accessor description: ::String
|
887
|
-
attr_accessor platform: ("Windows" | "Linux")
|
888
|
+
attr_accessor platform: ("Windows" | "Linux" | "macOS")
|
888
889
|
attr_accessor owner: ::String
|
889
890
|
attr_accessor version: ::String
|
890
891
|
attr_accessor components: ::Array[Types::ComponentConfiguration]
|
@@ -900,7 +901,7 @@ module Aws::Imagebuilder
|
|
900
901
|
class ImageRecipeSummary
|
901
902
|
attr_accessor arn: ::String
|
902
903
|
attr_accessor name: ::String
|
903
|
-
attr_accessor platform: ("Windows" | "Linux")
|
904
|
+
attr_accessor platform: ("Windows" | "Linux" | "macOS")
|
904
905
|
attr_accessor owner: ::String
|
905
906
|
attr_accessor parent_image: ::String
|
906
907
|
attr_accessor date_created: ::String
|
@@ -963,7 +964,7 @@ module Aws::Imagebuilder
|
|
963
964
|
attr_accessor name: ::String
|
964
965
|
attr_accessor type: ("AMI" | "DOCKER")
|
965
966
|
attr_accessor version: ::String
|
966
|
-
attr_accessor platform: ("Windows" | "Linux")
|
967
|
+
attr_accessor platform: ("Windows" | "Linux" | "macOS")
|
967
968
|
attr_accessor os_version: ::String
|
968
969
|
attr_accessor state: Types::ImageState
|
969
970
|
attr_accessor owner: ::String
|
@@ -988,7 +989,7 @@ module Aws::Imagebuilder
|
|
988
989
|
attr_accessor name: ::String
|
989
990
|
attr_accessor type: ("AMI" | "DOCKER")
|
990
991
|
attr_accessor version: ::String
|
991
|
-
attr_accessor platform: ("Windows" | "Linux")
|
992
|
+
attr_accessor platform: ("Windows" | "Linux" | "macOS")
|
992
993
|
attr_accessor os_version: ::String
|
993
994
|
attr_accessor owner: ::String
|
994
995
|
attr_accessor date_created: ::String
|
@@ -1004,7 +1005,7 @@ module Aws::Imagebuilder
|
|
1004
1005
|
attr_accessor change_description: ::String
|
1005
1006
|
attr_accessor type: ("BUILD" | "TEST")
|
1006
1007
|
attr_accessor format: ("SHELL")
|
1007
|
-
attr_accessor platform: ("Windows" | "Linux")
|
1008
|
+
attr_accessor platform: ("Windows" | "Linux" | "macOS")
|
1008
1009
|
attr_accessor data: ::String
|
1009
1010
|
attr_accessor uri: ::String
|
1010
1011
|
attr_accessor kms_key_id: ::String
|
@@ -1024,7 +1025,7 @@ module Aws::Imagebuilder
|
|
1024
1025
|
attr_accessor name: ::String
|
1025
1026
|
attr_accessor semantic_version: ::String
|
1026
1027
|
attr_accessor description: ::String
|
1027
|
-
attr_accessor platform: ("Windows" | "Linux")
|
1028
|
+
attr_accessor platform: ("Windows" | "Linux" | "macOS")
|
1028
1029
|
attr_accessor os_version: ::String
|
1029
1030
|
attr_accessor vm_import_task_id: ::String
|
1030
1031
|
attr_accessor tags: ::Hash[::String, ::String]
|
@@ -1056,6 +1057,7 @@ module Aws::Imagebuilder
|
|
1056
1057
|
attr_accessor resource_tags: ::Hash[::String, ::String]
|
1057
1058
|
attr_accessor instance_metadata_options: Types::InstanceMetadataOptions
|
1058
1059
|
attr_accessor tags: ::Hash[::String, ::String]
|
1060
|
+
attr_accessor placement: Types::Placement
|
1059
1061
|
SENSITIVE: []
|
1060
1062
|
end
|
1061
1063
|
|
@@ -1069,6 +1071,7 @@ module Aws::Imagebuilder
|
|
1069
1071
|
attr_accessor tags: ::Hash[::String, ::String]
|
1070
1072
|
attr_accessor instance_types: ::Array[::String]
|
1071
1073
|
attr_accessor instance_profile_name: ::String
|
1074
|
+
attr_accessor placement: Types::Placement
|
1072
1075
|
SENSITIVE: []
|
1073
1076
|
end
|
1074
1077
|
|
@@ -1627,6 +1630,14 @@ module Aws::Imagebuilder
|
|
1627
1630
|
SENSITIVE: []
|
1628
1631
|
end
|
1629
1632
|
|
1633
|
+
class Placement
|
1634
|
+
attr_accessor availability_zone: ::String
|
1635
|
+
attr_accessor tenancy: ("default" | "dedicated" | "host")
|
1636
|
+
attr_accessor host_id: ::String
|
1637
|
+
attr_accessor host_resource_group_arn: ::String
|
1638
|
+
SENSITIVE: []
|
1639
|
+
end
|
1640
|
+
|
1630
1641
|
class PutComponentPolicyRequest
|
1631
1642
|
attr_accessor component_arn: ::String
|
1632
1643
|
attr_accessor policy: ::String
|
@@ -1893,9 +1904,10 @@ module Aws::Imagebuilder
|
|
1893
1904
|
attr_accessor key_pair: ::String
|
1894
1905
|
attr_accessor terminate_instance_on_failure: bool
|
1895
1906
|
attr_accessor sns_topic_arn: ::String
|
1896
|
-
attr_accessor client_token: ::String
|
1897
1907
|
attr_accessor resource_tags: ::Hash[::String, ::String]
|
1898
1908
|
attr_accessor instance_metadata_options: Types::InstanceMetadataOptions
|
1909
|
+
attr_accessor placement: Types::Placement
|
1910
|
+
attr_accessor client_token: ::String
|
1899
1911
|
SENSITIVE: []
|
1900
1912
|
end
|
1901
1913
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-imagebuilder
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.73.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-10-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.210.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.210.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|