From 96e17045622705c1f548cd3c5cdffe55788ad91d Mon Sep 17 00:00:00 2001 From: TIP Automation User Date: Tue, 28 Feb 2023 06:36:23 +0000 Subject: [PATCH] Update OpenAPI docs for GitHub pages --- docs/index.html | 1234 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 1234 insertions(+) diff --git a/docs/index.html b/docs/index.html index 7a5ec87..8728bea 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1201,6 +1201,17 @@ ul.nav-tabs { "format" : "int64" } } +}; + defs["ExtraSystemConfiguration_inner"] = { + "type" : "object", + "properties" : { + "parameterName" : { + "type" : "string" + }, + "parameterValue" : { + "type" : "string" + } + } }; defs["getSystemCommand_200_response"] = { "oneOf" : [ { @@ -1974,6 +1985,16 @@ ul.nav-tabs {
  • systemCommand
  • + +
  • + deleteSystemConfiguration +
  • +
  • + getSystemConfiguration +
  • +
  • + setSystemConfiguration +
  • deleteWifiClientHistory @@ -6927,6 +6948,1219 @@ $(document).ready(function() {
    +
    +

    SystemConfiguration

    +
    +
    +
    +

    deleteSystemConfiguration

    +

    Delete all additional system configuration

    +
    +
    +
    +

    +

    +

    +
    +
    /systemConfiguration
    +

    +

    Usage and SDK Samples

    +

    + + +
    +
    +
    curl -X DELETE \
    +-H "X-API-KEY: [[apiKey]]" \
    + -H "Authorization: Bearer [[accessToken]]" \
    + "https://localhost:16009/api/v1/systemConfiguration"
    +
    +
    +
    +
    import org.openapitools.client.*;
    +import org.openapitools.client.auth.*;
    +import org.openapitools.client.model.*;
    +import org.openapitools.client.api.SystemConfigurationApi;
    +
    +import java.io.File;
    +import java.util.*;
    +
    +public class SystemConfigurationApiExample {
    +    public static void main(String[] args) {
    +        ApiClient defaultClient = Configuration.getDefaultApiClient();
    +        
    +        // Configure API key authorization: ApiKeyAuth
    +        ApiKeyAuth ApiKeyAuth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
    +        ApiKeyAuth.setApiKey("YOUR API KEY");
    +        // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
    +        //ApiKeyAuth.setApiKeyPrefix("Token");
    +        
    +        // Configure Bearer (JWT) access token for authorization: bearerAuth
    +        HttpBearerAuth bearerAuth = (HttpBearerAuth) defaultClient.getAuthentication("bearerAuth");
    +        bearerAuth.setBearerToken("BEARER TOKEN");
    +
    +        // Create an instance of the API class
    +        SystemConfigurationApi apiInstance = new SystemConfigurationApi();
    +
    +        try {
    +            apiInstance.deleteSystemConfiguration();
    +        } catch (ApiException e) {
    +            System.err.println("Exception when calling SystemConfigurationApi#deleteSystemConfiguration");
    +            e.printStackTrace();
    +        }
    +    }
    +}
    +
    +
    + +
    +
    import org.openapitools.client.api.SystemConfigurationApi;
    +
    +public class SystemConfigurationApiExample {
    +    public static void main(String[] args) {
    +        SystemConfigurationApi apiInstance = new SystemConfigurationApi();
    +
    +        try {
    +            apiInstance.deleteSystemConfiguration();
    +        } catch (ApiException e) {
    +            System.err.println("Exception when calling SystemConfigurationApi#deleteSystemConfiguration");
    +            e.printStackTrace();
    +        }
    +    }
    +}
    +
    + +
    +
    Configuration *apiConfig = [Configuration sharedConfig];
    +
    +// Configure API key authorization: (authentication scheme: ApiKeyAuth)
    +[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"X-API-KEY"];
    +// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
    +//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"X-API-KEY"];
    +
    +// Configure Bearer (JWT) access token for authorization: bearerAuth
    +[apiConfig setAccessToken:@"YOUR_ACCESS_TOKEN"];
    +
    +// Create an instance of the API class
    +SystemConfigurationApi *apiInstance = [[SystemConfigurationApi alloc] init];
    +
    +// Delete all additional system configuration
    +[apiInstance deleteSystemConfigurationWithCompletionHandler: 
    +              ^(NSError* error) {
    +    if (error) {
    +        NSLog(@"Error: %@", error);
    +    }
    +}];
    +
    +
    + +
    +
    var OpenWiFiAnalyticsService = require('open_wi_fi_analytics_service');
    +var defaultClient = OpenWiFiAnalyticsService.ApiClient.instance;
    +
    +// Configure API key authorization: ApiKeyAuth
    +var ApiKeyAuth = defaultClient.authentications['ApiKeyAuth'];
    +ApiKeyAuth.apiKey = "YOUR API KEY";
    +// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
    +//ApiKeyAuth.apiKeyPrefix['X-API-KEY'] = "Token";
    +
    +// Configure Bearer (JWT) access token for authorization: bearerAuth
    +var bearerAuth = defaultClient.authentications['bearerAuth'];
    +bearerAuth.accessToken = "YOUR ACCESS TOKEN";
    +
    +// Create an instance of the API class
    +var api = new OpenWiFiAnalyticsService.SystemConfigurationApi()
    +var callback = function(error, data, response) {
    +  if (error) {
    +    console.error(error);
    +  } else {
    +    console.log('API called successfully.');
    +  }
    +};
    +api.deleteSystemConfiguration(callback);
    +
    +
    + + +
    +
    using System;
    +using System.Diagnostics;
    +using Org.OpenAPITools.Api;
    +using Org.OpenAPITools.Client;
    +using Org.OpenAPITools.Model;
    +
    +namespace Example
    +{
    +    public class deleteSystemConfigurationExample
    +    {
    +        public void main()
    +        {
    +            // Configure API key authorization: ApiKeyAuth
    +            Configuration.Default.ApiKey.Add("X-API-KEY", "YOUR_API_KEY");
    +            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
    +            // Configuration.Default.ApiKeyPrefix.Add("X-API-KEY", "Bearer");
    +            // Configure Bearer (JWT) access token for authorization: bearerAuth
    +            Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
    +
    +            // Create an instance of the API class
    +            var apiInstance = new SystemConfigurationApi();
    +
    +            try {
    +                // Delete all additional system configuration
    +                apiInstance.deleteSystemConfiguration();
    +            } catch (Exception e) {
    +                Debug.Print("Exception when calling SystemConfigurationApi.deleteSystemConfiguration: " + e.Message );
    +            }
    +        }
    +    }
    +}
    +
    +
    + +
    +
    <?php
    +require_once(__DIR__ . '/vendor/autoload.php');
    +
    +// Configure API key authorization: ApiKeyAuth
    +OpenAPITools\Client\Configuration::getDefaultConfiguration()->setApiKey('X-API-KEY', 'YOUR_API_KEY');
    +// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
    +// OpenAPITools\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-KEY', 'Bearer');
    +
    +// Configure Bearer (JWT) access token for authorization: bearerAuth
    +OpenAPITools\Client\Configuration::getDefaultConfiguration()->setAccessToken('', 'YOUR_ACCESS_TOKEN');
    +
    +// Create an instance of the API class
    +$api_instance = new OpenAPITools\Client\Api\SystemConfigurationApi();
    +
    +try {
    +    $api_instance->deleteSystemConfiguration();
    +} catch (Exception $e) {
    +    echo 'Exception when calling SystemConfigurationApi->deleteSystemConfiguration: ', $e->getMessage(), PHP_EOL;
    +}
    +?>
    +
    + +
    +
    use Data::Dumper;
    +use WWW::OPenAPIClient::Configuration;
    +use WWW::OPenAPIClient::SystemConfigurationApi;
    +
    +# Configure API key authorization: ApiKeyAuth
    +$WWW::OPenAPIClient::Configuration::api_key->{'X-API-KEY'} = 'YOUR_API_KEY';
    +# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
    +#$WWW::OPenAPIClient::Configuration::api_key_prefix->{'X-API-KEY'} = "Bearer";
    +
    +# Configure Bearer (JWT) access token for authorization: bearerAuth
    +$WWW::OPenAPIClient::Configuration::access_token = 'YOUR_ACCESS_TOKEN';
    +
    +# Create an instance of the API class
    +my $api_instance = WWW::OPenAPIClient::SystemConfigurationApi->new();
    +
    +eval {
    +    $api_instance->deleteSystemConfiguration();
    +};
    +if ($@) {
    +    warn "Exception when calling SystemConfigurationApi->deleteSystemConfiguration: $@\n";
    +}
    +
    + +
    +
    from __future__ import print_statement
    +import time
    +import openapi_client
    +from openapi_client.rest import ApiException
    +from pprint import pprint
    +
    +# Configure API key authorization: ApiKeyAuth
    +openapi_client.configuration.api_key['X-API-KEY'] = 'YOUR_API_KEY'
    +# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
    +# openapi_client.configuration.api_key_prefix['X-API-KEY'] = 'Bearer'
    +
    +# Configure Bearer (JWT) access token for authorization: bearerAuth
    +openapi_client.configuration.access_token = 'YOUR_ACCESS_TOKEN'
    +
    +# Create an instance of the API class
    +api_instance = openapi_client.SystemConfigurationApi()
    +
    +try:
    +    # Delete all additional system configuration
    +    api_instance.delete_system_configuration()
    +except ApiException as e:
    +    print("Exception when calling SystemConfigurationApi->deleteSystemConfiguration: %s\n" % e)
    +
    + +
    +
    extern crate SystemConfigurationApi;
    +
    +pub fn main() {
    +
    +    let mut context = SystemConfigurationApi::Context::default();
    +    let result = client.deleteSystemConfiguration(&context).wait();
    +
    +    println!("{:?}", result);
    +}
    +
    +
    +
    + +

    Scopes

    + + +
    + +

    Parameters

    + + + + + + +

    Responses

    +

    +

    + + + + + + +
    +
    +

    +

    + + + + + + +
    +
    +

    +

    + + + + + + +
    +
    +
    +
    +
    +
    +
    +
    +

    getSystemConfiguration

    +

    Retrieve system configuration items

    +
    +
    +
    +

    +

    +

    +
    +
    /systemConfiguration
    +

    +

    Usage and SDK Samples

    +

    + + +
    +
    +
    curl -X GET \
    +-H "X-API-KEY: [[apiKey]]" \
    + -H "Authorization: Bearer [[accessToken]]" \
    + -H "Accept: application/json" \
    + "https://localhost:16009/api/v1/systemConfiguration?entries=["element1","element1,element2,element3"]"
    +
    +
    +
    +
    import org.openapitools.client.*;
    +import org.openapitools.client.auth.*;
    +import org.openapitools.client.model.*;
    +import org.openapitools.client.api.SystemConfigurationApi;
    +
    +import java.io.File;
    +import java.util.*;
    +
    +public class SystemConfigurationApiExample {
    +    public static void main(String[] args) {
    +        ApiClient defaultClient = Configuration.getDefaultApiClient();
    +        
    +        // Configure API key authorization: ApiKeyAuth
    +        ApiKeyAuth ApiKeyAuth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
    +        ApiKeyAuth.setApiKey("YOUR API KEY");
    +        // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
    +        //ApiKeyAuth.setApiKeyPrefix("Token");
    +        
    +        // Configure Bearer (JWT) access token for authorization: bearerAuth
    +        HttpBearerAuth bearerAuth = (HttpBearerAuth) defaultClient.getAuthentication("bearerAuth");
    +        bearerAuth.setBearerToken("BEARER TOKEN");
    +
    +        // Create an instance of the API class
    +        SystemConfigurationApi apiInstance = new SystemConfigurationApi();
    +        String entries = ["element1","element1,element2,element3"]; // String | Which parameters you want to retrieve
    +
    +        try {
    +            array[List] result = apiInstance.getSystemConfiguration(entries);
    +            System.out.println(result);
    +        } catch (ApiException e) {
    +            System.err.println("Exception when calling SystemConfigurationApi#getSystemConfiguration");
    +            e.printStackTrace();
    +        }
    +    }
    +}
    +
    +
    + +
    +
    import org.openapitools.client.api.SystemConfigurationApi;
    +
    +public class SystemConfigurationApiExample {
    +    public static void main(String[] args) {
    +        SystemConfigurationApi apiInstance = new SystemConfigurationApi();
    +        String entries = ["element1","element1,element2,element3"]; // String | Which parameters you want to retrieve
    +
    +        try {
    +            array[List] result = apiInstance.getSystemConfiguration(entries);
    +            System.out.println(result);
    +        } catch (ApiException e) {
    +            System.err.println("Exception when calling SystemConfigurationApi#getSystemConfiguration");
    +            e.printStackTrace();
    +        }
    +    }
    +}
    +
    + +
    +
    Configuration *apiConfig = [Configuration sharedConfig];
    +
    +// Configure API key authorization: (authentication scheme: ApiKeyAuth)
    +[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"X-API-KEY"];
    +// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
    +//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"X-API-KEY"];
    +
    +// Configure Bearer (JWT) access token for authorization: bearerAuth
    +[apiConfig setAccessToken:@"YOUR_ACCESS_TOKEN"];
    +
    +// Create an instance of the API class
    +SystemConfigurationApi *apiInstance = [[SystemConfigurationApi alloc] init];
    +String *entries = ["element1","element1,element2,element3"]; // Which parameters you want to retrieve (optional) (default to null)
    +
    +// Retrieve system configuration items
    +[apiInstance getSystemConfigurationWith:entries
    +              completionHandler: ^(array[List] output, NSError* error) {
    +    if (output) {
    +        NSLog(@"%@", output);
    +    }
    +    if (error) {
    +        NSLog(@"Error: %@", error);
    +    }
    +}];
    +
    +
    + +
    +
    var OpenWiFiAnalyticsService = require('open_wi_fi_analytics_service');
    +var defaultClient = OpenWiFiAnalyticsService.ApiClient.instance;
    +
    +// Configure API key authorization: ApiKeyAuth
    +var ApiKeyAuth = defaultClient.authentications['ApiKeyAuth'];
    +ApiKeyAuth.apiKey = "YOUR API KEY";
    +// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
    +//ApiKeyAuth.apiKeyPrefix['X-API-KEY'] = "Token";
    +
    +// Configure Bearer (JWT) access token for authorization: bearerAuth
    +var bearerAuth = defaultClient.authentications['bearerAuth'];
    +bearerAuth.accessToken = "YOUR ACCESS TOKEN";
    +
    +// Create an instance of the API class
    +var api = new OpenWiFiAnalyticsService.SystemConfigurationApi()
    +var opts = {
    +  'entries': ["element1","element1,element2,element3"] // {String} Which parameters you want to retrieve
    +};
    +
    +var callback = function(error, data, response) {
    +  if (error) {
    +    console.error(error);
    +  } else {
    +    console.log('API called successfully. Returned data: ' + data);
    +  }
    +};
    +api.getSystemConfiguration(opts, callback);
    +
    +
    + + +
    +
    using System;
    +using System.Diagnostics;
    +using Org.OpenAPITools.Api;
    +using Org.OpenAPITools.Client;
    +using Org.OpenAPITools.Model;
    +
    +namespace Example
    +{
    +    public class getSystemConfigurationExample
    +    {
    +        public void main()
    +        {
    +            // Configure API key authorization: ApiKeyAuth
    +            Configuration.Default.ApiKey.Add("X-API-KEY", "YOUR_API_KEY");
    +            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
    +            // Configuration.Default.ApiKeyPrefix.Add("X-API-KEY", "Bearer");
    +            // Configure Bearer (JWT) access token for authorization: bearerAuth
    +            Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
    +
    +            // Create an instance of the API class
    +            var apiInstance = new SystemConfigurationApi();
    +            var entries = ["element1","element1,element2,element3"];  // String | Which parameters you want to retrieve (optional)  (default to null)
    +
    +            try {
    +                // Retrieve system configuration items
    +                array[List] result = apiInstance.getSystemConfiguration(entries);
    +                Debug.WriteLine(result);
    +            } catch (Exception e) {
    +                Debug.Print("Exception when calling SystemConfigurationApi.getSystemConfiguration: " + e.Message );
    +            }
    +        }
    +    }
    +}
    +
    +
    + +
    +
    <?php
    +require_once(__DIR__ . '/vendor/autoload.php');
    +
    +// Configure API key authorization: ApiKeyAuth
    +OpenAPITools\Client\Configuration::getDefaultConfiguration()->setApiKey('X-API-KEY', 'YOUR_API_KEY');
    +// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
    +// OpenAPITools\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-KEY', 'Bearer');
    +
    +// Configure Bearer (JWT) access token for authorization: bearerAuth
    +OpenAPITools\Client\Configuration::getDefaultConfiguration()->setAccessToken('', 'YOUR_ACCESS_TOKEN');
    +
    +// Create an instance of the API class
    +$api_instance = new OpenAPITools\Client\Api\SystemConfigurationApi();
    +$entries = ["element1","element1,element2,element3"]; // String | Which parameters you want to retrieve
    +
    +try {
    +    $result = $api_instance->getSystemConfiguration($entries);
    +    print_r($result);
    +} catch (Exception $e) {
    +    echo 'Exception when calling SystemConfigurationApi->getSystemConfiguration: ', $e->getMessage(), PHP_EOL;
    +}
    +?>
    +
    + +
    +
    use Data::Dumper;
    +use WWW::OPenAPIClient::Configuration;
    +use WWW::OPenAPIClient::SystemConfigurationApi;
    +
    +# Configure API key authorization: ApiKeyAuth
    +$WWW::OPenAPIClient::Configuration::api_key->{'X-API-KEY'} = 'YOUR_API_KEY';
    +# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
    +#$WWW::OPenAPIClient::Configuration::api_key_prefix->{'X-API-KEY'} = "Bearer";
    +
    +# Configure Bearer (JWT) access token for authorization: bearerAuth
    +$WWW::OPenAPIClient::Configuration::access_token = 'YOUR_ACCESS_TOKEN';
    +
    +# Create an instance of the API class
    +my $api_instance = WWW::OPenAPIClient::SystemConfigurationApi->new();
    +my $entries = ["element1","element1,element2,element3"]; # String | Which parameters you want to retrieve
    +
    +eval {
    +    my $result = $api_instance->getSystemConfiguration(entries => $entries);
    +    print Dumper($result);
    +};
    +if ($@) {
    +    warn "Exception when calling SystemConfigurationApi->getSystemConfiguration: $@\n";
    +}
    +
    + +
    +
    from __future__ import print_statement
    +import time
    +import openapi_client
    +from openapi_client.rest import ApiException
    +from pprint import pprint
    +
    +# Configure API key authorization: ApiKeyAuth
    +openapi_client.configuration.api_key['X-API-KEY'] = 'YOUR_API_KEY'
    +# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
    +# openapi_client.configuration.api_key_prefix['X-API-KEY'] = 'Bearer'
    +
    +# Configure Bearer (JWT) access token for authorization: bearerAuth
    +openapi_client.configuration.access_token = 'YOUR_ACCESS_TOKEN'
    +
    +# Create an instance of the API class
    +api_instance = openapi_client.SystemConfigurationApi()
    +entries = ["element1","element1,element2,element3"] # String | Which parameters you want to retrieve (optional) (default to null)
    +
    +try:
    +    # Retrieve system configuration items
    +    api_response = api_instance.get_system_configuration(entries=entries)
    +    pprint(api_response)
    +except ApiException as e:
    +    print("Exception when calling SystemConfigurationApi->getSystemConfiguration: %s\n" % e)
    +
    + +
    +
    extern crate SystemConfigurationApi;
    +
    +pub fn main() {
    +    let entries = ["element1","element1,element2,element3"]; // String
    +
    +    let mut context = SystemConfigurationApi::Context::default();
    +    let result = client.getSystemConfiguration(entries, &context).wait();
    +
    +    println!("{:?}", result);
    +}
    +
    +
    +
    + +

    Scopes

    + + +
    + +

    Parameters

    + + + + + +
    Query parameters
    + + + + + + + + + +
    NameDescription
    entries + + +
    +
    +
    + + String + + +
    +Which parameters you want to retrieve +
    +
    +
    +
    +
    + +

    Responses

    +

    +

    + + + + + + +
    +
    +
    + +
    + +
    +
    +

    +

    + + + + + + +
    +
    +

    +

    + + + + + + +
    +
    +
    +
    +
    +
    +
    +
    +

    setSystemConfiguration

    +

    Set some or all system configuration

    +
    +
    +
    +

    +

    +

    +
    +
    /systemConfiguration
    +

    +

    Usage and SDK Samples

    +

    + + +
    +
    +
    curl -X PUT \
    +-H "X-API-KEY: [[apiKey]]" \
    + -H "Authorization: Bearer [[accessToken]]" \
    + -H "Content-Type: application/json" \
    + "https://localhost:16009/api/v1/systemConfiguration" \
    + -d '{
    +  "parameterName" : "parameterName",
    +  "parameterValue" : "parameterValue"
    +}'
    +
    +
    +
    +
    import org.openapitools.client.*;
    +import org.openapitools.client.auth.*;
    +import org.openapitools.client.model.*;
    +import org.openapitools.client.api.SystemConfigurationApi;
    +
    +import java.io.File;
    +import java.util.*;
    +
    +public class SystemConfigurationApiExample {
    +    public static void main(String[] args) {
    +        ApiClient defaultClient = Configuration.getDefaultApiClient();
    +        
    +        // Configure API key authorization: ApiKeyAuth
    +        ApiKeyAuth ApiKeyAuth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
    +        ApiKeyAuth.setApiKey("YOUR API KEY");
    +        // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
    +        //ApiKeyAuth.setApiKeyPrefix("Token");
    +        
    +        // Configure Bearer (JWT) access token for authorization: bearerAuth
    +        HttpBearerAuth bearerAuth = (HttpBearerAuth) defaultClient.getAuthentication("bearerAuth");
    +        bearerAuth.setBearerToken("BEARER TOKEN");
    +
    +        // Create an instance of the API class
    +        SystemConfigurationApi apiInstance = new SystemConfigurationApi();
    +        array[ExtraSystemConfiguration_inner] extraSystemConfigurationInner = ; // array[ExtraSystemConfiguration_inner] | 
    +
    +        try {
    +            apiInstance.setSystemConfiguration(extraSystemConfigurationInner);
    +        } catch (ApiException e) {
    +            System.err.println("Exception when calling SystemConfigurationApi#setSystemConfiguration");
    +            e.printStackTrace();
    +        }
    +    }
    +}
    +
    +
    + +
    +
    import org.openapitools.client.api.SystemConfigurationApi;
    +
    +public class SystemConfigurationApiExample {
    +    public static void main(String[] args) {
    +        SystemConfigurationApi apiInstance = new SystemConfigurationApi();
    +        array[ExtraSystemConfiguration_inner] extraSystemConfigurationInner = ; // array[ExtraSystemConfiguration_inner] | 
    +
    +        try {
    +            apiInstance.setSystemConfiguration(extraSystemConfigurationInner);
    +        } catch (ApiException e) {
    +            System.err.println("Exception when calling SystemConfigurationApi#setSystemConfiguration");
    +            e.printStackTrace();
    +        }
    +    }
    +}
    +
    + +
    +
    Configuration *apiConfig = [Configuration sharedConfig];
    +
    +// Configure API key authorization: (authentication scheme: ApiKeyAuth)
    +[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"X-API-KEY"];
    +// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
    +//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"X-API-KEY"];
    +
    +// Configure Bearer (JWT) access token for authorization: bearerAuth
    +[apiConfig setAccessToken:@"YOUR_ACCESS_TOKEN"];
    +
    +// Create an instance of the API class
    +SystemConfigurationApi *apiInstance = [[SystemConfigurationApi alloc] init];
    +array[ExtraSystemConfiguration_inner] *extraSystemConfigurationInner = ; //  (optional)
    +
    +// Set some or all system configuration
    +[apiInstance setSystemConfigurationWith:extraSystemConfigurationInner
    +              completionHandler: ^(NSError* error) {
    +    if (error) {
    +        NSLog(@"Error: %@", error);
    +    }
    +}];
    +
    +
    + +
    +
    var OpenWiFiAnalyticsService = require('open_wi_fi_analytics_service');
    +var defaultClient = OpenWiFiAnalyticsService.ApiClient.instance;
    +
    +// Configure API key authorization: ApiKeyAuth
    +var ApiKeyAuth = defaultClient.authentications['ApiKeyAuth'];
    +ApiKeyAuth.apiKey = "YOUR API KEY";
    +// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
    +//ApiKeyAuth.apiKeyPrefix['X-API-KEY'] = "Token";
    +
    +// Configure Bearer (JWT) access token for authorization: bearerAuth
    +var bearerAuth = defaultClient.authentications['bearerAuth'];
    +bearerAuth.accessToken = "YOUR ACCESS TOKEN";
    +
    +// Create an instance of the API class
    +var api = new OpenWiFiAnalyticsService.SystemConfigurationApi()
    +var opts = {
    +  'extraSystemConfigurationInner':  // {array[ExtraSystemConfiguration_inner]} 
    +};
    +
    +var callback = function(error, data, response) {
    +  if (error) {
    +    console.error(error);
    +  } else {
    +    console.log('API called successfully.');
    +  }
    +};
    +api.setSystemConfiguration(opts, callback);
    +
    +
    + + +
    +
    using System;
    +using System.Diagnostics;
    +using Org.OpenAPITools.Api;
    +using Org.OpenAPITools.Client;
    +using Org.OpenAPITools.Model;
    +
    +namespace Example
    +{
    +    public class setSystemConfigurationExample
    +    {
    +        public void main()
    +        {
    +            // Configure API key authorization: ApiKeyAuth
    +            Configuration.Default.ApiKey.Add("X-API-KEY", "YOUR_API_KEY");
    +            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
    +            // Configuration.Default.ApiKeyPrefix.Add("X-API-KEY", "Bearer");
    +            // Configure Bearer (JWT) access token for authorization: bearerAuth
    +            Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
    +
    +            // Create an instance of the API class
    +            var apiInstance = new SystemConfigurationApi();
    +            var extraSystemConfigurationInner = new array[ExtraSystemConfiguration_inner](); // array[ExtraSystemConfiguration_inner] |  (optional) 
    +
    +            try {
    +                // Set some or all system configuration
    +                apiInstance.setSystemConfiguration(extraSystemConfigurationInner);
    +            } catch (Exception e) {
    +                Debug.Print("Exception when calling SystemConfigurationApi.setSystemConfiguration: " + e.Message );
    +            }
    +        }
    +    }
    +}
    +
    +
    + +
    +
    <?php
    +require_once(__DIR__ . '/vendor/autoload.php');
    +
    +// Configure API key authorization: ApiKeyAuth
    +OpenAPITools\Client\Configuration::getDefaultConfiguration()->setApiKey('X-API-KEY', 'YOUR_API_KEY');
    +// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
    +// OpenAPITools\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-KEY', 'Bearer');
    +
    +// Configure Bearer (JWT) access token for authorization: bearerAuth
    +OpenAPITools\Client\Configuration::getDefaultConfiguration()->setAccessToken('', 'YOUR_ACCESS_TOKEN');
    +
    +// Create an instance of the API class
    +$api_instance = new OpenAPITools\Client\Api\SystemConfigurationApi();
    +$extraSystemConfigurationInner = ; // array[ExtraSystemConfiguration_inner] | 
    +
    +try {
    +    $api_instance->setSystemConfiguration($extraSystemConfigurationInner);
    +} catch (Exception $e) {
    +    echo 'Exception when calling SystemConfigurationApi->setSystemConfiguration: ', $e->getMessage(), PHP_EOL;
    +}
    +?>
    +
    + +
    +
    use Data::Dumper;
    +use WWW::OPenAPIClient::Configuration;
    +use WWW::OPenAPIClient::SystemConfigurationApi;
    +
    +# Configure API key authorization: ApiKeyAuth
    +$WWW::OPenAPIClient::Configuration::api_key->{'X-API-KEY'} = 'YOUR_API_KEY';
    +# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
    +#$WWW::OPenAPIClient::Configuration::api_key_prefix->{'X-API-KEY'} = "Bearer";
    +
    +# Configure Bearer (JWT) access token for authorization: bearerAuth
    +$WWW::OPenAPIClient::Configuration::access_token = 'YOUR_ACCESS_TOKEN';
    +
    +# Create an instance of the API class
    +my $api_instance = WWW::OPenAPIClient::SystemConfigurationApi->new();
    +my $extraSystemConfigurationInner = [WWW::OPenAPIClient::Object::array[ExtraSystemConfiguration_inner]->new()]; # array[ExtraSystemConfiguration_inner] | 
    +
    +eval {
    +    $api_instance->setSystemConfiguration(extraSystemConfigurationInner => $extraSystemConfigurationInner);
    +};
    +if ($@) {
    +    warn "Exception when calling SystemConfigurationApi->setSystemConfiguration: $@\n";
    +}
    +
    + +
    +
    from __future__ import print_statement
    +import time
    +import openapi_client
    +from openapi_client.rest import ApiException
    +from pprint import pprint
    +
    +# Configure API key authorization: ApiKeyAuth
    +openapi_client.configuration.api_key['X-API-KEY'] = 'YOUR_API_KEY'
    +# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
    +# openapi_client.configuration.api_key_prefix['X-API-KEY'] = 'Bearer'
    +
    +# Configure Bearer (JWT) access token for authorization: bearerAuth
    +openapi_client.configuration.access_token = 'YOUR_ACCESS_TOKEN'
    +
    +# Create an instance of the API class
    +api_instance = openapi_client.SystemConfigurationApi()
    +extraSystemConfigurationInner =  # array[ExtraSystemConfiguration_inner] |  (optional)
    +
    +try:
    +    # Set some or all system configuration
    +    api_instance.set_system_configuration(extraSystemConfigurationInner=extraSystemConfigurationInner)
    +except ApiException as e:
    +    print("Exception when calling SystemConfigurationApi->setSystemConfiguration: %s\n" % e)
    +
    + +
    +
    extern crate SystemConfigurationApi;
    +
    +pub fn main() {
    +    let extraSystemConfigurationInner = ; // array[ExtraSystemConfiguration_inner]
    +
    +    let mut context = SystemConfigurationApi::Context::default();
    +    let result = client.setSystemConfiguration(extraSystemConfigurationInner, &context).wait();
    +
    +    println!("{:?}", result);
    +}
    +
    +
    +
    + +

    Scopes

    + + +
    + +

    Parameters

    + + + +
    Body parameters
    + + + + + + + + + +
    NameDescription
    extraSystemConfigurationInner +

    + +
    +
    + + + +

    Responses

    +

    +

    + + + + + + +
    +
    +

    +

    + + + + + + +
    +
    +

    +

    + + + + + + +
    +
    +
    +
    +
    +

    WiFiClientHistory