Class: Twilio::REST::Supersim::V1::FleetInstance

Inherits:
InstanceResource show all
Defined in:
lib/twilio-ruby/rest/supersim/v1/fleet.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) ⇒ FleetInstance

Initialize the FleetInstance

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 Fleet resource to fetch.


297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
# File 'lib/twilio-ruby/rest/supersim/v1/fleet.rb', line 297

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

  # Marshaled Properties
  @properties = {
      'account_sid' => payload['account_sid'],
      'sid' => payload['sid'],
      'unique_name' => payload['unique_name'],
      'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']),
      'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']),
      'url' => payload['url'],
      'data_enabled' => payload['data_enabled'],
      'data_limit' => payload['data_limit'].to_i,
      'data_metering' => payload['data_metering'],
      'sms_commands_enabled' => payload['sms_commands_enabled'],
      'sms_commands_url' => payload['sms_commands_url'],
      'sms_commands_method' => payload['sms_commands_method'],
      'network_access_profile_sid' => payload['network_access_profile_sid'],
      'ip_commands_url' => payload['ip_commands_url'],
      'ip_commands_method' => payload['ip_commands_method'],
  }

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

Instance Method Details

#account_sidString

Returns The SID of the Account that created the resource.

Returns:

  • (String)

    The SID of the Account that created the resource


337
338
339
# File 'lib/twilio-ruby/rest/supersim/v1/fleet.rb', line 337

def 
  @properties['account_sid']
end

#contextFleetContext

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

Returns:


328
329
330
331
332
333
# File 'lib/twilio-ruby/rest/supersim/v1/fleet.rb', line 328

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

#data_enabledBoolean

Returns Defines whether SIMs in the Fleet are capable of using data connectivity.

Returns:

  • (Boolean)

    Defines whether SIMs in the Fleet are capable of using data connectivity


373
374
375
# File 'lib/twilio-ruby/rest/supersim/v1/fleet.rb', line 373

def data_enabled
  @properties['data_enabled']
end

#data_limitString

Returns The total data usage (download and upload combined) in Megabytes that each Sim resource assigned to the Fleet resource can consume.

Returns:

  • (String)

    The total data usage (download and upload combined) in Megabytes that each Sim resource assigned to the Fleet resource can consume


379
380
381
# File 'lib/twilio-ruby/rest/supersim/v1/fleet.rb', line 379

def data_limit
  @properties['data_limit']
end

#data_meteringfleet.DataMetering

Returns The model by which a SIM is metered and billed.

Returns:

  • (fleet.DataMetering)

    The model by which a SIM is metered and billed


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

def data_metering
  @properties['data_metering']
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


355
356
357
# File 'lib/twilio-ruby/rest/supersim/v1/fleet.rb', line 355

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


361
362
363
# File 'lib/twilio-ruby/rest/supersim/v1/fleet.rb', line 361

def date_updated
  @properties['date_updated']
end

#fetchFleetInstance

Fetch the FleetInstance

Returns:


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

def fetch
  context.fetch
end

#inspectObject

Provide a detailed, user friendly representation


475
476
477
478
# File 'lib/twilio-ruby/rest/supersim/v1/fleet.rb', line 475

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

#ip_commands_methodString

Returns A string representing the HTTP method to use when making a request to `ip_commands_url`.

Returns:

  • (String)

    A string representing the HTTP method to use when making a request to `ip_commands_url`


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

def ip_commands_method
  @properties['ip_commands_method']
end

#ip_commands_urlString

Returns The URL that will receive a webhook when a Super SIM in the Fleet is used to send an IP Command from your device.

Returns:

  • (String)

    The URL that will receive a webhook when a Super SIM in the Fleet is used to send an IP Command from your device


415
416
417
# File 'lib/twilio-ruby/rest/supersim/v1/fleet.rb', line 415

def ip_commands_url
  @properties['ip_commands_url']
end

#network_access_profile_sidString

Returns The SID of the Network Access Profile of the Fleet.

Returns:

  • (String)

    The SID of the Network Access Profile of the Fleet


409
410
411
# File 'lib/twilio-ruby/rest/supersim/v1/fleet.rb', line 409

def network_access_profile_sid
  @properties['network_access_profile_sid']
end

#sidString

Returns The unique string that identifies the resource.

Returns:

  • (String)

    The unique string that identifies the resource


343
344
345
# File 'lib/twilio-ruby/rest/supersim/v1/fleet.rb', line 343

def sid
  @properties['sid']
end

#sms_commands_enabledBoolean

Returns Defines whether SIMs in the Fleet are capable of sending and receiving machine-to-machine SMS via Commands.

Returns:

  • (Boolean)

    Defines whether SIMs in the Fleet are capable of sending and receiving machine-to-machine SMS via Commands


391
392
393
# File 'lib/twilio-ruby/rest/supersim/v1/fleet.rb', line 391

def sms_commands_enabled
  @properties['sms_commands_enabled']
end

#sms_commands_methodString

Returns A string representing the HTTP method to use when making a request to `sms_commands_url`.

Returns:

  • (String)

    A string representing the HTTP method to use when making a request to `sms_commands_url`


403
404
405
# File 'lib/twilio-ruby/rest/supersim/v1/fleet.rb', line 403

def sms_commands_method
  @properties['sms_commands_method']
end

#sms_commands_urlString

Returns The URL that will receive a webhook when a Super SIM in the Fleet is used to send an SMS from your device to the SMS Commands number.

Returns:

  • (String)

    The URL that will receive a webhook when a Super SIM in the Fleet is used to send an SMS from your device to the SMS Commands number


397
398
399
# File 'lib/twilio-ruby/rest/supersim/v1/fleet.rb', line 397

def sms_commands_url
  @properties['sms_commands_url']
end

#to_sObject

Provide a user friendly representation


468
469
470
471
# File 'lib/twilio-ruby/rest/supersim/v1/fleet.rb', line 468

def to_s
  values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
  "<Twilio.Supersim.V1.FleetInstance #{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


349
350
351
# File 'lib/twilio-ruby/rest/supersim/v1/fleet.rb', line 349

def unique_name
  @properties['unique_name']
end

#update(unique_name: :unset, network_access_profile: :unset, ip_commands_url: :unset, ip_commands_method: :unset, sms_commands_url: :unset, sms_commands_method: :unset) ⇒ FleetInstance

Update the FleetInstance

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.

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

    The SID or unique name of the Network Access Profile that will control which cellular networks the Fleet's SIMs can connect to.

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

    The URL that will receive a webhook when a Super SIM in the Fleet is used to send an IP Command from your device to a special IP address. Your server should respond with an HTTP status code in the 200 range; any response body will be ignored.

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

    A string representing the HTTP method to use when making a request to `ip_commands_url`. Can be one of `POST` or `GET`. Defaults to `POST`.

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

    The URL that will receive a webhook when a Super SIM in the Fleet is used to send an SMS from your device to the SMS Commands number. Your server should respond with an HTTP status code in the 200 range; any response body will be ignored.

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

    A string representing the HTTP method to use when making a request to `sms_commands_url`. Can be one of `POST` or `GET`. Defaults to `POST`.

Returns:


455
456
457
458
459
460
461
462
463
464
# File 'lib/twilio-ruby/rest/supersim/v1/fleet.rb', line 455

def update(unique_name: :unset, network_access_profile: :unset, ip_commands_url: :unset, ip_commands_method: :unset, sms_commands_url: :unset, sms_commands_method: :unset)
  context.update(
      unique_name: unique_name,
      network_access_profile: network_access_profile,
      ip_commands_url: ip_commands_url,
      ip_commands_method: ip_commands_method,
      sms_commands_url: sms_commands_url,
      sms_commands_method: sms_commands_method,
  )
end

#urlString

Returns The absolute URL of the Fleet resource.

Returns:

  • (String)

    The absolute URL of the Fleet resource


367
368
369
# File 'lib/twilio-ruby/rest/supersim/v1/fleet.rb', line 367

def url
  @properties['url']
end