Class: Twilio::REST::Supersim::V1::NetworkAccessProfileInstance

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

Initialize the NetworkAccessProfileInstance

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 Network Access Profile resource to fetch.


250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
# File 'lib/twilio-ruby/rest/supersim/v1/network_access_profile.rb', line 250

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

  # Marshaled Properties
  @properties = {
      'sid' => payload['sid'],
      'unique_name' => payload['unique_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 The SID of the Account that the Network Access Profile belongs to.

Returns:

  • (String)

    The SID of the Account that the Network Access Profile belongs to


294
295
296
# File 'lib/twilio-ruby/rest/supersim/v1/network_access_profile.rb', line 294

def 
  @properties['account_sid']
end

#contextNetworkAccessProfileContext

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

Returns:


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

def context
  unless @instance_context
    @instance_context = NetworkAccessProfileContext.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


300
301
302
# File 'lib/twilio-ruby/rest/supersim/v1/network_access_profile.rb', line 300

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


306
307
308
# File 'lib/twilio-ruby/rest/supersim/v1/network_access_profile.rb', line 306

def date_updated
  @properties['date_updated']
end

#fetchNetworkAccessProfileInstance

Fetch the NetworkAccessProfileInstance

Returns:


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

def fetch
  context.fetch
end

#inspectObject

Provide a detailed, user friendly representation


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

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

Returns The links.

Returns:

  • (String)

    The links


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

def links
  @properties['links']
end

#networksnetworks

Access the networks

Returns:


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

def networks
  context.networks
end

#sidString

Returns The unique string that identifies the resource.

Returns:

  • (String)

    The unique string that identifies the resource


282
283
284
# File 'lib/twilio-ruby/rest/supersim/v1/network_access_profile.rb', line 282

def sid
  @properties['sid']
end

#to_sObject

Provide a user friendly representation


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

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


288
289
290
# File 'lib/twilio-ruby/rest/supersim/v1/network_access_profile.rb', line 288

def unique_name
  @properties['unique_name']
end

#update(unique_name: :unset) ⇒ NetworkAccessProfileInstance

Update the NetworkAccessProfileInstance

Parameters:

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

    The new unique name of the Network Access Profile.

Returns:


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

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

#urlString

Returns The absolute URL of the resource.

Returns:

  • (String)

    The absolute URL of the resource


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

def url
  @properties['url']
end