Class: Twilio::REST::Microvisor::V1::AccountConfigInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Microvisor::V1::AccountConfigInstance
- 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
-
#context ⇒ AccountConfigContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#date_updated ⇒ Time
The date_updated.
-
#delete ⇒ Boolean
Delete the AccountConfigInstance.
-
#fetch ⇒ AccountConfigInstance
Fetch the AccountConfigInstance.
-
#initialize(version, payload, key: nil) ⇒ AccountConfigInstance
constructor
Initialize the AccountConfigInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#key ⇒ String
The config key.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(value: nil) ⇒ AccountConfigInstance
Update the AccountConfigInstance.
-
#url ⇒ String
The absolute URL of the Config.
-
#value ⇒ String
The config value.
Constructor Details
#initialize(version, payload, key: nil) ⇒ AccountConfigInstance
Initialize the AccountConfigInstance
227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 |
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 227 def initialize(version, payload, key: nil) super(version) # Marshaled Properties @properties = { 'key' => payload['key'], 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']), 'value' => payload['value'], 'url' => payload['url'], } # Context @instance_context = nil @params = {'key' => key || @properties['key'], } end |
Instance Method Details
#context ⇒ AccountConfigContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
247 248 249 250 251 252 |
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 247 def context unless @instance_context @instance_context = AccountConfigContext.new(@version, @params['key'], ) end @instance_context end |
#date_updated ⇒ Time
Returns The date_updated.
262 263 264 |
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 262 def date_updated @properties['date_updated'] end |
#delete ⇒ Boolean
Delete the AccountConfigInstance
296 297 298 |
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 296 def delete context.delete end |
#fetch ⇒ AccountConfigInstance
Fetch the AccountConfigInstance
281 282 283 |
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 281 def fetch context.fetch end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
309 310 311 312 |
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 309 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Microvisor.V1.AccountConfigInstance #{values}>" end |
#key ⇒ String
Returns The config key.
256 257 258 |
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 256 def key @properties['key'] end |
#to_s ⇒ Object
Provide a user friendly representation
302 303 304 305 |
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 302 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Microvisor.V1.AccountConfigInstance #{values}>" end |
#update(value: nil) ⇒ AccountConfigInstance
Update the AccountConfigInstance
289 290 291 |
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 289 def update(value: nil) context.update(value: value, ) end |
#url ⇒ String
Returns The absolute URL of the Config.
274 275 276 |
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 274 def url @properties['url'] end |
#value ⇒ String
Returns The config value.
268 269 270 |
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 268 def value @properties['value'] end |