Class: Twilio::REST::Autopilot::V1::AssistantContext::ModelBuildInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Autopilot::V1::AssistantContext::ModelBuildInstance
- Defined in:
- lib/twilio-ruby/rest/autopilot/v1/assistant/model_build.rb
Instance Method Summary collapse
-
#account_sid ⇒ String
The SID of the [Account](www.twilio.com/docs/iam/api/account) that created the ModelBuild resource.
-
#assistant_sid ⇒ String
The SID of the [Assistant](www.twilio.com/docs/autopilot/api/assistant) that is the parent of the resource.
-
#build_duration ⇒ String
The time in seconds it took to build the model.
-
#context ⇒ ModelBuildContext
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 resource was created specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.
-
#date_updated ⇒ Time
The date and time in GMT when the resource was last updated specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.
-
#delete ⇒ Boolean
Delete the ModelBuildInstance.
-
#error_code ⇒ String
If the ‘status` for the model build is `failed`, this value is a code to more information about the failure.
-
#fetch ⇒ ModelBuildInstance
Fetch the ModelBuildInstance.
-
#initialize(version, payload, assistant_sid: nil, sid: nil) ⇒ ModelBuildInstance
constructor
Initialize the ModelBuildInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#sid ⇒ String
The unique string that we created to identify the ModelBuild resource.
- #status ⇒ Status
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#unique_name ⇒ String
An application-defined string that uniquely identifies the resource.
-
#update(unique_name: :unset) ⇒ ModelBuildInstance
Update the ModelBuildInstance.
-
#url ⇒ String
The absolute URL of the ModelBuild resource.
Constructor Details
#initialize(version, payload, assistant_sid: nil, sid: nil) ⇒ ModelBuildInstance
Initialize the ModelBuildInstance
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/autopilot/v1/assistant/model_build.rb', line 266 def initialize(version, payload , assistant_sid: nil, sid: nil) super(version) # Marshaled Properties @properties = { 'account_sid' => payload['account_sid'], 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']), 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']), 'assistant_sid' => payload['assistant_sid'], 'sid' => payload['sid'], 'status' => payload['status'], 'unique_name' => payload['unique_name'], 'url' => payload['url'], 'build_duration' => payload['build_duration'] == nil ? payload['build_duration'] : payload['build_duration'].to_i, 'error_code' => payload['error_code'] == nil ? payload['error_code'] : payload['error_code'].to_i, } # Context @instance_context = nil @params = { 'assistant_sid' => assistant_sid || @properties['assistant_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 ModelBuild resource.
301 302 303 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/model_build.rb', line 301 def account_sid @properties['account_sid'] end |
#assistant_sid ⇒ String
Returns The SID of the [Assistant](www.twilio.com/docs/autopilot/api/assistant) that is the parent of the resource.
319 320 321 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/model_build.rb', line 319 def assistant_sid @properties['assistant_sid'] end |
#build_duration ⇒ String
Returns The time in seconds it took to build the model.
349 350 351 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/model_build.rb', line 349 def build_duration @properties['build_duration'] end |
#context ⇒ ModelBuildContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
292 293 294 295 296 297 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/model_build.rb', line 292 def context unless @instance_context @instance_context = ModelBuildContext.new(@version , @params['assistant_sid'], @params['sid']) end @instance_context end |
#date_created ⇒ Time
Returns The date and time in GMT when the resource was created specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.
307 308 309 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/model_build.rb', line 307 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The date and time in GMT when the resource was last updated specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.
313 314 315 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/model_build.rb', line 313 def date_updated @properties['date_updated'] end |
#delete ⇒ Boolean
Delete the ModelBuildInstance
362 363 364 365 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/model_build.rb', line 362 def delete context.delete end |
#error_code ⇒ String
Returns If the ‘status` for the model build is `failed`, this value is a code to more information about the failure. This value will be null for all other statuses. See [error code dictionary](www.twilio.com/docs/api/errors) for a description of the error.
355 356 357 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/model_build.rb', line 355 def error_code @properties['error_code'] end |
#fetch ⇒ ModelBuildInstance
Fetch the ModelBuildInstance
370 371 372 373 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/model_build.rb', line 370 def fetch context.fetch end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
397 398 399 400 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/model_build.rb', line 397 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Autopilot.V1.ModelBuildInstance #{values}>" end |
#sid ⇒ String
Returns The unique string that we created to identify the ModelBuild resource.
325 326 327 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/model_build.rb', line 325 def sid @properties['sid'] end |
#status ⇒ Status
331 332 333 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/model_build.rb', line 331 def status @properties['status'] end |
#to_s ⇒ Object
Provide a user friendly representation
390 391 392 393 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/model_build.rb', line 390 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Autopilot.V1.ModelBuildInstance #{values}>" end |
#unique_name ⇒ String
Returns An application-defined string that uniquely identifies the resource. It can be used as an alternative to the ‘sid` in the URL path to address the resource.
337 338 339 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/model_build.rb', line 337 def unique_name @properties['unique_name'] end |
#update(unique_name: :unset) ⇒ ModelBuildInstance
Update the ModelBuildInstance
379 380 381 382 383 384 385 386 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/model_build.rb', line 379 def update( unique_name: :unset ) context.update( unique_name: unique_name, ) end |
#url ⇒ String
Returns The absolute URL of the ModelBuild resource.
343 344 345 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/model_build.rb', line 343 def url @properties['url'] end |