/// <summary>
 /// Deletes a tenant license based on its key.
 /// </summary>
 /// <remarks>
 /// Host only. Requires authentication.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='deleteTenantLicenseParameters'>
 /// </param>
 public static void DeleteTenantLicense(this IHostLicenses operations, DeleteTenantLicenseParameters deleteTenantLicenseParameters)
 {
     operations.DeleteTenantLicenseAsync(deleteTenantLicenseParameters).GetAwaiter().GetResult();
 }
Beispiel #2
0
 /// <summary>
 /// Deletes a tenant license based on its key.
 /// </summary>
 /// <remarks>
 /// Client Credentials Flow required permissions: Administration or
 /// Administration.Write.
 ///
 /// Host only. Requires authentication.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='body'>
 /// </param>
 public static void DeleteTenantLicense(this IHostLicenses operations, HostLicensesDeleteTenantLicenseParameters body = default(HostLicensesDeleteTenantLicenseParameters))
 {
     operations.DeleteTenantLicenseAsync(body).GetAwaiter().GetResult();
 }