/// <summary>
        /// Creates the specified CredentialUsageSummary using POST.
        /// </summary>
        /// <param name="credentialUsageSummaryToCreate">The CredentialUsageSummary to create.</param>
        /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
        /// <returns>The created CredentialUsageSummary.</returns>
        public async System.Threading.Tasks.Task <CredentialUsageSummary> CreateAsync(CredentialUsageSummary credentialUsageSummaryToCreate, CancellationToken cancellationToken)
        {
            this.ContentType = "application/json";
            this.Method      = "POST";
            var newEntity = await this.SendAsync <CredentialUsageSummary>(credentialUsageSummaryToCreate, cancellationToken).ConfigureAwait(false);

            this.InitializeCollectionProperties(newEntity);
            return(newEntity);
        }
 /// <summary>
 /// Creates the specified CredentialUsageSummary using POST.
 /// </summary>
 /// <param name="credentialUsageSummaryToCreate">The CredentialUsageSummary to create.</param>
 /// <returns>The created CredentialUsageSummary.</returns>
 public System.Threading.Tasks.Task <CredentialUsageSummary> CreateAsync(CredentialUsageSummary credentialUsageSummaryToCreate)
 {
     return(this.CreateAsync(credentialUsageSummaryToCreate, CancellationToken.None));
 }
 /// <summary>
 /// Initializes any collection properties after deserialization, like next requests for paging.
 /// </summary>
 /// <param name="credentialUsageSummaryToInitialize">The <see cref="CredentialUsageSummary"/> with the collection properties to initialize.</param>
 private void InitializeCollectionProperties(CredentialUsageSummary credentialUsageSummaryToInitialize)
 {
 }
        /// <summary>
        /// Updates the specified CredentialUsageSummary using PATCH.
        /// </summary>
        /// <param name="credentialUsageSummaryToUpdate">The CredentialUsageSummary to update.</param>
        /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
        /// <exception cref="ClientException">Thrown when an object returned in a response is used for updating an object in Microsoft Graph.</exception>
        /// <returns>The updated CredentialUsageSummary.</returns>
        public async System.Threading.Tasks.Task <CredentialUsageSummary> UpdateAsync(CredentialUsageSummary credentialUsageSummaryToUpdate, CancellationToken cancellationToken)
        {
            if (credentialUsageSummaryToUpdate.AdditionalData != null)
            {
                if (credentialUsageSummaryToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.ResponseHeaders) ||
                    credentialUsageSummaryToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.StatusCode))
                {
                    throw new ClientException(
                              new Error
                    {
                        Code    = GeneratedErrorConstants.Codes.NotAllowed,
                        Message = String.Format(GeneratedErrorConstants.Messages.ResponseObjectUsedForUpdate, credentialUsageSummaryToUpdate.GetType().Name)
                    });
                }
            }
            if (credentialUsageSummaryToUpdate.AdditionalData != null)
            {
                if (credentialUsageSummaryToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.ResponseHeaders) ||
                    credentialUsageSummaryToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.StatusCode))
                {
                    throw new ClientException(
                              new Error
                    {
                        Code    = GeneratedErrorConstants.Codes.NotAllowed,
                        Message = String.Format(GeneratedErrorConstants.Messages.ResponseObjectUsedForUpdate, credentialUsageSummaryToUpdate.GetType().Name)
                    });
                }
            }
            this.ContentType = "application/json";
            this.Method      = "PATCH";
            var updatedEntity = await this.SendAsync <CredentialUsageSummary>(credentialUsageSummaryToUpdate, cancellationToken).ConfigureAwait(false);

            this.InitializeCollectionProperties(updatedEntity);
            return(updatedEntity);
        }
Example #5
0
        /// <summary>
        /// Issues the PATCH request.
        /// </summary>
        /// <param name="credentialusagesummary">The CredentialUsageSummary object set with the properties to update.</param>
        /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
        /// <returns>The task to await for async call.</returns>
        public async System.Threading.Tasks.Task <IReportRootGetCredentialUsageSummaryCollectionPage> PatchAsync(CredentialUsageSummary credentialusagesummary,
                                                                                                                 CancellationToken cancellationToken)
        {
            this.Method = "PATCH";
            var response = await this.SendAsync <ReportRootGetCredentialUsageSummaryCollectionResponse>(credentialusagesummary, cancellationToken).ConfigureAwait(false);

            if (response != null && response.Value != null && response.Value.CurrentPage != null)
            {
                if (response.AdditionalData != null)
                {
                    response.Value.AdditionalData = response.AdditionalData;

                    object nextPageLink;
                    response.AdditionalData.TryGetValue("@odata.nextLink", out nextPageLink);

                    var nextPageLinkString = nextPageLink as string;

                    if (!string.IsNullOrEmpty(nextPageLinkString))
                    {
                        response.Value.InitializeNextPageRequest(
                            this.Client,
                            nextPageLinkString);
                    }
                }

                return(response.Value);
            }

            return(null);
        }
Example #6
0
 /// <summary>
 /// Issues the PATCH request.
 /// </summary>
 /// <param name="credentialusagesummary">The CredentialUsageSummary object set with the properties to update.</param>
 /// <returns>The task to await for async call.</returns>
 public System.Threading.Tasks.Task <IReportRootGetCredentialUsageSummaryCollectionPage> PatchAsync(CredentialUsageSummary credentialusagesummary)
 {
     return(this.PatchAsync(credentialusagesummary, CancellationToken.None));
 }