Class: Twilio::REST::Verify::V2::ServiceContext::RateLimitContext::BucketContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Verify::V2::ServiceContext::RateLimitContext::BucketContext
- Defined in:
- lib/twilio-ruby/rest/verify/v2/service/rate_limit/bucket.rb
Instance Method Summary collapse
-
#delete ⇒ Boolean
Delete the BucketInstance.
-
#fetch ⇒ BucketInstance
Fetch the BucketInstance.
-
#initialize(version, service_sid, rate_limit_sid, sid) ⇒ BucketContext
constructor
Initialize the BucketContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(max: :unset, interval: :unset) ⇒ BucketInstance
Update the BucketInstance.
Constructor Details
#initialize(version, service_sid, rate_limit_sid, sid) ⇒ BucketContext
Initialize the BucketContext
171 172 173 174 175 176 177 178 179 |
# File 'lib/twilio-ruby/rest/verify/v2/service/rate_limit/bucket.rb', line 171 def initialize(version, service_sid, rate_limit_sid, sid) super(version) # Path Solution @solution = { service_sid: service_sid, rate_limit_sid: rate_limit_sid, sid: sid, } @uri = "/Services/#{@solution[:service_sid]}/RateLimits/#{@solution[:rate_limit_sid]}/Buckets/#{@solution[:sid]}" end |
Instance Method Details
#delete ⇒ Boolean
Delete the BucketInstance
183 184 185 186 187 188 189 190 |
# File 'lib/twilio-ruby/rest/verify/v2/service/rate_limit/bucket.rb', line 183 def delete headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) @version.delete('DELETE', @uri, headers: headers) end |
#fetch ⇒ BucketInstance
Fetch the BucketInstance
195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
# File 'lib/twilio-ruby/rest/verify/v2/service/rate_limit/bucket.rb', line 195 def fetch headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.fetch('GET', @uri, headers: headers) BucketInstance.new( @version, payload, service_sid: @solution[:service_sid], rate_limit_sid: @solution[:rate_limit_sid], sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
254 255 256 257 |
# File 'lib/twilio-ruby/rest/verify/v2/service/rate_limit/bucket.rb', line 254 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Verify.V2.BucketContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
247 248 249 250 |
# File 'lib/twilio-ruby/rest/verify/v2/service/rate_limit/bucket.rb', line 247 def to_s context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Verify.V2.BucketContext #{context}>" end |
#update(max: :unset, interval: :unset) ⇒ BucketInstance
Update the BucketInstance
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 |
# File 'lib/twilio-ruby/rest/verify/v2/service/rate_limit/bucket.rb', line 218 def update( max: :unset, interval: :unset ) data = Twilio::Values.of({ 'Max' => max, 'Interval' => interval, }) headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.update('POST', @uri, data: data, headers: headers) BucketInstance.new( @version, payload, service_sid: @solution[:service_sid], rate_limit_sid: @solution[:rate_limit_sid], sid: @solution[:sid], ) end |