Class: Twilio::REST::Api::V2010::AccountContext::KeyContext

Inherits:
InstanceContext
  • Object
show all
Defined in:
lib/twilio-ruby/rest/api/v2010/account/key.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, account_sid, sid) ⇒ KeyContext

Initialize the KeyContext



136
137
138
139
140
141
142
143
144
# File 'lib/twilio-ruby/rest/api/v2010/account/key.rb', line 136

def initialize(version, , sid)
    super(version)

    # Path Solution
    @solution = { account_sid: , sid: sid,  }
    @uri = "/Accounts/#{@solution[:account_sid]}/Keys/#{@solution[:sid]}.json"

    
end

Instance Method Details

#deleteBoolean

Delete the KeyInstance



148
149
150
151
152
153
# File 'lib/twilio-ruby/rest/api/v2010/account/key.rb', line 148

def delete

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

#fetchKeyInstance

Fetch the KeyInstance



158
159
160
161
162
163
164
165
166
167
168
169
# File 'lib/twilio-ruby/rest/api/v2010/account/key.rb', line 158

def fetch

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

#inspectObject

Provide a detailed, user friendly representation



204
205
206
207
# File 'lib/twilio-ruby/rest/api/v2010/account/key.rb', line 204

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

#to_sObject

Provide a user friendly representation



197
198
199
200
# File 'lib/twilio-ruby/rest/api/v2010/account/key.rb', line 197

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

#update(friendly_name: :unset) ⇒ KeyInstance

Update the KeyInstance



175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
# File 'lib/twilio-ruby/rest/api/v2010/account/key.rb', line 175

def update(
    friendly_name: :unset
)

    data = Twilio::Values.of({
        'FriendlyName' => friendly_name,
    })

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