日本熟妇hd丰满老熟妇,中文字幕一区二区三区在线不卡 ,亚洲成片在线观看,免费女同在线一区二区

獲取鏡像列表

接口

list_images

參數

屬性 類型 是否必須 描述
next_marker string 下一頁起始資源標識符, 最后一頁該值為空。
max_item_count int 實際返回最大資源數量。默認值50,最大值100。
type string App 類型。

返回值

list_images方法返回一個 ListResponse 對象,包含了Image對象的集合。請參閱Image類的描述,了解Image對象的屬性。

屬性 類型 描述
NextMarker string 下一頁起始資源標識符, 最后一頁該值為空。
Items list Image類型的列表

例子

Python源碼:

  1. import time
  2. import batchcompute
  3. from batchcompute import CN_SHENZHEN as REGION
  4. from batchcompute import Client, ClientError
  5. ACCESS_KEY_ID = 'Your Access Key Id'
  6. ACCESS_KEY_SECRET = 'Your Access Key Secret'
  7. client = Client(REGION, ACCESS_KEY_ID, ACCESS_KEY_SECRET)
  8. def list_images():
  9. try:
  10. marker = ""
  11. max_item = 2
  12. image_cnt = 0
  13. image_type = '' #'System'
  14. while 1:
  15. response = client.list_images(marker, max_item, image_type)
  16. marker = response.NextMarker
  17. image_cnt += len(response.Items)
  18. for image in response.Items:
  19. print (image.Id, image.Platform)
  20. if marker.strip() == '':
  21. break
  22. print 'Total images: ', image_cnt
  23. except ClientError, e:
  24. print (e.get_status_code(), e.get_code(), e.get_requestid(), e.get_msg())
  25. if __name__ == '__main__':
  26. list_images()

上面例子是獲取自定義鏡像的列表,如您需要獲取官方鏡像,請修改 image_type 為 ‘System’。

執行結果:

  1. img-6ki7te6grlhbv42kn8a000 : Windows
  2. img-6ki7te6grlhbv42kn8a001 : Linux
  3. img-6ki7te6grlhbv42kn8a002 : Windows
  4. img-6ki7te6grlhbv42kn8a003 : Windows
  5. img-6kie8e832lnov8gg50k004 : Linux
  6. img-6kir9pdp2lg6220g418000 : Windows
  7. Total images: 6