Class: Twilio::REST::Supersim::V1::NetworkAccessProfileContext::NetworkAccessProfileNetworkContext

Inherits:
InstanceContext
  • 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, network_access_profile_sid, sid) ⇒ NetworkAccessProfileNetworkContext

Initialize the NetworkAccessProfileNetworkContext

Parameters:

  • version (Version)

    Version that contains the resource

  • network_access_profile_sid (String)

    The unique string that identifies the Network Access Profile resource.

  • sid (String)

    The SID of the Network resource to fetch.



165
166
167
168
169
170
171
172
173
# File 'lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb', line 165

def initialize(version, network_access_profile_sid, sid)
    super(version)

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

    
end

Instance Method Details

#deleteBoolean

Delete the NetworkAccessProfileNetworkInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



177
178
179
180
181
182
183
184
# File 'lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb', line 177

def delete

    headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
    
    
    
    @version.delete('DELETE', @uri, headers: headers)
end

#fetchNetworkAccessProfileNetworkInstance

Fetch the NetworkAccessProfileNetworkInstance

Returns:



189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
# File 'lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb', line 189

def fetch

    headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
    
    
    
    
    
    payload = @version.fetch('GET', @uri, headers: headers)
    NetworkAccessProfileNetworkInstance.new(
        @version,
        payload,
        network_access_profile_sid: @solution[:network_access_profile_sid],
        sid: @solution[:sid],
    )
end

#inspectObject

Provide a detailed, user friendly representation



216
217
218
219
# File 'lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb', line 216

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

#to_sObject

Provide a user friendly representation



209
210
211
212
# File 'lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb', line 209

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