取得影像存放區內容
取得映像存放區內容資訊。
傳回位於所指定 contentPath 映像存放區內容的相關資訊。 contentPath 是相對於映像存放區根目錄的路徑。
要求
方法 | 要求 URI |
---|---|
GET | /ImageStore/{contentPath}?api-version=6.2&timeout={timeout} |
參數
名稱 | 類型 | 必要 | Location |
---|---|---|---|
contentPath |
字串 | 是 | 路徑 |
api-version |
字串 | 是 | 查詢 |
timeout |
整數 (int64) | No | 查詢 |
contentPath
類型:字串
必要:是
映像存放區中檔案或資料夾與其根的相對路徑。
api-version
類型:字串
必要:是
預設:6.2
API 的版本。 這是必要參數,其值必須是 '6.2'。
Service Fabric REST API 版本是以 API 引進或變更的執行時間版本為基礎。 Service Fabric 執行時間支援多個版本的 API。 此版本是 API 的最新支援版本。 如果傳遞較低的 API 版本,傳回的回應可能會與本規格中所述的回應不同。
此外,執行時間也接受高於最新支援版本的任何版本,最高為目前版本的執行時間。 因此,如果最新的 API 版本是 6.0,而執行時間是 6.1,則執行時間將會接受該 API 的版本 6.1。 不過,API 的行為會根據記載的 6.0 版本。
timeout
類型:整數 (int64)
必要:否
預設:60
InclusiveMaximum: 4294967295
InclusiveMinimum: 1
用來執行作業的伺服器逾時 (以秒為單位)。 此逾時指定了用戶端願意等候要求作業完成的持續時間。 這個參數的預設值是 60 秒。
回應
HTTP 狀態碼 | 描述 | 回應結構描述 |
---|---|---|
200 (確定) | 成功的作業會傳回 200 狀態碼和要求的影像存放區內容資訊。 |
ImageStoreContent |
所有其他狀態碼 | 詳細的錯誤回應。 |
FabricError |
範例
取得指定相對路徑下影像存放區內容的相關資訊
此範例示範如何在指定的相對路徑下取得影像存放區內容。
要求
GET http://localhost:19080/ImageStore/Store\CalcServiceApp?api-version=6.2
200 回應
主體
{
"StoreFiles": [
{
"StoreRelativePath": "Store\\CalcServiceApp\\ApplicationManifest.2.0.xml",
"FileVersion": {
"EpochDataLossNumber": "131510254310497004",
"VersionNumber": "23",
"EpochConfigurationNumber": "25769803776"
},
"FileSize": "897",
"ModifiedDate": "2017-09-28T17:44:22.609Z"
},
{
"StoreRelativePath": "Store\\CalcServiceApp\\CalcService.Code.2.0.checksum",
"FileVersion": {
"EpochDataLossNumber": "131510254310497004",
"VersionNumber": "25",
"EpochConfigurationNumber": "25769803776"
},
"FileSize": "66",
"ModifiedDate": "2017-09-28T17:44:22.468Z"
},
{
"StoreRelativePath": "Store\\CalcServiceApp\\CalcService.Config.1.0.checksum",
"FileVersion": {
"EpochDataLossNumber": "131510254310497004",
"VersionNumber": "26",
"EpochConfigurationNumber": "25769803776"
},
"FileSize": "66",
"ModifiedDate": "2017-09-28T17:44:22.468Z"
},
{
"StoreRelativePath": "Store\\CalcServiceApp\\CalcService.Data.2.0.checksum",
"FileVersion": {
"EpochDataLossNumber": "131510254310497004",
"VersionNumber": "27",
"EpochConfigurationNumber": "25769803776"
},
"FileSize": "66",
"ModifiedDate": "2017-09-28T17:44:22.468Z"
},
{
"StoreRelativePath": "Store\\CalcServiceApp\\CalcService.Manifest.2.0.xml",
"FileVersion": {
"EpochDataLossNumber": "131510254310497004",
"VersionNumber": "19",
"EpochConfigurationNumber": "25769803776"
},
"FileSize": "744",
"ModifiedDate": "2017-09-28T17:44:22.578Z"
},
{
"StoreRelativePath": "Store\\CalcServiceApp\\CalcService.Manifest.2.0.xml.checksum",
"FileVersion": {
"EpochDataLossNumber": "131510254310497004",
"VersionNumber": "24",
"EpochConfigurationNumber": "25769803776"
},
"FileSize": "66",
"ModifiedDate": "2017-09-28T17:44:22.484Z"
}
],
"StoreFolders": [
{
"StoreRelativePath": "Store\\CalcServiceApp\\CalcService.Code.2.0",
"FileCount": "2"
},
{
"StoreRelativePath": "Store\\CalcServiceApp\\CalcService.Config.1.0",
"FileCount": "2"
},
{
"StoreRelativePath": "Store\\CalcServiceApp\\CalcService.Data.2.0",
"FileCount": "2"
}
]
}