Class: Twilio::REST::Microvisor::V1::AccountConfigContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Microvisor::V1::AccountConfigContext
- Defined in:
- lib/twilio-ruby/rest/microvisor/v1/account_config.rb
Overview
PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact [email protected].
Instance Method Summary collapse
-
#delete ⇒ Boolean
Delete the AccountConfigInstance.
-
#fetch ⇒ AccountConfigInstance
Fetch the AccountConfigInstance.
-
#initialize(version, key) ⇒ AccountConfigContext
constructor
Initialize the AccountConfigContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(value: nil) ⇒ AccountConfigInstance
Update the AccountConfigInstance.
Constructor Details
#initialize(version, key) ⇒ AccountConfigContext
Initialize the AccountConfigContext
158 159 160 161 162 163 164 165 166 |
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 158 def initialize(version, key) super(version) # Path Solution @solution = { key: key, } @uri = "/Configs/#{@solution[:key]}" end |
Instance Method Details
#delete ⇒ Boolean
Delete the AccountConfigInstance
170 171 172 173 174 |
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 170 def delete @version.delete('DELETE', @uri) end |
#fetch ⇒ AccountConfigInstance
Fetch the AccountConfigInstance
179 180 181 182 183 184 185 186 187 188 |
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 179 def fetch payload = @version.fetch('GET', @uri) AccountConfigInstance.new( @version, payload, key: @solution[:key], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
221 222 223 224 |
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 221 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Microvisor.V1.AccountConfigContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
214 215 216 217 |
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 214 def to_s context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Microvisor.V1.AccountConfigContext #{context}>" end |
#update(value: nil) ⇒ AccountConfigInstance
Update the AccountConfigInstance
194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 194 def update( value: nil ) data = Twilio::Values.of({ 'Value' => value, }) payload = @version.update('POST', @uri, data: data) AccountConfigInstance.new( @version, payload, key: @solution[:key], ) end |