Beispiel #1
0
        /// <summary>
        /// Updates the specified TrustFramework using PATCH.
        /// </summary>
        /// <param name="trustFrameworkToUpdate">The TrustFramework 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 TrustFramework.</returns>
        public async System.Threading.Tasks.Task <TrustFramework> UpdateAsync(TrustFramework trustFrameworkToUpdate, CancellationToken cancellationToken)
        {
            if (trustFrameworkToUpdate.AdditionalData != null)
            {
                if (trustFrameworkToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.ResponseHeaders) ||
                    trustFrameworkToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.StatusCode))
                {
                    throw new ClientException(
                              new Error
                    {
                        Code    = GeneratedErrorConstants.Codes.NotAllowed,
                        Message = String.Format(GeneratedErrorConstants.Messages.ResponseObjectUsedForUpdate, trustFrameworkToUpdate.GetType().Name)
                    });
                }
            }
            if (trustFrameworkToUpdate.AdditionalData != null)
            {
                if (trustFrameworkToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.ResponseHeaders) ||
                    trustFrameworkToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.StatusCode))
                {
                    throw new ClientException(
                              new Error
                    {
                        Code    = GeneratedErrorConstants.Codes.NotAllowed,
                        Message = String.Format(GeneratedErrorConstants.Messages.ResponseObjectUsedForUpdate, trustFrameworkToUpdate.GetType().Name)
                    });
                }
            }
            this.ContentType = "application/json";
            this.Method      = "PATCH";
            var updatedEntity = await this.SendAsync <TrustFramework>(trustFrameworkToUpdate, cancellationToken).ConfigureAwait(false);

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

            this.InitializeCollectionProperties(newEntity);
            return(newEntity);
        }
Beispiel #3
0
        /// <summary>
        /// Initializes any collection properties after deserialization, like next requests for paging.
        /// </summary>
        /// <param name="trustFrameworkToInitialize">The <see cref="TrustFramework"/> with the collection properties to initialize.</param>
        private void InitializeCollectionProperties(TrustFramework trustFrameworkToInitialize)
        {
            if (trustFrameworkToInitialize != null && trustFrameworkToInitialize.AdditionalData != null)
            {
                if (trustFrameworkToInitialize.Policies != null && trustFrameworkToInitialize.Policies.CurrentPage != null)
                {
                    trustFrameworkToInitialize.Policies.AdditionalData = trustFrameworkToInitialize.AdditionalData;

                    object nextPageLink;
                    trustFrameworkToInitialize.AdditionalData.TryGetValue("*****@*****.**", out nextPageLink);
                    var nextPageLinkString = nextPageLink as string;

                    if (!string.IsNullOrEmpty(nextPageLinkString))
                    {
                        trustFrameworkToInitialize.Policies.InitializeNextPageRequest(
                            this.Client,
                            nextPageLinkString);
                    }
                }

                if (trustFrameworkToInitialize.KeySets != null && trustFrameworkToInitialize.KeySets.CurrentPage != null)
                {
                    trustFrameworkToInitialize.KeySets.AdditionalData = trustFrameworkToInitialize.AdditionalData;

                    object nextPageLink;
                    trustFrameworkToInitialize.AdditionalData.TryGetValue("*****@*****.**", out nextPageLink);
                    var nextPageLinkString = nextPageLink as string;

                    if (!string.IsNullOrEmpty(nextPageLinkString))
                    {
                        trustFrameworkToInitialize.KeySets.InitializeNextPageRequest(
                            this.Client,
                            nextPageLinkString);
                    }
                }
            }
        }
Beispiel #4
0
 /// <summary>
 /// Creates the specified TrustFramework using POST.
 /// </summary>
 /// <param name="trustFrameworkToCreate">The TrustFramework to create.</param>
 /// <returns>The created TrustFramework.</returns>
 public System.Threading.Tasks.Task <TrustFramework> CreateAsync(TrustFramework trustFrameworkToCreate)
 {
     return(this.CreateAsync(trustFrameworkToCreate, CancellationToken.None));
 }