Class DiagnosticData
- java.lang.Object
-
- com.microsoft.azure.management.appservice.DiagnosticData
-
public class DiagnosticData extends Object
Set of data with rendering instructions.
-
-
Constructor Summary
Constructors Constructor Description DiagnosticData()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RenderingrenderingProperties()Get properties that describe how the table should be rendered.DataTableResponseObjecttable()Get data in table form.DiagnosticDatawithRenderingProperties(Rendering renderingProperties)Set properties that describe how the table should be rendered.DiagnosticDatawithTable(DataTableResponseObject table)Set data in table form.
-
-
-
Method Detail
-
table
public DataTableResponseObject table()
Get data in table form.- Returns:
- the table value
-
withTable
public DiagnosticData withTable(DataTableResponseObject table)
Set data in table form.- Parameters:
table- the table value to set- Returns:
- the DiagnosticData object itself.
-
renderingProperties
public Rendering renderingProperties()
Get properties that describe how the table should be rendered.- Returns:
- the renderingProperties value
-
withRenderingProperties
public DiagnosticData withRenderingProperties(Rendering renderingProperties)
Set properties that describe how the table should be rendered.- Parameters:
renderingProperties- the renderingProperties value to set- Returns:
- the DiagnosticData object itself.
-
-