public CognitiveServicesModels.IpRule ToIpRule()
        {
            var result = new CognitiveServicesModels.IpRule();

            result.Value = this.IpAddress;
            return(result);
        }
        public static PSIpRule Create(CognitiveServicesModels.IpRule ipRule)
        {
            var result = new PSIpRule();

            result.IpAddress = ipRule.Value;
            return(result);
        }