Class: Twilio::REST::Microvisor::V1::DeviceContext::DeviceConfigContext

Inherits:
InstanceContext
  • Object
show all
Defined in:
lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, device_sid, key) ⇒ DeviceConfigContext

Initialize the DeviceConfigContext

Parameters:

  • version (Version)

    Version that contains the resource

  • device_sid (String)

    A 34-character string that uniquely identifies the Device.

  • key (String)

    The config key; up to 100 characters.



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

def initialize(version, device_sid, key)
    super(version)

    # Path Solution
    @solution = { device_sid: device_sid, key: key,  }
    @uri = "/Devices/#{@solution[:device_sid]}/Configs/#{@solution[:key]}"

    
end

Instance Method Details

#deleteBoolean

Delete the DeviceConfigInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



180
181
182
183
184
185
186
187
# File 'lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb', line 180

def delete

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

#fetchDeviceConfigInstance

Fetch the DeviceConfigInstance

Returns:



192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
# File 'lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb', line 192

def fetch

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

#inspectObject

Provide a detailed, user friendly representation



246
247
248
249
# File 'lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb', line 246

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

#to_sObject

Provide a user friendly representation



239
240
241
242
# File 'lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb', line 239

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

#update(value: nil) ⇒ DeviceConfigInstance

Update the DeviceConfigInstance

Parameters:

  • value (String) (defaults to: nil)

    The config value; up to 4096 characters.

Returns:



213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
# File 'lib/twilio-ruby/rest/microvisor/v1/device/device_config.rb', line 213

def update(
    value: nil
)

    data = Twilio::Values.of({
        'Value' => value,
    })

    headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
    
    
    
    
    
    payload = @version.update('POST', @uri, data: data, headers: headers)
    DeviceConfigInstance.new(
        @version,
        payload,
        device_sid: @solution[:device_sid],
        key: @solution[:key],
    )
end