Azure 匯入/匯出服務中繼資料和屬性檔案格式
您可以針對匯入或匯出作業中的一或多個 blob 指定中繼資料和屬性。 若要針對建立為匯入作業一部分的 blob 設定中繼資料或屬性,您可在包含要匯入資料的硬碟上提供中繼資料或屬性檔案。 若為匯出作業,中繼資料和屬性會寫入至中繼資料或屬性檔案 (包含在傳回給您的硬碟上)。
中繼資料檔案格式
中繼資料檔案的格式如下所示:
<?xml version="1.0" encoding="UTF-8"?>
<Metadata>
[<metadata-name-1>metadata-value-1</metadata-name-1>]
[<metadata-name-2>metadata-value-2</metadata-name-2>]
. . .
</Metadata>
XML 元素 | 類型 | 描述 |
---|---|---|
Metadata |
根元素 | 中繼資料檔案的根項目。 |
metadata-name |
字串 | 選擇性。 XML 元素可指定 blob 的中繼資料名稱,而其值可指定中繼資料設定的值。 |
屬性檔案格式
屬性檔案的格式如下所示:
<?xml version="1.0" encoding="UTF-8"?>
<Properties>
[<Last-Modified>date-time-value</Last-Modified>]
[<Etag>etag</Etag>]
[<Content-Length>size-in-bytes<Content-Length>]
[<Content-Type>content-type</Content-Type>]
[<Content-MD5>content-md5</Content-MD5>]
[<Content-Encoding>content-encoding</Content-Encoding>]
[<Content-Language>content-language</Content-Language>]
[<Cache-Control>cache-control</Cache-Control>]
</Properties>
XML 元素 | 類型 | 描述 |
---|---|---|
Properties |
根元素 | 屬性檔案的根元素。 |
Last-Modified |
字串 | 選擇性。 Blob 上次修改時間。 僅限匯出作業。 |
Etag |
字串 | 選擇性。 Blob 的 ETag 值。 僅限匯出作業。 |
Content-Length |
字串 | 選擇性。 Blob 大小 (以位元組為單位)。 僅限匯出作業。 |
Content-Type |
字串 | 選擇性。 Blob 的內容類型。 |
Content-MD5 |
字串 | 選擇性。 Blob 的 MD5 雜湊。 |
Content-Encoding |
字串 | 選擇性。 Blob 的內容編碼。 |
Content-Language |
字串 | 選擇性。 Blob 的內容語言。 |
Cache-Control |
字串 | 選擇性。 Blob 的快取控制字串。 |
後續步驟
如需有關設定 blob 中繼資料和屬性的詳細規則,請參閱 設定 blob 屬性、 設定 blob 中繼資料,以及 設定和取得 blob 資源的屬性和中繼資料 。