...
Using Cloudaware CLI, engineers can retrieve incidents related to a specific asset and update incident details.
Get an incident related to an AWS Lambda Function and update the incident severity:
Code Block |
---|
sf data query --query "SELECT Id, CA10__incidentId__c, CA10__severity__c FROM CA10__CaIncident__c WHERE CA10__awsLambdaFunctionArn__c = '<lambda_function_arn>' LIMIT 1" |
Update the incident severity to ‘High’. Specify the record Id returned from the previous query:
Code Block |
---|
sf data update record --sobject CA10__CaIncident__c --record-id <record_id> --values "CA10__severity__c=High" |
Query all cloud services used by a specific application
...