Esempio n. 1
0
        /// <summary>
        /// Update the allowlisted IP.
        /// </summary>
        /// <exception cref="IO.Swagger.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="body">JSON Request object (optional)</param>
        /// <returns>Task of InlineResponse20039</returns>
        public async System.Threading.Tasks.Task <InlineResponse20039> UpdateIpAllowlistAsync(Body29 body = null)
        {
            ApiResponse <InlineResponse20039> localVarResponse = await UpdateIpAllowlistAsyncWithHttpInfo(body);

            return(localVarResponse.Data);
        }
Esempio n. 2
0
        /// <summary>
        /// Update the allowlisted IP.
        /// </summary>
        /// <exception cref="IO.Swagger.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="body">JSON Request object (optional)</param>
        /// <returns>Task of ApiResponse (InlineResponse20039)</returns>
        public async System.Threading.Tasks.Task <ApiResponse <InlineResponse20039> > UpdateIpAllowlistAsyncWithHttpInfo(Body29 body = null)
        {
            var    localVarPath         = "/v3/ip_allowlist/";
            var    localVarPathParams   = new Dictionary <String, String>();
            var    localVarQueryParams  = new List <KeyValuePair <String, String> >();
            var    localVarHeaderParams = new Dictionary <String, String>(this.Configuration.DefaultHeader);
            var    localVarFormParams   = new Dictionary <String, String>();
            var    localVarFileParams   = new Dictionary <String, FileParameter>();
            Object localVarPostBody     = null;

            // to determine the Content-Type header
            String[] localVarHttpContentTypes = new String[] {
                "application/json"
            };
            String localVarHttpContentType = this.Configuration.ApiClient.SelectHeaderContentType(localVarHttpContentTypes);

            // to determine the Accept header
            String[] localVarHttpHeaderAccepts = new String[] {
                "application/json"
            };
            String localVarHttpHeaderAccept = this.Configuration.ApiClient.SelectHeaderAccept(localVarHttpHeaderAccepts);

            if (localVarHttpHeaderAccept != null)
            {
                localVarHeaderParams.Add("Accept", localVarHttpHeaderAccept);
            }

            if (body != null && body.GetType() != typeof(byte[]))
            {
                localVarPostBody = this.Configuration.ApiClient.Serialize(body); // http body (model) parameter
            }
            else
            {
                localVarPostBody = body; // byte array
            }
            // authentication (api_key) required
            if (!String.IsNullOrEmpty(this.Configuration.GetApiKeyWithPrefix("Authorization")))
            {
                localVarHeaderParams["Authorization"] = this.Configuration.GetApiKeyWithPrefix("Authorization");
            }

            // make the HTTP request
            IRestResponse localVarResponse = (IRestResponse)await this.Configuration.ApiClient.CallApiAsync(localVarPath,
                                                                                                            Method.PUT, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams,
                                                                                                            localVarPathParams, localVarHttpContentType);

            int localVarStatusCode = (int)localVarResponse.StatusCode;

            if (ExceptionFactory != null)
            {
                Exception exception = ExceptionFactory("UpdateIpAllowlist", localVarResponse);
                if (exception != null)
                {
                    throw exception;
                }
            }

            return(new ApiResponse <InlineResponse20039>(localVarStatusCode,
                                                         localVarResponse.Headers.ToDictionary(x => x.Name, x => string.Join(",", x.Value)),
                                                         (InlineResponse20039)this.Configuration.ApiClient.Deserialize(localVarResponse, typeof(InlineResponse20039))));
        }
Esempio n. 3
0
        /// <summary>
        /// Update the allowlisted IP.
        /// </summary>
        /// <exception cref="IO.Swagger.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="body">JSON Request object (optional)</param>
        /// <returns>InlineResponse20039</returns>
        public InlineResponse20039 UpdateIpAllowlist(Body29 body = null)
        {
            ApiResponse <InlineResponse20039> localVarResponse = UpdateIpAllowlistWithHttpInfo(body);

            return(localVarResponse.Data);
        }