Ejemplo n.º 1
0
        /// <summary>
        /// Leaves the ZeroTier network
        /// </summary>
        /// <exception cref="IO.Swagger.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="req">Network leave request</param>
        /// <returns>Task of ZeroTierOutcome</returns>
        public async System.Threading.Tasks.Task <ZeroTierOutcome> LeaveAsync(ZeroTierLeaveRequest req)
        {
            ApiResponse <ZeroTierOutcome> localVarResponse = await LeaveAsyncWithHttpInfo(req);

            return(localVarResponse.Data);
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Leaves the ZeroTier network
        /// </summary>
        /// <exception cref="IO.Swagger.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="req">Network leave request</param>
        /// <returns>Task of ApiResponse (ZeroTierOutcome)</returns>
        public async System.Threading.Tasks.Task <ApiResponse <ZeroTierOutcome> > LeaveAsyncWithHttpInfo(ZeroTierLeaveRequest req)
        {
            // verify the required parameter 'req' is set
            if (req == null)
            {
                throw new ApiException(400, "Missing required parameter 'req' when calling NetworkApi->Leave");
            }

            var    localVarPath         = "/shutdown";
            var    localVarPathParams   = new Dictionary <String, String>();
            var    localVarQueryParams  = new Dictionary <String, String>();
            var    localVarHeaderParams = new Dictionary <String, String>(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 = Configuration.ApiClient.SelectHeaderContentType(localVarHttpContentTypes);

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

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

            if (req != null && req.GetType() != typeof(byte[]))
            {
                localVarPostBody = Configuration.ApiClient.Serialize(req); // http body (model) parameter
            }
            else
            {
                localVarPostBody = req; // byte array
            }


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

            int localVarStatusCode = (int)localVarResponse.StatusCode;

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

            return(new ApiResponse <ZeroTierOutcome>(localVarStatusCode,
                                                     localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()),
                                                     (ZeroTierOutcome)Configuration.ApiClient.Deserialize(localVarResponse, typeof(ZeroTierOutcome))));
        }
Ejemplo n.º 3
0
        /// <summary>
        /// Leaves the ZeroTier network
        /// </summary>
        /// <exception cref="IO.Swagger.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="req">Network leave request</param>
        /// <returns>ZeroTierOutcome</returns>
        public ZeroTierOutcome Leave(ZeroTierLeaveRequest req)
        {
            ApiResponse <ZeroTierOutcome> localVarResponse = LeaveWithHttpInfo(req);

            return(localVarResponse.Data);
        }