Class: Twilio::REST::Autopilot::V1::AssistantContext::ModelBuildContext

Inherits:
InstanceContext
  • Object
show all
Defined in:
lib/twilio-ruby/rest/autopilot/v1/assistant/model_build.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

Constructor Details

#initialize(version, assistant_sid, sid) ⇒ ModelBuildContext

Initialize the ModelBuildContext

Parameters:

  • version (Version)

    Version that contains the resource

  • assistant_sid (String)

    The SID of the [Assistant](www.twilio.com/docs/autopilot/api/assistant) that is the parent of the resource to update.

  • sid (String)

    The Twilio-provided string that uniquely identifies the ModelBuild resource to update.



160
161
162
163
164
165
166
167
168
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/model_build.rb', line 160

def initialize(version, assistant_sid, sid)
    super(version)

    # Path Solution
    @solution = { assistant_sid: assistant_sid, sid: sid,  }
    @uri = "/Assistants/#{@solution[:assistant_sid]}/ModelBuilds/#{@solution[:sid]}"

    
end

Instance Method Details

#deleteBoolean

Delete the ModelBuildInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



172
173
174
175
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/model_build.rb', line 172

def delete

    @version.delete('DELETE', @uri)
end

#fetchModelBuildInstance

Fetch the ModelBuildInstance

Returns:



180
181
182
183
184
185
186
187
188
189
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/model_build.rb', line 180

def fetch

    payload = @version.fetch('GET', @uri)
    ModelBuildInstance.new(
        @version,
        payload,
        assistant_sid: @solution[:assistant_sid],
        sid: @solution[:sid],
    )
end

#inspectObject

Provide a detailed, user friendly representation



222
223
224
225
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/model_build.rb', line 222

def inspect
    context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
    "#<Twilio.Autopilot.V1.ModelBuildContext #{context}>"
end

#to_sObject

Provide a user friendly representation



215
216
217
218
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/model_build.rb', line 215

def to_s
    context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
    "#<Twilio.Autopilot.V1.ModelBuildContext #{context}>"
end

#update(unique_name: :unset) ⇒ ModelBuildInstance

Update the ModelBuildInstance

Parameters:

  • unique_name (String) (defaults to: :unset)

    An application-defined string that uniquely identifies the resource. This value must be a unique string of no more than 64 characters. It can be used as an alternative to the ‘sid` in the URL path to address the resource.

Returns:



195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/model_build.rb', line 195

def update(
    unique_name: :unset
)

    data = Twilio::Values.of({
        'UniqueName' => unique_name,
    })

    payload = @version.update('POST', @uri, data: data)
    ModelBuildInstance.new(
        @version,
        payload,
        assistant_sid: @solution[:assistant_sid],
        sid: @solution[:sid],
    )
end