public void getCloudDBZoneConfig()
        {
            string name = mConfig.getCloudDBZoneName();

            CloudDBZoneConfig.CloudDBZoneAccessProperty accessProperty = mConfig.getAccessProperty();
            CloudDBZoneConfig.CloudDBZoneSyncProperty   asyncProperty  = mConfig.getSyncProperty();
            bool isEncrypted           = mConfig.isEncrypted();
            bool getPersistenceEnabled = mConfig.getPersistenceEnabled();
            long capacity = mConfig.getCapacity();

            TestTip.Inst.ShowText($"CloudDBZoneName: {name}");
            TestTip.Inst.ShowText($"CloudDBZoneAccessProperty: {accessProperty}");
            TestTip.Inst.ShowText($"CloudDBZoneAsyncProperty: {asyncProperty}");
            TestTip.Inst.ShowText($"CloudDBZone isEncrypted: {isEncrypted}");
            TestTip.Inst.ShowText($"CloudDBZone getPersistenceEnabled: {getPersistenceEnabled}");
            TestTip.Inst.ShowText($"CloudDBZone capacity : {capacity}");
        }