Class: Twilio::REST::Sync::V1::ServiceContext::SyncMapContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Sync::V1::ServiceContext::SyncMapContext
- Defined in:
- lib/twilio-ruby/rest/sync/v1/service/sync_map.rb,
lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_item.rb,
lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_permission.rb
Defined Under Namespace
Classes: SyncMapItemContext, SyncMapItemInstance, SyncMapItemInstanceMetadata, SyncMapItemList, SyncMapItemListResponse, SyncMapItemPage, SyncMapItemPageMetadata, SyncMapPermissionContext, SyncMapPermissionInstance, SyncMapPermissionInstanceMetadata, SyncMapPermissionList, SyncMapPermissionListResponse, SyncMapPermissionPage, SyncMapPermissionPageMetadata
Instance Method Summary collapse
-
#delete ⇒ Boolean
Delete the SyncMapInstance.
-
#delete_with_metadata ⇒ Boolean
Delete the SyncMapInstanceMetadata.
-
#fetch ⇒ SyncMapInstance
Fetch the SyncMapInstance.
-
#fetch_with_metadata ⇒ SyncMapInstance
Fetch the SyncMapInstanceMetadata.
-
#initialize(version, service_sid, sid) ⇒ SyncMapContext
constructor
Initialize the SyncMapContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#sync_map_items(key = :unset) ⇒ SyncMapItemList, SyncMapItemContext
Access the sync_map_items.
-
#sync_map_permissions(identity = :unset) ⇒ SyncMapPermissionList, SyncMapPermissionContext
Access the sync_map_permissions.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(ttl: :unset, collection_ttl: :unset) ⇒ SyncMapInstance
Update the SyncMapInstance.
-
#update_with_metadata(ttl: :unset, collection_ttl: :unset) ⇒ SyncMapInstance
Update the SyncMapInstanceMetadata.
Constructor Details
#initialize(version, service_sid, sid) ⇒ SyncMapContext
Initialize the SyncMapContext
240 241 242 243 244 245 246 247 248 249 250 251 |
# File 'lib/twilio-ruby/rest/sync/v1/service/sync_map.rb', line 240 def initialize(version, service_sid, sid) super(version) # Path Solution @solution = { service_sid: service_sid, sid: sid, } @uri = "/Services/#{@solution[:service_sid]}/Maps/#{@solution[:sid]}" # Dependents @sync_map_items = nil @sync_map_permissions = nil end |
Instance Method Details
#delete ⇒ Boolean
Delete the SyncMapInstance
255 256 257 258 259 260 261 262 263 |
# File 'lib/twilio-ruby/rest/sync/v1/service/sync_map.rb', line 255 def delete headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) @version.delete('DELETE', @uri, headers: headers) end |
#delete_with_metadata ⇒ Boolean
Delete the SyncMapInstanceMetadata
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 |
# File 'lib/twilio-ruby/rest/sync/v1/service/sync_map.rb', line 268 def headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) response = @version.('DELETE', @uri, headers: headers) syncMap_instance = SyncMapInstance.new( @version, response.body, account_sid: @solution[:account_sid], sid: @solution[:sid], ) SyncMapInstanceMetadata.new(@version, syncMap_instance, response.headers, response.status_code) end |
#fetch ⇒ SyncMapInstance
Fetch the SyncMapInstance
287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 |
# File 'lib/twilio-ruby/rest/sync/v1/service/sync_map.rb', line 287 def fetch headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.fetch('GET', @uri, headers: headers) SyncMapInstance.new( @version, payload, service_sid: @solution[:service_sid], sid: @solution[:sid], ) end |
#fetch_with_metadata ⇒ SyncMapInstance
Fetch the SyncMapInstanceMetadata
307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 |
# File 'lib/twilio-ruby/rest/sync/v1/service/sync_map.rb', line 307 def headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) response = @version.('GET', @uri, headers: headers) sync_map_instance = SyncMapInstance.new( @version, response.body, service_sid: @solution[:service_sid], sid: @solution[:sid], ) SyncMapInstanceMetadata.new( @version, sync_map_instance, response.headers, response.status_code ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
444 445 446 447 |
# File 'lib/twilio-ruby/rest/sync/v1/service/sync_map.rb', line 444 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Sync.V1.SyncMapContext #{context}>" end |
#sync_map_items(key = :unset) ⇒ SyncMapItemList, SyncMapItemContext
Access the sync_map_items
400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 |
# File 'lib/twilio-ruby/rest/sync/v1/service/sync_map.rb', line 400 def sync_map_items(key=:unset) raise ArgumentError, 'key cannot be nil' if key.nil? if key != :unset return SyncMapItemContext.new(@version, @solution[:service_sid], @solution[:sid],key ) end unless @sync_map_items @sync_map_items = SyncMapItemList.new( @version, service_sid: @solution[:service_sid], map_sid: @solution[:sid], ) end @sync_map_items end |
#sync_map_permissions(identity = :unset) ⇒ SyncMapPermissionList, SyncMapPermissionContext
Access the sync_map_permissions
419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 |
# File 'lib/twilio-ruby/rest/sync/v1/service/sync_map.rb', line 419 def (identity=:unset) raise ArgumentError, 'identity cannot be nil' if identity.nil? if identity != :unset return SyncMapPermissionContext.new(@version, @solution[:service_sid], @solution[:sid],identity ) end unless @sync_map_permissions @sync_map_permissions = SyncMapPermissionList.new( @version, service_sid: @solution[:service_sid], map_sid: @solution[:sid], ) end @sync_map_permissions end |
#to_s ⇒ Object
Provide a user friendly representation
437 438 439 440 |
# File 'lib/twilio-ruby/rest/sync/v1/service/sync_map.rb', line 437 def to_s context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Sync.V1.SyncMapContext #{context}>" end |
#update(ttl: :unset, collection_ttl: :unset) ⇒ SyncMapInstance
Update the SyncMapInstance
335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 |
# File 'lib/twilio-ruby/rest/sync/v1/service/sync_map.rb', line 335 def update( ttl: :unset, collection_ttl: :unset ) data = Twilio::Values.of({ 'Ttl' => ttl, 'CollectionTtl' => collection_ttl, }) headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.update('POST', @uri, data: data, headers: headers) SyncMapInstance.new( @version, payload, service_sid: @solution[:service_sid], sid: @solution[:sid], ) end |
#update_with_metadata(ttl: :unset, collection_ttl: :unset) ⇒ SyncMapInstance
Update the SyncMapInstanceMetadata
365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 |
# File 'lib/twilio-ruby/rest/sync/v1/service/sync_map.rb', line 365 def ( ttl: :unset, collection_ttl: :unset ) data = Twilio::Values.of({ 'Ttl' => ttl, 'CollectionTtl' => collection_ttl, }) headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) response = @version.('POST', @uri, data: data, headers: headers) sync_map_instance = SyncMapInstance.new( @version, response.body, service_sid: @solution[:service_sid], sid: @solution[:sid], ) SyncMapInstanceMetadata.new( @version, sync_map_instance, response.headers, response.status_code ) end |