Class: Twilio::REST::Microvisor::V1::AccountSecretContext

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

Initialize the AccountSecretContext

Parameters:

  • version (Version)

    Version that contains the resource

  • key (String)

    The secret key; up to 100 characters.



167
168
169
170
171
172
173
# File 'lib/twilio-ruby/rest/microvisor/v1/account_secret.rb', line 167

def initialize(version, key)
  super(version)

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

Instance Method Details

#deleteBoolean

Delete the AccountSecretInstance

Returns:

  • (Boolean)

    true if delete succeeds, false otherwise



199
200
201
# File 'lib/twilio-ruby/rest/microvisor/v1/account_secret.rb', line 199

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

#fetchAccountSecretInstance

Fetch the AccountSecretInstance

Returns:



178
179
180
181
182
# File 'lib/twilio-ruby/rest/microvisor/v1/account_secret.rb', line 178

def fetch
  payload = @version.fetch('GET', @uri)

  AccountSecretInstance.new(@version, payload, key: @solution[:key], )
end

#inspectObject

Provide a detailed, user friendly representation



212
213
214
215
# File 'lib/twilio-ruby/rest/microvisor/v1/account_secret.rb', line 212

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

#to_sObject

Provide a user friendly representation



205
206
207
208
# File 'lib/twilio-ruby/rest/microvisor/v1/account_secret.rb', line 205

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

#update(value: nil) ⇒ AccountSecretInstance

Update the AccountSecretInstance

Parameters:

  • value (String) (defaults to: nil)

    The secret value; up to 4096 characters.

Returns:



188
189
190
191
192
193
194
# File 'lib/twilio-ruby/rest/microvisor/v1/account_secret.rb', line 188

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

  payload = @version.update('POST', @uri, data: data)

  AccountSecretInstance.new(@version, payload, key: @solution[:key], )
end