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

Inherits:
InstanceResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.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, environment_sid: nil, sid: nil) ⇒ DeploymentInstance

Initialize the DeploymentInstance



248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 248

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'],
      'build_sid' => payload['build_sid'],
      '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



296
297
298
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 296

def 
  @properties['account_sid']
end

#build_sidString



314
315
316
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 314

def build_sid
  @properties['build_sid']
end

#contextDeploymentContext

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



276
277
278
279
280
281
282
283
284
285
286
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 276

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

#date_createdTime



320
321
322
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 320

def date_created
  @properties['date_created']
end

#date_updatedTime



326
327
328
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 326

def date_updated
  @properties['date_updated']
end

#environment_sidString



308
309
310
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 308

def environment_sid
  @properties['environment_sid']
end

#fetchDeploymentInstance

Fetch a DeploymentInstance



339
340
341
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 339

def fetch
  context.fetch
end

#inspectObject

Provide a detailed, user friendly representation



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

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

#service_sidString



302
303
304
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 302

def service_sid
  @properties['service_sid']
end

#sidString



290
291
292
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 290

def sid
  @properties['sid']
end

#to_sObject

Provide a user friendly representation



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

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

#urlString



332
333
334
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 332

def url
  @properties['url']
end