mutation policyAntiMalwareFileHashUpdatePolicy ( $accountId:ID! $antiMalwareFileHashPolicyMutationInput:AntiMalwareFileHashPolicyMutationInput $antiMalwareFileHashPolicyUpdateInput:AntiMalwareFileHashPolicyUpdateInput!) {
	policy ( accountId:$accountId ) {
		antiMalwareFileHash ( input:$antiMalwareFileHashPolicyMutationInput  )  {
			updatePolicy ( input:$antiMalwareFileHashPolicyUpdateInput   ) {
				policy {
					enabled
					rules {
						audit {
							updatedTime
							updatedBy
						}
						rule {
							id
							name
							description
							index
							section {
								id
								name
							}
							enabled
							fileName
							expirationDate
							action
							sha256
						}
						properties
					}
					sections {
						audit {
							updatedTime
							updatedBy
						}
						section {
							id
							name
						}
						properties
					}
					audit {
						publishedTime
						publishedBy
					}
					revision {
						id
						name
						description
						changes
						createdTime
						updatedTime
					}
				}
				status
				errors {
					errorMessage
					errorCode
				}
			}
		}
	}	
}