Update Integration Details
Updates integration configuration parameters such as integration name, container name, and connection string.
Where 'id' is integration Id provided by Qualys to the customer.
Input ParametersInput Parameters
Parameter |
Mandatory/Optional |
Data Type |
Description |
---|---|---|---|
name |
Mandatory |
Text |
Name of the customer/Integration. You can choose the name as per your preference. |
compressData |
Optional |
Boolean |
If set to true, the data is compressed in the .gz format. By default, it is set to true. |
containerName |
Mandatory |
Text |
Name of the container where a customer needs PC data. |
connectionString |
Mandatory |
String |
Connection string, which is needed to post data to Azure Storage Blob. |
API Request
"curl -X PUT""<qualys_gateway_url>/partner-integration/azure/storage-blob/{id}/pc""-H""Authorization: Bearer <token>"
Request Body
{
"name":"Customer Name or integration name",
"compressData":true,
"containerName":"qualys-pc-data",
"connectionString":"sampleBlobEndpoint"
}
Response
{
"message":"Azure Storage Blob PC Integration updated successfully"
}