mutation policyAntiMalwareFileHashAddRule ( $accountId:ID! $antiMalwareFileHashPolicyMutationInput:AntiMalwareFileHashPolicyMutationInput $antiMalwareFileHashAddRuleInput:AntiMalwareFileHashAddRuleInput!) {
	policy ( accountId:$accountId ) {
		antiMalwareFileHash ( input:$antiMalwareFileHashPolicyMutationInput  )  {
			addRule ( input:$antiMalwareFileHashAddRuleInput   ) {
				rule {
					audit {
						updatedTime
						updatedBy
					}
					rule {
						id
						name
						description
						index
						section {
							id
							name
						}
						enabled
						fileName
						expirationDate
						action
						sha256
					}
					properties
				}
				status
				errors {
					errorMessage
					errorCode
				}
			}
		}
	}	
}