Class: Twilio::REST::Supersim::V1::FleetContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Supersim::V1::FleetContext
- Defined in:
- lib/twilio-ruby/rest/supersim/v1/fleet.rb
Overview
PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact [email protected].
Instance Method Summary collapse
-
#fetch ⇒ FleetInstance
Fetch the FleetInstance.
-
#initialize(version, sid) ⇒ FleetContext
constructor
Initialize the FleetContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(unique_name: :unset, network_access_profile: :unset) ⇒ FleetInstance
Update the FleetInstance.
Constructor Details
#initialize(version, sid) ⇒ FleetContext
Initialize the FleetContext
209 210 211 212 213 214 215 |
# File 'lib/twilio-ruby/rest/supersim/v1/fleet.rb', line 209 def initialize(version, sid) super(version) # Path Solution @solution = {sid: sid, } @uri = "/Fleets/#{@solution[:sid]}" end |
Instance Method Details
#fetch ⇒ FleetInstance
Fetch the FleetInstance
220 221 222 223 224 |
# File 'lib/twilio-ruby/rest/supersim/v1/fleet.rb', line 220 def fetch payload = @version.fetch('GET', @uri) FleetInstance.new(@version, payload, sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
255 256 257 258 |
# File 'lib/twilio-ruby/rest/supersim/v1/fleet.rb', line 255 def inspect context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Supersim.V1.FleetContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
248 249 250 251 |
# File 'lib/twilio-ruby/rest/supersim/v1/fleet.rb', line 248 def to_s context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Supersim.V1.FleetContext #{context}>" end |
#update(unique_name: :unset, network_access_profile: :unset) ⇒ FleetInstance
Update the FleetInstance
235 236 237 238 239 240 241 242 243 244 |
# File 'lib/twilio-ruby/rest/supersim/v1/fleet.rb', line 235 def update(unique_name: :unset, network_access_profile: :unset) data = Twilio::Values.of({ 'UniqueName' => unique_name, 'NetworkAccessProfile' => network_access_profile, }) payload = @version.update('POST', @uri, data: data) FleetInstance.new(@version, payload, sid: @solution[:sid], ) end |