DeploymentScriptsOperationsExtensions.GetLogsDefaultAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets deployment script logs for a given deployment script name.
public static System.Threading.Tasks.Task<Microsoft.Azure.Management.ResourceManager.Models.ScriptLog> GetLogsDefaultAsync (this Microsoft.Azure.Management.ResourceManager.IDeploymentScriptsOperations operations, string resourceGroupName, string scriptName, int? tail = default, System.Threading.CancellationToken cancellationToken = default);
static member GetLogsDefaultAsync : Microsoft.Azure.Management.ResourceManager.IDeploymentScriptsOperations * string * string * Nullable<int> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Management.ResourceManager.Models.ScriptLog>
<Extension()>
Public Function GetLogsDefaultAsync (operations As IDeploymentScriptsOperations, resourceGroupName As String, scriptName As String, Optional tail As Nullable(Of Integer) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of ScriptLog)
Parameters
- operations
- IDeploymentScriptsOperations
The operations group for this extension method.
- resourceGroupName
- String
The name of the resource group. The name is case insensitive.
- scriptName
- String
Name of the deployment script.
The number of lines to show from the tail of the deployment script log. Valid value is a positive number up to 1000. If 'tail' is not provided, all available logs are shown up to container instance log capacity of 4mb.
- cancellationToken
- CancellationToken
The cancellation token.
Returns
Applies to
Azure SDK for .NET