Package version:

Interface HubspotLinkedService

Hubspot Service linked service.

interface HubspotLinkedService {
    accessToken?: SecretBaseUnion;
    annotations?: any[];
    clientId: any;
    clientSecret?: SecretBaseUnion;
    connectVia?: IntegrationRuntimeReference;
    description?: string;
    encryptedCredential?: string;
    parameters?: {
        [propertyName: string]: ParameterSpecification;
    };
    refreshToken?: SecretBaseUnion;
    type: "Hubspot";
    useEncryptedEndpoints?: any;
    useHostVerification?: any;
    usePeerVerification?: any;
    version?: string;
}

Hierarchy (view full)

Properties

accessToken?: SecretBaseUnion

The access token obtained when initially authenticating your OAuth integration.

annotations?: any[]

List of tags that can be used for describing the linked service.

clientId: any

The client ID associated with your Hubspot application.

clientSecret?: SecretBaseUnion

The client secret associated with your Hubspot application.

The integration runtime reference.

description?: string

Linked service description.

encryptedCredential?: string

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.

parameters?: {
    [propertyName: string]: ParameterSpecification;
}

Parameters for linked service.

refreshToken?: SecretBaseUnion

The refresh token obtained when initially authenticating your OAuth integration.

type

Polymorphic discriminator, which specifies the different types this object can be

useEncryptedEndpoints?: any

Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.

useHostVerification?: any

Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.

usePeerVerification?: any

Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.

version?: string

Version of the linked service.