Class: Twilio::REST::Serverless::V1::ServiceContext::EnvironmentContext::DeploymentContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Serverless::V1::ServiceContext::EnvironmentContext::DeploymentContext
- Defined in:
- lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb
Overview
PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
Instance Method Summary collapse
-
#fetch ⇒ DeploymentInstance
Fetch the DeploymentInstance.
-
#initialize(version, service_sid, environment_sid, sid) ⇒ DeploymentContext
constructor
Initialize the DeploymentContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version, service_sid, environment_sid, sid) ⇒ DeploymentContext
Initialize the DeploymentContext
185 186 187 188 189 190 191 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 185 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
#fetch ⇒ DeploymentInstance
Fetch the DeploymentInstance
196 197 198 199 200 201 202 203 204 205 206 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 196 def fetch payload = @version.fetch('GET', @uri) DeploymentInstance.new( @version, payload, service_sid: @solution[:service_sid], environment_sid: @solution[:environment_sid], sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
217 218 219 220 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 217 def inspect context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Serverless.V1.DeploymentContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
210 211 212 213 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 210 def to_s context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Serverless.V1.DeploymentContext #{context}>" end |