Get Adapter Type

Get Adapter Type

This API provides the Adapter Kinds by passing specified identifier

Request
URI
GET
https://{api_host}/suite-api/api/adapterkinds/{id}
COPY
Path Parameters
string
id
Required

The Adapter Kind Identifier

Query Parameters
boolean
retrieveResourceKindInfos
Optional
Constraints: default: true

Optional param that specifies whether need to report resource-kind-keys


Authentication
This operation uses the following authentication methods.
Responses
200

The detailed information about the Adapter Kind

Returns adapter-kind of type(s) application/json
"{\n  \"key\" : \"VMWARE\",\n  \"name\" : \"vCenter Adapter\",\n  \"description\" : \"VMWare vCenter Adapter\",\n  \"adapterKindType\" : \"GENERAL\",\n  \"describeVersion\" : 100,\n  \"identifiers\" : [ ],\n  \"resourceKinds\" : [ ]\n}"
string
key
Required

The key which identifies an adapter kind uniquely in the system

string
name
Optional

The Localized name of the Adapter Kind

string
description
Optional

The Description of the Adapter Kind

string
adapterKindType
Required

The Adapter Kind Type

integer As int32 As int32
describeVersion
Optional

Adapter's Describe version
This is not the version of the Adapter but the version number
in the describe.xml file. For Adapter Kinds that are dynamically
created and not based on a describe.xml file, the value will be null

array of string
identifiers
Optional

The Adapter Kind identifiers

array of string
resourceKinds
Optional

Resource Kinds (keys) defined within this Adapter Kind

array of object
links
Optional

Represents a HTTP 'link' element.
It is implicit that all the link tags support http 'GET' method.


Code Samples
COPY
                    curl -H 'Authorization: <value>' https://{api_host}/suite-api/api/adapterkinds/{id}