Skip to content

Latest commit

 

History

History
80 lines (63 loc) · 4.54 KB

README.md

File metadata and controls

80 lines (63 loc) · 4.54 KB

Go API client for swagger

Search Engine Service(VPC) Open API
https://vpcsearchengine.apigw.ntruss.com/api/v2)

Overview

This API client was generated by the swagger-codegen project. By using the swagger-spec from a remote server, you can easily generate an API client.

  • API version: 1.0.0
  • Package version: 1.0.0
  • Build package: io.swagger.codegen.languages.GoClientCodegen

Installation

Put the package under your project folder and add the following in import:

import "./vses2"

Documentation for API Endpoints

All URIs are relative to https://vpcsearchengine.apigw.ntruss.com/api/v2

Class Method HTTP request Description
v2Api AddNodesInClusterUsingPOST Post /cluster/addNodesInCluster/{service-group-no} Add Nodes In Cluster
v2Api CreateClusterUsingPOST Post /cluster/createCluster Create Search Engine Cluster
v2Api DeleteClusterUsingDELETE Delete /cluster/deleteCluster/{service-group-no} Delete Search Engine Cluster
v2Api GetAcgInfoListUsingGET Get /cluster/getAcgInfoList/{service-group-no} Get Search Engine Cluster ACG Information
v2Api GetClusterInfoUsingGET Get /cluster/getClusterInfo/{service-group-no} Get Search Engine Cluster
v2Api GetClusterNodeListUsingGET Get /cluster/getClusterNodeList/{service-group-no} Get Search Engine Cluster Node List
v2Api GetNodeProductListWithGetMethodUsingGET Get /cluster/getNodeProductList Get Node Product List
v2Api GetOsProductListUsingGET Get /cluster/getOsProductList Get Software Product List
v2Api GetSearchEngineVersionListUsingGET Get /cluster/getSearchEngineVersionList Get Search Engine Version List
v2Api RestartClusterUsingGET Get /cluster/restartCluster/{service-group-no} Restart Search Engine Cluster

Documentation For Models

Documentation For Authorization

x-ncp-iam

  • Type: API key

Example

auth := context.WithValue(context.Background(), sw.ContextAPIKey, sw.APIKey{
	Key: "APIKEY",
	Prefix: "Bearer", // Omit if not necessary.
})
r, err := client.Service.Operation(auth, args)

Author