Class: Twilio::REST::Serverless::V1::ServiceContext::AssetInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Serverless::V1::ServiceContext::AssetInstance
- Defined in:
- lib/twilio-ruby/rest/serverless/v1/service/asset.rb
Overview
PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
Instance Method Summary collapse
-
#account_sid ⇒ String
The SID of the Account that created the Asset resource.
-
#asset_versions ⇒ asset_versions
Access the asset_versions.
-
#context ⇒ AssetContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#date_created ⇒ Time
The ISO 8601 date and time in GMT when the Asset resource was created.
-
#date_updated ⇒ Time
The ISO 8601 date and time in GMT when the Asset resource was last updated.
-
#delete ⇒ Boolean
Delete the AssetInstance.
-
#fetch ⇒ AssetInstance
Fetch the AssetInstance.
-
#friendly_name ⇒ String
The string that you assigned to describe the Asset resource.
-
#initialize(version, payload, service_sid: nil, sid: nil) ⇒ AssetInstance
constructor
Initialize the AssetInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#links ⇒ String
The URLs of the Asset resource's nested resources.
-
#service_sid ⇒ String
The SID of the Service that the Asset resource is associated with.
-
#sid ⇒ String
The unique string that identifies the Asset resource.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(friendly_name: nil) ⇒ AssetInstance
Update the AssetInstance.
-
#url ⇒ String
The absolute URL of the Asset resource.
Constructor Details
#initialize(version, payload, service_sid: nil, sid: nil) ⇒ AssetInstance
Initialize the AssetInstance
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/asset.rb', line 260 def initialize(version, payload, service_sid: nil, sid: nil) super(version) # Marshaled Properties @properties = { 'sid' => payload['sid'], 'account_sid' => payload['account_sid'], 'service_sid' => payload['service_sid'], 'friendly_name' => payload['friendly_name'], 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']), 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']), 'url' => payload['url'], 'links' => payload['links'], } # Context @instance_context = nil @params = {'service_sid' => service_sid, 'sid' => sid || @properties['sid'], } end |
Instance Method Details
#account_sid ⇒ String
Returns The SID of the Account that created the Asset resource.
299 300 301 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/asset.rb', line 299 def account_sid @properties['account_sid'] end |
#asset_versions ⇒ asset_versions
Access the asset_versions
365 366 367 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/asset.rb', line 365 def asset_versions context.asset_versions end |
#context ⇒ AssetContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
284 285 286 287 288 289 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/asset.rb', line 284 def context unless @instance_context @instance_context = AssetContext.new(@version, @params['service_sid'], @params['sid'], ) end @instance_context end |
#date_created ⇒ Time
Returns The ISO 8601 date and time in GMT when the Asset resource was created.
317 318 319 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/asset.rb', line 317 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The ISO 8601 date and time in GMT when the Asset resource was last updated.
323 324 325 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/asset.rb', line 323 def date_updated @properties['date_updated'] end |
#delete ⇒ Boolean
Delete the AssetInstance
349 350 351 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/asset.rb', line 349 def delete context.delete end |
#fetch ⇒ AssetInstance
Fetch the AssetInstance
342 343 344 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/asset.rb', line 342 def fetch context.fetch end |
#friendly_name ⇒ String
Returns The string that you assigned to describe the Asset resource.
311 312 313 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/asset.rb', line 311 def friendly_name @properties['friendly_name'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
378 379 380 381 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/asset.rb', line 378 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Serverless.V1.AssetInstance #{values}>" end |
#links ⇒ String
Returns The URLs of the Asset resource's nested resources.
335 336 337 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/asset.rb', line 335 def links @properties['links'] end |
#service_sid ⇒ String
Returns The SID of the Service that the Asset resource is associated with.
305 306 307 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/asset.rb', line 305 def service_sid @properties['service_sid'] end |
#sid ⇒ String
Returns The unique string that identifies the Asset resource.
293 294 295 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/asset.rb', line 293 def sid @properties['sid'] end |
#to_s ⇒ Object
Provide a user friendly representation
371 372 373 374 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/asset.rb', line 371 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Serverless.V1.AssetInstance #{values}>" end |
#update(friendly_name: nil) ⇒ AssetInstance
Update the AssetInstance
358 359 360 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/asset.rb', line 358 def update(friendly_name: nil) context.update(friendly_name: friendly_name, ) end |
#url ⇒ String
Returns The absolute URL of the Asset resource.
329 330 331 |
# File 'lib/twilio-ruby/rest/serverless/v1/service/asset.rb', line 329 def url @properties['url'] end |