private void CreateBucket()
        {
            _windowElements.WriteLog("Start Of Create Bucket");

            if (!CheckBucket())
            {
                var bucket = _bucketsApi.CreateBucketByProject(Application.cloudProjectId, new BucketCreate("", "IvoryFox Bucket", Guid.Parse(Application.cloudProjectId)));
                _windowElements.WriteLog($"Created Bucket {bucket.Name} \n");
            }
        }