curl -X PATCH \
https://anypoint.mulesoft.com/cloudhub/api/organizations/myOrgID/vpcs/myVpcID/loadbalancers/myDlbID \
-H 'authorization: Bearer myAccessToken' \
-H 'content-type: application/json' \
-d '[
{
"op": "replace",
"path": "/sslEndpoints/0/tlsv1",
"value": "true"
}
]'
In the command:
-
myOrgIDis the organization ID. -
myVpcIDis the ID for the VPC. -
myDlbIDis the ID for the DLB. -
myAccessTokenis the access token you generated.
The response includes the following:
"tlsv1": true,



