Class: Twilio::REST::Serverless::V1::ServiceContext::EnvironmentContext::DeploymentInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Serverless::V1::ServiceContext::EnvironmentContext::DeploymentInstance
- 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
-
#account_sid ⇒ String
Account Sid.
-
#build_sid ⇒ String
Build Sid.
-
#context ⇒ DeploymentContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#date_created ⇒ Time
The date that this Deployment was created.
-
#date_updated ⇒ Time
The date that this Deployment was updated.
-
#environment_sid ⇒ String
Environment Sid.
-
#fetch ⇒ DeploymentInstance
Fetch a DeploymentInstance.
-
#initialize(version, payload, service_sid: nil, environment_sid: nil, sid: nil) ⇒ DeploymentInstance
constructor
Initialize the DeploymentInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#service_sid ⇒ String
Service Sid.
-
#sid ⇒ String
Deployment Sid.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#url ⇒ String
The URL of this Deployment.
Constructor Details
#initialize(version, payload, service_sid: nil, environment_sid: nil, sid: nil) ⇒ DeploymentInstance
Initialize the DeploymentInstance
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 251 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_sid ⇒ String
Returns Account Sid.
299 300 301 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 299 def account_sid @properties['account_sid'] end |
#build_sid ⇒ String
Returns Build Sid.
317 318 319 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 317 def build_sid @properties['build_sid'] end |
#context ⇒ DeploymentContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
279 280 281 282 283 284 285 286 287 288 289 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 279 def context unless @instance_context @instance_context = DeploymentContext.new( @version, @params['service_sid'], @params['environment_sid'], @params['sid'], ) end @instance_context end |
#date_created ⇒ Time
Returns The date that this Deployment was created.
323 324 325 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 323 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The date that this Deployment was updated.
329 330 331 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 329 def date_updated @properties['date_updated'] end |
#environment_sid ⇒ String
Returns Environment Sid.
311 312 313 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 311 def environment_sid @properties['environment_sid'] end |
#fetch ⇒ DeploymentInstance
Fetch a DeploymentInstance
342 343 344 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 342 def fetch context.fetch end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
355 356 357 358 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 355 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Serverless.V1.DeploymentInstance #{values}>" end |
#service_sid ⇒ String
Returns Service Sid.
305 306 307 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 305 def service_sid @properties['service_sid'] end |
#sid ⇒ String
Returns Deployment Sid.
293 294 295 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 293 def sid @properties['sid'] end |
#to_s ⇒ Object
Provide a user friendly representation
348 349 350 351 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 348 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Serverless.V1.DeploymentInstance #{values}>" end |
#url ⇒ String
Returns The URL of this Deployment.
335 336 337 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 335 def url @properties['url'] end |