Class: Twilio::REST::Api::V2010::AccountContext::UsageList::TriggerInstance

Inherits:
InstanceResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, account_sid: nil, sid: nil) ⇒ TriggerInstance

Initialize the TriggerInstance

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio

  • account_sid (String) (defaults to: nil)

    The SID of the Account that created this Trigger resource.

  • sid (String) (defaults to: nil)

    The SID of the Call resource to fetch.



603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
# File 'lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb', line 603

def initialize(version, payload , account_sid: nil, sid: nil)
    super(version)
    
    
    # Marshaled Properties
    @properties = { 
        'account_sid' => payload['account_sid'],
        'api_version' => payload['api_version'],
        'callback_method' => payload['callback_method'],
        'callback_url' => payload['callback_url'],
        'current_value' => payload['current_value'],
        'date_created' => Twilio.deserialize_rfc2822(payload['date_created']),
        'date_fired' => Twilio.deserialize_rfc2822(payload['date_fired']),
        'date_updated' => Twilio.deserialize_rfc2822(payload['date_updated']),
        'friendly_name' => payload['friendly_name'],
        'recurring' => payload['recurring'],
        'sid' => payload['sid'],
        'trigger_by' => payload['trigger_by'],
        'trigger_value' => payload['trigger_value'],
        'uri' => payload['uri'],
        'usage_category' => payload['usage_category'],
        'usage_record_uri' => payload['usage_record_uri'],
    }

    # Context
    @instance_context = nil
    @params = { 'account_sid' =>   ,'sid' => sid  || @properties['sid']  , }
end

Instance Method Details

#account_sidString

Returns The SID of the [Account](www.twilio.com/docs/iam/api/account) that the trigger monitors.

Returns:



645
646
647
# File 'lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb', line 645

def 
    @properties['account_sid']
end

#api_versionString

Returns The API version used to create the resource.

Returns:

  • (String)

    The API version used to create the resource.



651
652
653
# File 'lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb', line 651

def api_version
    @properties['api_version']
end

#callback_methodString

Returns The HTTP method we use to call callback_url. Can be: GET or POST.

Returns:

  • (String)

    The HTTP method we use to call callback_url. Can be: GET or POST.



657
658
659
# File 'lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb', line 657

def callback_method
    @properties['callback_method']
end

#callback_urlString

Returns The URL we call using the callback_method when the trigger fires.

Returns:

  • (String)

    The URL we call using the callback_method when the trigger fires.



663
664
665
# File 'lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb', line 663

def callback_url
    @properties['callback_url']
end

#contextTriggerContext

Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context

Returns:



636
637
638
639
640
641
# File 'lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb', line 636

def context
    unless @instance_context
        @instance_context = TriggerContext.new(@version , @params['account_sid'], @params['sid'])
    end
    @instance_context
end

#current_valueString

Returns The current value of the field the trigger is watching.

Returns:

  • (String)

    The current value of the field the trigger is watching.



669
670
671
# File 'lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb', line 669

def current_value
    @properties['current_value']
end

#date_createdTime

Returns The date and time in GMT that the resource was created specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.

Returns:



675
676
677
# File 'lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb', line 675

def date_created
    @properties['date_created']
end

#date_firedTime

Returns The date and time in GMT that the trigger was last fired specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.

Returns:



681
682
683
# File 'lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb', line 681

def date_fired
    @properties['date_fired']
end

#date_updatedTime

Returns The date and time in GMT that the resource was last updated specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.

Returns:



687
688
689
# File 'lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb', line 687

def date_updated
    @properties['date_updated']
end

#deleteBoolean

Delete the TriggerInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



742
743
744
745
# File 'lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb', line 742

def delete

    context.delete
end

#fetchTriggerInstance

Fetch the TriggerInstance

Returns:



750
751
752
753
# File 'lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb', line 750

def fetch

    context.fetch
end

#friendly_nameString

Returns The string that you assigned to describe the trigger.

Returns:

  • (String)

    The string that you assigned to describe the trigger.



693
694
695
# File 'lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb', line 693

def friendly_name
    @properties['friendly_name']
end

#inspectObject

Provide a detailed, user friendly representation



783
784
785
786
# File 'lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb', line 783

def inspect
    values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ")
    "<Twilio.Api.V2010.TriggerInstance #{values}>"
end

#recurringRecurring

Returns:

  • (Recurring)


699
700
701
# File 'lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb', line 699

def recurring
    @properties['recurring']
end

#sidString

Returns The unique string that that we created to identify the UsageTrigger resource.

Returns:

  • (String)

    The unique string that that we created to identify the UsageTrigger resource.



705
706
707
# File 'lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb', line 705

def sid
    @properties['sid']
end

#to_sObject

Provide a user friendly representation



776
777
778
779
# File 'lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb', line 776

def to_s
    values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
    "<Twilio.Api.V2010.TriggerInstance #{values}>"
end

#trigger_byTriggerField

Returns:

  • (TriggerField)


711
712
713
# File 'lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb', line 711

def trigger_by
    @properties['trigger_by']
end

#trigger_valueString

Returns The value at which the trigger will fire. Must be a positive, numeric value.

Returns:

  • (String)

    The value at which the trigger will fire. Must be a positive, numeric value.



717
718
719
# File 'lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb', line 717

def trigger_value
    @properties['trigger_value']
end

#update(callback_method: :unset, callback_url: :unset, friendly_name: :unset) ⇒ TriggerInstance

Update the TriggerInstance

Parameters:

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

    The HTTP method we should use to call callback_url. Can be: GET or POST and the default is POST.

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

    The URL we should call using callback_method when the trigger fires.

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

    A descriptive string that you create to describe the resource. It can be up to 64 characters long.

Returns:



761
762
763
764
765
766
767
768
769
770
771
772
# File 'lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb', line 761

def update(
    callback_method: :unset, 
    callback_url: :unset, 
    friendly_name: :unset
)

    context.update(
        callback_method: callback_method, 
        callback_url: callback_url, 
        friendly_name: friendly_name, 
    )
end

#uriString

Returns The URI of the resource, relative to https://api.twilio.com.

Returns:

  • (String)

    The URI of the resource, relative to https://api.twilio.com.



723
724
725
# File 'lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb', line 723

def uri
    @properties['uri']
end

#usage_categoryString

Returns The usage category the trigger watches. Must be one of the supported [usage categories](www.twilio.com/docs/usage/api/usage-record#usage-categories).

Returns:



729
730
731
# File 'lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb', line 729

def usage_category
    @properties['usage_category']
end

#usage_record_uriString

Returns The URI of the [UsageRecord](www.twilio.com/docs/usage/api/usage-record) resource this trigger watches, relative to https://api.twilio.com.

Returns:



735
736
737
# File 'lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb', line 735

def usage_record_uri
    @properties['usage_record_uri']
end