| 145 | #[serde(deny_unknown_fields)] |
| 146 | #[dsc_repo_schema(base_name = "export", folder_path = "outputs/resource")] |
| 147 | pub struct ExportResult { |
| 148 | /// The state of the resource as it was returned by the Export method. |
| 149 | #[serde(rename = "actualState")] |
| 150 | pub actual_state: Vec<Value>, |
| 151 | } |
| 152 | |
| 153 | #[derive(Debug, Clone, PartialEq, Deserialize, Serialize, JsonSchema, DscRepoSchema)] |
| 154 | #[serde(deny_unknown_fields)] |
no outgoing calls
no test coverage detected