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

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 SID of the Service to fetch the Deployment resource from.

  • environment_sid (String)

    The SID of the Environment used by the Deployment to fetch.

  • sid (String)

    The SID that identifies the Deployment resource to fetch.



171
172
173
174
175
176
177
178
179
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 171

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 the DeploymentInstance

Returns:



183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 183

def fetch

    headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
    
    
    
    
    
    payload = @version.fetch('GET', @uri, headers: headers)
    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



211
212
213
214
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 211

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

#to_sObject

Provide a user friendly representation



204
205
206
207
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 204

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