Skip to content
This repository has been archived by the owner on Mar 6, 2019. It is now read-only.

Latest commit

 

History

History
278 lines (206 loc) · 7.96 KB

TechpreviewProxyApi.md

File metadata and controls

278 lines (206 loc) · 7.96 KB

IO.Swagger.Api.TechpreviewProxyApi

All URIs are relative to http://example.com/rest

Method HTTP request Description
ApplianceTechpreviewNetworkingProxyDeletePost POST /appliance/techpreview/networking/proxy/delete Proxy-delete
ApplianceTechpreviewNetworkingProxyGet GET /appliance/techpreview/networking/proxy Getproxyconfigurations
ApplianceTechpreviewNetworkingProxyPut PUT /appliance/techpreview/networking/proxy Proxy-set
ApplianceTechpreviewNetworkingProxyTestPost POST /appliance/techpreview/networking/proxy/test Proxy-test

ApplianceTechpreviewNetworkingProxyDeletePost

void ApplianceTechpreviewNetworkingProxyDeletePost (string contentType, ProxyDeleteRequest body)

Proxy-delete

TODO: Add Description

Example

using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class ApplianceTechpreviewNetworkingProxyDeletePostExample
    {
        public void main()
        {
            
            // Configure HTTP basic authorization: auth
            Configuration.Default.Username = "YOUR_USERNAME";
            Configuration.Default.Password = "YOUR_PASSWORD";

            var apiInstance = new TechpreviewProxyApi();
            var contentType = contentType_example;  // string | 
            var body = new ProxyDeleteRequest(); // ProxyDeleteRequest | 

            try
            {
                // Proxy-delete
                apiInstance.ApplianceTechpreviewNetworkingProxyDeletePost(contentType, body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling TechpreviewProxyApi.ApplianceTechpreviewNetworkingProxyDeletePost: " + e.Message );
            }
        }
    }
}

Parameters

Name Type Description Notes
contentType string
body ProxyDeleteRequest

Return type

void (empty response body)

Authorization

auth

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

ApplianceTechpreviewNetworkingProxyGet

void ApplianceTechpreviewNetworkingProxyGet (string contentType)

Getproxyconfigurations

TODO: Add Description

Example

using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class ApplianceTechpreviewNetworkingProxyGetExample
    {
        public void main()
        {
            
            // Configure HTTP basic authorization: auth
            Configuration.Default.Username = "YOUR_USERNAME";
            Configuration.Default.Password = "YOUR_PASSWORD";

            var apiInstance = new TechpreviewProxyApi();
            var contentType = contentType_example;  // string | 

            try
            {
                // Getproxyconfigurations
                apiInstance.ApplianceTechpreviewNetworkingProxyGet(contentType);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling TechpreviewProxyApi.ApplianceTechpreviewNetworkingProxyGet: " + e.Message );
            }
        }
    }
}

Parameters

Name Type Description Notes
contentType string

Return type

void (empty response body)

Authorization

auth

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

ApplianceTechpreviewNetworkingProxyPut

void ApplianceTechpreviewNetworkingProxyPut (string contentType, ProxySetRequest body)

Proxy-set

TODO: Add Description

Example

using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class ApplianceTechpreviewNetworkingProxyPutExample
    {
        public void main()
        {
            
            // Configure HTTP basic authorization: auth
            Configuration.Default.Username = "YOUR_USERNAME";
            Configuration.Default.Password = "YOUR_PASSWORD";

            var apiInstance = new TechpreviewProxyApi();
            var contentType = contentType_example;  // string | 
            var body = new ProxySetRequest(); // ProxySetRequest | 

            try
            {
                // Proxy-set
                apiInstance.ApplianceTechpreviewNetworkingProxyPut(contentType, body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling TechpreviewProxyApi.ApplianceTechpreviewNetworkingProxyPut: " + e.Message );
            }
        }
    }
}

Parameters

Name Type Description Notes
contentType string
body ProxySetRequest

Return type

void (empty response body)

Authorization

auth

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

ApplianceTechpreviewNetworkingProxyTestPost

void ApplianceTechpreviewNetworkingProxyTestPost (string contentType, ProxyTestRequest body)

Proxy-test

TODO: Add Description

Example

using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class ApplianceTechpreviewNetworkingProxyTestPostExample
    {
        public void main()
        {
            
            // Configure HTTP basic authorization: auth
            Configuration.Default.Username = "YOUR_USERNAME";
            Configuration.Default.Password = "YOUR_PASSWORD";

            var apiInstance = new TechpreviewProxyApi();
            var contentType = contentType_example;  // string | 
            var body = new ProxyTestRequest(); // ProxyTestRequest | 

            try
            {
                // Proxy-test
                apiInstance.ApplianceTechpreviewNetworkingProxyTestPost(contentType, body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling TechpreviewProxyApi.ApplianceTechpreviewNetworkingProxyTestPost: " + e.Message );
            }
        }
    }
}

Parameters

Name Type Description Notes
contentType string
body ProxyTestRequest

Return type

void (empty response body)

Authorization

auth

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]