Class: Twilio::REST::Supersim::V1::NetworkAccessProfileContext::NetworkAccessProfileNetworkInstance

Inherits:
InstanceResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, network_access_profile_sid: nil, sid: nil) ⇒ NetworkAccessProfileNetworkInstance

Initialize the NetworkAccessProfileNetworkInstance

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 NetworkAccessProfileNetwork resource.

  • sid (String) (defaults to: nil)

    The SID of the Call resource to fetch.



242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
# File 'lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb', line 242

def initialize(version, payload , network_access_profile_sid: nil, sid: nil)
    super(version)
    
    # Marshaled Properties
    @properties = { 
        'sid' => payload['sid'],
        'network_access_profile_sid' => payload['network_access_profile_sid'],
        'friendly_name' => payload['friendly_name'],
        'iso_country' => payload['iso_country'],
        'identifiers' => payload['identifiers'],
        'url' => payload['url'],
    }

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

Instance Method Details

#contextNetworkAccessProfileNetworkContext

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

Returns:



264
265
266
267
268
269
# File 'lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb', line 264

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

#deleteBoolean

Delete the NetworkAccessProfileNetworkInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



310
311
312
313
# File 'lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb', line 310

def delete

    context.delete
end

#fetchNetworkAccessProfileNetworkInstance

Fetch the NetworkAccessProfileNetworkInstance

Returns:



318
319
320
321
# File 'lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb', line 318

def fetch

    context.fetch
end

#friendly_nameString

Returns A human readable identifier of the Network this resource refers to.

Returns:

  • (String)

    A human readable identifier of the Network this resource refers to.



285
286
287
# File 'lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb', line 285

def friendly_name
    @properties['friendly_name']
end

#identifiersArray<Hash>

Returns Array of objects identifying the [MCC-MNCs](en.wikipedia.org/wiki/Mobile_country_code) that are included in the Network resource.

Returns:



297
298
299
# File 'lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb', line 297

def identifiers
    @properties['identifiers']
end

#inspectObject

Provide a detailed, user friendly representation



332
333
334
335
# File 'lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb', line 332

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

#iso_countryString

Returns The [ISO country code](en.wikipedia.org/wiki/ISO_3166-1_alpha-2) of the Network resource.

Returns:



291
292
293
# File 'lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb', line 291

def iso_country
    @properties['iso_country']
end

#network_access_profile_sidString

Returns The unique string that identifies the Network resource’s Network Access Profile resource.

Returns:

  • (String)

    The unique string that identifies the Network resource’s Network Access Profile resource.



279
280
281
# File 'lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb', line 279

def network_access_profile_sid
    @properties['network_access_profile_sid']
end

#sidString

Returns The unique string that identifies the Network resource.

Returns:

  • (String)

    The unique string that identifies the Network resource.



273
274
275
# File 'lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb', line 273

def sid
    @properties['sid']
end

#to_sObject

Provide a user friendly representation



325
326
327
328
# File 'lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb', line 325

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

#urlString

Returns The absolute URL of the Network resource.

Returns:

  • (String)

    The absolute URL of the Network resource.



303
304
305
# File 'lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb', line 303

def url
    @properties['url']
end