This discussion has been locked. The information referenced herein may be inaccurate due to age, software updates, or external references.
You can no longer post new replies to this discussion. If you have a similar question you can start a new discussion in this forum.

SDK or API code to monitor wireless controller in List resources.

How i can enable wireless controller using API or SDK located in list resources. Also some devices have storage when you run list resources i want to enable this as well. Please help. 

Parents
  • You'll need to add a new object in the Orion.Pollers entity with the following parmeters:

    Enabled System.Boolean
    NetObject System.String
    NetObjectID System.Int32
    NetObjectType System.String
    PollerType System.String

    Best bet is to look at one where you've already "checked" this in the poller entity and capture that poller type name.  Should be something with "wireless" in the name..

    In PowerShell it would look something like this:

    New-SwisObject -SwisConnection $SwisConnection -EntityType 'Orion.Pollers' -Properties @{
        Enabled = $true;
        NetObject = "N:34";
        NetObjectID = 34;
        NetObjectType = "N";
        PollerType = "PollerNameGoesHere"
    }

Reply
  • You'll need to add a new object in the Orion.Pollers entity with the following parmeters:

    Enabled System.Boolean
    NetObject System.String
    NetObjectID System.Int32
    NetObjectType System.String
    PollerType System.String

    Best bet is to look at one where you've already "checked" this in the poller entity and capture that poller type name.  Should be something with "wireless" in the name..

    In PowerShell it would look something like this:

    New-SwisObject -SwisConnection $SwisConnection -EntityType 'Orion.Pollers' -Properties @{
        Enabled = $true;
        NetObject = "N:34";
        NetObjectID = 34;
        NetObjectType = "N";
        PollerType = "PollerNameGoesHere"
    }

Children
No Data