HttpsConfig

Https settings

Fields

Name Type Description
SuppressHttpsCertificateValidation Bool Required. Defines whether to suppress HTTPS certificate validation of a web resource

Initialization String Format

An instance can be initialized with a string of the following format: SuppressHttpsCertificateValidation: true|false

Examples

Quickly changing the job Https config:

SET @jobConfig.Https = 'SuppressHttpsCertificateValidation: true';

Changing the job Https config:

DECLARE @jobHttps wds.HttpsConfig = 'SuppressHttpsCertificateValidation: false'
SET @jobHttps.SuppressHttpsCertificateValidation = 1;

SET @jobConfig.Https = @jobHttps;

Please rotate your device to landscape mode

This documentation is specifically designed with a wider layout to provide a better reading experience for code examples, tables, and diagrams.
Rotating your device horizontally ensures you can see everything clearly without excessive scrolling or resizing.

Return to Web Data Source Home