共用方式為


RecommendedActionImplementationInfo Constructors

Definition

Overloads

RecommendedActionImplementationInfo()

Initializes a new instance of the RecommendedActionImplementationInfo class.

RecommendedActionImplementationInfo(Nullable<ImplementationMethod>, String)

Initializes a new instance of the RecommendedActionImplementationInfo class.

RecommendedActionImplementationInfo()

Initializes a new instance of the RecommendedActionImplementationInfo class.

public RecommendedActionImplementationInfo ();
Public Sub New ()

Applies to

RecommendedActionImplementationInfo(Nullable<ImplementationMethod>, String)

Initializes a new instance of the RecommendedActionImplementationInfo class.

public RecommendedActionImplementationInfo (Microsoft.Azure.Management.Sql.Models.ImplementationMethod? method = default, string script = default);
new Microsoft.Azure.Management.Sql.Models.RecommendedActionImplementationInfo : Nullable<Microsoft.Azure.Management.Sql.Models.ImplementationMethod> * string -> Microsoft.Azure.Management.Sql.Models.RecommendedActionImplementationInfo
Public Sub New (Optional method As Nullable(Of ImplementationMethod) = Nothing, Optional script As String = Nothing)

Parameters

method
Nullable<ImplementationMethod>

Gets the method in which this recommended action can be manually implemented. e.g., TSql, AzurePowerShell. Possible values include: 'TSql', 'AzurePowerShell'

script
String

Gets the manual implementation script. e.g., T-SQL script that could be executed on the database.

Applies to