/// <summary> /// Updates the properties of a billing subscription. Currently, cost center /// can be updated. The operation is supported only for billing accounts with /// agreement type Microsoft Customer Agreement. /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='billingAccountName'> /// The ID that uniquely identifies a billing account. /// </param> /// <param name='parameters'> /// Request parameters that are provided to the update billing subscription /// operation. /// </param> /// <param name='cancellationToken'> /// The cancellation token. /// </param> public static async Task <BillingSubscription> UpdateAsync(this IBillingSubscriptionsOperations operations, string billingAccountName, BillingSubscription parameters, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.UpdateWithHttpMessagesAsync(billingAccountName, parameters, null, cancellationToken).ConfigureAwait(false)) { return(_result.Body); } }