Class ResourceGroupExportResult
- Namespace
- Azure.ResourceManager.Resources.Models
- Assembly
- Azure.ResourceManager.dll
Resource group export result.
public class ResourceGroupExportResult : IJsonModel<ResourceGroupExportResult>, IPersistableModel<ResourceGroupExportResult>
- Inheritance
-
ResourceGroupExportResult
- Implements
-
IJsonModel<ResourceGroupExportResult>IPersistableModel<ResourceGroupExportResult>
- Inherited Members
Properties
Error
The template export error.
public ResponseError Error { get; }
Property Value
- ResponseError
Template
The template content.
To assign an object to this property use System.BinaryData.FromObjectAsJson``1(``0,System.Text.Json.JsonSerializerOptions).
To assign an already formatted json string to this property use System.BinaryData.FromString(System.String).
Examples:
- BinaryData.FromObjectAsJson("foo")Creates a payload of "foo".
- BinaryData.FromString("\"foo\"")Creates a payload of "foo".
- BinaryData.FromObjectAsJson(new { key = "value" })Creates a payload of { "key": "value" }.
- BinaryData.FromString("{\"key\": \"value\"}")Creates a payload of { "key": "value" }.
public BinaryData Template { get; }
Property Value
- BinaryData