logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

ONVIF::Analytics::Interfaces::Analytics::RuleEnginePort - SOAP Interface for the Analytics Web Service

Author

       Generated by SOAP::WSDL on Tue Jul 15 19:19:50 2014

perl v5.40.1                                       2025-02-21              ONVIF::Analyti...:RuleEnginePort(3pm)

Description

       SOAP Interface for the Analytics web service located at http://www.examples.com/Analytics/.

Methods

Generalmethodsnew

       Constructor.

       All arguments are forwarded to SOAP::WSDL::Client.

   SOAPServicemethods
       Method synopsis is displayed with hash refs as parameters.

       The commented class names in the method's parameters denote that objects of the corresponding class can
       be passed instead of the marked hash ref.

       You may pass any combination of objects, hash and list refs to these methods, as long as you meet the
       structure.

       List items (i.e. multiple occurrences) are not displayed in the synopsis.  You may generally pass a list
       ref of hash refs (or objects) instead of a hash ref - this may result in invalid XML if used improperly,
       though. Note that SOAP::WSDL always expects list references at maximum depth position.

       XML attributes are not displayed in this synopsis and cannot be set using hash refs. See the respective
       class' documentation for additional information.

       GetSupportedRules

       List all rules that are supported by the given VideoAnalyticsConfiguration. The result of this method may
       depend on the overall Video analytics configuration of the device, which is available via the current set
       of profiles.

       Returns a ONVIF::Analytics::Elements::GetSupportedRulesResponse object.

        $response = $interface->GetSupportedRules( {
           ConfigurationToken => $some_value, # ReferenceToken
         },,
        );

       CreateRules

       GetCompatibleVideoAnalyticsConfigurations.

       Returns a ONVIF::Analytics::Elements::CreateRulesResponse object.

        $response = $interface->CreateRules( {
           ConfigurationToken => $some_value, # ReferenceToken
           Rule =>  { # ONVIF::Analytics::Types::Config
             Parameters =>  { # ONVIF::Analytics::Types::ItemList
               SimpleItem => ,
               ElementItem =>  {
               },
               Extension =>  { # ONVIF::Analytics::Types::ItemListExtension
               },
             },
           },
         },,
        );

       DeleteRules

       Remove one or more rules from a VideoAnalyticsConfiguration.

       Returns a ONVIF::Analytics::Elements::DeleteRulesResponse object.

        $response = $interface->DeleteRules( {
           ConfigurationToken => $some_value, # ReferenceToken
           RuleName =>  $some_value, # string
         },,
        );

       GetRules

       List the currently assigned set of rules of a VideoAnalyticsConfiguration.

       Returns a ONVIF::Analytics::Elements::GetRulesResponse object.

        $response = $interface->GetRules( {
           ConfigurationToken => $some_value, # ReferenceToken
         },,
        );

       ModifyRules

       Modify one or more rules of a VideoAnalyticsConfiguration. The rules are referenced by their names.

       Returns a ONVIF::Analytics::Elements::ModifyRulesResponse object.

        $response = $interface->ModifyRules( {
           ConfigurationToken => $some_value, # ReferenceToken
           Rule =>  { # ONVIF::Analytics::Types::Config
             Parameters =>  { # ONVIF::Analytics::Types::ItemList
               SimpleItem => ,
               ElementItem =>  {
               },
               Extension =>  { # ONVIF::Analytics::Types::ItemListExtension
               },
             },
           },
         },,
        );

Name

       ONVIF::Analytics::Interfaces::Analytics::RuleEnginePort - SOAP Interface for the Analytics Web Service

Service Analytics

PortRuleEnginePort

Synopsis

        use ONVIF::Analytics::Interfaces::Analytics::RuleEnginePort;
        my $interface = ONVIF::Analytics::Interfaces::Analytics::RuleEnginePort->new();

        my $response;
        $response = $interface->GetSupportedRules();
        $response = $interface->CreateRules();
        $response = $interface->DeleteRules();
        $response = $interface->GetRules();
        $response = $interface->ModifyRules();

See Also