Class: Twilio::REST::Serverless::V1::ServiceContext::EnvironmentInstance

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

Overview

PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact [email protected].

Instance Method Summary collapse

Constructor Details

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

Initialize the EnvironmentInstance

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 Environment resource is associated with.

  • sid (String) (defaults to: nil)

    The SID of the Environment resource to fetch.



316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment.rb', line 316

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

  # Marshaled Properties
  @properties = {
      'sid' => payload['sid'],
      'account_sid' => payload['account_sid'],
      'service_sid' => payload['service_sid'],
      'build_sid' => payload['build_sid'],
      'unique_name' => payload['unique_name'],
      'domain_suffix' => payload['domain_suffix'],
      'domain_name' => payload['domain_name'],
      'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']),
      'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']),
      'url' => payload['url'],
      'links' => payload['links'],
  }

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

Instance Method Details

#account_sidString

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

Returns:

  • (String)

    The SID of the Account that created the Environment resource



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

def 
  @properties['account_sid']
end

#build_sidString

Returns The SID of the build deployed in the environment.

Returns:

  • (String)

    The SID of the build deployed in the environment



370
371
372
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment.rb', line 370

def build_sid
  @properties['build_sid']
end

#contextEnvironmentContext

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

Returns:



343
344
345
346
347
348
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment.rb', line 343

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

#date_createdTime

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

Returns:

  • (Time)

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



394
395
396
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment.rb', line 394

def date_created
  @properties['date_created']
end

#date_updatedTime

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

Returns:

  • (Time)

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



400
401
402
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment.rb', line 400

def date_updated
  @properties['date_updated']
end

#deleteBoolean

Deletes the EnvironmentInstance

Returns:

  • (Boolean)

    true if delete succeeds, false otherwise



426
427
428
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment.rb', line 426

def delete
  context.delete
end

#deploymentsdeployments

Access the deployments

Returns:



440
441
442
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment.rb', line 440

def deployments
  context.deployments
end

#domain_nameString

Returns The base domain name for all Functions and Assets deployed in the environment.

Returns:

  • (String)

    The base domain name for all Functions and Assets deployed in the environment



388
389
390
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment.rb', line 388

def domain_name
  @properties['domain_name']
end

#domain_suffixString

Returns A URL-friendly name that represents the environment.

Returns:

  • (String)

    A URL-friendly name that represents the environment



382
383
384
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment.rb', line 382

def domain_suffix
  @properties['domain_suffix']
end

#fetchEnvironmentInstance

Fetch a EnvironmentInstance

Returns:



419
420
421
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment.rb', line 419

def fetch
  context.fetch
end

#inspectObject

Provide a detailed, user friendly representation



460
461
462
463
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment.rb', line 460

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

Returns The URLs of the environment’s nested resources.

Returns:

  • (String)

    The URLs of the environment’s nested resources



412
413
414
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment.rb', line 412

def links
  @properties['links']
end

#logslogs

Access the logs

Returns:



447
448
449
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment.rb', line 447

def logs
  context.logs
end

#service_sidString

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

Returns:

  • (String)

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



364
365
366
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment.rb', line 364

def service_sid
  @properties['service_sid']
end

#sidString

Returns The unique string that identifies the Environment resource.

Returns:

  • (String)

    The unique string that identifies the Environment resource



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

def sid
  @properties['sid']
end

#to_sObject

Provide a user friendly representation



453
454
455
456
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment.rb', line 453

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

#unique_nameString

Returns An application-defined string that uniquely identifies the Environment resource.

Returns:

  • (String)

    An application-defined string that uniquely identifies the Environment resource



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

def unique_name
  @properties['unique_name']
end

#urlString

Returns The absolute URL of the Environment resource.

Returns:

  • (String)

    The absolute URL of the Environment resource



406
407
408
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment.rb', line 406

def url
  @properties['url']
end

#variablesvariables

Access the variables

Returns:



433
434
435
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment.rb', line 433

def variables
  context.variables
end