Class: Twilio::REST::Supersim::V1::NetworkAccessProfileContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Supersim::V1::NetworkAccessProfileContext
- Defined in:
- lib/twilio-ruby/rest/supersim/v1/network_access_profile.rb,
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.
Defined Under Namespace
Classes: NetworkAccessProfileNetworkContext, NetworkAccessProfileNetworkInstance, NetworkAccessProfileNetworkList, NetworkAccessProfileNetworkPage
Instance Method Summary collapse
-
#fetch ⇒ NetworkAccessProfileInstance
Fetch the NetworkAccessProfileInstance.
-
#initialize(version, sid) ⇒ NetworkAccessProfileContext
constructor
Initialize the NetworkAccessProfileContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#networks(sid = :unset) ⇒ NetworkAccessProfileNetworkList, NetworkAccessProfileNetworkContext
Access the networks.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(unique_name: :unset) ⇒ NetworkAccessProfileInstance
Update the NetworkAccessProfileInstance.
Constructor Details
#initialize(version, sid) ⇒ NetworkAccessProfileContext
Initialize the NetworkAccessProfileContext
173 174 175 176 177 178 179 180 181 182 |
# File 'lib/twilio-ruby/rest/supersim/v1/network_access_profile.rb', line 173 def initialize(version, sid) super(version) # Path Solution @solution = {sid: sid, } @uri = "/NetworkAccessProfiles/#{@solution[:sid]}" # Dependents @networks = nil end |
Instance Method Details
#fetch ⇒ NetworkAccessProfileInstance
Fetch the NetworkAccessProfileInstance
187 188 189 190 191 |
# File 'lib/twilio-ruby/rest/supersim/v1/network_access_profile.rb', line 187 def fetch payload = @version.fetch('GET', @uri) NetworkAccessProfileInstance.new(@version, payload, sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
235 236 237 238 |
# File 'lib/twilio-ruby/rest/supersim/v1/network_access_profile.rb', line 235 def inspect context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Supersim.V1.NetworkAccessProfileContext #{context}>" end |
#networks(sid = :unset) ⇒ NetworkAccessProfileNetworkList, NetworkAccessProfileNetworkContext
Access the networks
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 |
# File 'lib/twilio-ruby/rest/supersim/v1/network_access_profile.rb', line 209 def networks(sid=:unset) raise ArgumentError, 'sid cannot be nil' if sid.nil? if sid != :unset return NetworkAccessProfileNetworkContext.new(@version, @solution[:sid], sid, ) end unless @networks @networks = NetworkAccessProfileNetworkList.new( @version, network_access_profile_sid: @solution[:sid], ) end @networks end |
#to_s ⇒ Object
Provide a user friendly representation
228 229 230 231 |
# File 'lib/twilio-ruby/rest/supersim/v1/network_access_profile.rb', line 228 def to_s context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Supersim.V1.NetworkAccessProfileContext #{context}>" end |
#update(unique_name: :unset) ⇒ NetworkAccessProfileInstance
Update the NetworkAccessProfileInstance
197 198 199 200 201 202 203 |
# File 'lib/twilio-ruby/rest/supersim/v1/network_access_profile.rb', line 197 def update(unique_name: :unset) data = Twilio::Values.of({'UniqueName' => unique_name, }) payload = @version.update('POST', @uri, data: data) NetworkAccessProfileInstance.new(@version, payload, sid: @solution[:sid], ) end |