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
Instance Method Summary collapse
-
#fetch ⇒ DeploymentInstance
Fetch the DeploymentInstance.
-
#fetch_with_metadata ⇒ DeploymentInstance
Fetch the DeploymentInstanceMetadata.
-
#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
230 231 232 233 234 235 236 237 238 239 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 230 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
243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 243 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 |
#fetch_with_metadata ⇒ DeploymentInstance
Fetch the DeploymentInstanceMetadata
264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 264 def headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) response = @version.('GET', @uri, headers: headers) deployment_instance = DeploymentInstance.new( @version, response.body, service_sid: @solution[:service_sid], environment_sid: @solution[:environment_sid], sid: @solution[:sid], ) DeploymentInstanceMetadata.new( @version, deployment_instance, response.headers, response.status_code ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
298 299 300 301 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 298 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Serverless.V1.DeploymentContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
291 292 293 294 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 291 def to_s context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Serverless.V1.DeploymentContext #{context}>" end |