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;