RecommendedIndex Constructors

Definition

Overloads

RecommendedIndex()

Initializes a new instance of the RecommendedIndex class.

RecommendedIndex(String, String, String, Nullable<RecommendedIndexAction>, Nullable<RecommendedIndexState>, Nullable<DateTime>, Nullable<DateTime>, Nullable<RecommendedIndexType>, String, String, IList<String>, IList<String>, String, IList<OperationImpact>, IList<OperationImpact>)

Initializes a new instance of the RecommendedIndex class.

RecommendedIndex()

Initializes a new instance of the RecommendedIndex class.

public RecommendedIndex ();
Public Sub New ()

Applies to

RecommendedIndex(String, String, String, Nullable<RecommendedIndexAction>, Nullable<RecommendedIndexState>, Nullable<DateTime>, Nullable<DateTime>, Nullable<RecommendedIndexType>, String, String, IList<String>, IList<String>, String, IList<OperationImpact>, IList<OperationImpact>)

Initializes a new instance of the RecommendedIndex class.

public RecommendedIndex (string id = default, string name = default, string type = default, Microsoft.Azure.Management.Sql.Fluent.Models.RecommendedIndexAction? action = default, Microsoft.Azure.Management.Sql.Fluent.Models.RecommendedIndexState? state = default, DateTime? created = default, DateTime? lastModified = default, Microsoft.Azure.Management.Sql.Fluent.Models.RecommendedIndexType? indexType = default, string schema = default, string table = default, System.Collections.Generic.IList<string> columns = default, System.Collections.Generic.IList<string> includedColumns = default, string indexScript = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Sql.Fluent.Models.OperationImpact> estimatedImpact = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Sql.Fluent.Models.OperationImpact> reportedImpact = default);
new Microsoft.Azure.Management.Sql.Fluent.Models.RecommendedIndex : string * string * string * Nullable<Microsoft.Azure.Management.Sql.Fluent.Models.RecommendedIndexAction> * Nullable<Microsoft.Azure.Management.Sql.Fluent.Models.RecommendedIndexState> * Nullable<DateTime> * Nullable<DateTime> * Nullable<Microsoft.Azure.Management.Sql.Fluent.Models.RecommendedIndexType> * string * string * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> * string * System.Collections.Generic.IList<Microsoft.Azure.Management.Sql.Fluent.Models.OperationImpact> * System.Collections.Generic.IList<Microsoft.Azure.Management.Sql.Fluent.Models.OperationImpact> -> Microsoft.Azure.Management.Sql.Fluent.Models.RecommendedIndex
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional action As Nullable(Of RecommendedIndexAction) = Nothing, Optional state As Nullable(Of RecommendedIndexState) = Nothing, Optional created As Nullable(Of DateTime) = Nothing, Optional lastModified As Nullable(Of DateTime) = Nothing, Optional indexType As Nullable(Of RecommendedIndexType) = Nothing, Optional schema As String = Nothing, Optional table As String = Nothing, Optional columns As IList(Of String) = Nothing, Optional includedColumns As IList(Of String) = Nothing, Optional indexScript As String = Nothing, Optional estimatedImpact As IList(Of OperationImpact) = Nothing, Optional reportedImpact As IList(Of OperationImpact) = Nothing)

Parameters

id
String
name
String
type
String
action
Nullable<RecommendedIndexAction>

The proposed index action. You can create a missing index, drop an unused index, or rebuild an existing index to improve its performance. Possible values include: 'Create', 'Drop', 'Rebuild'

state
Nullable<RecommendedIndexState>

The current recommendation state. Possible values include: 'Active', 'Pending', 'Executing', 'Verifying', 'Pending Revert', 'Reverting', 'Reverted', 'Ignored', 'Expired', 'Blocked', 'Success'

created
Nullable<DateTime>

The UTC datetime showing when this resource was created (ISO8601 format).

lastModified
Nullable<DateTime>

The UTC datetime of when was this resource last changed (ISO8601 format).

indexType
Nullable<RecommendedIndexType>

The type of index (CLUSTERED, NONCLUSTERED, COLUMNSTORE, CLUSTERED COLUMNSTORE). Possible values include: 'CLUSTERED', 'NONCLUSTERED', 'COLUMNSTORE', 'CLUSTERED COLUMNSTORE'

schema
String

The schema where table to build index over resides

table
String

The table on which to build index.

columns
IList<String>

Columns over which to build index

includedColumns
IList<String>

The list of column names to be included in the index

indexScript
String

The full build index script

estimatedImpact
IList<OperationImpact>

The estimated impact of doing recommended index action.

reportedImpact
IList<OperationImpact>

The values reported after index action is complete.

Applies to