Class: Twilio::REST::Supersim::V1::NetworkContext

Inherits:
InstanceContext show all
Defined in:
lib/twilio-ruby/rest/supersim/v1/network.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, sid) ⇒ NetworkContext

Initialize the NetworkContext

Parameters:

  • version (Version)

    Version that contains the resource

  • sid (String)

    The SID of the Network resource to fetch.



156
157
158
159
160
161
162
163
164
# File 'lib/twilio-ruby/rest/supersim/v1/network.rb', line 156

def initialize(version, sid)
    super(version)

    # Path Solution
    @solution = { sid: sid,  }
    @uri = "/Networks/#{@solution[:sid]}"

    
end

Instance Method Details

#fetchNetworkInstance

Fetch the NetworkInstance

Returns:



168
169
170
171
172
173
174
175
176
# File 'lib/twilio-ruby/rest/supersim/v1/network.rb', line 168

def fetch

    payload = @version.fetch('GET', @uri)
    NetworkInstance.new(
        @version,
        payload,
        sid: @solution[:sid],
    )
end

#inspectObject

Provide a detailed, user friendly representation



188
189
190
191
# File 'lib/twilio-ruby/rest/supersim/v1/network.rb', line 188

def inspect
    context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
    "#<Twilio.Supersim.V1.NetworkContext #{context}>"
end

#to_sObject

Provide a user friendly representation



181
182
183
184
# File 'lib/twilio-ruby/rest/supersim/v1/network.rb', line 181

def to_s
    context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
    "#<Twilio.Supersim.V1.NetworkContext #{context}>"
end