/// <summary>
 /// Creates a Microsoft team to investigate the incident by sharing information
 /// and insights between participants.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group. The name is case insensitive.
 /// </param>
 /// <param name='workspaceName'>
 /// The name of the workspace.
 /// </param>
 /// <param name='incidentId'>
 /// Incident ID
 /// </param>
 /// <param name='teamProperties'>
 /// Team properties
 /// </param>
 public static TeamInformation CreateTeam(this IIncidentsOperations operations, string resourceGroupName, string workspaceName, string incidentId, TeamProperties teamProperties)
 {
     return(operations.CreateTeamAsync(resourceGroupName, workspaceName, incidentId, teamProperties).GetAwaiter().GetResult());
 }