GetSavedSearchResult

data class GetSavedSearchResult(val azureApiVersion: String, val category: String, val displayName: String, val etag: String? = null, val functionAlias: String? = null, val functionParameters: String? = null, val id: String, val name: String, val query: String, val tags: List<TagResponse>? = null, val type: String, val version: Double? = null)

Value object for saved search results.

Constructors

Link copied to clipboard
constructor(azureApiVersion: String, category: String, displayName: String, etag: String? = null, functionAlias: String? = null, functionParameters: String? = null, id: String, name: String, query: String, tags: List<TagResponse>? = null, type: String, version: Double? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The Azure API version of the resource.

Link copied to clipboard

The category of the saved search. This helps the user to find a saved search faster.

Link copied to clipboard

Saved search display name.

Link copied to clipboard
val etag: String? = null

The ETag of the saved search. To override an existing saved search, use "*" or specify the current Etag

Link copied to clipboard
val functionAlias: String? = null

The function alias if query serves as a function.

Link copied to clipboard

The optional function parameters if query serves as a function. Value should be in the following format: 'param-name1:type1 = default_value1, param-name2:type2 = default_value2'. For more examples and proper syntax please refer to https://docs.microsoft.com/en-us/azure/kusto/query/functions/user-defined-functions.

Link copied to clipboard
val id: String

Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}

Link copied to clipboard

The name of the resource

Link copied to clipboard

The query expression for the saved search.

Link copied to clipboard
val tags: List<TagResponse>? = null

The tags attached to the saved search.

Link copied to clipboard

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Link copied to clipboard
val version: Double? = null

The version number of the query language. The current version is 2 and is the default.