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
Instance Method Summary collapse
-
#account_sid ⇒ String
The SID of the [Account](www.twilio.com/docs/iam/api/account) that created the Deployment resource.
-
#build_sid ⇒ String
The SID of the Build for the deployment.
-
#context ⇒ DeploymentContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#date_created ⇒ Time
The date and time in GMT when the Deployment resource was created specified in [ISO 8601](en.wikipedia.org/wiki/ISO_8601) format.
-
#date_updated ⇒ Time
The date and time in GMT when the Deployment resource was last updated specified in [ISO 8601](en.wikipedia.org/wiki/ISO_8601) format.
-
#environment_sid ⇒ String
The SID of the Environment for the Deployment.
-
#fetch ⇒ DeploymentInstance
Fetch the 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
The SID of the Service that the Deployment resource is associated with.
-
#sid ⇒ String
The unique string that we created to identify the Deployment resource.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#url ⇒ String
The absolute URL of the Deployment resource.
Constructor Details
#initialize(version, payload, service_sid: nil, environment_sid: nil, sid: nil) ⇒ DeploymentInstance
Initialize the DeploymentInstance
450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 450 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 || @properties['service_sid'] ,'environment_sid' => environment_sid || @properties['environment_sid'] ,'sid' => sid || @properties['sid'] , } end |
Instance Method Details
#account_sid ⇒ String
Returns The SID of the [Account](www.twilio.com/docs/iam/api/account) that created the Deployment resource.
490 491 492 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 490 def account_sid @properties['account_sid'] end |
#build_sid ⇒ String
Returns The SID of the Build for the deployment.
508 509 510 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 508 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
475 476 477 478 479 480 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 475 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 and time in GMT when the Deployment resource was created specified in [ISO 8601](en.wikipedia.org/wiki/ISO_8601) format.
514 515 516 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 514 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The date and time in GMT when the Deployment resource was last updated specified in [ISO 8601](en.wikipedia.org/wiki/ISO_8601) format.
520 521 522 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 520 def date_updated @properties['date_updated'] end |
#environment_sid ⇒ String
Returns The SID of the Environment for the Deployment.
502 503 504 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 502 def environment_sid @properties['environment_sid'] end |
#fetch ⇒ DeploymentInstance
Fetch the DeploymentInstance
533 534 535 536 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 533 def fetch context.fetch end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
547 548 549 550 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 547 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Serverless.V1.DeploymentInstance #{values}>" end |
#service_sid ⇒ String
Returns The SID of the Service that the Deployment resource is associated with.
496 497 498 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 496 def service_sid @properties['service_sid'] end |
#sid ⇒ String
Returns The unique string that we created to identify the Deployment resource.
484 485 486 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 484 def sid @properties['sid'] end |
#to_s ⇒ Object
Provide a user friendly representation
540 541 542 543 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 540 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Serverless.V1.DeploymentInstance #{values}>" end |
#url ⇒ String
Returns The absolute URL of the Deployment resource.
526 527 528 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb', line 526 def url @properties['url'] end |