INPUT_OBJECT
RuleMutationConfigInput
Rule modification payload containing identifier specifying what rule to change, and mutation data specifying what fields in the rule to change.
link GraphQL Schema definition
- input RuleMutationConfigInput {
 - #   Specifies what the operation type is (Create/Delete/Modify).
 - : DomainMutationTypeInput!
 - #   Rule data fields to modify for CREATE/MODIFY operations.
 - : PolicyRuleMutationDataInput
 - #   Name of domain being modified. Validates the intended domain has been opened 
 - #   first via openDomain. Editing a different domain that has not been explicitly 
 - #   opened first returns an error.
 - : String!
 - #   Unique identifier optionally passed into input object of any query/mutation 
 - #   call, returned in the corresponding response output.
 - : String
 - #   DEPRECATED - Replaced by operationId. NBI responses will not return this value 
 - #   anymore.
 - : String
 - #   Rule to create/modify/delete. Specify fields necessary to uniquely identify the 
 - #   rule: name (for modify/delete), parent service, and global(optional, 
 - #   default=false).
 - : PolicyRuleDataIdentifierInput!
 - }