Class: Twilio::REST::Supersim::V1::NetworkAccessProfileContext::NetworkAccessProfileNetworkContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Supersim::V1::NetworkAccessProfileContext::NetworkAccessProfileNetworkContext
- Defined in:
- lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb
Overview
PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
Instance Method Summary collapse
-
#delete ⇒ Boolean
Delete the NetworkAccessProfileNetworkInstance.
-
#fetch ⇒ NetworkAccessProfileNetworkInstance
Fetch the NetworkAccessProfileNetworkInstance.
-
#initialize(version, network_access_profile_sid, sid) ⇒ NetworkAccessProfileNetworkContext
constructor
Initialize the NetworkAccessProfileNetworkContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version, network_access_profile_sid, sid) ⇒ NetworkAccessProfileNetworkContext
Initialize the NetworkAccessProfileNetworkContext
159 160 161 162 163 164 165 166 167 |
# File 'lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb', line 159 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
#delete ⇒ Boolean
Delete the NetworkAccessProfileNetworkInstance
171 172 173 174 175 |
# File 'lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb', line 171 def delete @version.delete('DELETE', @uri) end |
#fetch ⇒ NetworkAccessProfileNetworkInstance
Fetch the NetworkAccessProfileNetworkInstance
180 181 182 183 184 185 186 187 188 189 190 |
# File 'lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb', line 180 def fetch payload = @version.fetch('GET', @uri) NetworkAccessProfileNetworkInstance.new( @version, payload, network_access_profile_sid: @solution[:network_access_profile_sid], sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
202 203 204 205 |
# File 'lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb', line 202 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Supersim.V1.NetworkAccessProfileNetworkContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
195 196 197 198 |
# File 'lib/twilio-ruby/rest/supersim/v1/network_access_profile/network_access_profile_network.rb', line 195 def to_s context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Supersim.V1.NetworkAccessProfileNetworkContext #{context}>" end |