Workbook Constructors

Definition

Overloads

Workbook()

Initializes a new instance of the Workbook class.

Workbook(String, String, String, String, String, String, String, String, String, String, IDictionary<String,String>, String, String, String, IList<String>, String)

Initializes a new instance of the Workbook class.

Workbook()

Initializes a new instance of the Workbook class.

public Workbook ();
Public Sub New ()

Applies to

Workbook(String, String, String, String, String, String, String, String, String, String, IDictionary<String,String>, String, String, String, IList<String>, String)

Initializes a new instance of the Workbook class.

public Workbook (string workbookName, string serializedData, string workbookId, string sharedTypeKind, string category, string userId, string id = default, string name = default, string type = default, string location = default, System.Collections.Generic.IDictionary<string,string> tags = default, string kind = default, string version = default, string timeModified = default, System.Collections.Generic.IList<string> workbookTags = default, string sourceResourceId = default);
new Microsoft.Azure.Management.ApplicationInsights.Management.Models.Workbook : string * string * string * string * string * string * string * string * string * string * System.Collections.Generic.IDictionary<string, string> * string * string * string * System.Collections.Generic.IList<string> * string -> Microsoft.Azure.Management.ApplicationInsights.Management.Models.Workbook
Public Sub New (workbookName As String, serializedData As String, workbookId As String, sharedTypeKind As String, category As String, userId As String, Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional location As String = Nothing, Optional tags As IDictionary(Of String, String) = Nothing, Optional kind As String = Nothing, Optional version As String = Nothing, Optional timeModified As String = Nothing, Optional workbookTags As IList(Of String) = Nothing, Optional sourceResourceId As String = Nothing)

Parameters

workbookName
String

The user-defined name of the workbook.

serializedData
String

Configuration of this particular workbook. Configuration data is a string containing valid JSON

workbookId
String

Internally assigned unique id of the workbook definition.

sharedTypeKind
String

Enum indicating if this workbook definition is owned by a specific user or is shared between all users with access to the Application Insights component. Possible values include: 'user', 'shared'

category
String

Workbook category, as defined by the user at creation time.

userId
String

Unique user id of the specific user that owns this workbook.

id
String

Azure resource Id

name
String

Azure resource name

type
String

Azure resource type

location
String

Resource location

tags
IDictionary<String,String>

Resource tags

kind
String

The kind of workbook. Choices are user and shared. Possible values include: 'user', 'shared'

version
String

This instance's version of the data model. This can change as new features are added that can be marked workbook.

timeModified
String

Date and time in UTC of the last modification that was made to this workbook definition.

workbookTags
IList<String>

A list of 0 or more tags that are associated with this workbook definition

sourceResourceId
String

Optional resourceId for a source resource.

Applies to