public void WAFRegionalGetSqlInjectionMatchSet()
        {
            #region getsqlinjectionmatchset-1475005940137

            var response = client.GetSqlInjectionMatchSet(new GetSqlInjectionMatchSetRequest
            {
                SqlInjectionMatchSetId = "example1ds3t-46da-4fdb-b8d5-abc321j569j5"
            });

            SqlInjectionMatchSet sqlInjectionMatchSet = response.SqlInjectionMatchSet;

            #endregion
        }
        public void WAFRegionalCreateSqlInjectionMatchSet()
        {
            #region createsqlinjectionmatchset-1474492796105

            var response = client.CreateSqlInjectionMatchSet(new CreateSqlInjectionMatchSetRequest
            {
                ChangeToken = "abcd12f2-46da-4fdb-b8d5-fbd4c466928f",
                Name        = "MySQLInjectionMatchSet"
            });

            string changeToken = response.ChangeToken;
            SqlInjectionMatchSet sqlInjectionMatchSet = response.SqlInjectionMatchSet;

            #endregion
        }