Class: Twilio::REST::Sync::V1::ServiceContext::DocumentContext::DocumentPermissionInstance

Inherits:
InstanceResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, service_sid: nil, document_sid: nil, identity: nil) ⇒ DocumentPermissionInstance

Initialize the DocumentPermissionInstance

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio

  • account_sid (String)

    The SID of the Account that created this DocumentPermission resource.

  • sid (String)

    The SID of the Call resource to fetch.



251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
# File 'lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb', line 251

def initialize(version, payload , service_sid: nil, document_sid: nil, identity: nil)
    super(version)
    
    # Marshaled Properties
    @properties = { 
        'account_sid' => payload['account_sid'],
        'service_sid' => payload['service_sid'],
        'document_sid' => payload['document_sid'],
        'identity' => payload['identity'],
        'read' => payload['read'],
        'write' => payload['write'],
        'manage' => payload['manage'],
        'url' => payload['url'],
    }

    # Context
    @instance_context = nil
    @params = { 'service_sid' => service_sid  || @properties['service_sid']  ,'document_sid' => document_sid  || @properties['document_sid']  ,'identity' => identity  || @properties['identity']  , }
end

Instance Method Details

#account_sidString

Returns The SID of the [Account](www.twilio.com/docs/iam/api/account) that created the Document Permission resource.

Returns:



284
285
286
# File 'lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb', line 284

def 
    @properties['account_sid']
end

#contextDocumentPermissionContext

Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context

Returns:



275
276
277
278
279
280
# File 'lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb', line 275

def context
    unless @instance_context
        @instance_context = DocumentPermissionContext.new(@version , @params['service_sid'], @params['document_sid'], @params['identity'])
    end
    @instance_context
end

#deleteBoolean

Delete the DocumentPermissionInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



333
334
335
336
# File 'lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb', line 333

def delete

    context.delete
end

#document_sidString

Returns The SID of the Sync Document to which the Document Permission applies.

Returns:

  • (String)

    The SID of the Sync Document to which the Document Permission applies.



296
297
298
# File 'lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb', line 296

def document_sid
    @properties['document_sid']
end

#fetchDocumentPermissionInstance

Fetch the DocumentPermissionInstance

Returns:



341
342
343
344
# File 'lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb', line 341

def fetch

    context.fetch
end

#identityString

Returns The application-defined string that uniquely identifies the resource’s User within the Service to an FPA token.

Returns:

  • (String)

    The application-defined string that uniquely identifies the resource’s User within the Service to an FPA token.



302
303
304
# File 'lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb', line 302

def identity
    @properties['identity']
end

#inspectObject

Provide a detailed, user friendly representation



374
375
376
377
# File 'lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb', line 374

def inspect
    values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ")
    "<Twilio.Sync.V1.DocumentPermissionInstance #{values}>"
end

#manageBoolean

Returns Whether the identity can delete the Sync Document.

Returns:

  • (Boolean)

    Whether the identity can delete the Sync Document.



320
321
322
# File 'lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb', line 320

def manage
    @properties['manage']
end

#readBoolean

Returns Whether the identity can read the Sync Document.

Returns:

  • (Boolean)

    Whether the identity can read the Sync Document.



308
309
310
# File 'lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb', line 308

def read
    @properties['read']
end

#service_sidString

Returns The SID of the [Sync Service](www.twilio.com/docs/sync/api/service) the resource is associated with.

Returns:



290
291
292
# File 'lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb', line 290

def service_sid
    @properties['service_sid']
end

#to_sObject

Provide a user friendly representation



367
368
369
370
# File 'lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb', line 367

def to_s
    values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
    "<Twilio.Sync.V1.DocumentPermissionInstance #{values}>"
end

#update(read: nil, write: nil, manage: nil) ⇒ DocumentPermissionInstance

Update the DocumentPermissionInstance

Parameters:

  • read (Boolean) (defaults to: nil)

    Whether the identity can read the Sync Document. Default value is ‘false`.

  • write (Boolean) (defaults to: nil)

    Whether the identity can update the Sync Document. Default value is ‘false`.

  • manage (Boolean) (defaults to: nil)

    Whether the identity can delete the Sync Document. Default value is ‘false`.

Returns:



352
353
354
355
356
357
358
359
360
361
362
363
# File 'lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb', line 352

def update(
    read: nil, 
    write: nil, 
    manage: nil
)

    context.update(
        read: read, 
        write: write, 
        manage: manage, 
    )
end

#urlString

Returns The absolute URL of the Sync Document Permission resource.

Returns:

  • (String)

    The absolute URL of the Sync Document Permission resource.



326
327
328
# File 'lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb', line 326

def url
    @properties['url']
end

#writeBoolean

Returns Whether the identity can update the Sync Document.

Returns:

  • (Boolean)

    Whether the identity can update the Sync Document.



314
315
316
# File 'lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb', line 314

def write
    @properties['write']
end