Package version:

Interface JiraLinkedService

Jira Service linked service.

interface JiraLinkedService {
    annotations?: any[];
    connectVia?: IntegrationRuntimeReference;
    description?: string;
    encryptedCredential?: string;
    host: any;
    parameters?: {
        [propertyName: string]: ParameterSpecification;
    };
    password?: SecretBaseUnion;
    port?: any;
    type: "Jira";
    useEncryptedEndpoints?: any;
    useHostVerification?: any;
    usePeerVerification?: any;
    username: any;
    version?: string;
}

Hierarchy (view full)

Properties

annotations?: any[]

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

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.

host: any

The IP address or host name of the Jira service. (e.g. jira.example.com)

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

Parameters for linked service.

password?: SecretBaseUnion

The password corresponding to the user name that you provided in the username field.

port?: any

The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.

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.

username: any

The user name that you use to access Jira Service.

version?: string

Version of the linked service.