Class: Twilio::REST::Preview::Authy::ServiceInstance

Inherits:
InstanceResource show all
Defined in:
lib/twilio-ruby/rest/preview/authy/service.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

Constructor Details

#initialize(version, payload, sid: nil) ⇒ ServiceInstance

Initialize the ServiceInstance

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio

  • sid (String) (defaults to: nil)

    A 34 character string that uniquely identifies this Service.



252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
# File 'lib/twilio-ruby/rest/preview/authy/service.rb', line 252

def initialize(version, payload, sid: nil)
  super(version)

  # Marshaled Properties
  @properties = {
      'sid' => payload['sid'],
      'friendly_name' => payload['friendly_name'],
      'account_sid' => payload['account_sid'],
      'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']),
      'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']),
      'url' => payload['url'],
      'links' => payload['links'],
  }

  # Context
  @instance_context = nil
  @params = {'sid' => sid || @properties['sid'], }
end

Instance Method Details

#account_sidString

Returns Account Sid.

Returns:

  • (String)

    Account Sid.



296
297
298
# File 'lib/twilio-ruby/rest/preview/authy/service.rb', line 296

def 
  @properties['account_sid']
end

#contextServiceContext

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

Returns:



275
276
277
278
279
280
# File 'lib/twilio-ruby/rest/preview/authy/service.rb', line 275

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

#date_createdTime

Returns The date this Service was created.

Returns:

  • (Time)

    The date this Service was created



302
303
304
# File 'lib/twilio-ruby/rest/preview/authy/service.rb', line 302

def date_created
  @properties['date_created']
end

#date_updatedTime

Returns The date this Service was updated.

Returns:

  • (Time)

    The date this Service was updated



308
309
310
# File 'lib/twilio-ruby/rest/preview/authy/service.rb', line 308

def date_updated
  @properties['date_updated']
end

#entitiesentities

Access the entities

Returns:



343
344
345
# File 'lib/twilio-ruby/rest/preview/authy/service.rb', line 343

def entities
  context.entities
end

#fetchServiceInstance

Fetch a ServiceInstance

Returns:



327
328
329
# File 'lib/twilio-ruby/rest/preview/authy/service.rb', line 327

def fetch
  context.fetch
end

#friendly_nameString

Returns A human readable description of this resource.

Returns:

  • (String)

    A human readable description of this resource.



290
291
292
# File 'lib/twilio-ruby/rest/preview/authy/service.rb', line 290

def friendly_name
  @properties['friendly_name']
end

#inspectObject

Provide a detailed, user friendly representation



356
357
358
359
# File 'lib/twilio-ruby/rest/preview/authy/service.rb', line 356

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

Returns Nested resource URLs.

Returns:

  • (String)

    Nested resource URLs.



320
321
322
# File 'lib/twilio-ruby/rest/preview/authy/service.rb', line 320

def links
  @properties['links']
end

#sidString

Returns A string that uniquely identifies this Service.

Returns:

  • (String)

    A string that uniquely identifies this Service.



284
285
286
# File 'lib/twilio-ruby/rest/preview/authy/service.rb', line 284

def sid
  @properties['sid']
end

#to_sObject

Provide a user friendly representation



349
350
351
352
# File 'lib/twilio-ruby/rest/preview/authy/service.rb', line 349

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

#update(friendly_name: :unset) ⇒ ServiceInstance

Update the ServiceInstance

Parameters:

  • friendly_name (String) (defaults to: :unset)

    A human readable description of this resource, up to 64 characters.

Returns:



336
337
338
# File 'lib/twilio-ruby/rest/preview/authy/service.rb', line 336

def update(friendly_name: :unset)
  context.update(friendly_name: friendly_name, )
end

#urlString

Returns The URL of this resource.

Returns:

  • (String)

    The URL of this resource.



314
315
316
# File 'lib/twilio-ruby/rest/preview/authy/service.rb', line 314

def url
  @properties['url']
end