Class: Twilio::REST::Sync::V1::ServiceContext::SyncMapContext

Inherits:
InstanceContext
  • Object
show all
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, SyncMapItemList, SyncMapItemPage, SyncMapPermissionContext, SyncMapPermissionInstance, SyncMapPermissionList, SyncMapPermissionPage

Instance Method Summary collapse

Constructor Details

#initialize(version, service_sid, sid) ⇒ SyncMapContext

Initialize the SyncMapContext

Parameters:

  • version (Version)

    Version that contains the resource

  • service_sid (String)

    The SID of the [Sync Service](www.twilio.com/docs/sync/api/service) with the Sync Map resource to update.

  • sid (String)

    The SID of the Sync Map resource to update. Can be the Sync Map’s ‘sid` or its `unique_name`.



161
162
163
164
165
166
167
168
169
170
171
# File 'lib/twilio-ruby/rest/sync/v1/service/sync_map.rb', line 161

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

#deleteBoolean

Delete the SyncMapInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



175
176
177
178
# File 'lib/twilio-ruby/rest/sync/v1/service/sync_map.rb', line 175

def delete

    @version.delete('DELETE', @uri)
end

#fetchSyncMapInstance

Fetch the SyncMapInstance

Returns:



183
184
185
186
187
188
189
190
191
192
# File 'lib/twilio-ruby/rest/sync/v1/service/sync_map.rb', line 183

def fetch

    payload = @version.fetch('GET', @uri)
    SyncMapInstance.new(
        @version,
        payload,
        service_sid: @solution[:service_sid],
        sid: @solution[:sid],
    )
end

#inspectObject

Provide a detailed, user friendly representation



266
267
268
269
# File 'lib/twilio-ruby/rest/sync/v1/service/sync_map.rb', line 266

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

Returns:

Raises:

  • (ArgumentError)


222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
# File 'lib/twilio-ruby/rest/sync/v1/service/sync_map.rb', line 222

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

Returns:

Raises:

  • (ArgumentError)


241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
# File 'lib/twilio-ruby/rest/sync/v1/service/sync_map.rb', line 241

def sync_map_permissions(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_sObject

Provide a user friendly representation



259
260
261
262
# File 'lib/twilio-ruby/rest/sync/v1/service/sync_map.rb', line 259

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

Parameters:

  • ttl (String) (defaults to: :unset)

    An alias for ‘collection_ttl`. If both parameters are provided, this value is ignored.

  • collection_ttl (String) (defaults to: :unset)

    How long, [in seconds](www.twilio.com/docs/sync/limits#sync-payload-limits), before the Sync Map expires (time-to-live) and is deleted.

Returns:



199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
# File 'lib/twilio-ruby/rest/sync/v1/service/sync_map.rb', line 199

def update(
    ttl: :unset, 
    collection_ttl: :unset
)

    data = Twilio::Values.of({
        'Ttl' => ttl,
        'CollectionTtl' => collection_ttl,
    })

    payload = @version.update('POST', @uri, data: data)
    SyncMapInstance.new(
        @version,
        payload,
        service_sid: @solution[:service_sid],
        sid: @solution[:sid],
    )
end