ConoHaNet.OpenStackMember.ListGlanceImages C# (CSharp) Method

ListGlanceImages() public method

public ListGlanceImages ( int limit = null, string marker = null, string name = null, string visibility = null, string memberStatus = null, string owner = null, string status = null, int sizeMin = null, int sizeMax = null, string sortKey = null, string sortDir = null, string tag = null ) : IEnumerable
limit int
marker string
name string
visibility string
memberStatus string
owner string
status string
sizeMin int
sizeMax int
sortKey string
sortDir string
tag string
return IEnumerable
        public IEnumerable<CloudImage> ListGlanceImages(int? limit = null, string marker = null, string name = null, string visibility = null, string memberStatus = null, string owner = null, string status = null, int? sizeMin = null, int? sizeMax = null, string sortKey = null, string sortDir = null, string tag = null)
        {
            return ImagesProvider.ListGlanceImages(limit, marker, name, visibility, memberStatus, owner, status, sizeMin, sizeMax, sortKey, sortDir, tag, this.DefaultRegion, this.Identity);
        }

Usage Example

        public void GetGlanceImageTest()
        {
            var os = new OpenStackMember(UserName, Password, TenantName, TenantId);
            var images = os.ListGlanceImages();
            Assert.IsNotNull(images);
            foreach (var i in images)
            {
                var image = os.GetGlanceImage(i.Id);
                Assert.IsNotNull(image);

            }
        }
All Usage Examples Of ConoHaNet.OpenStackMember::ListGlanceImages
OpenStackMember