Consulta informações sobre uma classe de plug-in.
Sintaxe
{
"Type": "DATASOURCE::APIG::PluginClass",
"Properties": {
"PluginClassId": String,
"RefreshOptions": String
}
}
Propriedades
|
Propriedade |
Tipo |
Obrigatória |
Editável |
Descrição |
Restrição |
|
PluginClassId |
String |
Sim |
Sim |
ID da classe de plug-in. |
Nenhuma. |
|
RefreshOptions |
String |
Não |
Sim |
Política de atualização dos recursos de source de dados ao atualizar a pilha. |
Valores válidos:
|
Valores de retorno
Fn::GetAtt
Type: tipo da classe de plug-in.
Description: descrição da classe de plug-in.
PluginClassName: nome da classe de plug-in.
Alias: alias da classe de plug-in.
WasmLanguage: tipo de linguagem WebAssembly (Wasm).
Document: documento do plug-in.
Exemplos
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
PluginClassId:
Type: String
Description:
en: The ID of the plugin class.
Required: true
Resources:
ExtensionDataSource:
Type: DATASOURCE::APIG::PluginClass
Properties:
PluginClassId:
Ref: PluginClassId
Outputs:
Type:
Description: The type of the plugin class.
Value:
Fn::GetAtt:
- ExtensionDataSource
- Type
Description:
Description: The description of the plugin class.
Value:
Fn::GetAtt:
- ExtensionDataSource
- Description
PluginClassName:
Description: The name of the plugin class.
Value:
Fn::GetAtt:
- ExtensionDataSource
- PluginClassName
Alias:
Description: The alias of the plugin class.
Value:
Fn::GetAtt:
- ExtensionDataSource
- Alias
WasmLanguage:
Description: Wasm language.
Value:
Fn::GetAtt:
- ExtensionDataSource
- WasmLanguage
Document:
Description: The document of the plugin.
Value:
Fn::GetAtt:
- ExtensionDataSource
- Document
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"PluginClassId": {
"Type": "String",
"Description": {
"en": "The ID of the plugin class."
},
"Required": true
}
},
"Resources": {
"ExtensionDataSource": {
"Type": "DATASOURCE::APIG::PluginClass",
"Properties": {
"PluginClassId": {
"Ref": "PluginClassId"
}
}
}
},
"Outputs": {
"Type": {
"Description": "The type of the plugin class.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"Type"
]
}
},
"Description": {
"Description": "The description of the plugin class.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"Description"
]
}
},
"PluginClassName": {
"Description": "The name of the plugin class.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"PluginClassName"
]
}
},
"Alias": {
"Description": "The alias of the plugin class.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"Alias"
]
}
},
"WasmLanguage": {
"Description": "Wasm language.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"WasmLanguage"
]
}
},
"Document": {
"Description": "The document of the plugin.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"Document"
]
}
}
}
}