Categorygithub.com/jacklv111/aifs-client-go
repositorypackage
0.0.3
Repository: https://github.com/jacklv111/aifs-client-go.git
Documentation: pkg.go.dev

# Packages

No description provided by the author

# README

Go API client for openapi

aifs api

Overview

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

  • API version: 1.0.0
  • Package version: 1.0.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Install the following dependencies:

go get github.com/stretchr/testify/assert
go get golang.org/x/net/context

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

import openapi "github.com/GIT_USER_ID/GIT_REPO_ID"

To use a proxy, set the environment variable HTTP_PROXY:

os.Setenv("HTTP_PROXY", "http://proxy_name:proxy_port")

Configuration of Server URL

Default configuration comes with Servers field that contains server objects as defined in the OpenAPI specification.

Select Server Configuration

For using other server than the one defined on index 0 set context value sw.ContextServerIndex of type int.

ctx := context.WithValue(context.Background(), openapi.ContextServerIndex, 1)

Templated Server URL

Templated server URL is formatted using default variables from configuration or from context value sw.ContextServerVariables of type map[string]string.

ctx := context.WithValue(context.Background(), openapi.ContextServerVariables, map[string]string{
	"basePath": "v2",
})

Note, enum values are always validated and all unused variables are silently ignored.

URLs Configuration per Operation

Each operation can use different server URL defined using OperationServers map in the Configuration. An operation is uniquely identified by "{classname}Service.{nickname}" string. Similar rules for overriding default operation server index and variables applies by using sw.ContextOperationServerIndices and sw.ContextOperationServerVariables context maps.

ctx := context.WithValue(context.Background(), openapi.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), openapi.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to https://www.example.com/api/open/v1

ClassMethodHTTP requestDescription
AnnotationTemplateApiCopyAnnotationTemplatePost /annotation-templates/{annotationTemplateId}/copyCopy an annotation template
AnnotationTemplateApiCreateAnnotationTemplatePost /annotation-templatesCreate an annotation template
AnnotationTemplateApiDeleteAnnotationTemplateDelete /annotation-templates/{annotationTemplateId}Delete an annotation template
AnnotationTemplateApiGetAnnoTemplateDetailsGet /annotation-templates/{annotationTemplateId}/detailsGet annotation template details
AnnotationTemplateApiGetAnnoTemplateListGet /annotation-templatesGet annotation template list
AnnotationTemplateApiUpdateAnnotationTemplatePut /annotation-templatesUpdate an annotation template
AnnotationTemplateTypeApiGetAnnoTemplateTypeListGet /annotation-template-typesGet annotation template type list
DataViewApiCreateDataViewPost /data-viewsCreate a data view
DataViewApiDeleteDataItemInDataViewDelete /data-views/{dataViewId}/data-itemsDelete data item in a data view
DataViewApiDeleteDataViewDelete /data-views/{dataViewId}Delete a data view
DataViewApiDivideDataViewPost /data-views/{dataViewId}/raw-data-divideDivide data view
DataViewApiFilterAnnotationsInDataViewPost /data-views/{dataViewId}/annotation-filterFilter annotations in a data view
DataViewApiGetAllAnnotationDataInDataViewGet /data-views/{dataViewId}/annotation-dataGet all annotation data in a data view
DataViewApiGetAllAnnotationLocationsInDataViewGet /data-views/{dataViewId}/annotation-locationsGet all annotation locations in a data view
DataViewApiGetAllRawDataLocationsInDataViewGet /data-views/{dataViewId}/raw-data-locationsGet all raw data locations in a data view
DataViewApiGetAnnotationsInDataViewGet /data-views/{dataViewId}/annotationsGet data view annotations
DataViewApiGetArtifactLocationsInDataViewGet /data-views/{dataViewId}/artifact-locationsGet files' locations in artifact data view
DataViewApiGetDataViewDetailsGet /data-views/{dataViewId}/detailsGet data view details
DataViewApiGetDataViewListGet /data-viewsGet data view list
DataViewApiGetDataViewStatisticsGet /data-views/{dataViewId}/statisticsGet data view statistics
DataViewApiGetDatasetZipLocationInDataViewGet /data-views/{dataViewId}/dataset-zip-locationGet dataset zip's location in a data view
DataViewApiGetModelDataLocationsInDataViewGet /data-views/{dataViewId}/model-data-locationsGet all model data locations in a data view
DataViewApiGetRawDataHashListInDataViewGet /data-views/{dataViewId}/raw-data-hash-listGet data view raw data hash list
DataViewApiGetRawDataInDataViewGet /data-views/{dataViewId}/raw-dataGet data view raw data
DataViewApiHardDeleteDataViewDelete /data-views/{dataViewId}/hard-deleteHard delete a data view
DataViewApiMergeDataViewsPost /data-views/mergeMerge data views
DataViewApiMergeDataViewsToCrurrentPost /data-views/{dataViewId}/mergeMerge data views
DataViewApiMoveDataViewItemsPost /data-views/moveMove data items between data views
DataViewApiUpdateDatasetZipViewPut /data-views/{dataViewId}/dataset-zipUpdate a dataset-zip view meta
DataViewUploadApiUploadAnnotationToDataViewPost /data-views/{dataViewId}/annotationsUpload annotations to data view
DataViewUploadApiUploadDatasetZipToDataViewPost /data-views/{dataViewId}/dataset-zipUpload dataset zip
DataViewUploadApiUploadFileToDataViewPost /data-views/{dataViewId}/artifactUpload file to data view
DataViewUploadApiUploadModelDataToDataViewPost /data-views/{dataViewId}/modelUpload model data to data view
DataViewUploadApiUploadRawDataToDataViewPost /data-views/{dataViewId}/raw-dataUpload raw data to data view

Documentation For Models

Documentation For Authorization

Endpoints do not require authorization.

Documentation for Utility Methods

Due to the fact that model structure members are all pointers, this package contains a number of utility functions to easily obtain pointers to values of basic types. Each of these functions takes a value of the given basic type and returns a pointer to it:

  • PtrBool
  • PtrInt
  • PtrInt32
  • PtrInt64
  • PtrFloat
  • PtrFloat32
  • PtrFloat64
  • PtrString
  • PtrTime

Author