public void SetConfigValuesCommandTest()
        {
            // construct a Jetstream service client
            JetstreamServiceClient client = new JetstreamServiceClient(JetstreamConfiguration.Url, JetstreamConfiguration.ApplicationAccessKey);

            try
            {
                // create and configure the request object
                SetConfigValuesCommandRequest request = new SetConfigValuesCommandRequest();
                request.LogicalDeviceId = LogicalDeviceId;

                //Parameters
                var param = new List<Tuple<string, string>>
                    {
                    Tuple.Create( "IP", "10.6.20.241" ),
                    Tuple.Create( "SubNet", "255.255.255.0")    
                    };
                request.Parameters = param;

                // call the Jetstream ReST endpoint 
                client.SetConfigValuesCommand(request);
            }
            catch (Exception ex)
            {
                Assert.Fail(ex.ToString());
            }
        }