Class: Twilio::REST::Microvisor::V1::AccountConfigContext

Inherits:
InstanceContext
  • Object
show all
Defined in:
lib/twilio-ruby/rest/microvisor/v1/account_config.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

Constructor Details

#initialize(version, key) ⇒ AccountConfigContext

Initialize the AccountConfigContext

Parameters:

  • version (Version)

    Version that contains the resource

  • key (String)

    The config key; up to 100 characters.



156
157
158
159
160
161
162
163
164
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 156

def initialize(version, key)
    super(version)

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

    
end

Instance Method Details

#deleteBoolean

Delete the AccountConfigInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



168
169
170
171
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 168

def delete

    @version.delete('DELETE', @uri)
end

#fetchAccountConfigInstance

Fetch the AccountConfigInstance

Returns:



176
177
178
179
180
181
182
183
184
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 176

def fetch

    payload = @version.fetch('GET', @uri)
    AccountConfigInstance.new(
        @version,
        payload,
        key: @solution[:key],
    )
end

#inspectObject

Provide a detailed, user friendly representation



216
217
218
219
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 216

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

#to_sObject

Provide a user friendly representation



209
210
211
212
# File 'lib/twilio-ruby/rest/microvisor/v1/account_config.rb', line 209

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

#update(value: nil) ⇒ AccountConfigInstance

Update the AccountConfigInstance

Parameters:

  • value (String) (defaults to: nil)

    The config value; up to 4096 characters.

Returns:



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

def update(
    value: nil
)

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

    payload = @version.update('POST', @uri, data: data)
    AccountConfigInstance.new(
        @version,
        payload,
        key: @solution[:key],
    )
end