Class: Twilio::REST::Serverless::V1::ServiceContext::EnvironmentContext::VariableInstance

Inherits:
InstanceResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/serverless/v1/service/environment/variable.rb

Overview

PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, service_sid: nil, environment_sid: nil, sid: nil) ⇒ VariableInstance

Initialize the VariableInstance

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio

  • service_sid (String) (defaults to: nil)

    The SID of the Service that the Variable resource is associated with.

  • environment_sid (String) (defaults to: nil)

    The SID of the Environment in which the Variable exists.

  • sid (String) (defaults to: nil)

    The SID of the Variable resource to fetch.


268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/variable.rb', line 268

def initialize(version, payload, service_sid: nil, environment_sid: nil, sid: nil)
  super(version)

  # Marshaled Properties
  @properties = {
      'sid' => payload['sid'],
      'account_sid' => payload['account_sid'],
      'service_sid' => payload['service_sid'],
      'environment_sid' => payload['environment_sid'],
      'key' => payload['key'],
      'value' => payload['value'],
      'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']),
      'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']),
      'url' => payload['url'],
  }

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

Instance Method Details

#account_sidString

Returns The SID of the Account that created the Variable resource.

Returns:

  • (String)

    The SID of the Account that created the Variable resource


317
318
319
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/variable.rb', line 317

def 
  @properties['account_sid']
end

#contextVariableContext

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

Returns:


297
298
299
300
301
302
303
304
305
306
307
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/variable.rb', line 297

def context
  unless @instance_context
    @instance_context = VariableContext.new(
        @version,
        @params['service_sid'],
        @params['environment_sid'],
        @params['sid'],
    )
  end
  @instance_context
end

#date_createdTime

Returns The ISO 8601 date and time in GMT when the Variable resource was created.

Returns:

  • (Time)

    The ISO 8601 date and time in GMT when the Variable resource was created


347
348
349
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/variable.rb', line 347

def date_created
  @properties['date_created']
end

#date_updatedTime

Returns The ISO 8601 date and time in GMT when the Variable resource was last updated.

Returns:

  • (Time)

    The ISO 8601 date and time in GMT when the Variable resource was last updated


353
354
355
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/variable.rb', line 353

def date_updated
  @properties['date_updated']
end

#deleteBoolean

Delete the VariableInstance

Returns:

  • (Boolean)

    true if delete succeeds, false otherwise


384
385
386
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/variable.rb', line 384

def delete
  context.delete
end

#environment_sidString

Returns The SID of the Environment in which the Variable exists.

Returns:

  • (String)

    The SID of the Environment in which the Variable exists


329
330
331
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/variable.rb', line 329

def environment_sid
  @properties['environment_sid']
end

#fetchVariableInstance

Fetch the VariableInstance

Returns:


366
367
368
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/variable.rb', line 366

def fetch
  context.fetch
end

#inspectObject

Provide a detailed, user friendly representation


397
398
399
400
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/variable.rb', line 397

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

#keyString

Returns A string by which the Variable resource can be referenced.

Returns:

  • (String)

    A string by which the Variable resource can be referenced


335
336
337
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/variable.rb', line 335

def key
  @properties['key']
end

#service_sidString

Returns The SID of the Service that the Variable resource is associated with.

Returns:

  • (String)

    The SID of the Service that the Variable resource is associated with


323
324
325
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/variable.rb', line 323

def service_sid
  @properties['service_sid']
end

#sidString

Returns The unique string that identifies the Variable resource.

Returns:

  • (String)

    The unique string that identifies the Variable resource


311
312
313
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/variable.rb', line 311

def sid
  @properties['sid']
end

#to_sObject

Provide a user friendly representation


390
391
392
393
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/variable.rb', line 390

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

#update(key: :unset, value: :unset) ⇒ VariableInstance

Update the VariableInstance

Parameters:

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

    A string by which the Variable resource can be referenced. It can be a maximum of 128 characters.

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

    A string that contains the actual value of the Variable. It can be a maximum of 450 bytes in size.

Returns:


377
378
379
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/variable.rb', line 377

def update(key: :unset, value: :unset)
  context.update(key: key, value: value, )
end

#urlString

Returns The absolute URL of the Variable resource.

Returns:

  • (String)

    The absolute URL of the Variable resource


359
360
361
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/variable.rb', line 359

def url
  @properties['url']
end

#valueString

Returns A string that contains the actual value of the Variable.

Returns:

  • (String)

    A string that contains the actual value of the Variable


341
342
343
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/variable.rb', line 341

def value
  @properties['value']
end