Class: Twilio::REST::Microvisor::V1::AccountConfigInstance

Inherits:
InstanceResource show all
Defined in:
lib/twilio-ruby/rest/microvisor/v1/account_config.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, key: nil) ⇒ AccountConfigInstance

Initialize the AccountConfigInstance

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio

  • account_sid (String)

    The SID of the Account that created this AccountConfig resource.

  • sid (String)

    The SID of the Call resource to fetch.



260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 260

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

#contextAccountConfigContext

Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context

Returns:



280
281
282
283
284
285
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 280

def context
    unless @instance_context
        @instance_context = AccountConfigContext.new(@version , @params['key'])
    end
    @instance_context
end

#date_updatedTime

Returns:

  • (Time)


295
296
297
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 295

def date_updated
    @properties['date_updated']
end

#deleteBoolean

Delete the AccountConfigInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



314
315
316
317
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 314

def delete

    context.delete
end

#fetchAccountConfigInstance

Fetch the AccountConfigInstance

Returns:



322
323
324
325
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 322

def fetch

    context.fetch
end

#inspectObject

Provide a detailed, user friendly representation



349
350
351
352
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 349

def inspect
    values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ")
    "<Twilio.Microvisor.V1.AccountConfigInstance #{values}>"
end

#keyString

Returns The config key; up to 100 characters.

Returns:

  • (String)

    The config key; up to 100 characters.



289
290
291
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 289

def key
    @properties['key']
end

#to_sObject

Provide a user friendly representation



342
343
344
345
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 342

def to_s
    values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
    "<Twilio.Microvisor.V1.AccountConfigInstance #{values}>"
end

#update(value: nil) ⇒ AccountConfigInstance

Update the AccountConfigInstance

Parameters:

  • value (String) (defaults to: nil)

    The config value; up to 4096 characters.

Returns:



331
332
333
334
335
336
337
338
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 331

def update(
    value: nil
)

    context.update(
        value: value, 
    )
end

#urlString

Returns The absolute URL of the Config.

Returns:

  • (String)

    The absolute URL of the Config.



307
308
309
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 307

def url
    @properties['url']
end

#valueString

Returns The config value; up to 4096 characters.

Returns:

  • (String)

    The config value; up to 4096 characters.



301
302
303
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 301

def value
    @properties['value']
end