Class: Twilio::REST::Supersim::V1::SimInstance

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

Overview

PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.

Instance Method Summary collapse

Constructor Details

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

Initialize the SimInstance

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio

  • sid (String) (defaults to: nil)

    The SID of the Sim resource to fetch.


288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
# File 'lib/twilio-ruby/rest/supersim/v1/sim.rb', line 288

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

  # Marshaled Properties
  @properties = {
      'sid' => payload['sid'],
      'unique_name' => payload['unique_name'],
      'account_sid' => payload['account_sid'],
      'iccid' => payload['iccid'],
      'status' => payload['status'],
      'fleet_sid' => payload['fleet_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 The SID of the Account that the Super SIM belongs to.

Returns:

  • (String)

    The SID of the Account that the Super SIM belongs to


335
336
337
# File 'lib/twilio-ruby/rest/supersim/v1/sim.rb', line 335

def 
  @properties['account_sid']
end

#billing_periodsbilling_periods

Access the billing_periods

Returns:


422
423
424
# File 'lib/twilio-ruby/rest/supersim/v1/sim.rb', line 422

def billing_periods
  context.billing_periods
end

#contextSimContext

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

Returns:

  • (SimContext)

    SimContext for this SimInstance


314
315
316
317
318
319
# File 'lib/twilio-ruby/rest/supersim/v1/sim.rb', line 314

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

#date_createdTime

Returns The ISO 8601 date and time in GMT when the resource was created.

Returns:

  • (Time)

    The ISO 8601 date and time in GMT when the resource was created


359
360
361
# File 'lib/twilio-ruby/rest/supersim/v1/sim.rb', line 359

def date_created
  @properties['date_created']
end

#date_updatedTime

Returns The ISO 8601 date and time in GMT when the resource was last updated.

Returns:

  • (Time)

    The ISO 8601 date and time in GMT when the resource was last updated


365
366
367
# File 'lib/twilio-ruby/rest/supersim/v1/sim.rb', line 365

def date_updated
  @properties['date_updated']
end

#fetchSimInstance

Fetch the SimInstance

Returns:


384
385
386
# File 'lib/twilio-ruby/rest/supersim/v1/sim.rb', line 384

def fetch
  context.fetch
end

#fleet_sidString

Returns The unique ID of the Fleet configured for this SIM.

Returns:

  • (String)

    The unique ID of the Fleet configured for this SIM


353
354
355
# File 'lib/twilio-ruby/rest/supersim/v1/sim.rb', line 353

def fleet_sid
  @properties['fleet_sid']
end

#iccidString

Returns The ICCID associated with the SIM.

Returns:

  • (String)

    The ICCID associated with the SIM


341
342
343
# File 'lib/twilio-ruby/rest/supersim/v1/sim.rb', line 341

def iccid
  @properties['iccid']
end

#inspectObject

Provide a detailed, user friendly representation


435
436
437
438
# File 'lib/twilio-ruby/rest/supersim/v1/sim.rb', line 435

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

Returns The links.

Returns:

  • (String)

    The links


377
378
379
# File 'lib/twilio-ruby/rest/supersim/v1/sim.rb', line 377

def links
  @properties['links']
end

#sidString

Returns The unique string that identifies the resource.

Returns:

  • (String)

    The unique string that identifies the resource


323
324
325
# File 'lib/twilio-ruby/rest/supersim/v1/sim.rb', line 323

def sid
  @properties['sid']
end

#statussim.Status

Returns The status of the Super SIM.

Returns:

  • (sim.Status)

    The status of the Super SIM


347
348
349
# File 'lib/twilio-ruby/rest/supersim/v1/sim.rb', line 347

def status
  @properties['status']
end

#to_sObject

Provide a user friendly representation


428
429
430
431
# File 'lib/twilio-ruby/rest/supersim/v1/sim.rb', line 428

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

#unique_nameString

Returns An application-defined string that uniquely identifies the resource.

Returns:

  • (String)

    An application-defined string that uniquely identifies the resource


329
330
331
# File 'lib/twilio-ruby/rest/supersim/v1/sim.rb', line 329

def unique_name
  @properties['unique_name']
end

#update(unique_name: :unset, status: :unset, fleet: :unset, callback_url: :unset, callback_method: :unset, account_sid: :unset) ⇒ SimInstance

Update the SimInstance

Parameters:

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

    An application-defined string that uniquely identifies the resource. It can be used in place of the resource's `sid` in the URL to address the resource.

  • status (sim.StatusUpdate) (defaults to: :unset)

    The new status of the resource. Can be: `ready`, `active`, or `inactive`. See the Super SIM Status Values for more info.

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

    The SID or unique name of the Fleet to which the SIM resource should be assigned.

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

    The URL we should call using the `callback_method` after an asynchronous update has finished.

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

    The HTTP method we should use to call `callback_url`. Can be: `GET` or `POST` and the default is POST.

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

    The SID of the Account to which the Sim resource should belong. The Account SID can only be that of the requesting Account or that of a Subaccount of the requesting Account. Only valid when the Sim resource's status is new.

Returns:


408
409
410
411
412
413
414
415
416
417
# File 'lib/twilio-ruby/rest/supersim/v1/sim.rb', line 408

def update(unique_name: :unset, status: :unset, fleet: :unset, callback_url: :unset, callback_method: :unset, account_sid: :unset)
  context.update(
      unique_name: unique_name,
      status: status,
      fleet: fleet,
      callback_url: callback_url,
      callback_method: callback_method,
      account_sid: ,
  )
end

#urlString

Returns The absolute URL of the Sim Resource.

Returns:

  • (String)

    The absolute URL of the Sim Resource


371
372
373
# File 'lib/twilio-ruby/rest/supersim/v1/sim.rb', line 371

def url
  @properties['url']
end