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

Inherits:
InstanceContext
  • 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, service_sid, environment_sid, sid) ⇒ DeploymentContext

Initialize the DeploymentContext

Parameters:

  • version (Version)

    Version that contains the resource

  • service_sid (String)

    The unique SID identifier of the Service for this Deployment.

  • environment_sid (String)

    The unique SID identifier of the Environment for this Deployment.

  • sid (String)

    The unique SID identifier of this Deployment.



194
195
196
197
198
199
200
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 194

def initialize(version, service_sid, environment_sid, sid)
  super(version)

  # Path Solution
  @solution = {service_sid: service_sid, environment_sid: environment_sid, sid: sid, }
  @uri = "/Services/#{@solution[:service_sid]}/Environments/#{@solution[:environment_sid]}/Deployments/#{@solution[:sid]}"
end

Instance Method Details

#fetchDeploymentInstance

Fetch a DeploymentInstance

Returns:



205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 205

def fetch
  params = Twilio::Values.of({})

  payload = @version.fetch(
      'GET',
      @uri,
      params,
  )

  DeploymentInstance.new(
      @version,
      payload,
      service_sid: @solution[:service_sid],
      environment_sid: @solution[:environment_sid],
      sid: @solution[:sid],
  )
end

#inspectObject

Provide a detailed, user friendly representation



232
233
234
235
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 232

def inspect
  context = @solution.map {|k, v| "#{k}: #{v}"}.join(',')
  "#<Twilio.Serverless.V1.DeploymentContext #{context}>"
end

#to_sObject

Provide a user friendly representation



225
226
227
228
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 225

def to_s
  context = @solution.map {|k, v| "#{k}: #{v}"}.join(',')
  "#<Twilio.Serverless.V1.DeploymentContext #{context}>"
end