DATASOURCE::NAS::FileSystems類型用於查詢檔案系統資訊。
文法
{
"Type": "DATASOURCE::NAS::FileSystems",
"Properties": {
"FileSystemType": String,
"FileSystemId": String,
"RefreshOptions": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
FileSystemType | String | 否 | 是 | 檔案系統類型。 | 取值:
|
FileSystemId | String | 否 | 是 | 檔案系統ID。 | 無 |
RefreshOptions | String | 否 | 是 | 當資源棧更新時,資料來源資源的重新整理策略。 | 有效值:
|
返回資料(Fn::GetAtt)
FileSystemIds:檔案系統ID列表。
FileSystems:檔案系統詳情列表。
屬性名稱 | 類型 | 描述 | 約束 |
FileSystemIds | List | 檔案系統ID列表。 | 無 |
FileSystems | List | 檔案系統詳情列表。 | 無 |
Status | String | 檔案系統的狀態。 | 取值:
|
MeteredIASize | String | 低頻介質儲存用量。 | 單位:Byte。 |
Capacity | String | 檔案系統的容量。 | 單位:GiB。 |
CreateTime | String | 檔案系統的建立時間。 | 取值樣本:2017-05-27T15:43:06CST。 |
ChargeType | String | 計費類型。 | 取值:
|
Tags | List | 檔案系統的標籤資訊集合。 | 無 |
StorageType | String | 儲存類型。 | 取值:
|
MeteredSize | String | 檔案系統的使用量。 | 上一小時的最大使用量。 單位:Byte。 |
Description | String | 檔案系統的描述資訊。 | 無 |
Bandwidth | String | 檔案系統的頻寬。 | 單位:MB/s。 當FileSystemType取值為all、extreme或cpfs時,返回該參數。 |
SupportedFeatures | List | 檔案系統支援的功能。 | 取值:
|
Version | String | 檔案系統的版本號碼。 | 當FileSystemType取值為extreme時,返回該參數。 |
ProtocolType | String | 檔案系統的協議類型。 | 取值:
|
MountTargets | List | 掛載點資訊集合。 | 無 |
KMSKeyId | String | KMS密鑰ID。 | 無 |
FileSystemType | String | 檔案系統類型。 | 取值:
|
FileSystemId | String | 檔案系統ID。 | 無 |
EncryptType | Number | 加密類型。 | 取值:
|
Ldap | List | LDAP配置資訊集合。 | 當FileSystemType取值為cpfs時,返回該參數。 |
ExpiredTime | String | 檔案系統的到期時間。 | 取值樣本:2017-08-27T15:43:06CST。 |
ZoneId | String | 檔案系統所在的可用性區域ID。 | 無 |
Packages | List | 儲存包資訊集合。 | 無 |
樣本
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"FileSystemId": {
"Type": "String"
}
},
"Resources": {
"FileSystems": {
"Type": "DATASOURCE::NAS::FileSystems",
"Properties": {
"FileSystemId": {
"Ref": "FileSystemId"
}
}
}
},
"Outputs": {
"FileSystems": {
"Description": "The list of file systems.",
"Value": {
"Fn::GetAtt": [
"FileSystems",
"FileSystems"
]
}
},
"FileSystemIds": {
"Description": "The list of file system IDs.",
"Value": {
"Fn::GetAtt": [
"FileSystems",
"FileSystemIds"
]
}
}
}
}
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
FileSystemId:
Type: String
Resources:
FileSystems:
Type: DATASOURCE::NAS::FileSystems
Properties:
FileSystemId:
Ref: FileSystemId
Outputs:
FileSystems:
Description: The list of file systems.
Value:
Fn::GetAtt:
- FileSystems
- FileSystems
FileSystemIds:
Description: The list of file system IDs.
Value:
Fn::GetAtt:
- FileSystems
- FileSystemIds