Class: Twilio::REST::Serverless::V1::ServiceContext::EnvironmentContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Serverless::V1::ServiceContext::EnvironmentContext
- Defined in:
- lib/twilio-ruby/rest/serverless/v1/service/environment.rb,
lib/twilio-ruby/rest/serverless/v1/service/environment/variable.rb,
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].
Defined Under Namespace
Classes: DeploymentContext, DeploymentInstance, DeploymentList, DeploymentPage, VariableContext, VariableInstance, VariableList, VariablePage
Instance Method Summary collapse
-
#deployments(sid = :unset) ⇒ DeploymentList, DeploymentContext
Access the deployments.
-
#fetch ⇒ EnvironmentInstance
Fetch a EnvironmentInstance.
-
#initialize(version, service_sid, sid) ⇒ EnvironmentContext
constructor
Initialize the EnvironmentContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#variables(sid = :unset) ⇒ VariableList, VariableContext
Access the variables.
Constructor Details
#initialize(version, service_sid, sid) ⇒ EnvironmentContext
Initialize the EnvironmentContext
182 183 184 185 186 187 188 189 190 191 192 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment.rb', line 182 def initialize(version, service_sid, sid) super(version) # Path Solution @solution = {service_sid: service_sid, sid: sid, } @uri = "/Services/#{@solution[:service_sid]}/Environments/#{@solution[:sid]}" # Dependents @variables = nil @deployments = nil end |
Instance Method Details
#deployments(sid = :unset) ⇒ DeploymentList, DeploymentContext
Access the deployments
240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment.rb', line 240 def deployments(sid=:unset) raise ArgumentError, 'sid cannot be nil' if sid.nil? if sid != :unset return DeploymentContext.new(@version, @solution[:service_sid], @solution[:sid], sid, ) end unless @deployments @deployments = DeploymentList.new( @version, service_sid: @solution[:service_sid], environment_sid: @solution[:sid], ) end @deployments end |
#fetch ⇒ EnvironmentInstance
Fetch a EnvironmentInstance
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment.rb', line 197 def fetch params = Twilio::Values.of({}) payload = @version.fetch( 'GET', @uri, params, ) EnvironmentInstance.new( @version, payload, service_sid: @solution[:service_sid], sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
267 268 269 270 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment.rb', line 267 def inspect context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Serverless.V1.EnvironmentContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
260 261 262 263 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment.rb', line 260 def to_s context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Serverless.V1.EnvironmentContext #{context}>" end |
#variables(sid = :unset) ⇒ VariableList, VariableContext
Access the variables
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/environment.rb', line 218 def variables(sid=:unset) raise ArgumentError, 'sid cannot be nil' if sid.nil? if sid != :unset return VariableContext.new(@version, @solution[:service_sid], @solution[:sid], sid, ) end unless @variables @variables = VariableList.new( @version, service_sid: @solution[:service_sid], environment_sid: @solution[:sid], ) end @variables end |