/// <summary>
 /// Resets the attestation policy for the specified tenant and reverts to the
 /// default policy.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='tenantBaseUrl'>
 /// The tenant name, for example https://mytenant.attest.azure.net.
 /// </param>
 /// <param name='tee'>
 /// Specifies the trusted execution environment to be used to validate the
 /// evidence. Possible values include: 'SgxEnclave', 'OpenEnclave',
 /// 'CyResComponent', 'AzureGuest'
 /// </param>
 /// <param name='policyJws'>
 /// JSON Web Signature with an empty policy document
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <object> ResetAsync(this IPolicyOperations operations, string tenantBaseUrl, string tee, string policyJws, CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.ResetWithHttpMessagesAsync(tenantBaseUrl, tee, policyJws, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }