Represents type of the service endpoint.

interface ServiceEndpointType {
    authenticationSchemes?: ServiceEndpointAuthenticationScheme[];
    dataSources?: DataSource[];
    dependencyData?: DependencyData[];
    description?: string;
    displayName?: string;
    endpointUrl?: EndpointUrl;
    helpLink?: HelpLink;
    helpMarkDown?: string;
    iconUrl?: string;
    inputDescriptors?: InputDescriptor[];
    name?: string;
    trustedHosts?: string[];
    uiContributionId?: string;
}

Properties

authenticationSchemes?: ServiceEndpointAuthenticationScheme[]

Authentication scheme of service endpoint type.

dataSources?: DataSource[]

Data sources of service endpoint type.

dependencyData?: DependencyData[]

Dependency data of service endpoint type.

description?: string

Gets or sets the description of service endpoint type.

displayName?: string

Gets or sets the display name of service endpoint type.

endpointUrl?: EndpointUrl

Gets or sets the endpoint url of service endpoint type.

helpLink?: HelpLink

Gets or sets the help link of service endpoint type.

helpMarkDown?: string
iconUrl?: string

Gets or sets the icon url of service endpoint type.

inputDescriptors?: InputDescriptor[]

Input descriptor of service endpoint type.

name?: string

Gets or sets the name of service endpoint type.

trustedHosts?: string[]

Trusted hosts of a service endpoint type.

uiContributionId?: string

Gets or sets the ui contribution id of service endpoint type.