Class: Humidifier::ImageBuilder::ContainerRecipe
- Defined in:
- lib/humidifier/magic.rb
Overview
A dynamically-defined class that represents an AWS::ImageBuilder::ContainerRecipe resource
Constant Summary
Constants inherited from Resource
Instance Method Summary collapse
-
#components ⇒ Object
returns the Components property.
-
#components=(value) ⇒ Object
sets the Components property (List).
-
#container_type ⇒ Object
returns the ContainerType property.
-
#container_type=(value) ⇒ Object
sets the ContainerType property (String).
-
#description ⇒ Object
returns the Description property.
-
#description=(value) ⇒ Object
sets the Description property (String).
-
#dockerfile_template_data ⇒ Object
returns the DockerfileTemplateData property.
-
#dockerfile_template_data=(value) ⇒ Object
sets the DockerfileTemplateData property (String).
-
#dockerfile_template_uri ⇒ Object
returns the DockerfileTemplateUri property.
-
#dockerfile_template_uri=(value) ⇒ Object
sets the DockerfileTemplateUri property (String).
-
#image_os_version_override ⇒ Object
returns the ImageOsVersionOverride property.
-
#image_os_version_override=(value) ⇒ Object
sets the ImageOsVersionOverride property (String).
-
#instance_configuration ⇒ Object
returns the InstanceConfiguration property.
-
#instance_configuration=(value) ⇒ Object
sets the InstanceConfiguration property (Structure).
-
#kms_key_id ⇒ Object
returns the KmsKeyId property.
-
#kms_key_id=(value) ⇒ Object
sets the KmsKeyId property (String).
-
#name ⇒ Object
returns the Name property.
-
#name=(value) ⇒ Object
sets the Name property (String).
-
#parent_image ⇒ Object
returns the ParentImage property.
-
#parent_image=(value) ⇒ Object
sets the ParentImage property (String).
-
#platform_override ⇒ Object
returns the PlatformOverride property.
-
#platform_override=(value) ⇒ Object
sets the PlatformOverride property (String).
-
#tags ⇒ Object
returns the Tags property.
-
#tags=(value) ⇒ Object
sets the Tags property (Map).
-
#target_repository ⇒ Object
returns the TargetRepository property.
-
#target_repository=(value) ⇒ Object
sets the TargetRepository property (Structure).
-
#version ⇒ Object
returns the Version property.
-
#version=(value) ⇒ Object
sets the Version property (String).
-
#working_directory ⇒ Object
returns the WorkingDirectory property.
-
#working_directory=(value) ⇒ Object
sets the WorkingDirectory property (String).
Methods inherited from Resource
#initialize, #method_missing, prop?, #respond_to_missing?, #to_cf, #update, #update_attributes, #update_property
Constructor Details
This class inherits a constructor from Humidifier::Resource
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Humidifier::Resource
Instance Method Details
#components ⇒ Object
returns the Components property
10 11 12 |
# File 'lib/humidifier/magic.rb', line 10 def components properties['components'] end |
#components=(value) ⇒ Object
sets the Components property (List)
15 16 17 |
# File 'lib/humidifier/magic.rb', line 15 def components=(value) update_property('components', value) end |
#container_type ⇒ Object
returns the ContainerType property
20 21 22 |
# File 'lib/humidifier/magic.rb', line 20 def container_type properties['container_type'] end |
#container_type=(value) ⇒ Object
sets the ContainerType property (String)
25 26 27 |
# File 'lib/humidifier/magic.rb', line 25 def container_type=(value) update_property('container_type', value) end |
#description ⇒ Object
returns the Description property
30 31 32 |
# File 'lib/humidifier/magic.rb', line 30 def description properties['description'] end |
#description=(value) ⇒ Object
sets the Description property (String)
35 36 37 |
# File 'lib/humidifier/magic.rb', line 35 def description=(value) update_property('description', value) end |
#dockerfile_template_data ⇒ Object
returns the DockerfileTemplateData property
40 41 42 |
# File 'lib/humidifier/magic.rb', line 40 def dockerfile_template_data properties['dockerfile_template_data'] end |
#dockerfile_template_data=(value) ⇒ Object
sets the DockerfileTemplateData property (String)
45 46 47 |
# File 'lib/humidifier/magic.rb', line 45 def dockerfile_template_data=(value) update_property('dockerfile_template_data', value) end |
#dockerfile_template_uri ⇒ Object
returns the DockerfileTemplateUri property
50 51 52 |
# File 'lib/humidifier/magic.rb', line 50 def dockerfile_template_uri properties['dockerfile_template_uri'] end |
#dockerfile_template_uri=(value) ⇒ Object
sets the DockerfileTemplateUri property (String)
55 56 57 |
# File 'lib/humidifier/magic.rb', line 55 def dockerfile_template_uri=(value) update_property('dockerfile_template_uri', value) end |
#image_os_version_override ⇒ Object
returns the ImageOsVersionOverride property
60 61 62 |
# File 'lib/humidifier/magic.rb', line 60 def image_os_version_override properties['image_os_version_override'] end |
#image_os_version_override=(value) ⇒ Object
sets the ImageOsVersionOverride property (String)
65 66 67 |
# File 'lib/humidifier/magic.rb', line 65 def image_os_version_override=(value) update_property('image_os_version_override', value) end |
#instance_configuration ⇒ Object
returns the InstanceConfiguration property
70 71 72 |
# File 'lib/humidifier/magic.rb', line 70 def instance_configuration properties['instance_configuration'] end |
#instance_configuration=(value) ⇒ Object
sets the InstanceConfiguration property (Structure)
75 76 77 |
# File 'lib/humidifier/magic.rb', line 75 def instance_configuration=(value) update_property('instance_configuration', value) end |
#kms_key_id ⇒ Object
returns the KmsKeyId property
80 81 82 |
# File 'lib/humidifier/magic.rb', line 80 def kms_key_id properties['kms_key_id'] end |
#kms_key_id=(value) ⇒ Object
sets the KmsKeyId property (String)
85 86 87 |
# File 'lib/humidifier/magic.rb', line 85 def kms_key_id=(value) update_property('kms_key_id', value) end |
#name ⇒ Object
returns the Name property
90 91 92 |
# File 'lib/humidifier/magic.rb', line 90 def name properties['name'] end |
#name=(value) ⇒ Object
sets the Name property (String)
95 96 97 |
# File 'lib/humidifier/magic.rb', line 95 def name=(value) update_property('name', value) end |
#parent_image ⇒ Object
returns the ParentImage property
100 101 102 |
# File 'lib/humidifier/magic.rb', line 100 def parent_image properties['parent_image'] end |
#parent_image=(value) ⇒ Object
sets the ParentImage property (String)
105 106 107 |
# File 'lib/humidifier/magic.rb', line 105 def parent_image=(value) update_property('parent_image', value) end |
#platform_override ⇒ Object
returns the PlatformOverride property
110 111 112 |
# File 'lib/humidifier/magic.rb', line 110 def platform_override properties['platform_override'] end |
#platform_override=(value) ⇒ Object
sets the PlatformOverride property (String)
115 116 117 |
# File 'lib/humidifier/magic.rb', line 115 def platform_override=(value) update_property('platform_override', value) end |
#tags ⇒ Object
returns the Tags property
120 121 122 |
# File 'lib/humidifier/magic.rb', line 120 def properties['tags'] end |
#tags=(value) ⇒ Object
sets the Tags property (Map)
125 126 127 |
# File 'lib/humidifier/magic.rb', line 125 def (value) update_property('tags', value) end |
#target_repository ⇒ Object
returns the TargetRepository property
130 131 132 |
# File 'lib/humidifier/magic.rb', line 130 def target_repository properties['target_repository'] end |
#target_repository=(value) ⇒ Object
sets the TargetRepository property (Structure)
135 136 137 |
# File 'lib/humidifier/magic.rb', line 135 def target_repository=(value) update_property('target_repository', value) end |
#version ⇒ Object
returns the Version property
140 141 142 |
# File 'lib/humidifier/magic.rb', line 140 def version properties['version'] end |
#version=(value) ⇒ Object
sets the Version property (String)
145 146 147 |
# File 'lib/humidifier/magic.rb', line 145 def version=(value) update_property('version', value) end |
#working_directory ⇒ Object
returns the WorkingDirectory property
150 151 152 |
# File 'lib/humidifier/magic.rb', line 150 def working_directory properties['working_directory'] end |
#working_directory=(value) ⇒ Object
sets the WorkingDirectory property (String)
155 156 157 |
# File 'lib/humidifier/magic.rb', line 155 def working_directory=(value) update_property('working_directory', value) end |