/// <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>
 public static object Reset(this IPolicyOperations operations, string tenantBaseUrl, string tee, string policyJws)
 {
     return(operations.ResetAsync(tenantBaseUrl, tee, policyJws).GetAwaiter().GetResult());
 }