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
164 165 166 167 168 169 170 171 172 |
# File 'lib/twilio-ruby/rest/verify/v2/service/rate_limit/bucket.rb', line 164 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
176 177 178 179 180 181 |
# File 'lib/twilio-ruby/rest/verify/v2/service/rate_limit/bucket.rb', line 176 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
186 187 188 189 190 191 192 193 194 195 196 197 198 |
# File 'lib/twilio-ruby/rest/verify/v2/service/rate_limit/bucket.rb', line 186 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
237 238 239 240 |
# File 'lib/twilio-ruby/rest/verify/v2/service/rate_limit/bucket.rb', line 237 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Verify.V2.BucketContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
230 231 232 233 |
# File 'lib/twilio-ruby/rest/verify/v2/service/rate_limit/bucket.rb', line 230 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
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 |
# File 'lib/twilio-ruby/rest/verify/v2/service/rate_limit/bucket.rb', line 205 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 |