Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,30 @@ mutation {
}
}
```

## Update cloud rules [#update-rules]

```graphql
mutation UpdatePipelineCloudRule {
updatePipelineCloudRule(
id: "MTAyNTY1MHxOR0VQfFBJUEVMSU5FX0NMT1VEX1JVTEV8MDE5ODgwOTUtMmZjNC03MTQ3LTkxMjQtZDk3YjhiY2Y4NGNj", # Replace with your rule's actual entity ID
pipelineCloudRuleEntity: {
description: "Since we do not need dropAttr1 ingested we would drop this attribuute instead of dropAttr1 ",
name: "Update the name for Dropping dropAttr2 from MyEventToDrop",
nrql: "DELETE dropAttr2 FROM MyEventToDrop"
}
) {
entity {
id
type
name
description
nrql
}
}
}
```

## Delete a cloud rule [#delete-rule]

```graphql
Expand Down
Loading