Class: Humidifier::ApiGatewayV2::Api
- Defined in:
- lib/humidifier/magic.rb
Overview
A dynamically-defined class that represents an AWS::ApiGatewayV2::Api resource
Constant Summary
Constants inherited from Resource
Instance Method Summary collapse
-
#api_key_selection_expression ⇒ Object
returns the ApiKeySelectionExpression property.
-
#api_key_selection_expression=(value) ⇒ Object
sets the ApiKeySelectionExpression property (String).
-
#base_path ⇒ Object
returns the BasePath property.
-
#base_path=(value) ⇒ Object
sets the BasePath property (String).
-
#body ⇒ Object
returns the Body property.
-
#body=(value) ⇒ Object
sets the Body property (Json).
-
#body_s3_location ⇒ Object
returns the BodyS3Location property.
-
#body_s3_location=(value) ⇒ Object
sets the BodyS3Location property (Structure).
-
#cors_configuration ⇒ Object
returns the CorsConfiguration property.
-
#cors_configuration=(value) ⇒ Object
sets the CorsConfiguration property (Structure).
-
#credentials_arn ⇒ Object
returns the CredentialsArn property.
-
#credentials_arn=(value) ⇒ Object
sets the CredentialsArn property (String).
-
#description ⇒ Object
returns the Description property.
-
#description=(value) ⇒ Object
sets the Description property (String).
-
#disable_execute_api_endpoint ⇒ Object
returns the DisableExecuteApiEndpoint property.
-
#disable_execute_api_endpoint=(value) ⇒ Object
sets the DisableExecuteApiEndpoint property (Boolean).
-
#disable_schema_validation ⇒ Object
returns the DisableSchemaValidation property.
-
#disable_schema_validation=(value) ⇒ Object
sets the DisableSchemaValidation property (Boolean).
-
#fail_on_warnings ⇒ Object
returns the FailOnWarnings property.
-
#fail_on_warnings=(value) ⇒ Object
sets the FailOnWarnings property (Boolean).
-
#name ⇒ Object
returns the Name property.
-
#name=(value) ⇒ Object
sets the Name property (String).
-
#protocol_type ⇒ Object
returns the ProtocolType property.
-
#protocol_type=(value) ⇒ Object
sets the ProtocolType property (String).
-
#route_key ⇒ Object
returns the RouteKey property.
-
#route_key=(value) ⇒ Object
sets the RouteKey property (String).
-
#route_selection_expression ⇒ Object
returns the RouteSelectionExpression property.
-
#route_selection_expression=(value) ⇒ Object
sets the RouteSelectionExpression property (String).
-
#tags ⇒ Object
returns the Tags property.
-
#tags=(value) ⇒ Object
sets the Tags property (Json).
-
#target ⇒ Object
returns the Target property.
-
#target=(value) ⇒ Object
sets the Target property (String).
-
#version ⇒ Object
returns the Version property.
-
#version=(value) ⇒ Object
sets the Version 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
#api_key_selection_expression ⇒ Object
returns the ApiKeySelectionExpression property
10 11 12 |
# File 'lib/humidifier/magic.rb', line 10 def api_key_selection_expression properties['api_key_selection_expression'] end |
#api_key_selection_expression=(value) ⇒ Object
sets the ApiKeySelectionExpression property (String)
15 16 17 |
# File 'lib/humidifier/magic.rb', line 15 def api_key_selection_expression=(value) update_property('api_key_selection_expression', value) end |
#base_path ⇒ Object
returns the BasePath property
20 21 22 |
# File 'lib/humidifier/magic.rb', line 20 def base_path properties['base_path'] end |
#base_path=(value) ⇒ Object
sets the BasePath property (String)
25 26 27 |
# File 'lib/humidifier/magic.rb', line 25 def base_path=(value) update_property('base_path', value) end |
#body ⇒ Object
returns the Body property
30 31 32 |
# File 'lib/humidifier/magic.rb', line 30 def body properties['body'] end |
#body=(value) ⇒ Object
sets the Body property (Json)
35 36 37 |
# File 'lib/humidifier/magic.rb', line 35 def body=(value) update_property('body', value) end |
#body_s3_location ⇒ Object
returns the BodyS3Location property
40 41 42 |
# File 'lib/humidifier/magic.rb', line 40 def body_s3_location properties['body_s3_location'] end |
#body_s3_location=(value) ⇒ Object
sets the BodyS3Location property (Structure)
45 46 47 |
# File 'lib/humidifier/magic.rb', line 45 def body_s3_location=(value) update_property('body_s3_location', value) end |
#cors_configuration ⇒ Object
returns the CorsConfiguration property
50 51 52 |
# File 'lib/humidifier/magic.rb', line 50 def cors_configuration properties['cors_configuration'] end |
#cors_configuration=(value) ⇒ Object
sets the CorsConfiguration property (Structure)
55 56 57 |
# File 'lib/humidifier/magic.rb', line 55 def cors_configuration=(value) update_property('cors_configuration', value) end |
#credentials_arn ⇒ Object
returns the CredentialsArn property
60 61 62 |
# File 'lib/humidifier/magic.rb', line 60 def credentials_arn properties['credentials_arn'] end |
#credentials_arn=(value) ⇒ Object
sets the CredentialsArn property (String)
65 66 67 |
# File 'lib/humidifier/magic.rb', line 65 def credentials_arn=(value) update_property('credentials_arn', value) end |
#description ⇒ Object
returns the Description property
70 71 72 |
# File 'lib/humidifier/magic.rb', line 70 def description properties['description'] end |
#description=(value) ⇒ Object
sets the Description property (String)
75 76 77 |
# File 'lib/humidifier/magic.rb', line 75 def description=(value) update_property('description', value) end |
#disable_execute_api_endpoint ⇒ Object
returns the DisableExecuteApiEndpoint property
80 81 82 |
# File 'lib/humidifier/magic.rb', line 80 def disable_execute_api_endpoint properties['disable_execute_api_endpoint'] end |
#disable_execute_api_endpoint=(value) ⇒ Object
sets the DisableExecuteApiEndpoint property (Boolean)
85 86 87 |
# File 'lib/humidifier/magic.rb', line 85 def disable_execute_api_endpoint=(value) update_property('disable_execute_api_endpoint', value) end |
#disable_schema_validation ⇒ Object
returns the DisableSchemaValidation property
90 91 92 |
# File 'lib/humidifier/magic.rb', line 90 def disable_schema_validation properties['disable_schema_validation'] end |
#disable_schema_validation=(value) ⇒ Object
sets the DisableSchemaValidation property (Boolean)
95 96 97 |
# File 'lib/humidifier/magic.rb', line 95 def disable_schema_validation=(value) update_property('disable_schema_validation', value) end |
#fail_on_warnings ⇒ Object
returns the FailOnWarnings property
100 101 102 |
# File 'lib/humidifier/magic.rb', line 100 def fail_on_warnings properties['fail_on_warnings'] end |
#fail_on_warnings=(value) ⇒ Object
sets the FailOnWarnings property (Boolean)
105 106 107 |
# File 'lib/humidifier/magic.rb', line 105 def fail_on_warnings=(value) update_property('fail_on_warnings', value) end |
#name ⇒ Object
returns the Name property
110 111 112 |
# File 'lib/humidifier/magic.rb', line 110 def name properties['name'] end |
#name=(value) ⇒ Object
sets the Name property (String)
115 116 117 |
# File 'lib/humidifier/magic.rb', line 115 def name=(value) update_property('name', value) end |
#protocol_type ⇒ Object
returns the ProtocolType property
120 121 122 |
# File 'lib/humidifier/magic.rb', line 120 def protocol_type properties['protocol_type'] end |
#protocol_type=(value) ⇒ Object
sets the ProtocolType property (String)
125 126 127 |
# File 'lib/humidifier/magic.rb', line 125 def protocol_type=(value) update_property('protocol_type', value) end |
#route_key ⇒ Object
returns the RouteKey property
130 131 132 |
# File 'lib/humidifier/magic.rb', line 130 def route_key properties['route_key'] end |
#route_key=(value) ⇒ Object
sets the RouteKey property (String)
135 136 137 |
# File 'lib/humidifier/magic.rb', line 135 def route_key=(value) update_property('route_key', value) end |
#route_selection_expression ⇒ Object
returns the RouteSelectionExpression property
140 141 142 |
# File 'lib/humidifier/magic.rb', line 140 def route_selection_expression properties['route_selection_expression'] end |
#route_selection_expression=(value) ⇒ Object
sets the RouteSelectionExpression property (String)
145 146 147 |
# File 'lib/humidifier/magic.rb', line 145 def route_selection_expression=(value) update_property('route_selection_expression', value) end |
#tags ⇒ Object
returns the Tags property
150 151 152 |
# File 'lib/humidifier/magic.rb', line 150 def properties['tags'] end |
#tags=(value) ⇒ Object
sets the Tags property (Json)
155 156 157 |
# File 'lib/humidifier/magic.rb', line 155 def (value) update_property('tags', value) end |
#target ⇒ Object
returns the Target property
160 161 162 |
# File 'lib/humidifier/magic.rb', line 160 def target properties['target'] end |
#target=(value) ⇒ Object
sets the Target property (String)
165 166 167 |
# File 'lib/humidifier/magic.rb', line 165 def target=(value) update_property('target', value) end |
#version ⇒ Object
returns the Version property
170 171 172 |
# File 'lib/humidifier/magic.rb', line 170 def version properties['version'] end |
#version=(value) ⇒ Object
sets the Version property (String)
175 176 177 |
# File 'lib/humidifier/magic.rb', line 175 def version=(value) update_property('version', value) end |